Import Ethereum Wallet
Demonstrates the cryptographic key derivation process from a seed phrase
requires MetaMask browser extension
ETH Address
Ethereum Wallet Recovery Guide
Enter your previously generated seed phrase (mnemonic) to restore your Ethereum wallet. You can use seed phrases generated by any wallet that follows the BIP39 standard.
When you enter the seed phrase, the server derives the ETH address using the BIP44 standard derivation path. The seed phrase is transmitted over an encrypted connection (HTTPS) and is not stored on the server.
Cryptographic Key Derivation Process
BIP39: The mnemonic seed phrase is fed into the PBKDF2-HMAC-SHA512 function to generate a 512-bit master seed.
BIP32/BIP44: The master seed is passed through HMAC-SHA512 to produce the master private key and chain code, then child keys are derived using the standard derivation path.
Elliptic Curve Cryptography: The private key is applied to the secp256k1 or Ed25519 elliptic curve to derive the public key, which is then hashed to produce the blockchain address.