Skip to content

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.

Published on 3 min read

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

  1. Open the recovery tool and choose 12 words (Phantom's default; use 24 if your wallet used that).
  2. Enter the words you know; leave any unknown slot blank.
  3. 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.)
  4. 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.

Recover your Solana wallet →

Related articles

Monero uses a 25-word seed, not BIP39 — its own wordlist, checksum, and keys. How the Monero mnemonic works, and how to identify and recover yours safely.
Electrum uses its own seed format, not BIP39 — which is why other wallets call it 'invalid'. How Electrum seeds work, and how to identify and restore yours.
A calm, step-by-step guide to recovering a BIP39 seed phrase when words are missing, misspelled, or out of order — safely and entirely offline.