minter-php-bip-44
minter-php-bip-44 copied to clipboard
BIP44 standart implementation in PHP (ETH)
When derive changed to others like bitcoin (m/44'/0'/0'/0/0) the private key returned wrong!
php: I have calculated the private key / compressed public key from 12 mnemonics How to continue to get the address? ```
Upgrades to this library are safe for PHP 8/8.1 (and I think this is also true for the outdated PHP 7).
Root key derivation was returning incorrect values. This was caused by the hex conversion of the root fingerprint `'00000000'` producing `0x00` (1 byte) instead of `0x00000000` (4 bytes). I've also...