Solana Wallet Recovery: Restore a Phantom Seed Phrase
Lost access to a Solana wallet? Phantom and Solflare use a 12-word BIP39 phrase with ed25519 derivation. How to recover it safely — and why the path matters.
Solana wallets like Phantom and Solflare feel different from Bitcoin and Ethereum wallets under the hood — they use a different kind of key — but the recovery phrase is the familiar 12-word BIP39 standard. That means if you've lost part of it, the same recovery techniques apply.
Recover on the homepage tool — it now derives Solana addresses, entirely in your browser.
What's the same, and what's different
The same: the seed phrase is standard BIP39. The words come from the same 2048-word list, carry the same checksum, and are recovered the same way — a missing word, a typo, or the wrong order are all fixable.
What's different: how the phrase becomes an address.
- Bitcoin and Ethereum use secp256k1 keys (BIP32 derivation).
- Solana uses ed25519 keys with SLIP-0010 derivation.
So a Solana address is the base58 encoding of an ed25519 public key — not a hash160 or a keccak hash. Our tool implements the ed25519 path, so it can confirm a recovered phrase against your Solana address.
The derivation-path gotcha
This trips up almost everyone recovering Solana. Different wallets derive the first account from different paths:
- Phantom:
m/44'/501'/0'/0' - Solflare / Ledger: often
m/44'/501'/0' - Some older/sollet wallets: other variants
That means the same seed phrase produces different addresses in different
wallets — and a "missing balance" after restoring is usually a path or account
mismatch, not lost funds. If a recovered phrase doesn't match your address, try
additional accounts (m/44'/501'/1'/0', 2', …), which is how Phantom adds wallets.
How to recover a Solana wallet
- Open the recovery tool and choose 12 words (Phantom's default; use 24 if your wallet used that).
- Enter the words you know; leave any unknown slot blank.
- Paste your Solana address so the tool can confirm the exact phrase. (Solana addresses have no fixed prefix, so the tool checks them among the chains it derives.)
- Run it. With the address, you get a confirmed match; without one, you get the checksum-valid candidates to try.
For typos, enable fuzzy matching. For an uncertain order, use order recovery.
Stay safe
- Do it offline when you can — the tool needs no connection.
- Never share your phrase or paste it into a site that transmits it; that's the #1 way Solana wallets are drained. See is it safe to enter your seed phrase online.
- After recovering on an online device, move funds to a fresh wallet.
Your Phantom words are standard BIP39 — recoverable with the same maths as any other wallet, just pointed at Solana's curve. Start from the full recovery guide if you need the bigger picture.