Hierarchical-deterministic (HD) wallets organise every address under a tree described by a derivation path. This tool decodes a path into its five meaningful levels with the correct BIP semantics, or builds a properly formatted path from menu choices, covering the four common address schemes.
How it works
A full BIP44-style path has five levels below the master key m:
m / purpose' / coin_type' / account' / change / address_index
44/49/84/86 SLIP-0044 0,1,2… 0=recv 0,1,2…
hardened 1=change
The decoder splits on /, reads the leading m, and for each segment detects a
trailing ' or h as a hardened marker, then maps the first three by position
to purpose, coin type, and account. Purpose values map to address formats: 44 →
legacy, 49 → P2SH-SegWit, 84 → native SegWit, 86 → Taproot.
Notes and example
The path m/84'/0'/0'/0/5 is the sixth (index 5) native-SegWit receive address of
the first account of Bitcoin — a bc1q… address. Switch the purpose to 86' and
the same position becomes a Taproot bc1p… address. For Ethereum,
m/44'/60'/0'/0/0 is the first account’s first address. A derivation path is a
public routing structure, not a secret — never enter a seed phrase or private key
into any online tool.