Ordinals, Inscriptions & Data on Bitcoin
In early 2023 something happened that almost no one had designed for: people began embedding images, text, and even small programs directly into Bitcoin blocks, and treating individual satoshis as collectible NFTs. No new opcode was added. No soft fork was activated for it. It emerged entirely from creative use of rules that already existed — which makes Ordinals one of the best case studies in what “permissionless” really means.
Ordinal theory: numbering the satoshis
Section titled “Ordinal theory: numbering the satoshis”Bitcoin’s base unit is the satoshi (1 BTC = 100,000,000 sats), and normally all sats are interchangeable — pure fungible money. Ordinal theory is a convention layered on top that assigns every satoshi a serial number based on the order it was mined, and tracks it as coins move:
sat #0 ─ the very first satoshi ever mined (genesis)sat #1, #2, ... ─ numbered in mining order, forever │ ▼ first-in-first-out tracking through every transaction lets you point at "this specific sat" and follow itCrucially, the Bitcoin protocol knows nothing about this. Ordinal numbers exist only in the software that chooses to compute them. Consensus still sees fungible sats; ordinal theory is an overlay that people agree to honor — not a rule the network enforces.
Inscriptions: attaching data to a sat
Section titled “Inscriptions: attaching data to a sat”An inscription attaches arbitrary content (a JPEG, some text, JSON) to a particular sat. The mechanism reuses two upgrades you’ve already met:
- SegWit’s witness discount — witness bytes count as only ¼ toward block weight (see The UTXO set vs the chain and SegWit & Taproot), making bulk data comparatively cheap to store.
- Taproot’s script-path spend — lets you commit to a script containing the data and reveal it
later, hidden behind an
OP_FALSE OP_IF ... OP_ENDIF“envelope” that the interpreter skips.
Taproot witness: <signature> <script>: OP_FALSE OP_IF "ord" <content-type> <... the actual image bytes ...> OP_ENDIF ... real spending conditions ...The data lives in the witness of a Taproot transaction. This is exactly the “anyone-can-spend”-style cleverness Bitcoin is full of: no feature was added for inscriptions; they exploit the general-purpose flexibility Taproot already shipped.
The block-space debate
Section titled “The block-space debate”Inscriptions reignited an old argument with real heat on both sides:
"It's spam" "It's valid use"───────────────────────── ─────────────────────────bloats blocks with JPEGs they pay the going fee rate like anyonecompetes with payments for space block space is an open market, not curatednot what Bitcoin is "for" permissionless means no gatekeeper decides "for"The deep point is that both sides are appealing to the same property. Bitcoin has no admin who decides what a transaction is “allowed” to express; you pay the fee market rate and your bytes go in. That’s precisely the censorship-resistance that makes it valuable for payments — and it can’t be selectively switched off for data you personally dislike without undermining the very neutrality that protects everyone. Inscriptions are a live demonstration that what people do with a protocol is not limited to what its designers imagined.
The thread
Section titled “The thread”How does this help untrusting strangers agree on one ledger? It’s the flip side of the thread. Bitcoin’s neutrality means strangers don’t have to agree on what the ledger is for — only on which transactions are valid and who paid the fee. Ordinals are uncomfortable proof that the system is genuinely permissionless: the same rules that stop anyone from censoring your payment also stop anyone from censoring someone else’s JPEG. Trustlessness doesn’t get to be picky.
Check your understanding
Section titled “Check your understanding”- What does ordinal theory assign to each satoshi, and why is it accurate to say “the protocol knows nothing about it”?
- Which two earlier upgrades do inscriptions reuse, and what role does each play?
- Where in a transaction does inscription data actually live?
- In what sense are BRC-20 “tokens” a convention rather than a consensus feature?
- Explain why the “it’s spam” and “it’s valid use” camps are both appealing to the same property of Bitcoin.