Ask HN: Non-techie friendly way to store crypto outside of exchange
Hi HN,
In light of the recent failure of FTX, what's currently the most non-techie friendly way to store crypto outside of an exchange (and control your keys)? I'm merely asking for my friends that keep some crypto around on exchanges and I can't give them decent advice as I'm not really familiar with recent best-practices.
Thanks!
12 comments
[ 2.7 ms ] story [ 43.2 ms ] threadHowever, if your friends are not tech-savvy be sure to educate them about storing their keys in a safe way. Writing their recovery phrase onto a post-it note and storing it on Google Drive is more dangerous than leaving their money on exchange like Coinbase. Of course the hardware wallet come with instructions, but who reads instructions these days?
The Coinbase recovery phrase you mention is a seed phrase that you can enter in any ETH compatible wallet, the seed phrase lets you easily recover all the wallets generated by the phrase. A private key will only recover the singular wallet that it’s connected to.
With the Ethers.js library it is trivial [1] to generate key-pairs from a mnemonic phrase. You might be interested in vanity address generator [2].
The Brave Wallet GitHub Wiki [3] has a write up with good links for further research.
[1] https://docs.ethers.io/v5/api/signer/#Wallet.fromMnemonic
[2] https://github.com/bokub/vanity-eth
[3] https://github.com/brave/brave-browser/wiki/Brave-Wallet-See...