Here is the brutal truth that nobody in crypto wants to talk about at dinner parties: if you die tomorrow and nobody knows your seed phrase, your Litecoin is gone forever. Not frozen, not locked, not in some kind of probate limbo — gone. Burned. Mathematically unrecoverable. The coins will sit at your address for eternity, visible to anyone who looks at the blockchain, but permanently untouchable.
An estimated $140 billion or more in cryptocurrency is believed to be permanently lost, much of it because holders died without transferring access to their keys. That number grows every year. Car accidents, heart attacks, strokes — death does not wait for you to finish setting up your inheritance plan. And unlike a bank account, a brokerage, or a house with a deed, there is no institution that can step in and grant access to the rightful heirs.
This guide covers five concrete methods for passing your Litecoin to heirs, from dead-simple sealed envelopes to sophisticated multisig setups. Each has tradeoffs. None is perfect. But doing nothing is the worst option of all.
Traditional assets have institutional backstops. If you die with money in a bank, your executor presents a death certificate and the bank releases the funds. If you die with stocks in a brokerage, the estate goes through probate and the shares transfer. The institutions are custodians — they hold your assets on your behalf and have processes for succession.
Self-custodied cryptocurrency has no custodian. The entire point is that nobody else controls your funds. Your 12 or 24-word seed phrase is the only access key, and it exists nowhere except where you put it. If that phrase is lost, there is no password reset. There is no identity verification process. There is no court order that can compel a blockchain to release funds. The cryptography does not care about your death certificate.
This creates a paradox: the very feature that makes crypto valuable (self-sovereignty) is what makes inheritance planning so difficult. You need to make the seed phrase accessible to your heirs without making it accessible to thieves. Every method below is a different approach to solving this problem.
The simplest approach. Write your seed phrase on paper, seal it in an envelope, and place it in a bank safe deposit box that your executor or heir can access. Include instructions: which wallet software to use, what the seed phrase is, and step-by-step recovery instructions for someone who has never touched crypto.
Advantages: Zero technical knowledge required. Low cost. Your heirs do not need to understand Shamir's Secret Sharing or multisig. They just need to open an envelope and follow instructions.
Risks: Single point of failure. If the bank branch floods, burns, or the safe deposit box is somehow compromised, everything is lost. Bank employees technically have access to the vault. Safe deposit boxes are not insured by FDIC (a fact most people do not know). And if you forget to update the letter after generating a new wallet, the old seed phrase is useless.
Pro tip: Never put "Bitcoin seed phrase" or "crypto wallet recovery" on the envelope. Label it something bland like "insurance documents" or "family records." Anyone who understands what a seed phrase is and gains access to the box can steal everything instantly. This is not like stealing a check that can be cancelled — a seed phrase transfer is irreversible.
Shamir's Secret Sharing (SSS) is a cryptographic technique that splits a secret into multiple parts (called "shares"), where only a specific threshold of shares is needed to reconstruct the original. A common setup is 3-of-5: you create five shares and any three of them can reconstruct your seed phrase. No individual share reveals any information about the original secret.
You could distribute shares to five trusted people or locations: one to your spouse, one to your lawyer, one in a bank safe deposit box, one to a trusted family member, and one stored in a separate geographic location. Any three of them working together can recover your wallet. No single person or location has enough information to steal your funds.
Advantages: Eliminates single point of failure. High security — compromising one or even two shares reveals nothing. Flexible threshold (2-of-3, 3-of-5, 4-of-7, etc.).
Risks: Complexity. Your heirs need to understand what SSS is, find at least three shares, and use software to recombine them. If you die and your family has never heard of Shamir's Secret Sharing, they may not even realize what those random-looking cards are. You also need to ensure the SSS implementation you use is reliable — some wallet manufacturers have built-in support (Trezor calls it "Shamir Backup"), while doing it with third-party software introduces trust assumptions.
Read our wallet guide for which hardware wallets support Shamir backup natively.
A multisig (multi-signature) wallet requires multiple private keys to authorize a transaction. A common inheritance setup is 2-of-3: three keys are created, and any two are needed to move the funds. You hold one key, your spouse holds another, and a lawyer or trusted third party holds the third.
During your lifetime, you and your spouse together can move the funds (you probably want this for joint financial decisions anyway). If you die, your spouse and the lawyer can move the funds. If your spouse also dies, the lawyer alone cannot steal the funds — they would need to find one of the other two keys.
Advantages: The funds are spendable during your lifetime without reconstructing anything. There is no single seed phrase that unlocks everything. Multisig is a native blockchain feature, not a software hack — the security comes from the protocol itself. Services like Casa and Unchained offer guided multisig setup specifically for inheritance planning.
Risks: More complex to set up than a single-key wallet. Each key holder needs to properly secure their key. If two keys are lost or compromised simultaneously, the funds are either permanently locked or stolen. Your heirs need to understand how to use a multisig wallet, which is more involved than simply entering a seed phrase.
If you use a hardware wallet (Ledger, Trezor, etc.), you can document both the device PIN and the optional BIP39 passphrase (sometimes called the "25th word") in separate secure locations. The hardware wallet itself goes to your heir, the PIN is stored in one location, and the passphrase in another.
This creates a three-factor system: the physical device + the PIN + the passphrase. An heir needs all three to access the funds. If the device is lost or damaged, the seed phrase (stored separately, perhaps via Option 1 or 2) can restore the wallet on a new device — but only with the correct passphrase.
Advantages: Leverages hardware you already own. The passphrase adds a layer of security even if the seed phrase is compromised. Multiple recovery paths (device+PIN+passphrase, or seed phrase+passphrase on new device).
Risks: Hardware wallets can fail, especially if stored for years without use. Firmware may become obsolete. Your heir needs to know what a hardware wallet is and how to operate it. If you update your passphrase and forget to update the documentation, the old passphrase leads to an empty wallet (BIP39 passphrases generate entirely different wallets, so a wrong passphrase does not give an error — it opens a different, empty wallet).
Companies like Casa and Unchained Capital offer inheritance-specific crypto custody products. These typically combine multisig technology with legal and operational support. Casa's inheritance protocol, for example, uses a 3-of-5 multisig where the company holds one key, you hold two, and your heir is given one upon your death (verified by a death certificate and legal process).
Advantages: Professional setup and ongoing support. The company handles the technical complexity. Legal integration (death certificate verification, estate documentation). Your heirs interact with a company, not raw cryptography. Regular key health checks ensure nothing has degraded over time.
Risks: Ongoing subscription cost ($250-500+ per year). Counterparty risk — if the company goes out of business, you need to handle the remaining keys yourself. Trust assumption — you are trusting the company not to collude with your heir or an attacker. And if the company's key management practices are compromised, that is one of the multisig keys exposed.
| Method | Security | Cost | Complexity | Single point of failure? | Heir needs crypto knowledge? |
|---|---|---|---|---|---|
| Sealed letter in safe deposit box | Low-Medium | $50-200/year (box rental) | Very low | Yes — the letter | Minimal (follow instructions) |
| Shamir's Secret Sharing (3-of-5) | High | Free (DIY) to $50 (metal plates) | Medium-High | No — threshold system | Moderate (recombination) |
| Multisig wallet (2-of-3) | High | Free (DIY) to $250+/year (service) | High | No — multiple keys | Moderate (multisig TX signing) |
| Hardware wallet + documented PIN/passphrase | Medium-High | $70-200 (device) + storage | Medium | Partially — device can fail | Moderate (hardware wallet use) |
| Commercial service (Casa, Unchained) | High | $250-500+/year | Low (for you) | No — managed multisig | Low (guided process) |
Your inheritance plan needs a legal component, not just a technical one. A seed phrase in a safe deposit box is useless if your heir does not have legal authority to open the box. Consider these legal instruments:
Consult an estate attorney who understands digital assets. This is a specialized area — most general-practice attorneys have never dealt with cryptocurrency in a will or trust. The Chamber of Digital Commerce maintains a directory of crypto-savvy legal professionals.
The following approaches seem convenient but create serious security or reliability problems:
For guidance on choosing the right wallet for your inheritance setup, see our comprehensive wallet guide. For privacy considerations when setting up inheritance for MWEB-shielded funds, additional steps may be needed to document extension block details.
If nobody has access to your seed phrase or private keys, your Litecoin becomes permanently inaccessible. The coins remain visible on the blockchain forever but can never be moved. There is no recovery mechanism, no customer support, and no legal process that can override the cryptography. This is why inheritance planning is essential for any self-custodied crypto.
No. Without the seed phrase (or the private keys derived from it), there is no way to access a self-custodied wallet. Hardware wallet PINs can be brute-forced in theory, but devices like Ledger reset after three failed attempts, destroying the keys. The 24-word seed phrase generates a 256-bit master key — brute-forcing that would take longer than the age of the universe with current technology. For exchange-held crypto, heirs can go through the exchange's legal succession process, but self-custodied funds are unrecoverable without the seed.
For most people, the best balance of security and practicality is either a multisig setup (2-of-3 keys between yourself, your spouse, and a lawyer/trusted third party) or Shamir's Secret Sharing (splitting your seed into 3-of-5 shares distributed across trusted people and locations). Both eliminate single points of failure. Combine either approach with a legal will or trust that references the crypto assets and provides instructions for accessing them. Commercial services like Casa offer managed solutions if you prefer professional support.