Digital Asset Self-Custody HubGet the App
← Back to Self-Custody Hub

What Is a Seed Phrase?

You set up a new wallet and a screen shows you twelve ordinary words — something like “orbit, cactus, velvet, harbor” — with an instruction to write them down and never type them anywhere else. That list is a seed phrase, also called a recovery phrase: a human-readable backup that can be used to reconstruct the cryptographic keys of a compatible wallet.

Why words instead of raw code

A private key on its own is a long, dense string of characters that's easy to mistype and hard to visually double-check. A seed phrase encodes that same key as a sequence of words pulled from a standardized list, in a specific order. It's the exact same underlying data, just formatted so a person can write it legibly, read it back aloud, and catch an error if a word looks wrong. The wallet software converts the words back into the raw key whenever it needs to, following BIP-39, the technical standard most wallets use for this word-based encoding.

How it relates to the key it backs up

A seed phrase typically doesn't just back up one private key — most wallets use it to mathematically derive an entire sequence of keys and addresses, a scheme standardized in BIP-32. That means one written backup can restore access to everything the wallet manages, on any compatible wallet software, on any device. That's convenient for recovery, but it also means the phrase carries the same weight as every key it can regenerate — not a lesser copy of it.

What happens if it's lost or exposed

Lost with no other backup and no device still holding the derived keys, there's no way to reconstruct it — no company keeps a copy to restore from. Exposed to someone else, the opposite problem applies: they can regenerate every key it controls and move the assets before you do, even if your device is untouched. Both outcomes are final, which is why the standard advice is to write it down on paper or metal, store it somewhere private, and never enter it into a website, app, or message, no matter who's asking.

For where to store a phrase like this and how many copies makes sense, see Backup & Recovery, and for the underlying credential it represents, see What Is a Private Key?