by coryl on 11/23/17, 7:17 PM with 8 comments
I imagine you just need to pass on the type of wallet used, and the mnemonic recovery words so they can access the coins.
But you can't just leave those words in a plaintext will obviously. Any thoughts?
by thatha7777 on 11/23/17, 7:50 PM
ssss doesn't rely on any trusted party--for example, you could split into 5 "shares", and set a threshold of 3. Then distribute the shared amongst 5 of your most trusted friends (selecting them in such a way that it's unlikely they'll collude), and instruct them to only use their share of the secret when they've confirmed your death. 3 of them would have to "come together" (physically, or over a shared terminal or screen) and enter their "shares" to decrypt your recovery words. However, this would cause all 3 of them to know your recovery words.
To get around that, don't encrypt the recovery words themselves using ssss. Instead, encrypt the recovery words using a modern, strong, encryption algorithm, using a randomly generated key. Then use ssss to encrypt the randomly generated key, and share that.
Only give the ciphertext of the recovery words to the intended recipient upon death.
Instead of friends, you could also split the secret between your executor and the intended recipient/family remember, requiring consent from both.
Whatever you do, don't forget to write thorough instructions :)
by IncRnd on 11/23/17, 7:58 PM
You should be careful about using technical solutions, like secret sharing, since this is not a technical problem. It is a legal problem, and you don't want parties to conspire to obtain the property contrary to your wishes.
by tabeth on 11/23/17, 7:57 PM
by gesman on 11/23/17, 10:45 PM
Firm 1: A,B
Firm 2: C,B
Firm 3: A,C
This way:
- Your assets are protected from banks getting hold of your assets (including safety deposit boxes) in a future for whatever mayhem reasons.
- You assets are protected in case if any of these firms gets uncooperative, hacked, robbed or blackmailed to disclose password. Single firm cannot reconstruct your wallet - it doesn't have enough information.
- It's enough to have cooperation of 2 out of 3 firms = 2 letters to fully reconstruct the wallet.
by nyolfen on 11/23/17, 7:30 PM