How to Etch and Mint a Bitcoin Rune: The 2026 Field Guide
Bitcoin fees sit near multi-year lows and the Runes tooling has matured, making 2026 the cheapest moment yet to create a token on Bitcoin. Here is how etching and minting really work.
The Runes protocol turned two years old in April 2026, and the mood around it has flipped. At launch, on Bitcoin’s April 2024 halving, etching or minting a rune meant elbowing into a stampede: the average Bitcoin transaction fee spiked to $127.97 on 20 April 2024, roughly seven times the previous day, and miners hauled in a record $107.8 million in a single day, according to CoinDesk. Late August 2026 looks nothing like that. The mempool is calm, recommended fee rates sit between 1 and 6 sat/vB, and the floor is back at the 1 sat/vB protocol minimum, per ChainQuery. Bitcoin trades near $77,700, down about 38% from its October 2025 record of $126,080 (CoinGecko), the speculative froth has drained, and the tooling that was half-finished in 2024 has matured. If you ever wanted to create your own token on Bitcoin, this is the cheapest and most forgiving window the protocol has offered.
This is a hands-on walkthrough, not another origin story. If you want the history and the block-space politics, we covered those in Bitcoin Runes in 2026: Revival, Fees, and the OP_RETURN War. Here the job is narrower and more useful: what actually happens when you etch a rune, every parameter you set and why it matters, how minting works from the other side of the transaction, what the whole exercise costs in 2026, and the precise ways people lose money doing it.
First, a reality check on the market you would be entering. The entire tracked Runes category is worth roughly $152 million on about $1.7 million of daily volume, per CoinGecko. A single token, DOG•GO•TO•THE•MOON, makes up around $125 million of that, more than 80% of the whole category. Most other runes trade below their mint price, and plenty trade at nothing at all. Etching a rune is easy. Etching one that anybody wants is not.
| Rune | Price (USD) | Market cap |
|---|---|---|
| DOG•GO•TO•THE•MOON | $0.001253 | ~$125.2M |
| MAGIC•INTERNET•MONEY | $0.0005367 | ~$11.3M |
| Pups (Bitcoin) | $0.004525 | ~$4.5M |
| Billy (Bitcoin) | $0.002985 | ~$2.98M |
| UNCOMMON•GOODS | $0.01869 | ~$2.67M |
| RSIC•GENESIS•RUNE | $0.0001243 | ~$2.61M |
| Whole Runes category | n/a | ~$152.4M / ~$1.7M 24h vol |
Etch, Mint, Transfer: The Three Verbs
Everything in Runes reduces to three operations, and confusing them is the most common beginner mistake. Etching creates a rune. It happens exactly once per token and fixes the rune’s permanent identity: its name, its symbol, how divisible it is, whether anyone can mint it, and how much the creator keeps for themselves. Minting produces units of a rune that has already been etched, and it is only possible if the etcher chose to open minting when they created the token. Transferring moves existing units from one owner to another. If you have used Ethereum, etching is loosely the equivalent of deploying an ERC-20 contract and minting is loosely the equivalent of calling its mint function, except there is no contract here at all. There is only a Bitcoin transaction carrying a short message.
That minimalism was the point. Casey Rodarmor, who also created Ordinals, designed Runes to live inside Bitcoin’s existing unspent-transaction-output model rather than bolting a second ledger on top of it, the way the earlier BRC-20 standard did while littering the network with junk outputs. Rodarmor never dressed up who the protocol was for. He built it, in his words, for “degens and memecoins,” and predicted that “if Runes are successful, they’ll drain liquidity, technology, and attention away from other cryptocurrencies, and bring it back to Bitcoin,” as he told CoinDesk days before launch. Two years on, the honesty holds up: most runes are memecoins, and the ones that matter are the ones that captured attention.
How a Runestone Actually Works
The message that carries an etch, a mint, or a transfer is called a runestone. Technically it is a single OP_RETURN output inside an otherwise ordinary Bitcoin transaction. The output begins with the OP_RETURN opcode followed by OP_13, the protocol’s magic number, and everything after that is a payload of 128-bit integers encoded in a compact format that decodes into fields and edicts, as laid out in the Runes specification. Fields carry the etching parameters. Edicts do the moving.
An edict is a three-part instruction: which rune, how many units, and which output of the transaction receives them. An edict with an amount of zero is a useful shorthand that allocates every remaining unit of that rune. Because balances live in the outputs themselves, Runes are genuinely UTXO-native; there is no separate account database. The catch is that Bitcoin Core has no idea what a rune is. To read your balance you need an indexer, the reference implementation being Rodarmor’s ord software, which watches the chain and computes who owns what. That means when a block explorer shows your rune holdings, you are trusting that indexer’s math unless you run your own node, a dependency that will feel familiar to anyone who has thought about whether you can trust a machine you do not run. It is not a fatal flaw, because anyone can verify the indexer against the chain, but it is worth understanding before you assume a balance is gospel.
One more mechanical point matters for cost. A basic runestone is tiny and fits comfortably inside the old 80-byte OP_RETURN limit that Bitcoin carried for years. The Bitcoin Core version 30 release lifted that limit dramatically, to roughly 100,000 bytes, via pull request 32359, but for a simple rune that change is close to irrelevant. It only helps runestones packed with many edicts or rich metadata. If your etch is a plain token with a single premine, you were never bumping against the old ceiling.
Anatomy of an Etching: Every Parameter You Set
When you etch, you are filling in a small set of fields that become permanent the moment the transaction confirms. There is no upgrade button and no admin key. Get a parameter wrong and your only remedy is to etch a second, corrected rune and abandon the first. The table below is the whole surface area of the decision.
| Parameter | What it does | Notes |
|---|---|---|
| Name | The rune’s identity, letters A to Z only | Length-gated over time; permanent; case is not stored |
| Spacers | The • bullets shown between letters | Cosmetic only; do not change the underlying name |
| Symbol | A single Unicode currency symbol | Optional; think of it as the token’s dollar sign |
| Divisibility | Decimal places, from 0 to 38 | 0 means indivisible; permanent |
| Premine | Units minted to the etcher at etch time | Can be zero (a fair launch) or the entire supply |
| Terms: amount | Units each mint transaction produces | Only set if you want an open mint |
| Terms: cap | Maximum number of mints allowed | Total supply = premine + (amount x cap) |
| Terms: height / offset | Block window when minting is open | Absolute heights or offsets from the etch block |
| Turbo flag | Opts the rune into future protocol changes | Advanced; leave off unless you understand it |
Divisibility deserves a moment. It sets how many decimal places a unit can be split into, from zero for an indivisible collectible-style rune up to a protocol maximum of 38, per the Ordinal Theory Handbook. Eighteen, matching most ERC-20 tokens, is a common choice, but there is no reason to copy Ethereum reflexively. A memecoin priced in fractions of a cent rarely needs 18 decimals. The premine and terms together determine supply: a rune with a premine of one billion and no terms is a fixed-supply token issued entirely to its creator, while a rune with a zero premine and terms of one thousand per mint and a cap of one million is a fair-launch token with a maximum supply of one billion that only exists once people mint it.
The Name Game: Length Unlocks and Reserved Runes
Rune names are the one parameter with real scarcity baked in, and the rules trip up newcomers constantly. Names use only the 26 letters A to Z, encoded internally as a base-26 number. Crucially, you cannot grab any length you like. To stop the entire supply of short, punchy names from being seized on day one, the protocol releases them gradually. At the launch block, 840,000, only names of 13 or more letters could be etched. The minimum then drops by one letter roughly every 17,500 blocks, which is about every four months, according to the specification. Single-letter runes are not scheduled to unlock until around block 1,050,000, which lands near 2028.
| Minimum name length | Approx. unlock block | Approximate date |
|---|---|---|
| 13 letters | 840,000 (launch) | April 2024 |
| 11 letters | ~875,000 | ~late 2024 |
| 9 letters | ~910,000 | ~mid 2025 |
| 7 letters | ~945,000 | ~spring 2026 |
| 6 letters | ~962,500 | ~mid to late 2026 |
| 1 letter | ~1,050,000 | ~2028 |
The practical upshot for late 2026: the shortest name you can freshly etch is around six letters, with five-letter names arriving toward the end of the year. Anything shorter that already exists was etched by someone earlier, and long, reserved-looking names of 27 or more identical letters are locked off entirely. Spacers, the • bullets you see in DOG•GO•TO•THE•MOON, are purely cosmetic. They change how a name displays but not the name itself, so DOG•GO•TO•THE•MOON and DOGGOTOTHEMOON are the same rune under the hood. Finally, claiming a non-reserved name is not a single click. To prevent front-running, you must commit to the name first, embedding it in a witness tapscript on an input whose output already has at least six confirmations, and only then reveal it in the etching transaction. That commit-reveal handshake is exactly why etching takes about an hour rather than one block.
Step by Step: Etching Your Own Rune
With the concepts in place, the sequence is straightforward. Start with a Bitcoin wallet that understands Runes, funded with a small amount of BTC, on a device you control. The mainstream choices are UniSat, Xverse, Leather, and OKX. None of the popular EVM or Solana wallets will do; if you are used to the world of MetaMask, Phantom, and Rabby, note that runes live on Bitcoin and need a Bitcoin-native wallet. For anything beyond pocket change, hold your keys in cold storage; our 2026 hardware wallet review walks through the trade-offs after the year’s Coldcard scare.
- Choose your parameters. Pick an available name at the current minimum length, decide on a symbol and divisibility, and settle the big question: fixed supply with a premine, or an open mint with terms. Write these down; they are permanent.
- Broadcast the commit. Your etching app publishes a first transaction that embeds the name commitment. Now you wait for at least six confirmations, roughly an hour, while that commitment matures.
- Broadcast the reveal. Once the commit is old enough, the app publishes the actual etching transaction carrying the runestone. This is the moment the rune comes into existence.
- Verify on an explorer. Check a Runes explorer such as GeniiData or Ordiscan to confirm the rune exists with the parameters you intended, and that any premine landed in your wallet.
An etch app such as UniSat Inscribe or Xverse hides the two-transaction dance behind a single form, so you rarely touch raw runestones by hand. That convenience is worth using. The one-hour wait is not a bug to engineer around; it is the front-running defense doing its job. If a tool promises instant etching of a fresh name, be suspicious.
Open vs Closed Mints: Designing the Terms
The single choice that shapes a rune’s economics is whether you set mint terms. If you do, the rune is open: anyone can send a mint transaction and receive the fixed amount of units, up to the cap number of mints, within the block window you defined. Once the cap is hit or the window closes, minting stops forever. If you set no terms and simply premine the whole supply to yourself, the rune is closed from birth, a fixed-supply token you now hold entirely.
Open mints are the culturally Bitcoin-native choice because they echo how Bitcoin itself launched: no presale, no insider allocation, everyone competing on equal terms. Leonidas, the pseudonymous creator of DOG and the Runestone airdrop that seeded it, has been the loudest advocate for this fair-launch model, urging buyers to filter for tokens with no premine at all. DOG itself is the proof of concept: 100 billion units, distributed entirely to more than 75,000 Runestone holders with zero team allocation, as documented across coverage of the airdrop. The counterargument is that a premine funds development and liquidity honestly rather than through a hidden dump. Neither approach is wrong, but the choice is visible on-chain forever, and Bitcoin’s audience reads premines skeptically.
Step by Step: Minting an Existing Rune
Minting is simpler than etching because there is no commit-reveal and no naming. You are just calling an open mint. In an etch app or wallet, you select the rune, choose how many mint transactions to fire (each yields one amount of units), pay the miner fee, and wait for confirmation. One quirk of the UTXO model surfaces here: to mint repeatedly you need enough separate, spendable outputs to fund each transaction. Wallets handle this by splitting your balance into smaller pieces, sometimes called pre-split or auto-split, so a single large BTC output does not bottleneck a batch of mints.
The real hazard is the mint-out race. When a popular rune is close to its cap, minting turns into a fee auction, and slow bidders simply lose. Leonidas laid out the mechanics bluntly in a widely shared thread on how to mint without getting wrecked: “Bitcoin has slow block times so a lot can happen between blocks. If a Rune is close to minted out you need to make sure to pay significantly higher fees than everyone else to ensure your transaction gets squeezed in.” The corollary is that overpaying to mint a rune that never appreciates is one of the easiest ways to lose money in this whole exercise. If you are minting for speculation rather than to hold a specific token, size the fee to the odds honestly.
The 2026 Tooling Stack
The ecosystem has consolidated hard since 2024. Several venues that older guides still recommend are gone; Magic Eden, once the dominant marketplace for Bitcoin tokens, exited Bitcoin trading in March 2026 to refocus on Solana, so any tutorial pointing you there is out of date. The survivors are fewer but sturdier.
| Tool | Type | What it does |
|---|---|---|
| ord | Reference software | The canonical indexer and wallet; run it yourself to verify balances |
| UniSat | Wallet, etch/mint, market | Full protocol support including Inscribe for etching and minting |
| Xverse | Wallet, etch/mint | Consumer wallet with a built-in etch and mint tool |
| Leather / OKX | Wallets | Hold and transfer rune balances |
| Luminex / Magic Runes | Etch/mint apps | Form-driven etching and batch minting |
| GeniiData / Ordiscan | Explorers, analytics | Verify runes, track holders, mint progress, and volumes |
The trust gradient matters. Custodial convenience is fine for a first experiment with a few dollars, but the moment a rune has value, the same rules apply as with any Bitcoin holding: your keys, your coins, and a self-custody wallet backed by hardware for anything you would be upset to lose. Explorers are read-only and safe to lean on, but remember they are indexers computing an overlay, not Bitcoin Core itself.
What It Costs: Fees, Timing, and the 2026 Window
You never pay a protocol fee to Runes. You pay Bitcoin miners, and the bill is simply the size of your transactions in virtual bytes multiplied by the fee rate in sat/vB. An etch is two small transactions (commit and reveal); a mint is one. At the 1 to 2 sat/vB rates prevailing in late August 2026, a bare etching can cost well under a dollar in total miner fees, a startling contrast with the tens or hundreds of dollars it cost on halving day 2024. This is the core of why 2026 is a good time to experiment: the network is quiet and mistakes are cheap.
The fee history explains the swing. Runes accounted for as much as 90% of Bitcoin transaction fees in the frenzy right after launch, then collapsed to under 2% within a year as the novelty wore off, according to a one-year retrospective from BlockEden. That does not mean the network is permanently dead for tokens. In June 2026 a genuine revival pushed Bitcoin past 820,000 transactions a day, a two-year high, with runestones a major share of the traffic, as CoinDesk reported. The lesson for anyone timing an etch is practical: a hot mint can briefly drag median fee rates well into the double digits, so check the mempool before you broadcast and, if you are not racing anyone, wait for a calm block.
Cenotaphs and Other Ways to Lose Money
The scariest failure mode has a name: the cenotaph. A cenotaph is a malformed runestone, and the protocol punishes it harshly. Every rune sent into a transaction that contains a cenotaph is burned, gone permanently, and if the cenotaph included an etching, that rune is created with a supply of zero and can never be minted, per the specification. This is a deliberate safety design, forcing indexers to agree on what a broken message means, but it also means a hand-rolled runestone with a bug can vaporize your holdings. The defense is boring and effective: use well-tested wallets and etch apps, and never hand-build a raw runestone unless you genuinely know the encoding.
The rest of the risk list is mundane but expensive:
- Mint-out overpayment. Bidding up fees to mint a rune that then trades below your cost is the single most common loss.
- Impersonation. Scammers etch runes with names or symbols that mimic a popular token. Always verify the rune ID (the block-and-transaction identifier), not the display name.
- Dust and UTXO bloat. Heavy minting leaves a wallet full of tiny outputs that cost fees to consolidate later.
- Thin and wash-traded liquidity. A rune’s headline volume can be mostly self-dealing; treat low-cap runes as illiquid until proven otherwise.
- Key loss. Runes are Bitcoin. Lose the keys and there is no recovery and no support desk.
No Bridge, No Wrapper: The Native Advantage
One reason Runes outlasted flashier rivals is what it does not require. A rune never leaves Bitcoin. There is no wrapped version on another chain, no bridge holding the real coins in a contract, no cross-chain messaging layer to trust. That matters because bridges have been the single richest target in crypto; the money that vanishes in cross-chain hacks tends to be enormous, as we traced in the bridge hack money trail. When your token is a runestone in a Bitcoin UTXO, the only security assumptions are Bitcoin’s own and the honesty of the indexer you choose to trust, which you can replace or self-host.
The flip side is that this native design is also spartan. There is no built-in logic, no programmability, no way to make a rune do anything clever on its own. Everything expressive, from lending against a rune to swapping one for another, has to be built in a layer above the protocol using Bitcoin’s scripting primitives and off-chain coordination. That is a feature if you value Bitcoin’s conservatism and a limitation if you want a token that behaves like a smart-contract asset. For a first etch, the simplicity is a gift: fewer moving parts, fewer ways to fail.
Runes and the SEC: Are You Etching a Security?
For a US creator, the legal question is not academic, and the news since early 2025 is broadly favorable. The SEC’s Division of Corporation Finance issued a staff statement in February 2025 concluding that meme coins are generally not securities and that their offer and sale do not require registration. Because most runes are memecoins in substance, that statement is the operative US signal, and it is a big reason etching feels lower-risk than it did in Bitcoin’s earlier token era. It is not a blanket immunity, however. The statement expressly excludes tokens designed to evade the securities laws, and Commissioner Caroline Crenshaw dissented, warning that the reasoning is broad and fact-dependent.
The practical line is the one the Howey test has always drawn. A rune sold with no promises, no roadmap, no yield, and no common enterprise looks like a collectible or a joke, not an investment contract. A rune marketed with pledges of profit from a team’s ongoing efforts, staking rewards, or buybacks starts to look like a security no matter what you call it. If you are etching for fun or community, keep the messaging free of profit promises. If you are building something that generates returns for holders, assume the compliance questions that dog every token project apply to you too, and remember that formal compliance carries real cost and uncertain payoff, as we detailed in our look at DeFi compliance in 2026.
The Bigger Picture: Etching and Bitcoin’s Security Budget
Every etch and every mint is a fee-paying transaction, and that ties this hobby to one of Bitcoin’s hardest long-term questions. As the block subsidy keeps halving, transaction fees have to make up a growing share of what miners earn to secure the chain. Runes, Ordinals, and other data uses are the largest new source of that fee demand, which is why the debate over them is louder than a memecoin scene would normally warrant. Samuel Patt, co-founder of OP_NET, framed the tension sharply to CryptoNews: “Anyone who says they’re a Bitcoin maximalist while simultaneously trying to reduce demand for block space is holding two contradictory positions. Bitcoin needs transactions.”
The bull case for etching is that it gives Bitcoin a use beyond holding and hands miners fees the subsidy can no longer supply. The bear case is that most runes are worthless noise crowding out payments and that a security budget propped up by memecoin speculation is a fragile foundation. Both can be true at once. What has actually changed by late 2026 is quieter than either camp: etching a rune has become a normal, cheap, well-tooled thing to do on Bitcoin, no longer a fee-war ordeal. Whether the token you create is worth anything is entirely up to whether anyone else cares, and the honest base rate there is low. Etch because you want to make something, not because you expect the market to reward it.
Frequently Asked Questions
How much does it cost to etch a Rune in 2026?
At the low fee rates of late 2026, a basic etching costs well under a dollar in Bitcoin miner fees, because you only pay for the size of two small transactions at 1 to 2 sat/vB. Costs rise if you want fast confirmation during a busy mempool, if your runestone carries a lot of data, or if you etch during a mint rush that pushes fee rates into the double digits. That is a world away from Bitcoin’s April 2024 halving, when a single transaction fee averaged about 128 dollars.
What is the difference between etching and minting a Rune?
Etching creates the rune once and fixes its permanent properties, such as its name, symbol, divisibility, and any premine or mint terms. Minting is the act of producing units of an already etched rune, and it is only possible if the etcher opened minting by setting terms. Think of etching as defining the token and minting as issuing it, with transferring being the third operation that simply moves units between owners.
What is a cenotaph and how do I avoid one?
A cenotaph is a malformed runestone that the protocol treats as an error. Any runes sent into a transaction that contains a cenotaph are burned, and if the cenotaph included an etching, that rune is created with zero supply and can never be minted. The practical defense is to use well-tested wallets and etching apps rather than hand-building raw runestones, and to double-check every parameter before you broadcast.
Can I still get a short Rune name?
Rune names use only the letters A to Z, and the protocol unlocks shorter names over time to stop everyone grabbing the best ones on day one. At launch in April 2024 only names of 13 or more letters could be etched, and the minimum drops by one letter roughly every four months. By the second half of 2026 the shortest freshly etchable names are around six letters, and single-letter runes are not scheduled to become available until roughly 2028.
Are Bitcoin Runes securities in the United States?
Most runes are memecoins, and the SEC’s Division of Corporation Finance said in February 2025 that meme coins are generally not securities and do not require registration. That said, the statement excludes tokens designed to evade securities laws, and a rune sold with promises of profit from a team’s efforts can still look like an investment contract under the Howey test. Etching a token with no roadmap, yield, or profit promises keeps you furthest from that line.
Marcus Okafor is a senior editor at HOGE Wire covering Bitcoin’s base layer, tokens, and mining.