h hoge.gg
Subscribe
BTC$67,432.18+2.34%ETH$3,521.44+1.08%SOL$178.62-0.62%BNB$612.30+0.41%XRP$0.6234-0.18%ADA$0.4521+3.12%DOGE$0.1623+1.86%AVAX$38.71-1.24%LINK$17.84+0.92%HOGE$0.00004120+4.21%
BTC$67,432.18+2.34%ETH$3,521.44+1.08%SOL$178.62-0.62%BNB$612.30+0.41%XRP$0.6234-0.18%ADA$0.4521+3.12%DOGE$0.1623+1.86%AVAX$38.71-1.24%LINK$17.84+0.92%HOGE$0.00004120+4.21%
● Wallets & Exchanges

Smart-Account Wallets in 2026: Recovery and Inheritance

Account abstraction promised to kill the seed phrase, but recovery and inheritance are still self-custody's hardest problems. How smart-account wallets handle lost keys and dead owners in 2026.

The problem account abstraction still has not solved

The pitch for smart-account wallets has always been the same: they would finally kill the seed phrase. No more twelve words scrawled on a scrap of paper, no more steel plates buried in a garden, no more support tickets that begin with the words “I think I deleted it.” Account abstraction would let a wallet behave like a real account, with recovery options, spending limits and guardians, the way a bank login or an email account already does.

The strange part is that the two problems the seed phrase was invented to handle, recovery and inheritance, are the ones account abstraction has been slowest to fix. Gasless transactions, batching and passkeys arrived first because they are the features that sell wallets and win onboarding demos. Getting your money back after you lose a key, or passing it to your family after you die, is harder, less glamorous, and where most of the real value quietly disappears.

The numbers are not small. Ledger’s own research desk puts the amount of Bitcoin that is permanently lost, mostly to forgotten keys and discarded drives, at somewhere between 2.3 and 4 million coins, or roughly 11 to 18 percent of everything ever mined (Ledger Academy). Wealth managers expect trillions of dollars in assets to change hands as the first generation of crypto holders ages, and survey after survey finds that the overwhelming majority of them have no written plan for what happens to those coins when they are gone (Ledger Academy). A wallet nobody can recover is a wallet you do not fully own. A wallet nobody can inherit dies with you.

This guide walks through how smart-account wallets actually handle a lost key and a dead owner in 2026: how social recovery and guardians work, what a dead-man’s switch buys you, how passkeys change the math, where the US tax code fits in, and why the recovery feature you set up to protect yourself is also one of the largest attack surfaces in the entire wallet.

What a smart-account wallet actually is

An externally owned account, or EOA, is the account type Ethereum shipped with. It is nothing more than a keypair: a private key, a public address derived from it, and no on-chain logic of its own. Whoever holds the key holds the account, full stop. That simplicity is why the seed phrase exists, and it is also why an EOA has exactly one recovery model, which is to say none. Lose the key and there is no appeal, no reset link, no branch you can walk into with a passport. It is the same self-custody discipline that governs running your own validator: total control, total responsibility.

A smart account replaces that keypair with a smart contract. The contract decides what counts as a valid transaction, so the rules can be almost anything: one key, several keys, a passkey stored in your phone’s secure enclave, a daily spending cap, a set of guardians who can rotate the signer, a timelock that delays large transfers. Crucially for this article, recovery stops being a property of a secret you must never lose and becomes a property of code you can design. That is the whole promise. The catch is that code has to be written, audited and, above all, actually configured by the user, and most users never touch the defaults.

There are two live paths to a smart account today, plus a third that is still being argued over. The table below lays out the differences that matter for recovery.

