Guides · Crypto

How to back up a Bitcoin or crypto seed phrase without trusting one person or location

A seed phrase is a single point of failure. If one person has it written down somewhere, that person — or whatever happens to that piece of paper — is your entire risk model. Threshold sharing fixes that.

10 min read · Updated 2026-05-25

TL;DR

Split your 12- or 24-word BIP39 seed phrase into N portions using Shamir's Secret Sharing (2-of-3 or 3-of-5 are sensible for personal use). Place portions in physically separate locations: home safe, bank deposit box, trusted family member, metal backup plate in storage. Recovery requires reaching the threshold; theft of a single portion reveals nothing. Rehearse recovery before you need it.

Why a seed phrase is different from a password

A BIP39 seed phrase is the master key to a wallet. Whoever holds the phrase can recreate the wallet on any device and move every asset in it. There is no "forgot password" link, no provider to call, no recovery email. It is also irrevocable — there is no way to rotate a leaked seed without moving every coin to a new wallet.

That means a seed phrase backup has to satisfy two opposing requirements simultaneously:

A single copy fails the first test. A copy held by one trusted person fails the second. A copy backed up to a cloud account fails both, slowly, over time.

Why not just multisig?

Native multisignature wallets (e.g. 2-of-3 multisig on Bitcoin) are a good fit when you have the technical chops to manage multiple hardware wallets and the patience to pay slightly higher fees on every transaction. They're a different security model: signing requires the quorum, not just recovery. That's stronger.

But multisig has tradeoffs that make it the wrong tool for many holders:

Shamir-splitting a seed phrase gives you the backup property of multisig — no single point of failure — without changing how the wallet operates day to day. Use multisig if you want signing-time quorum and have the operational maturity. Use Shamir for backup if you want resilience without changing the wallet.

You can also combine them: a 2-of-3 multisig wallet where each key's seed phrase is itself split 2-of-3 with Shamir, for backup. Belt and suspenders, but appropriate for sums where "what if all three hardware wallets are destroyed in one fire" is a real concern.

Picking a threshold for personal use

2-of-3

Three portions, any two recover. Survives loss of any single portion. Good for individuals with one or two trusted helpers.

3-of-5

Five portions, any three recover. Survives loss of two simultaneously (house fire and a helper unreachable). Good when your network of trustworthy holders is wider and you want belt-and-suspenders redundancy.

Why not 1-of-N?

A 1-of-N "split" isn't a split — it's N copies. Every holder has full access. You've multiplied the attack surface without distributing trust.

Why not N-of-N?

Maximum collusion resistance, zero fault tolerance. One lost portion loses the wallet. Almost never the right answer for backup.

Where the portions should go

The locations matter as much as the math. The goal is independent failure: any single bad event should be below threshold.

seed phrase witness · barrel · ocean spider · oxygen · ridge · · · 24 words · · · split Home safe fireproof, anchored Bank deposit box different city Trusted family different household Attorney/fiduciary estate-tier custody Storage facility metal backup plate any 3 of 5 reconstruct the seed
Each portion lives in a different failure domain. A house fire is one location. A bank closing is one location. Two lost simultaneously is still above threshold.

Locations that work well

Locations that look fine but fail

Storage media: paper vs. metal vs. digital

Paper

Cheap, easy to print or write by hand. Fails to fire, flood, mildew, rodents. Fine for short-term or supplementary storage; suspect for primary custody on a multi-decade horizon.

Metal backup plates

Steel plates with stamped or engraved letters (Cryptosteel, Billfodl, generic punch-stamped washers). Survives fire and water. The right primary storage for a long-lived split.

Each plate stores one portion. Two-of-three becomes three plates in three locations. A burglar finding one plate sees a sequence of words that looks like a partial seed but reconstructs to nothing.

QR code on paper

Good middle ground. Easier to import back into shattr's decrypt tool than typing by hand, and removes transcription risk. Print on durable paper; laminate. Don't store the QR online.

Digital portions on a personal-vault device

If a holder really wants a digital copy, use a personal password manager with a hardware-key unlock and never sync the entry to a cloud account that's accessible without that key. The portion is mathematically useless alone, but you still don't want to make collection trivial.

Generating the split safely

The brief window when your unsplit seed phrase exists on a computer is the riskiest part of the whole exercise. Some habits that meaningfully reduce risk:

  1. Use shattr's create-share tool — it runs in your browser, doesn't transmit the secret, and is SRI-pinned so the script can't be silently swapped.
  2. Do it on a freshly booted, offline device if the value justifies it. Tails Live, a fresh Ubuntu USB, or a hardware-wallet vendor's air-gapped flow are all fine.
  3. Close all other browser tabs and quit other apps while the secret is in memory.
  4. Write or stamp the portions immediately. Don't leave them on disk. Don't print to a shared printer.
  5. Restart or shut down the device when you're done. The unsplit phrase shouldn't outlive the splitting session.

If you're splitting a seed for a wallet that holds significant funds, send a small amount first, then split the seed, then rehearse recovery to a watch-only wallet. Only after that's verified should you treat the split as authoritative.

Recovery rehearsal — once a year, minimum

A backup that's never been tested is hope, not a backup. Annually:

  1. Retrieve the threshold number of portions.
  2. Reconstruct the seed phrase using shattr's decrypt tool on an offline device.
  3. Verify the seed matches your live wallet — e.g. by importing it into a watch-only wallet on the same device and confirming the first receive address matches.
  4. Wipe the device.
  5. Return the portions to their original locations.

If a portion is unreadable, illegible, or its holder has changed circumstances, treat it as a rotation event: regenerate fresh portions, redistribute, retire the old ones.

The estate-planning version

If part of your reason for splitting the seed is that someone needs to inherit the wallet, the rules tighten:

What Shamir-splitting a seed does not protect against

Split your seed in your browser

shattr's create-share runs locally. The phrase never leaves your machine; you walk away with N portions to place wherever you like.