I have the BIP-32
derivation path of m/44'/52752'/0'/0/index
, where index >= 0.
How do I convert it to an int []
?
I've tried doing int[] path = {44 | HARDENED_BIT, 52752 | HARDENED_BIT, 0 | HARDENED_BIT, 0};
but this is returning the incorrect public wallet address.
I have tested another derivation path, converting it to an int[] and it worked (returning the correct public wallet address). This one however, I think I'm missing a part in the int[]
because I'm not quite sure what to do with the index
at the end of the path.
What am I doing incorrectly?