MemWallet

Like WrapWallet but for Altcoins

No external assets, to use offline just save this page

Passphrase
Salt: (optional) [?]

You are online. For maximum security is better that you save this page and generate the address in a computer disconnected from the internet.

Javascript is disabled. MemWallet needs javascript to work

MemWallet is a deterministic cryptocurrency address generator, like WrapWallet, but it works for Ethereum, Litecoin, Monero and Bitcoin. You never have to save or store your private key anywhere. Just pick a really good password - many random words, for example - and never use it for anything else.

Given the same Passphrase and Salt, MemWallet will always generate the same address and private key, so if you only need to remember your password to access your funds.

For more information on why this is safer than a regular brainwallet, see WrapWallet's help, MemWallet is a re-implementation of WarpWallet, but it works for other currencies. WarpWallet and MemWallet use the same algorithm, so WarpWallet and MemWallet will generate the same Bitcoin address for a given Passphrase and salt.

The algorithm behind MemWallet:
b=1 for Bitcoin, 2 for Litecoin, 3 for Ethereum and 4 for Monero
seed1=scrypt(key=(passphrase||b), salt=(salt||b), N=218, r=8, p=1, dkLen=32)
seed2=pbkdf2(key=(passphrase||(b+1)), salt=(salt||(b+1)), c=216, dkLen=32, prf=SHA256)
wallet=generate_wallet(seed=(seed1 ⊕ seed2))

 


 

MemWallet Was made with ♥ By David Bengoa

Source code is in Github, and so is a go implementation of the same algorithm.