Keyboard shortcuts

BTC79,450-1.68%ETH2,258.36-2.16%SOL90.81-4.29%BNB671.66-1.34%XRP1.43-1.79%ADA0.2640-3.52%DOGE0.1131-0.64%AVAX9.68-3.95%LINK10.20-4.14%DOT1.32-5.85%BTC79,450-1.68%ETH2,258.36-2.16%SOL90.81-4.29%BNB671.66-1.34%XRP1.43-1.79%ADA0.2640-3.52%DOGE0.1131-0.64%AVAX9.68-3.95%LINK10.20-4.14%DOT1.32-5.85%
BeginnerCrypto 101

What is a seed phrase?

A seed phrase is a human-readable backup of the private keys behind a wallet. Whoever has it has the money.

Last updated Nov 1, 2025, 12:00 PM UTC

A seed phrase is a sequence of ordinary English words — usually 12 or 24 — that encodes the master secret for a wallet. It is not a password. It is not recoverable. It is the wallet. Anyone who reads it can reconstruct every private key derived from it and drain every address those keys control.

From entropy to words

The standard behind most seed phrases is called BIP-39, introduced in Bitcoin in 2013 and adopted almost universally. Under the hood, the wallet generates a random number — 128 bits for a 12-word phrase, 256 bits for a 24-word phrase — and encodes it into words drawn from a fixed list of 2,048. Each word represents 11 bits of data, with a small checksum mixed in so that typos are likely to be caught.

From this seed, the wallet derives a hierarchical tree of private keys using a second standard, BIP-32. One seed can produce thousands of addresses across multiple chains, which is why the same 12 words restore your entire wallet — Ethereum, Bitcoin, Solana, and everything else — on a new device. The derivation paths are deterministic, so a Ledger and a MetaMask initialized from the same phrase will produce the same addresses in the same order.

The practical consequence is that a seed phrase is not a backup of one account. It is a backup of the entire wallet, forever.

Why the words matter

BIP-39 was designed to be resistant to human error. The 2,048-word list avoids homophones and near-duplicates. The first four letters of every word are unique, so a worn-out or smudged sheet is often still recoverable. There is a built-in checksum that rejects random word combinations.

This design is the reason seed phrases are considered human-friendly. It is also why "improving" them — translating to another language, swapping words, writing them in a personal code — usually breaks recovery. The wordlist is part of the standard. Deviations turn a reliable backup into a puzzle.

A small detail that trips people up: word order matters. "abandon ability" and "ability abandon" produce different seeds.

Storing it without losing it

Most catastrophic losses come from one of two mistakes: writing the phrase somewhere a thief can find it, or storing it somewhere that can burn, flood, or get thrown out. Both failure modes are common.

The classic answer is a metal backup — a stamped stainless-steel plate from Cryptosteel, Seedplate, or equivalent — stored somewhere physically secure. Paper is fine for testing but loses to fire and water. A photograph on a phone is a disaster waiting to happen; any app that gets read access to the camera roll can exfiltrate it.

For larger holdings, consider splitting. Shamir's Secret Sharing, supported by some Trezor models and by SLIP-39, lets you split a seed into N shares where any M of them can reconstruct it. That turns a single point of failure into a controlled distribution problem: two of three shares in three different cities is much harder to compromise and much harder to accidentally destroy than a single sheet in a drawer.

The threats that actually matter

Seed phrases get stolen in predictable ways. Users type them into a phishing website that pretends to be a wallet support page. Users store them in a password manager that later gets breached. Users let a "support agent" on Discord or Telegram talk them through "validating" their wallet. No legitimate wallet, exchange, or project will ever ask for the phrase. Ever.

Hardware wallets protect against a weaker threat model: a compromised computer. They do not protect against a user who types the seed into a fake website, or one who stores a photo of the seed in iCloud. The human is almost always the weakest link.

Why it matters

The seed phrase is where crypto's "be your own bank" promise becomes concrete. It is more powerful than a banking PIN and less forgiving than a house key. There is no customer service line that will restore a phrase written on a napkin that went through the wash. Treating the phrase with the seriousness of cash in a safe — including thinking about inheritance, what happens if you are hit by a bus, and whether your spouse knows where it is — is the table-stakes discipline of self-custody. Everything else in wallet security is downstream of this.

Related terms

More explainers