πŸ—žοΈparcel ruleset

An inscription process and schema for divorcing parcels from their districts.

Click to expand for an explanation of the rule.

parcel# = txindex (starting from 0)

When referring to parcel number (parcel#), we are referring to an indexed transaction (txindex) within the block, starting from 0, which is the mining reward.

parcel claim command = parcel#.blockheight.bitmap

To claim a parcel, one simple appends their chosen parcel#. before blockheight.bitmap.

0.404.bitmap = example command to claim parcel 0 within district 404

In this example, the parcel corresponding to transaction 0 (miners reward) within Bitcoin Block 404 is claimed by the inscription, according to Bitmap Theory.

regex = ^(?:0|[1-9][0-9]*)\.(?:0|[1-9][0-9]*)\.bitmap$

This regular expression denotes the accepted characters usable according to the standard for claiming bitmap parcels. It means use two sequential numbers only, followed by .bitmap. The only valid transaction number beginning with 0 is 0. An invalid example would be 01.404.bitmap.

parcel# >= 0 and < total transactions in parent block

The parcel number must be equal to or more than 0, and less than the total number of transactions in the parent block.

district holder address = parcel inscriber address

The district holder address must be the same address as the parcel inscriber address.

tapping = send to self

Tapping is a term that simply means to send-to-self. It signals the confirmation of an action, or the initiation of a command within a ruleset.

tap district to resolve all confirmed parcel inscriptions as valid/invalid (ends staking)

Once parcel inscription transactions have confirmed, the district must further be tapped. Untapped parcels refers to when a district has not been tapped since parcels inscribed. Untapped parcels are considered fake by the standard ruleset and indexing.

if the parent district is sent to another wallet before tapping to confirm, any parcels created will not be verified

If the district is sent to another wallet after inscribing its parcels, instead of the district being sent-to-self (tapped), any untapped parcels will be considered fake by indexing.

Last updated