Indexing

In addition to usage rules there are a number of indexing rules

Indexers

At of early November there are a number of independent indexers validating the same truth. This client diversity serves to decentralize indexing and catch any individual client error quickly. Many of these indexers also offer explorers or API's which can be used to view global state and balances. Here is a list of the providers:

There is also an ongoing initiative led by ALEX, to create a Bitcoin Oracle. In short this intends to validate the indexers global state against each other every block, and attest their coordination on chain via Stacks. See more about this project here. The pilot will consist of Best in Slot, Unisat, OKX, and Hiro.

Rules

Primarily, the indexing guidelines are pertinent to users who intend to independently index BRC-20 state data. Nevertheless, individuals encountering challenges may find this information useful for troubleshooting. The content herein has largely been provided by the BestInSlot team. These directives will form the foundation for future BRC-20 projects, encompassing the Bitcoin Oracle initiative, the reference implementation client, and all ensuing updates to the protocol.

*The vast majority of the content below has been contributed by the BestInSlot team.

  • Inscriptions must have a MIME Type of "text/plain" or "application/json". To check this, split the mime type from ";" and check the first part without strip/trim etc.

  • Inscription must be a valid JSON (not JSON5). Trailing commas invalidate the function.

  • Leading or trailing spaces/tabs/newlines are allowed (and stripped/trimmed).

  • JSON must have "p", "op", "tick" fields where "p"="brc-20", "op" in ["deploy", "mint", "transfer"]

  • If op is deploy, JSON must have a "max" field. "lim" and "dec" fields are optional. If "dec" is not set, it will be counted as 18. If "lim" is not set it will be equal to "max".

  • If op is mint or transfer, JSON must have an "amt" field.

  • All op and field names must be in lower case.

  • ALL NECESSARY JSON FIELDS MUST BE STRINGS. Numbers at max, lim, amt, dec etc. are not accepted. Extra fields which haven't been discussed here can be of any type.

  • Numeric fields are not stripped/trimmed. "dec" field must have only digits, other numeric fields may have a single dot(".") for decimal representation (+,- etc. are not accepted). Decimal fields cannot start or end with dot (e.g. ".99" and "99." are invalid).

  • Empty string for numeric field is invalid.

  • 0 for numeric fields is invalid except for the "dec" field.

  • If any decimal representation have more decimal digits than "dec" of ticker, the inscription will be counted as invalid (even if the extra digits are 0)

  • The Maximum value of "dec" is 18.

  • Max value of any numeric field is uint64_max.

  • "tick'' must be 4 or 5 bytes wide (UTF-8 is accepted). "tick '' is case insensitive, we use lowercase letters to track tickers (convert tick to lowercase before processing).

  • If a deploy, mint or transfer is sent as fee to miner while inscribing, it must be ignored

  • If a transfer is sent as fee in its first transfer, its amount must be returned to the sender immediately (instead of after all events in the block).

  • If a mint has been deployed with more amt than lim, it will be ignored.

  • If a transfer has been deployed with more amt than the available balance of that wallet, it will be ignored.

  • All balances are followed using scriptPubKey since some wallets may not have an address attached to bitcoin.

  • First a deploy inscription is inscribed. This will set the rules for this brc-20 ticker. If the same ticker (case insensitive) has already been deployed, the second deployment will be invalid.

  • Then anyone can inscribe mint inscriptions with the limits set in deploy inscription until the minted balance reaches to "max" set in deploy inscription.

  • When a wallet mints a brc-20 token (inscribes a mint inscription to its address), its overall balance and available balance will increase.

  • Wallets can inscribe transfer inscriptions with an amount up to their available balance.

  • If a user inscribes a transfer inscription but does not transfer it, its overall balance will stay the same but its available balance will decrease.

  • When this transfer inscription is transferred (not sent as fee to miner) the original wallet's overall balance will decrease but its available balance will stay the same. The receiver's overall balance and available balance will increase.

  • If you transfer the transfer inscription to your own wallet, your available balance will increase and the transfer inscription will become used.

  • A transfer inscription will become invalid/used after its first transfer.

  • Buying, transferring mint and deploy inscriptions will not change anyone's balance.

  • “fee” and “to” keys were for demo indexing purposes only. Inclusions have no effect on the function nor do they invalidate it.

  • Cursed inscriptions including brc-20 data are not recognized as valid.

  • Brc-20 employs the ord client version 0.14 definition of an inscription with the following stipulations: vindications (new inscription types introduced at the Jubilee are ignored for now) and delegation/encoding features are ignored.

  • Balances sent to unspendable outputs are not returned to sender like with the fee instance. They can practically be considered burnt (notwithstanding a bitcoin update that enables transactions to be created with these keys in the future)

Points to consider

  • JS integer is actually a double floating point number and it can only hold 53-bit integers with full-precision. If you want to make an indexer with JS, use BigInt.

  • Sent as fee rule is very important and needs to be handled carefully.

  • Do not use string length for ticker length comparison. Some UTF-8 characters like most of the emojis use 4 bytes but their string length is 1 on most programming languages.

  • Numeric fields do not accept numeric values. Use strings in JSON.

  • Do not trim/strip any field.

  • Do not use int/float conversion directly on numeric fields. For example some languages may accept "123asd" as valid integer with 123 value but this inscription is invalid.

  • Check decimal length of amt, max, lim from string value. Extra 0's at the end of the decimal part may invalidate the token if there are more decimal digits than "dec" of the ticker.

  • Beware of the reorgs. Since the order of transactions is very important in this protocol, a reorg will probably change the balances.

Last updated