Account typeWhat it isControlled byRecovery model
EOA (legacy)A keypair with no codeOne private key or seed phraseSeed phrase only; lose it and the funds are gone
ERC-4337 smart accountA contract wallet with its own validation logicWhatever rules the code allows: keys, passkeys, guardiansProgrammable: social recovery, multisig, timelocks
EIP-7702 upgraded EOAAn ordinary EOA that points to contract codeThe original key, plus whatever the delegate contract addsDepends on the delegate; can add guardians without changing the address
Native account (proposed)Account abstraction built into the base protocolProtocol-level validation rulesStill delivered by wallet software, not the chain itself

The two roads: ERC-4337 and EIP-7702

ERC-4337 was finalized in March 2023 and built account abstraction entirely at the application layer, without changing Ethereum’s consensus. Instead of ordinary transactions, users sign objects called UserOperations, which sit in a separate mempool, get packaged by operators called bundlers, and are settled through a singleton EntryPoint contract. A paymaster can pay the gas on the user’s behalf. The standard has kept advancing: the EntryPoint reached version 0.8 in 2025, adding native support for the newer EIP-7702 flow. Adoption is genuine rather than theoretical: dashboards that track the standard count over 1.28 billion UserOperations, more than 67 million accounts with activity, and over 14 million dollars in gas sponsored by paymasters (BundleBear).

EIP-7702 arrived with the Pectra upgrade on 7 May 2025 and took a different route. Rather than making you migrate to a new contract wallet at a new address, it lets an existing EOA temporarily point to contract code through a new transaction type (0x04) and a delegation designator (the bytes 0xef0100 followed by an address). Your address stays the same, your key still works, and your wallet gains smart-account powers in place. That in-place upgrade is why exchanges and custodians care about it, a subject explored in more depth in our look at deposit addresses that run code. The adoption figures look enormous, with nearly 250 million cumulative authorizations and over 105 million set-code transactions, but that headline number is badly inflated: automated sweeper contracts account for the vast majority of it. The more honest gauge is the roughly 59 million live delegations actually in force (BundleBear).

For recovery, the distinction matters. A fresh ERC-4337 account can be born with guardians and timelocks baked in. A 7702 upgrade bolts recovery logic onto an address that already has a history, and whatever recovery you gain still ultimately depends on the delegate contract you trust. Neither approach recovers a key you never backed up in some form; they change what a backup can look like.

Why the seed phrase was the original sin

The clearest case against the seed phrase was made years ago by Vitalik Buterin, in an essay on social recovery he published in January 2021. His central observation was that a mnemonic is a tool against one failure mode and useless against the other. “Mnemonic phrases are good for protecting against loss, but they do nothing against theft,” he wrote (vitalik.eth.limo). If someone photographs your twelve words, the phrase that was supposed to be your safety net becomes the attacker’s master key, and you have no way to revoke it.

His deeper point was about human psychology. “The human brain is quite poorly suited for remembering passwords and tracking paper wallets,” he argued, “but it’s an ASIC for keeping track of relationships with other people.” The design conclusion he drew is the philosophical spine of every recovery scheme in this article: usability and self-custody are not opposites, and a wallet can lean on the one thing people are genuinely good at, which is knowing who they trust. His proposal was a wallet with “a set of at least 3 (or a much higher number) of ‘guardians’, of which a majority can cooperate to change the signing key of the account.”

Five years on, that idea has moved from a blog post to a shipped feature in most serious smart-account wallets. The mechanics have matured, the tradeoffs have sharpened, and, as we will see, the very flexibility that makes recovery possible is what makes a smart account worth attacking.

Social recovery: guardians, thresholds and delays

Social recovery works by separating the signing key from account ownership. You transact day to day with a single key, but a group of guardians, chosen by you, can collectively replace that key if it is lost. No single guardian can act alone; recovery requires a threshold, say three of five, so that one compromised or coerced guardian cannot hijack the account. In the ERC-7579 modular-account standard, this is implemented as a Social Recovery Module: the wallet installs a validator configured with a threshold and a guardian list, and a recovery is executed as a UserOperation carrying the required guardian signatures (erc7579.com). The guardians never hold your funds; they hold a limited, revocable power to rotate your signer.

