Keys, wallets & account abstraction

social recovery wallet

A social recovery wallet is a smart-contract wallet that you can regain control of through a set of trusted 'guardians' rather than a single seed phrase. The everyday signing key — the one on your phone — handles all normal transactions on its own. But if that key is lost or stolen, a chosen group of guardians can collectively authorize swapping in a new signing key, restoring your access without anyone ever holding your funds.

Mechanically, the account contract stores a list of guardians and a threshold, say any 3 of 5. Guardians can be hardware wallets you keep elsewhere, the wallets of trusted friends or family, or institutional recovery services — and crucially, no single guardian can do anything alone. To recover, a threshold of them sign an on-chain message approving a new owner key. Good designs add a time-lock delay to recovery so that if guardians are compromised or coerced, the legitimate owner has a window to detect the attempt and cancel it before it finalizes.

The aim is to remove the seed phrase as a single, brittle point of catastrophic failure while avoiding a custodian. Compared with a seed phrase, there is no one secret string that, if photographed or phished, hands over everything; compared with a multisig used for daily signing, the user enjoys one-key convenience day-to-day and only invokes guardians in an emergency. The honest caveats: recovery is only as trustworthy as your guardian set (collusion or a coordinated social-engineering attack on a threshold of them can hijack the account), guardians must remain reachable and not all lose their own keys, and the security now rests on the contract's recovery logic being correct.

Social recovery changes who can take over the account, so it deserves the same scrutiny as the spending key. Pick guardians who do not all know each other (to resist collusion) and are unlikely to be lost together (to resist correlated failure), and prefer designs with a cancellation time-lock.

Also called
guardian recovery wallet守護者恢復錢包