Indexing

Indexing plays a pivotal role in the Ordiswap protocol, providing efficient and quick access to critical data within the decentralized exchange. In the context of Ordiswap, indexing involves creating a structured and organized system for tracking and retrieving information related to BRC-20 tokens, trades, and liquidity pools. The goal is to optimize data access, enabling faster query responses and overall protocol efficiency.

Technical Implementation of Indexing in Ordiswap:

Token Indexing:

  • Ordiswap maintains an index of all BRC-20 tokens listed on the platform. This index includes essential information such as token addresses, names, and symbols.

  • Each token is assigned a unique identifier that facilitates rapid retrieval during token swaps or liquidity provision.

Trade History Indexing:

  • Ordiswap indexes trade history, capturing details of each trade executed on the platform. This includes information such as trade pairs, timestamps, and transaction IDs.

  • The trade history index ensures quick access to historical trade data, supporting functionalities like price charts and transaction history.

Liquidity Pool Indexing:

  • Indexing is employed to organize data related to liquidity pools, including pool addresses, token pairs, and historical liquidity changes.

  • The liquidity pool index enables efficient tracking of pool dynamics, supporting features like liquidity provision, pool analytics, and dynamic pricing.

Considerations in Ordiswap's Indexing Strategy:

  • Scalability: Ordiswap's indexing strategy is designed to scale seamlessly with the growing number of tokens and users. The indexing system must efficiently handle an expanding dataset while maintaining high performance.

  • Real-time Updates: The indexing mechanism ensures real-time updates to reflect the latest changes in token listings, trade history, and liquidity pools. This real-time aspect is crucial for accurate data representation.

  • Reduced Latency: By optimizing indexing structures, Ordiswap minimizes data retrieval latency. This is essential for providing users with a responsive and seamless trading experience.

  • Consistency and Reliability: Ordiswap's indexing system adheres to principles of consistency and reliability, ensuring that indexed data accurately represents the state of the decentralized exchange at any given time.


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 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.9 definition of an inscription.

  • 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)

Last updated