The wallet that pioneered this at consumer scale was Argent, now rebranded as Ready, which paired guardians with a cancellation window: after a recovery is initiated, a delay of around 36 hours gives the real owner time to veto it if the request is fraudulent (Eco). That delay is not a bug; it is the security. Recovery and theft can look identical on-chain, so the veto window is what separates a rescue from a robbery.

The hard part is choosing guardians well. The naive move, adding three of your own devices, recreates single points of failure if they share a cloud account or live in the same house fire. Good guardian sets are deliberately uncorrelated: a family member, a close friend on a different platform, a hardware device in a safe deposit box, perhaps one institutional recoverer. The goal is that no plausible single event, no phone theft, no phishing message, no natural disaster, can take out a majority at once. Social recovery does not remove the need to think; it changes what you have to think about, from protecting a secret to curating a circle of trust.

A field guide to recovery models

Social recovery is one option among several, and no single model is right for everyone. The trade is always the same triangle: security against theft, resilience against loss, and simplicity for the user, where pushing on any one corner strains the others. The table below summarizes the main approaches a smart-account wallet can offer in 2026, drawing on the recovery field guides maintained by wallet infrastructure teams (Eco).

ModelHow it worksTypical time to recoverMain failure mode
Seed phraseTwelve or 24 words restore the keyMinutes, if you have the wordsTotal loss if forgotten; total theft if seen
Social recoveryA threshold of guardians rotates the signerHours to a few days (with veto window)Guardians unreachable, colluding or all compromised
Passkey backupWebAuthn key synced via iCloud or GoogleMinutes on a new deviceLocked out of the platform account; limited portability
MPC / keylessKey split into shares held across partiesMinutes, via provider flowProvider disappears with its share; vendor lock-in
Multisig quorumM-of-N co-signers approve every actionAs fast as signers coordinateOperational complexity; blind-signing at the desk
Timelocked backup keyA backup signer activates after a delayDays by design (the delay is the point)Backup key itself lost or stolen

Most well-designed wallets now combine two or three of these rather than betting on one. A common consumer stack is a passkey for daily signing, social recovery for the everyday lost-phone case, and a timelocked backup for the catastrophic scenario. The point is not to find the perfect model but to make sure that no single mishap, and no single malicious actor, controls the outcome.

Passkeys and the portability catch

Passkeys are the reason recovery finally feels normal to non-technical users. A passkey is a cryptographic credential generated and stored by your device’s secure hardware, the same WebAuthn machinery you already use to log into websites with a fingerprint or face scan. Because passkeys use the P-256 curve rather than Ethereum’s native secp256k1, verifying them on-chain used to be prohibitively expensive. RIP-7212, a precompile that L2s such as Arbitrum and Polygon adopted early, cut the cost of a P-256 signature check from roughly 300,000 gas to about 3,450, roughly a hundredfold, which is what made passkey wallets economically viable (Alchemy). Coinbase’s Base Account and a growing list of consumer wallets now let you create and recover an account with nothing but a passkey.

The catch is portability. A passkey inherits the recovery model of whatever platform account holds it. Apple passkeys sync through iCloud Keychain; Google passkeys through its Password Manager. Lose access to that platform account, through a forgotten Apple ID, a SIM-swap, or a locked-out Google login, and the passkey can become unreachable, or in some attack scenarios, pullable by someone who compromises the account. Cross-ecosystem transfer is still immature: the FIDO Alliance’s Credential Exchange Protocol and Format, the standards meant to let you move passkeys from Apple to Android and back, remained in draft as of 2026, and native cross-platform sync is not yet a solved problem (FIDO Alliance). A passkey-only wallet, in other words, quietly outsources your recovery to Apple or Google. For many users that is a genuine upgrade over a paper backup. For inheritance, it is a trap, because your heirs are far less likely to be able to reach your iCloud account than to find a sealed envelope in a drawer.

