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

Seed Phrase vs. Private Key Backup

These two backup formats get treated as the same thing, but they store different data. A seed phrase is a human-readable sequence of words that can be used to reconstruct a wallet's keys. A raw private key backup is the literal key value itself, usually written as a long string or encoded in a QR code. Both can restore access to the same wallet, but they behave very differently when a person has to copy them by hand, and that difference shows up most during backup and recovery rather than during everyday use.

Seed Phrases

  • Word-Based Encoding: a fixed list of common words represents the underlying key data, in a specific order that matters as much as the words themselves.
  • Easier Manual Transcription: standard words are simpler to write down and read back correctly than a long string of characters, since a misread letter is more obvious.
  • Built-In Error Checking: many word lists include a checksum, so a single mistyped or misordered word is often caught before it causes a problem later.

Private Key Backups

  • Direct Key Value: the backup is the exact key data itself, with no intermediate word encoding standing in for it or making it easier to check by eye.
  • Higher Transcription Risk: a single wrong character in a long string can produce a different, unusable key with no built-in warning that something is off.
  • Format Variation: different wallets expect this data as plain text, a specific file format, or a scannable QR code, with little consistency between them from one wallet to the next.

The real distinction is readability and error tolerance: a seed phrase is built for a person to copy by hand with some margin for mistakes, while a raw private key backup is the exact value a wallet needs, with little room for transcription error. Knowing which format a given wallet expects avoids most of the mistakes people make when copying either one. See Backup & Recovery for how to store either safely.