Hierarchical deterministic (HD) Key Generator





Your Support Matters!

Instead of directly asking for donations, I'm thrilled to offer you all nine of my books for just $9 on leanpub By grabbing this bundle you not only help cover my coffee, beer, and Amazon bills but also play a crucial role in advancing and refining this project. Your contribution is indispensable, and I'm genuinely grateful for your involvement in this journey!

Any private key value that you enter or we generate is not stored on this site, this tool is provided via an HTTPS URL to ensure that private keys cannot be stolen, for extra security run this software on your network, no cloud dependency



Hierarchical deterministic

Hierarchical deterministic wallets are a type of deterministic wallets that derive all of the public/private key pairs from a single master seed value. This seed value is used to generate a master private key (xprv) which then can be imported to any BIP 32 compliant HD wallet.

Mnemonic code for generating deterministic keys

To create a hierarchical deterministic wallet, you only need one 128, 256 or 512 bit random number (entropy). This entropy is then encoded into 12, 18 or 24 words respectively. These words are called mnemonic code words. The mnemonic code words are then used to derive the master private key. The master private key can then be imported to any BIP 32 compliant HD wallet.

Dervied Path

The derivation path define the following 5 levels in BIP32 path:

m / purpose / coin_type / account / change / address_index

Wallet Import Format

The WIF format for Bitcoin private keys is as follows: private key in Base58Check format_NetworkCcode flag

Ethereum private keys, they are typically represented as a 64-character hexadecimal string and are encoded using Base58Check to produce Wallet Import Format private keys.