Wallet, private key, and seed phrase
A wallet doesn't hold coins, it holds the keys to them. Whoever knows the seed phrase has full access, and whoever loses it loses everything, permanently.
A wallet isn't a purse, it's a keyring. The coins sit on the blockchain; your wallet just holds the key that lets you control them.
That key generates the public address you can hand out so someone can send you something. The private key stays secret. Whoever has it can move everything, regardless of who it should belong to.
The seed phrase, usually twelve or twenty-four words, is the backup of your entire keyring. Everything can be restored from it. That makes it equivalent to your entire holding.
Two hard rules follow. The words go on paper or metal, never into a photo, a cloud, a notes app, or a message. And any request to type them in anywhere is an attempted scam. Every single time, without exception.
Technically, the method rests on asymmetric cryptography. A randomly generated private key produces a public key via a one-way function, and the address is derived from that. A transaction is signed with the private key, and the signature can be verified without knowing the key. The key itself never leaves the wallet.
Modern wallets are hierarchically deterministic: from a single seed value, represented as a sequence of words from a standardized dictionary, any number of key pairs can be derived. That's why backing up this one value is enough to cover every address in the wallet. The word representation includes a checksum, so an incorrectly recorded order is generally detected.
For custody, a distinction is needed between hot wallets connected to the internet and hardware wallets, where the key never leaves a separate device and transactions are confirmed there. For larger amounts, splitting things up further makes sense, for instance through multi-signature schemes requiring several independent keys to authorize a release. The price of each of these measures is added complexity, which can itself become a source of loss.
Summary
- The wallet holds keys, not coins.
- The seed phrase goes on paper or metal, never digitally.
- Any request to type in the words is a scam.
Did you get it?
What does a wallet actually hold?
The private keys. The balances themselves sit on the blockchain.
Why is backing up the seed phrase enough to cover every address?
Because modern wallets are hierarchically deterministic and derive every key from that one value.
When are you allowed to type in your seed phrase?
Only when restoring it into your own wallet. Any other request is an attempted scam.
Related
- Finding a reputable brokerStage 1
- Comparing brokersStage 1
- If your broker goes bankruptStage 1