Inheritance: what happens when you die

Recovery answers the question of what happens when you lose the key. Inheritance answers a harder one: what happens when you are no longer around to lose it. The two look similar on-chain, but they pull in opposite directions. Recovery wants to make it easy for you to regain control. Inheritance wants to make it easy for someone else to gain control, but only after you are gone, and never a day before. Getting that timing wrong in either direction is a disaster: too loose and an heir can rob you while you are alive, too tight and the coins are entombed with you.

The core primitive is the dead-man’s switch, also called an inactivity timelock. You configure a backup key, held by an heir or an executor, that becomes able to move funds only after the account has gone silent for a set period, say six or twelve months. As long as you check in, the heir key stays dormant. Smart accounts implement this cleanly with delay modules; the Zodiac Delay Modifier used with Safe accounts, for example, can enforce a mandatory waiting period on a designated recoverer. Bitcoin-native holders reach the same end with time-locked multisig: services such as Casa, Unchained and Nunchuk offer inheritance protocols where a heir key is added to a quorum but only becomes spendable after a delay, giving the owner a window to reset the clock (Nunchuk).

A gentler option for pure key material is Shamir’s Secret Sharing, standardized as SLIP-39, which splits a seed into shares so that, say, any three of five reconstruct it. Trezor has supported it since 2019, and it has become a default for several hardware families (Trezor). Shares can be handed to family members, a lawyer and a safe deposit box, so no single person can act alone but the estate can be reassembled. The recurring risk with all of these is vendor lock-in: a recovery or inheritance scheme built around one company’s tooling is only as durable as that company, and shares or modules are rarely portable across tools. The single most valuable inheritance document is still a plainly written letter that tells your heirs the scheme exists, where the pieces are, and who to call, because the most common way crypto is lost at death is not a technical failure but silence.

Recovery as a service: Safe, Sygnum and Ledger Recover

Not everyone has three reliable friends who understand guardians, and a whole market has grown up to sell recovery as a product. Safe, the multisig contract standard that secures a large share of on-chain treasuries, offers Safe{RecoveryHub}, built together with Sygnum Bank and the recovery specialist Coincover. It lets users nominate recoverers, which can be personal backup devices, family members and friends for social recovery, or trusted third parties such as Sygnum and Coincover for a more formal process. The owner keeps control throughout: recoverers only gain access when a recovery event is initiated, the owner can veto any attempt, and multiple recoverers can be combined behind a threshold (Sygnum). Lukas Schor, a co-founder of Safe, has framed the project as growing beyond storage, describing Safe as “evolving from infrastructure that safeguards value into a network that can also help verify how value moves” (The Block).

The most infamous attempt at outsourced recovery is Ledger Recover, which encrypts and shards your seed across three parties, one of them Coincover, so that identity verification can restore it for a monthly fee. When Ledger announced it in 2023, the backlash was fierce enough that the company delayed the launch, precisely because it seemed to contradict the promise that a hardware wallet’s secret never leaves the device (CoinDesk). Ledger’s own chief executive, Pascal Gauthier, has been blunt about the underlying tension, conceding that “everything that is in software is close to impossible to protect” (Ledger). That is the honest summary of recovery-as-a-service: it solves the loss problem by reintroducing a trusted party, and whether that trade is worth it depends entirely on who you are protecting your coins from.

Recovery is also an attack surface

Here is the uncomfortable truth that vendors rarely lead with: the same programmability that lets you recover a lost account is what lets an attacker take a healthy one. A recovery is, mechanically, a transaction that changes who controls the wallet. If an attacker can get you, or your guardians, to sign that transaction while believing it is something else, recovery becomes theft. The largest crypto heists of the past two years were not broken cryptography or buggy contracts; they were malicious ownership changes signed by people who thought they were approving something routine.

