git clone https://github.com/dan-da/hd-wallet-derive.git
cd hd-wallet-derive
composer.phar install
生成bip39钱包,指定助记词数量24个,使用256位随机种子,结果包含b39 seed,助记词,主私钥root-key等。
hd-wallet-derive.php -g --gen-key --gen-words=24
使用主私钥生成path /m/0下的btc地址和私钥:
./hd-wallet-derive.php -g --key=xprv9s21ZrQH143K3mnXKMLng2WiMv8NHtk68CqTSA9Yb8TAeAdT4V3WdKFVnZBBpHejT6ascYfBWu8WvgVFK5VwoP6pk8iQGnW3aVhAZD7r9Cx --path=m/0 --cols=path,address,privkey
使用助记词生成path /m/0下的btc地址和私钥:
./hd-wallet-derive.php -g --mnemonic="impose tiny skirt crowd scheme thumb episode flat pumpkin junior wonder manual split crane feed seat lady title seek betray next comfort mimic base" --path=m/0 --cols=path,address,privkey
也可使用内置的path,查看列表:
./hd-wallet-derive.php --help-presets
使用electrum preset,和上面使用path=m/0等效。
./hd-wallet-derive.php -g --key=xprv9s21ZrQH143K3mnXKMLng2WiMv8NHtk68CqTSA9Yb8TAeAdT4V3WdKFVnZBBpHejT6ascYfBWu8WvgVFK5VwoP6pk8iQGnW3aVhAZD7r9Cx --preset=electrum --cols=path,address,privkey
标签:none