Key point: A seed phrase can recreate several keys; a private key controls a particular account.

A private key authorises actions for a particular blockchain account, while a seed phrase can recreate a set of private keys in a compatible deterministic wallet. That usually makes the seed phrase the broader secret, but the exact recovery result depends on the wallet standard, derivation method and any added passphrase. Neither item should be shared with a website, support agent or person offering to fix the wallet.

Start with the authority each item grants

Key point: A private key signs for its account, and a local password cannot rotate it.

A private key is secret data used to produce signatures that authorise transactions for the account derived from it. On Ethereum, an externally owned account is controlled by its private key. Anyone who obtains that key can generally sign as that account, subject to the network and wallet implementation; changing an app password does not change the exposed blockchain key.

Key point: A public address can receive assets but may reveal transaction history.

A public address is different. It identifies a destination that can receive assets and is derived from public-key information; it is not the secret needed to sign. Sharing an address does not hand over signing authority, although a public blockchain may let other people inspect balances and transaction history associated with it. Treat an address as public but potentially privacy-revealing.

🔐 One recovery phrase can recreate many keys

Key point: Deterministic wallets can derive many account keys from one recovery phrase.

BIP-39 describes a mnemonic sentence, commonly called a seed or recovery phrase, that encodes computer-generated randomness and is converted into a binary seed. That seed can feed a deterministic wallet system such as BIP-32, which derives many keys from one starting point. In that common design, exposing one recovery phrase can expose multiple accounts rather than only one address.

Key point: A valid phrase format does not guarantee identical accounts in every wallet.

The familiar 12- or 24-word format is not a sentence a user should invent. Under BIP-39, valid lengths can include 12, 15, 18, 21 or 24 words and include a checksum, but a valid-looking phrase is not proof that every wallet will reproduce the same visible accounts. Wallets may use different derivation paths, supported networks or account-discovery rules.

Key point: Separately imported keys may sit outside the main seed backup.

A wallet can also contain a separately imported private key. Depending on the software, that imported account may not be derived from—and therefore may not be recoverable from—the wallet's seed phrase. Before treating one backup as complete, identify whether every displayed account is derived, imported, hardware-backed, contract-controlled or watch-only.

Passwords, addresses and signatures solve different problems

Key point: Passwords and PINs protect local access, not an already exposed recovery secret.

A wallet password or device PIN commonly protects access to the wallet application or encrypts local key material. It can stop someone from casually opening that copy of the wallet, but it is not a replacement for the underlying recovery secret. If another person already has the seed phrase or private key, changing only the local password usually does not remove their signing ability.

Key point: Map credentials by signing authority, not by how often they appear.

It is understandable that the password typed every day feels like the main lock. The uncomfortable reality is that the rarely seen recovery phrase may carry broader authority. Our editorial interpretation is that a backup plan should be organised by what can sign or regenerate keys, not by which credential appears most often on screen.

Key point: Signatures can authorise meaningful actions even without exposing the key.

A transaction signature is evidence that the relevant key authorised a specific message; it should not reveal the private key itself. However, a signature request can still authorise meaningful actions. Read the network, account, contract or recipient and the stated action before signing, and use the token-approval guide when the request concerns an ERC-20 spending allowance.

What to do when a secret may be exposed

Key point: Address disclosure is a privacy issue, not the same as secret compromise.

If only a public address was disclosed, there is normally no signing secret to rotate solely for that reason. Review the privacy impact and watch for impersonation attempts, but do not enter a recovery phrase into a supposed checker. A legitimate balance or transaction lookup does not require the secret that can move the assets.

Key point: Treat a copied private key or recovery phrase as compromised authority.

If a private key or recovery phrase may have been copied, photographed, entered into an untrusted page or sent to another person, treat the affected authority as compromised. A new app password cannot make an exposed key unknown again. Use verified instructions from the wallet provider to create a genuinely independent wallet on a trusted device and plan any asset movement with the correct network, destination and fees.

Key point: Verify the destination and result before moving the rest of the assets.

Move cautiously because a rushed response can add a wrong-network transfer or malicious approval to the original problem. Confirm the receiving address through a trusted display, consider a small test when the network and asset support it, and verify the result before moving the remainder. If assets disappear whenever fees arrive or transactions occur without consent, stop following unsolicited recovery advice and use the provider's independently reached compromise channel.

✅ Build a recovery map before you need one

Key point: Audit whether each account is derived, imported, hardware-backed or watch-only.

List each wallet without writing its secret into the worksheet. Record the wallet type, supported networks, whether accounts are derived or imported, whether a hardware device is involved, and where the official recovery instructions are stored. For each account, note whether the seed backup actually covers it and whether an additional BIP-39 passphrase or other factor is required.

Key point: A BIP-39 passphrase error can produce a different, empty-looking wallet.

A BIP-39 passphrase creates a different seed from the same mnemonic words; every passphrase produces a valid seed, so a typing error can open an empty-looking wallet rather than display an obvious error. Do not add one casually. Confirm that every intended recovery tool supports it, protect the passphrase separately, and understand that losing it can make the target wallet unrecoverable even when the words are correct.

Verify one backup without exposing it

Key point: Correct one recovery map without entering its secrets into another service.

Choose one wallet and use its official documentation to label the public address, local password, private-key source and recovery method. Then check whether any imported account or added passphrase sits outside the main backup. The concrete next step is to correct that recovery map—without typing the secret into a website, message or cloud document.

Sources and dates

  • Bitcoin Improvement Proposals, BIP-39: Mnemonic code for generating deterministic keys — mnemonic generation, checksum and conversion to a binary seed; checked 22 September 2026 (Korea time).
  • Bitcoin Improvement Proposals, BIP-32: Hierarchical Deterministic Wallets — deriving a tree of key pairs from one seed; checked 22 September 2026 (Korea time).
  • Ethereum.org, Ethereum accounts — externally owned accounts, public addresses, private keys and transaction signing; checked 22 September 2026 (Korea time).
  • Wallet recovery behaviour varies by software, device, network, derivation path and account type. This explainer does not ask for or validate any secret and is not a guarantee that a particular wallet can be recovered.