The canonical case is Bybit. On 21 February 2025 the exchange lost roughly 1.5 billion dollars, about 400,000 ETH and staked ETH, in the largest crypto theft on record. The cold wallet was a Safe smart account. Attackers linked to North Korea’s Lazarus group compromised a Safe developer machine and injected malicious JavaScript into the signing interface, so that Bybit’s signers saw an ordinary transfer while the payload they actually signed swapped the Safe’s implementation to an attacker contract (The Block). The signers were, in effect, tricked into signing their own hostile takeover.

The same script recurs. In October 2024 the lending protocol Radiant Capital lost around 50 million dollars from a Safe 3-of-11 multisig; the intrusion began weeks earlier with a message impersonating a former contractor that planted a macOS backdoor, and on the day of the theft the malware showed signers legitimate transaction data while malicious calls were signed behind it, ending in a transferOwnership that handed the pools to the attacker (Halborn). Mandiant attributed it to a North Korean group, and the DAO wound the protocol down in 2026 (CoinDesk). Radiant was a lending market, the kind whose mechanics we cover in our guide to on-chain credit, but its downfall had nothing to do with lending logic and everything to do with the signing screen. Months earlier, WazirX lost about 230 million dollars the same way, a Gnosis Safe 4-of-6 whose signers approved a swap to a malicious contract (CoinDesk).

IncidentDateAmountAccountRoot cause
BybitFeb 2025~$1.5BSafe multisig (cold wallet)Compromised signing UI; blind-signed implementation swap
WazirXJul 2024~$230MGnosis Safe 4-of-6Signers approved swap to malicious contract
Radiant CapitalOct 2024~$50MSafe 3-of-11Malware in front-end; blind-signed transferOwnership

The common thread is blind signing. Charles Guillemet, Ledger’s chief technology officer, puts the problem as a question the user cannot answer: are you “claiming an airdrop, or giving a malicious contract permission to drain your wallet?” (NFT Plazas). A hardware wallet does not save you if it only shows a hash. The lesson for recovery design is direct: every recoverer, every guardian, every backup key is another party who can be phished into signing a hostile change, so the recovery graph you build to protect yourself is also the map an attacker studies. These are the same key-management failures, not code bugs, that drive the cross-chain thefts we tracked in our report on repeat bridge hacks, and they are the reason audits alone are never enough, as the zero-bugs-found pattern keeps showing.

The retail version is quieter but relentless. After Pectra, the security firm Wintermute found that more than 97 percent of early EIP-7702 delegations pointed at a single class of automated sweeper contract, nicknamed CrimeEnjoyor, which drains any address whose key has already leaked; Wintermute judged the contracts themselves safe to use but a sign of how fast attackers industrialize new features (CoinDesk). Phishing losses overall fell sharply in 2025, down about 83 percent to roughly 84 million dollars, but token-approval scams remained dominant and a single 7702-related phishing victim still lost around 1.54 million dollars in one signature (Cointelegraph). Recovery does not exist in a vacuum; it is another surface in a hostile environment.

The US tax picture: property, step-up and a $15 million line

Recovery is a cryptographic problem. Inheritance is also a legal one, and in the United States the rules are more favorable to heirs than most holders realize. The Internal Revenue Service has treated cryptocurrency as property since Notice 2014-21, and that classification carries a large benefit at death: inherited property receives a step-up in basis. The heir’s cost basis resets to the fair market value on the date of death, which wipes out the deceased’s unrealized gains for capital-gains purposes (RSM). If you bought Ether at a few hundred dollars and it changes hands at your death when Ether is trading around 2,600 dollars (Yahoo Finance), your heir can sell near that level with little or no capital-gains tax, rather than inheriting your original low basis. One important exception: crypto held inside a retirement account such as an IRA or 401(k) does not get a step-up, because those accounts are taxed on distributions instead.

