First off — if you thought NFTs were only an Ethereum thing, welcome to the new neighborhood. Bitcoin Ordinals changed the map by giving inscriptions a native place on Bitcoin, and BRC-20s brought token-like behavior into the mix. This piece walks through how they work, why they matter, and what to watch out for if you’re minting, trading, or building on top of Ordinals.

Short version: Ordinals let you attach arbitrary data to individual satoshis. That’s the basic building block. BRC-20 uses that capability to implement a simple, emergent token standard — think mempool-driven token minting and transfers that live as inscriptions. It’s clever, a little messy, and very Bitcoin-native.

Okay, so check this out — the technical bits first, then practical steps and wallet choices (I use a few personally). The thing that keeps surprising people is how different the UX and risk model is from ERC-20 tokens. You don’t get smart contracts. You get on-chain data, UTXO nuances, and fee-driven behaviors that can bite if you’re not careful.

Illustration of a satoshi with inscription, representing Ordinals and BRC-20 tokens

What are Ordinals and how do inscriptions work?

Ordinals assign an index to each satoshi based on mining order. That index gives provenance — you can point to a specific satoshi and say, “this one has a history.” Inscriptions write content (images, text, small programs) directly into a transaction output using witness space (SegWit). The result: an on-chain artifact tied to a satoshi, often called a Bitcoin NFT.

This isn’t a token standard with a registry or contract. There’s no central ledger outside Bitcoin itself. That makes it simple in principle, but operationally tricky. If you move the UTXO containing an inscribed satoshi without care, the inscription can disappear from expected catalogues until it’s rediscovered.

What BRC-20 actually is (and isn’t)

BRC-20 is an informal, text-based convention layered on top of inscriptions. It encodes token operations — mint, transfer, deploy — by embedding JSON-like instructions into inscriptions. Minters broadcast those instructions in transactions and rely on indexers to interpret them as balances.

Important caveat: BRC-20 relies on off-chain indexers for balances and order books. The Bitcoin ledger records the inscriptions, but wallets and marketplaces interpret meaning. That’s powerful and dangerous: if indexers disagree, or if a crawler goes down, the market’s view may diverge from the raw chain state.

Why developers and collectors care

On one hand, inscriptions are pure Bitcoin: immutable, censorship-resistant, and secured by Bitcoin’s hashpower. On the other hand, they can bloat transaction outputs and push fees up if demand surges. For artists and collectors who prize permanence, that’s a feature. For others who worry about chain health, it’s a tradeoff.

Another pull: creativity. People are doing collectible art, generative projects, and surprisingly active token experiments using BRC-20. It’s bootstrapped in the mempool and relies on economic incentives more than formal governance — which means it evolves fast and unpredictably.

Practical: How to inscribe or interact with BRC-20 tokens

Step one: pick a wallet that supports inscriptions. Wallet choices matter. Some wallets let you view, mint, and transfer ordinals directly; others do not. For a practical, web-based place to start with inscriptions and BRC-20 interactions, try this wallet — here. It’s one of the more accessible options for newcomers.

Step two: prepare for fees and UTXO management. Inscribing data increases witness size, and BRC-20 activity often involves many small inscriptions. That means you’ll need to manage UTXOs thoughtfully — consolidate when fees are low, avoid dust utxos, and be mindful that transfers may fail if you construct transactions without sufficient fee or proper input selection.

Step three: use reputable indexers and marketplaces. Since token balances aren’t encoded in a contract, you’ll trust indexers (and their APIs) to reflect your holdings. Multiple indexers exist; cross-check when dealing with high-value items. When selling or trading, prefer marketplaces with good liquidity and transparent settlement paths.

Risks and operational pitfalls

Fees. Obvious but worth repeating. A busy inscription market can spike fees and make minting expensive. If your project needs many inscriptions (e.g., generative art with thousands of images), plan for the cost and timing, and consider staggered minting.

Indexing divergence. Your wallet might show a balance that a marketplace doesn’t. That usually comes from different indexers or from delays in parsing new inscriptions. When in doubt, fetch raw tx data and verify the inscription exists on-chain.

Lost UX expectations. People expect instant, atomic transfers like ERC-20. Ordinals/BRC-20 rely on transactions and indexers — not on an account-balance model. That changes how you design UX, confirmations, and error handling in apps.

Best practices for creators and collectors

Creators: think about payload size. Smaller files and off-chain proofs can keep costs down; on-chain art is wonderful, but expensive. Provide multiple ways for users to verify provenance (txid, explorer links, and clear metadata).

Collectors: learn to read transactions. Know how to check an inscription’s txid and watch UTXOs. If you’re buying at scale, set up a private indexer or work with a trusted provider to avoid surprises.

Builders: design for eventual consistency. Expect indexers to lag and sellers to have different views of ownership. Offer reconciliation tools and clear UX that explains delays or reorgs to users.

FAQ

Q: Are Ordinals permanent?

A: Yes — the inscription is preserved on the Bitcoin blockchain as long as the chain exists. However, retrieval and indexing depend on indexers and tools that can parse and display that data. The raw data is permanent; the ease of access can vary.

Q: Can BRC-20 tokens be stolen like ERC-20 tokens?

A: They can be mismanaged. Because balances depend on inscriptions tied to UTXOs, traditional private-key theft or sloppy UTXO handling can lead to loss. There’s no smart contract backstop. Secure your keys and double-check transactions before broadcasting.

Q: Is this bad for Bitcoin’s long-term health?

A: Opinions differ. Some see inscriptions as valuable use of blockspace that expands Bitcoin’s expressive power. Others worry about bloat and fee pressure. It’s a tradeoff; protocol-level debate is ongoing, but for now inscriptions are an available and growing use-case.