- January 12, 2026
- Blockchain, Security, Wallet
Seed phrases
Seed phrases are a set of words that back up and restore a crypto wallet, giving full access to its funds if the private keys are lost.

What are Seed Phrases?
Seed phrases have come up repeatedly across this series; briefly in our cryptography
CryptographyCryptography is the science of securing information using mathematical techniques to protect data, ensure privacy, and verify authenticity.Keep learning article, and again in more practical detail in our articles on private keys
Private KeysPrivate keys are secret cryptographic codes that give users full control over their crypto assets and are used to sign and authorize transactions.Keep learning and custody
CustodyCustody in crypto is the secure storage and management of private keys or assets, handled either by the user (self-custody) or a third party.Keep learning. Given how central they've become to how almost everyone actually interacts with self-custodied cryptocurrency
CryptocurrencyCryptocurrency, often called “crypto,” is a form of digital currency that uses cryptography (advanced math and code) to keep it secure.Keep learning today, they've earned a closer, dedicated look: exactly how a seed phrase is generated, what's mathematically happening behind those twelve or twenty-four ordinary words, and the practices that separate a genuinely secure backup from one that only feels secure.
What a Seed Phrase Actually Is
As introduced in our private keys article, a seed phrase is a human-readable representation of the random data needed to generate an entire tree of cryptographic keys, governed by a standard called BIP39 (Bitcoin Improvement Proposal 39). Rather than asking someone to safely record a 64-character hexadecimal string; error-prone, intimidating, and easy to mistype; BIP39 converts that same underlying randomness into a sequence of ordinary words, drawn from a fixed, carefully designed list.
It's worth being precise about what's actually being backed up here: a seed phrase isn't simply a memorable nickname for a private key sitting somewhere else. It is, mathematically, the private key; or more precisely, the seed from which an entire hierarchical tree of private keys (as described in our HD wallet
Crypto WalletsA crypto wallet doesn’t store coins like a piggy bank. Instead, it keeps keys that let you access your crypto on the blockchain.Keep learning discussion in the private keys article) is deterministically derived. Anyone who possesses your seed phrase possesses everything needed to regenerate every key in that tree, on any compatible wallet software, anywhere in the world, with no need to access your original device at all.
How a Seed Phrase Is Actually Generated
The process, while running invisibly in the background of nearly every modern wallet, follows a precise, well-defined sequence worth understanding.
Generate entropy. The wallet software generates a block of genuinely random data; typically 128 bits (for a 12-word phrase) or 256 bits (for a 24-word phrase); using a cryptographically secure random number generator. This is the same randomness-quality concern discussed at length in our private keys article: weak or predictable randomness at this stage compromises everything that follows.
Add a checksum. A small portion of this entropy's own SHA-256 hash; the algorithm covered in detail in our first and hashing
HashingHashing is the process of converting data into a fixed-length code using a cryptographic function, ensuring data integrity and security.Keep learning articles; is appended to the original entropy as a checksum. This checksum is what allows wallet software to later detect, instantly, whether a seed phrase has been mistyped or miscopied, without needing to attempt an actual transaction first to find out.Split into 11-bit groups. The combined entropy-plus-checksum data is divided into a sequence of 11-bit segments. Since 2¹¹ equals 2,048, each possible segment value maps to one specific word from a standardized list of exactly 2,048 words.
Map to words. Each 11-bit segment is converted into its corresponding word from the BIP39 wordlist, producing the final sequence most people recognize as a seed phrase; 12 words for 128 bits of entropy, or 24 words for 256 bits.
This is also why seed phrases come specifically in 12, 15, 18, 21, or 24-word lengths, and never arbitrary numbers in between; the math only works out cleanly at these specific entropy levels, each including its own embedded checksum.
Why the Wordlist Itself Was Carefully Designed
The 2,048 words used in the BIP39 standard weren't chosen casually. The official wordlist was deliberately curated with several practical goals in mind: every word is unique within its first four letters (meaning a wallet can often correctly identify a word, and flag potential typos, from just the first four characters typed), similar-sounding or similarly-spelled words were deliberately avoided to reduce transcription errors, and separate wordlists exist for multiple languages, allowing the same underlying standard to be used in English, Spanish, Japanese, and several other languages without altering the underlying mathematics.
You can view the complete, official English wordlist directly on the BIP39 GitHub repository; worth a glance simply to appreciate how deliberately constrained and standardized this list really is, given how much ultimately rests on it.
The Checksum: A Built-In Error Catcher
It's worth dwelling briefly on the checksum step described above, since it's one of the more elegant, underappreciated details of the BIP39 design. Because the final word of any seed phrase is derived partly from this checksum, an incorrectly transcribed seed phrase; a misspelled word, a word recorded out of order, or a word from a different list entirely; will, in the overwhelming majority of cases, fail this checksum validation immediately, before any attempt is made to access or move funds. This doesn't catch every possible error (it's entirely possible to correctly write down twelve completely wrong, but still individually valid, words), but it does catch the most common class of simple transcription mistakes, well before they could otherwise result in an unrecoverable, silently broken backup.
You can see this validation in action directly using the Ian Coleman BIP39 Tool, referenced in earlier articles; entering an intentionally mistyped or invalid word into the tool will trigger an immediate checksum warning, demonstrating exactly this safeguard in practice. As with all sensitive key-related tools, this is best done offline, with no real funds involved, purely for educational purposes.
The Optional 25th Word: BIP39 Passphrases
A lesser-known but genuinely powerful feature of the BIP39 standard is the optional passphrase, sometimes informally called a "25th word" (even though, technically, it can be any string of characters, not just a single word from the standard list). When a passphrase is added, it's combined with the seed phrase during the key-derivation process to produce an entirely different, separate set of wallets than the seed phrase alone would generate.
This has two genuinely useful practical applications. First, it adds a meaningful layer of protection: even if someone obtains your physical seed phrase backup, without also knowing the passphrase, they cannot access funds protected this way; provided the passphrase itself is also strong and not easily guessed. Second, it enables a deliberate security technique known as a decoy wallet (or "plausible deniability" wallet): the base seed phrase, used without any passphrase, can hold a small, modest amount of funds, while the true, larger holdings live behind a specific, separately memorized passphrase; meaning that even under coercion, a holder could reveal the base seed phrase alone without exposing their full holdings.
It's worth treating this feature with real caution despite its power: a passphrase that's forgotten, or recorded incorrectly somewhere, is just as capable of permanently and irrecoverably locking funds away as losing the seed phrase itself; there is no way to brute-force a forgotten passphrase any more than there's a way to brute-force a lost seed phrase, given the scale of randomness discussed throughout this series.
Storage: Doing Better Than Paper
Our private keys article touched on paper wallets and their physical vulnerabilities; fire, water damage, and simple loss chief among them. Because a seed phrase represents the entirety of a holder's funds in a uniquely concentrated, portable form, the cryptocurrency community has developed several storage approaches specifically aimed at addressing paper's weaknesses.
Metal backups; typically stainless steel plates engraved, stamped, or assembled from individual letter tiles; are specifically designed to survive house fires, flooding, and general physical degradation far better than paper or ink ever could. Products like the Cryptosteel Capsule and Billfodl are widely used examples of this approach.
Shamir's Secret Sharing, standardized for cryptocurrency use through SLIP39, takes a meaningfully different approach: rather than backing up one complete seed phrase in one place, it mathematically splits the underlying secret into multiple separate "shares," a defined number of which (say, any 3 out of 5) are required to reconstruct the original seed, while any smaller number of shares, on their own, reveal nothing useful whatsoever about the original secret. This is conceptually closely related to the multisig and MPC custody approaches discussed in our custody article, applied specifically to seed phrase backup rather than transaction signing; distributing the single point of failure across multiple separate, independently stored locations.
Common Mistakes Worth Naming Directly
Given how much rests on a properly handled seed phrase, it's worth being explicit about the mistakes that account for the overwhelming majority of real-world losses, several of which echo themes from our previous articles but deserve restating plainly here.
Storing it digitally. A photo, a cloud note, a password manager entry, or an email draft containing a seed phrase is exposed to exactly the kind of remote compromise that a physical, offline backup was specifically designed to avoid.
Entering it into a website or "verification" tool. No legitimate wallet provider, exchange, or support representative will ever need a customer to type their seed phrase into a web form, a chat window, or a "wallet verification" tool. This single piece of social engineering accounts for a substantial share of real-world theft, and is worth treating as an absolute, unconditional rule rather than a general guideline.
Single points of physical failure. A single paper or metal backup stored in only one location remains vulnerable to fire, flood, theft, or simple loss; exactly the scenario that multi-share approaches like SLIP39, or simply maintaining multiple geographically separated backups, are specifically designed to mitigate.
Sharing for "safekeeping." Handing a seed phrase to a friend, family member, or anyone else for safekeeping reintroduces precisely the third-party trust risk that self-custody, as discussed in our custody article, was meant to eliminate in the first place; a meaningfully different (and generally less accountable) arrangement than a properly configured multisig or SLIP39 split specifically designed for shared custody.
Bringing It Together
A seed phrase is, fundamentally, a carefully engineered translation layer; turning an otherwise unwieldy block of cryptographic randomness into something a human being can plausibly write down, store, and recover from, while still preserving the mathematical guarantees the rest of this series has explored in depth. To summarize:
- A seed phrase is generated from genuine cryptographic entropy, combined with a built-in checksum, and mapped onto a standardized 2,048-word list defined by BIP39
- The wordlist itself was deliberately designed to minimize transcription errors across multiple languages
- An optional passphrase (the "25th word") adds an extra layer of protection and can enable decoy wallet setups, at the cost of introducing its own, equally unforgiving loss risk
- Metal backups and Shamir's Secret Sharing (SLIP39) address the physical and single-point-of-failure weaknesses of a simple paper backup
- The overwhelming majority of real-world losses stem from practical mistakes; digital storage, phishing, single points of failure, and misplaced trust; rather than any weakness in BIP39 itself
Combined with our earlier articles on private keys and custody, the full picture is now in place: a seed phrase is where the abstract cryptographic security explored throughout this entire series finally meets the very physical, very human responsibility of actually keeping something safe.
Recap
A seed phrase is a list of 12–24 words that acts as the master backup for a crypto wallet. It can recreate all of the wallet’s private keys, meaning it grants full control over the associated assets.
Unlike passwords in traditional systems, seed phrases are never stored by a company or recoverable through customer support.
Tag System
The tags found in our glossary are there to help you better understand presented definitions. They showcase how certain concepts integrate and interact within the ecosystem.
Rectangular tags signal a concept related to Blockchain
BlockchainThink of blockchain as a public notebook that everyone owns a copy of. Whatever gets written in it is permanent and visible to all.Keep learning as a technology. Whereas rounded tags represent Cryptocurrency
CryptocurrencyCryptocurrency, often called “crypto,” is a form of digital currency that uses cryptography (advanced math and code) to keep it secure.Keep learning in more of a financial aspect. You’ll also see rectangular dashed tags for Web3
Web3Web3 is the idea of a decentralized internet powered by blockchain.Keep learning and rounded dashed tags for DeFi
DeFiDeFi stands for Decentralized Finance. It refers to a collection of applications and platforms built on blockchain that allow people to transact without banks.Keep learning specifically.
Learn more about the relationship between all the tags and their respective concept with our Free Interactive Courses.
FAQ
Is a seed phrase the same as a private key?
Not exactly. A seed phrase is a human-readable backup that can generate many private keys. Think of it as the source from which all your wallet’s private keys are derived.
Why are seed phrases made of words instead of random characters?
Words are easier for humans to write down and verify correctly. They follow a standardized system (like BIP39) so wallets can reliably convert them back into cryptographic keys.
Can I change my seed phrase if it’s compromised?
No. A seed phrase itself cannot be changed. If it’s exposed, the safest option is to move your funds to a new wallet with a brand-new seed phrase as quickly as possible.
Should I ever enter my seed phrase online?
Almost never. You should only enter it when intentionally restoring a wallet in trusted wallet software. Legitimate services, support agents, or dApps will never ask for it.
Is it safe to store my seed phrase digitally?
Offline storage is generally safest. Digital storage (password managers, encrypted files) can be convenient but increases exposure to hacking. Plain text storage on phones or computers is strongly discouraged.
What happens if I lose my phone but still have my seed phrase?
You can restore your wallet on a new device by importing the seed phrase. Your assets are not tied to the device, only to the phrase.
Can one seed phrase control multiple wallets or addresses?
Yes. A single seed phrase can generate many addresses and accounts. This allows users to organize funds for different purposes without managing multiple backups.
What’s the biggest mistake beginners make with seed phrases?
Sharing them; often due to phishing or fake support scams. Anyone with the seed phrase has complete and irreversible control over the wallet.
More Crypto fundamentals
Altcoin season
Altcoin season is a market phase when alternative cryptocurrencies outperform Bitcoin, often seeing rapid price increases.
Keep learningBitcoin
Bitcoin is a decentralized digital currency that enables secure peer-to-peer transactions without relying on a central authority.
Keep learningAirdrops
Airdrops are free distributions of cryptocurrency tokens to wallets, often used to promote projects, reward users, or encourage adoption.
Keep learningSatoshi Nakamoto
Satoshi Nakamoto is the pseudonymous individual or group who created Bitcoin and authored its original whitepaper.
Keep learning