The estate tax is a separate question, and in 2026 the threshold moved decisively out of reach for almost everyone. The One Big Beautiful Bill Act, signed into law on 4 July 2025, set a permanent federal estate, gift and generation-skipping exemption of 15 million dollars per individual, or 30 million dollars for a married couple, effective 1 January 2026 and indexed to inflation, replacing the roughly 14 million dollar figure in force in 2025 and removing the sunset that would have cut it back sharply (Morgan Lewis). For the overwhelming majority of crypto holders, federal estate tax is simply not the binding constraint. The binding constraint is access: the estate still has to find, value and reach the coins, and a step-up is worthless if nobody can move the assets it applies to.

Self-custody keeps you outside the broker regime that governs exchanges. In April 2026 the SEC’s staff clarified that software allowing users to transact from their own wallets is not, on its own, acting as a broker, provided it stays neutral and takes no custody (CoinDesk). That is good news for wallet builders and self-custodians, but it has a flip side for inheritance: because no regulated intermediary stands between you and your keys, no regulator or company can help your family recover them either. The entire estate-planning burden lands on you.

Exchanges, custodians and the recovery you did not design

The counterweight to self-custody is that custodians offer recovery you never have to configure. Forget your exchange password and you reset it with an email and a selfie; the exchange holds the keys, so account recovery is a customer-service problem, not a cryptographic one. That convenience is exactly why so many people keep coins on exchanges, and it is also why exchange failure is so devastating: when the custodian collapses, its recovery model collapses with it. The FTX Recovery Trust is the cautionary tale in slow motion. Its fourth distribution, roughly 2.2 billion dollars, went out on 31 March 2026, years after the collapse, and creditors were repaid at the dollar values their claims held on the November 2022 petition date, which means they were made whole in dollars while missing the entire subsequent rally (PR Newswire). Custodial recovery is real, but it runs on someone else’s timeline and someone else’s solvency.

The interesting development in 2026 is that the line between the two models is blurring. Embedded-wallet platforms now offer self-custody that feels custodial. Coinbase’s developer platform ships embedded wallets whose keys live inside a trusted execution environment that even Coinbase cannot access, unlocked by an email or social login, so users recover on a new device with no seed phrase while remaining, technically, in self-custody. That convergence is genuinely useful, but it also means the recovery model is now a spectrum rather than a binary, and the honest question to ask any wallet is not whether it is self-custody but who, exactly, can help you get back in, and who can be tricked into letting someone else in.

The roadmap: native accounts, the split and portability

The next chapter is native account abstraction, where smart-account behavior is built into the protocol rather than bolted on with bundlers and relays. For most of 2026 there were three competing visions, but the important recent news is that the two biggest camps stopped trying to agree. In September 2026, developers from the Ethereum and Base sides confirmed that their efforts to align a single native-AA standard had broken down, leaving two designs on the table: Base’s EIP-8130, an on-chain account-configuration approach optimized for cost and now retargeted at a future fork, and Ethereum’s EIP-8141, a more flexible frame-transaction model aimed at the Hegota upgrade (The Block). Derek Chiang of ZeroDev, close to the discussions, summarized the outcome plainly: the two sides could not reconcile without one compromising on core goals, so they went their separate ways, in his words “putting the burden on wallets to deal with the fragmentation that ensues.”

What does this mean for recovery? Less than the headlines suggest. Native AA changes how the base layer validates a transaction, but recovery logic, guardians, timelocks, dead-man switches, still lives in wallet software either way. The proposals also matter less for succession than the quieter standard ERC-7779, which defines interoperable delegated accounts so that a 7702 EOA can migrate between wallet providers without losing assets or colliding storage. Portability is the unsung inheritance feature: a recovery setup that cannot survive a change of wallet provider is a setup that can strand your heirs the day your chosen app shuts down. Meanwhile the next mainnet upgrade, Glamsterdam, is headlined by execution-layer changes and gas repricing rather than account abstraction, a reminder that native AA remains a work in progress and that the practical recovery decisions in this guide are the ones that matter today.

A recovery and inheritance checklist

