iancoleman / bip39

A web tool for converting BIP39 mnemonic codes
https://iancoleman.io/bip39/
MIT License
3.5k stars 1.44k forks source link

Fix wrong addresses for BTDX and MEC #255

Closed dalijolijo closed 4 years ago

dalijolijo commented 5 years ago

I checked the addresses with this tool: https://github.com/dan-da/hd-wallet-derive But I have made a mistake in my application of the tool.

Here are the correct addresses:

BTDX

./hd-wallet-derive.php --coin=btdx --path="m/44'/218'/0'/0" --mnemonic="abandon abandon ability" -g --includeroot  --numderive=1 --cols=path,address

+-------------------+------------------------------------+
| path              | address                            |
+-------------------+------------------------------------+
| m                 | BRC7JuAqoZ6aHrdMFFFN9XRSpER1XQjny2 |
| m/44'/218'/0'/0/0 | BHbWitXCNgTf1BhsRDNMP186EeibuzmrBi |
+-------------------+------------------------------------+

MEC

./hd-wallet-derive.php --coin=mec --path="m/44'/217'/0'/0" --mnemonic="abandon abandon ability" -g --includeroot  --numderive=1 --cols=path,address

+-------------------+------------------------------------+
| path              | address                            |
+-------------------+------------------------------------+
| m                 | MUeBvcd3Z4gUjh7WrjaLGfE7YqrbFn1Le5 |
| m/44'/217'/0'/0/0 | MDfAj9CzkC1HpcUiVGnHp8yKTa7WXgu8AY |
+-------------------+------------------------------------+