BIP39
BIP39 Wallet
Bitcoin Improvement Proposals or BIP's are design features, inputs, ideas, information, or changes for essentially how Bitcoin works (including storage i.e. wallets).
One of these features is BIP39 (short for Bitcoin Improvement Proposal: 39). BIP39 is a standard that proposed utilizing a mnemonic phrase -- a group of easy to remember words -- to serve as a back up to recover your wallet and coins in the event your wallet becomes lost or destroyed. This is also known as a seed phrase, recovery phrase, wallet back up, etc.
Your wallet will generate this phrase for you when you create a new wallet. If you have an existing phrase, you can input it into your wallet to re-generate your wallet.
When starting a new wallet, the instructions will typically advise you to write a 12-24 word phrase down to serve as a recovery method in the event your wallet breaks or stops working.
BIP39: Mnemonic code for generating deterministic keys
Bitcoin Improvement Proposals (BIP). BIPs are documentation for features, ideas, information, changes, improvements, etc. for how Bitcoin works.
Each of these BIPs are designated by a number.
BIP39 or Bitcoin Improvement Proposal: 39 is one of the many design ideas that was approved by an economic majority of the Bitcoin community and became a standard for many popular wallets.
Again, BIP39 is the use of a mnemonic phrase -- a group of easy to remember words -- to serve as a back up to recover your wallet and coins in the event your wallet becomes compromised, lost, or destroyed.
The BIP39 documentation describes the specific steps a wallet must take (i.e. algorithm) to generate this mnemonic phrase. This includes specific requirements, structure, practices, words, etc.
In addition to its specific structure, it must utilize a specific list of words when generating your mnemonic phrase. That is known as the BIP39 wordlist.
BIP39 Word List
The words in your mnemonic phrase aren't just any random words. They are pulled from a specific list of 2048 words known as the BIP39 wordlist. Upon start up, wallets that utilize the BIP39 standard will provide you a 12-24 word phrase randomly chosen from the standard BIP39 wordlist.
In this list, the first 4 letters are unique to each word.
To clarify "unique", we mean literally the first 4 letters (not the first 4 different letters). For example the word "apple", "appl" does not come up anywhere else in the BIP39 wordlist.
For words that only have 3 letters, there is no 4th letter. For example with the word "add", there are no more letters afterwards and thus must be the word "add". The word "addict" is in the BIP39 wordlist but you would have used "addi" for "addict".
In other words, there are no two words in this list with the same first 4 characters.
That means if you have the first 4 letters, you know the rest of the word by looking for those first 4 letters in the BIP39 wordlist. Some wallets will even fill in the rest of the word once the first 4 letters are entered.
BIP39 Wallet Recovery
Remember, your coins are not stored on your wallet device. They're stored on the blockchain (i.e. a universal network) and can be accessed by utilizing your seed phrase. Your wallet stores the "access" to those coins, not the coins themselves.
If you are recovering an existing wallet, the wallet's software will ask you if you have an existing phrase or have the option to import one. You'll enter in your existing mnemonic seed phrase and voilà, your coins are recovered...right?
Well actually, it's not that simple (but it should be!). Let's go into background as to why that is.
BIP39 is Not Enough to Recover Your Coins
Unfortunately, a wallet that supports BIP39 mnemonic phrases does not mean it can recover your coins. It is only one part of the requirement.
BIP39 is like the ability to "read" and understand the seed phrase. But, your wallet also needs to understand how to "find" your coins using that 12-24 word phrase and "know" the coin your trying to find.
You must know about a compatible wallet when importing an existing seed phrase:
- If it supports the structure in which the seed phrase was originally created (i.e. seed format, e.g. BIP39)
- The derivation paths it supports (i.e. the ability to find your coins)
- The coins it supports (e.g. bitcoin, ethereum, etc.)
To understand what we mean by this, let’s first dive into what a "wallet" actually is.
Hierarchical Deterministic Wallets
Your wallet is essentially a whole bunch of numbers (that can "store" coins) linked together starting from a single random number.
That random number can be transformed (with math) into another number. That number can be transformed into multiple other numbers (and so on and so forth)
Eventually you get to a set of numbers at end of those transformations. These number can be associated with coins (by sending coins to these numbers). That's right, these numbers are your addresses.
You can think of a wallet as a tree (like an actual one in ground)
Your seed phrase is the secret recipe to create very specific seed for very specific tree.
BIP 39 is the "language" that recipe is in (so it can be read).
Coming from the seed, there's a trunk. From that trunk, there are branches. Each branch has a name (branch 1, branch 2, branch 3, etc).
Those branches also have branches (branch 1-1, branch 1-2, etc.) and those branch's branches also have branches (and so on).
And at the very end of all those branches, there are leaves. Your coins can be "stored" on those leaves (your addresses).
It can get pretty confusing right? Right.
Derivation Paths
You need some sort of "map" on to traverse through the branches and find those leaves (and thus, your coins). This "map" is known as a derivation path.
Derivation paths tell your wallet how to find your coins guiding it through the tree and are described in Bitcoin Improvement Proposals (BIP).
The most common derivation paths are described in BIP44, BIP49, and BIP84.
A derivation path has a specific notation where each level is designated by a "/" beginning with m:
m / Purpose' / Coin Type' / Account' / Change / Address
Purpose, coin type, account, change, and address are represented by numbers and are explained here.
Your wallet must support the same derivation path that you've been using (i.e. "have the map") to store your coins.
Whether a wallet supports a certain derivation path should be well documented or referenced on their website.
If another wallet does not support a derivation path that your original wallet supported, that doesn't mean your coins are lost. It simply means you're unable to access them (because it doesn't know how to find them!).
Coin Support
You might have noticed that not all wallets support all coins.
Your wallet must not only know how to find your coins but also support the coin you're trying to find.
Coin types are the cryptocurrencies (e.g. bitcoin, ethereum, etc.)
Coin support should be well documented or referenced on the wallet developer's website. Again, if a wallet does support a specific coin, it doesn't mean they are lost. You'll need to find another wallet that does in order to access them again.
Additional Standards
There are other standards such as:
- Lighting Network Daemon (AEZeed): If you're using the Lightning Network Daemon wallet, it uses a different seed scheme known as AEZeed.
- Electrum: If you're using the Electrum Wallet, it also uses a unique seed scheme.
- Satoshi Labs Improvement Proposal (SLIP 39): If you're using Trezor's parent company, Satoshi Labs, unique seed standard of Shamir Secret Shares, SLIP 39.
For these unique standards, they can only be recovered on wallets that support that standard. If your wallet does not "understand" how your seed phrase created, it will not understand how to recover it either.
Using an extended public key, you can generate billions of fresh receiving addresses ( 4,294,967,296 to be exact). This maintains your privacy, security and sanity (as there's only ever going to be one private key that can access the funds connected to those addresses.)
Links
BIP39 Wallet List - Mnemonic Seed Phrase (Updated 2023)
How To Get Your Trust Wallet Private Key (And Export) - IsItCrypto
GitHub - iancoleman/bip39: A web tool for converting BIP39 mnemonic codes
User Guide: Secret Recovery Phrase, password, and private keys - MetaMask