Glossary

Derivation Path

A derivation path is the structured route a wallet follows to generate a specific private key and address from your seed phrase. Modern wallets are hierarchical deterministic, meaning one seed can produce a practically unlimited tree of keys; the derivation path, written like m/44'/0'/0'/0/0, specifies which branch of that tree a particular address comes from.

The numbers in the path have conventional meanings defined by standards such as BIP-44: one segment identifies the standard, another the coin type (0 for Bitcoin, 60 for Ethereum), then the account number, and finally the address index. For example, a wallet restoring an Ethereum account typically derives it at m/44'/60'/0'/0/0, and generates further addresses by increasing the last number.

Most users never see derivation paths, but they matter when restoring a wallet in different software. If you enter a correct seed phrase and see a zero balance, the most common cause is that the new wallet is looking down a different path than the old one, not that the funds are gone; switching the path or account settings usually reveals them. A common misconception is that an empty restore means the seed was wrong or the coins were stolen, when often the wallet is simply deriving addresses in a different place.