🎬 Scene 1 — “What is a seed?”
A seed phrase (12/24 words) is the master secret that can generate your keys. It’s not your coins — it’s the origin of your keys. Treat it like your “do-not-leak” ancient spell.
🎬 Scene 2 — “What is a derivation path?”
A derivation path is the recipe that tells the wallet which branch of keys to generate from the seed. Change the path, and the wallet walks a different branch — producing different addresses.
// Same seed + different path = different addresses seed = "twelve words ... twenty-four words" path A = m/44'/899'/0'/0/0 // eCash-style branch path B = m/44'/1899'/0'/0/0 // CashTab-style branch address(seed, path A) != address(seed, path B)
🎬 Scene 3 — Tonalli Wallet’s official derivation path (English)
Tonalli Wallet uses this derivation path:
m/44'/899'/0'/0/0
That means Tonalli derives addresses from the eCash-style branch.