Whatever wallet you use, the difference between owning your crypto and merely holding it until the first accident is a small amount of deliberate setup. The steps below apply to any smart-account wallet in 2026.

  • Choose a recovery model on purpose rather than accepting the default, and prefer one that combines at least two independent methods.
  • Pick guardians that cannot all fail together: different people, different platforms, different physical locations.
  • Confirm your wallet has a veto or delay window on recovery, so a fraudulent request can be stopped before it settles.
  • Set up a dead-man’s switch or timelocked heir key if anyone should inherit these assets, and calibrate the inactivity period to how often you actually transact.
  • Write a plain-language letter for your heirs that says the assets exist, which wallet holds them, how the recovery scheme works, and who to contact; store it where an executor will find it.
  • Test recovery before you need it, on a small amount, so you learn the failure modes while the stakes are low.
  • Turn on clear signing wherever it is offered, and treat any transaction you cannot read as a transaction you do not sign.
  • Avoid vendor lock-in: favor open standards and portable schemes so your setup survives a provider shutting down.
  • Revisit the whole arrangement once a year, because guardians move, phones change and platform accounts get abandoned.

None of this is exciting, and that is the point. The wallets that keep people whole are not the ones with the flashiest features; they are the ones whose owners spent a dull afternoon deciding, in advance, what should happen when things go wrong.

Frequently Asked Questions

Can you recover a smart-account wallet without a seed phrase?

Yes. That is the core reason smart accounts exist. Because a smart account is a contract rather than a bare keypair, it can be configured with social recovery guardians, a multisig quorum, a passkey backup, or a timelocked backup key, any of which can restore access without a mnemonic. The important caveats are that you must set the recovery method up before you lose access, and that whatever method you choose becomes its own thing an attacker can target, so the recovery you rely on should always include a delay or veto window.

What happens to my crypto when I die if I hold my own keys?

If you leave no plan, it is very likely lost forever, because no company or court can produce a key that only you held. To prevent that, smart-account and multisig wallets support inheritance tools such as dead-man switches, timelocked heir keys, Zodiac delay modules and Shamir secret sharing, which grant an heir access only after a period of inactivity. The single most important step is non-technical: leave a written record that tells your heirs the assets exist, where they are, and how the recovery scheme works.

Is inherited cryptocurrency taxed in the United States?

For almost everyone, inherited crypto is favorably treated. The IRS classifies crypto as property, so it receives a step-up in basis at death: the heir’s cost basis resets to the fair market value on the date of death, erasing the deceased’s unrealized gains for capital-gains purposes, though crypto inside an IRA or 401(k) is an exception. Federal estate tax only applies above a permanent exemption of 15 million dollars per person, or 30 million for a married couple, effective January 2026, so it affects only very large estates. State rules can differ, so check your own jurisdiction.

What is social recovery and is it safe?

Social recovery lets a group of trusted parties, called guardians, collectively restore access to your account without any single one of them controlling your funds. Recovery requires a threshold, such as three of five, and well-designed wallets add a cancellation window so the owner can veto a fraudulent attempt. It is safe when the guardians are genuinely independent and cannot all be compromised by one event; it is risky when guardians are correlated, unreachable, or can be phished into approving a malicious recovery, which is why the delay window matters.

Do passkeys make crypto wallets safe to recover?

Passkeys make recovery much easier for everyday users, because a WebAuthn credential in your phone’s secure hardware can restore an account on a new device with no seed phrase. The trade is portability: a passkey inherits the recovery model of the platform account that syncs it, so losing your Apple or Google account can lock you out, and cross-platform transfer standards were still in draft in 2026. For inheritance especially, a passkey-only wallet is fragile, so pair it with an independent backup or social recovery.

Yuki Tanaka is a senior wallets and self-custody correspondent at HOGE Wire, covering account abstraction, key management and the economics of getting your crypto back.

Share 𝕏 Post Telegram