Hey, I am using this library to derive accounts from the deprivation path of m/44'/60'/0'/0/0 which works fine, but when I derive path with m/44'/60'/0'/0/1 it is inconsistent with what we get from metamask or other applications.
I am using this mnemonic company loud estate century olive gun tribe pulse bread play addict amount
0th address if fine which is 0x2Ee331840018465bD7Fe74aA4E442b9EA407fBBE
from 1st address it gives different account then expected, it should give 0x97F5aE30eEdd5C3c531C97E41386618b1831Cb7b but its giving 0xeeed912ce027042b94ea6288001c27541d2cc59b
You can check accounts with this site https://iancoleman.io/bip39/
I am using this snippet to derive account
final root = bip32.BIP32.fromSeed(HEX.decode(seed));
final child1 = root.derivePath("m/44'/60'/0'/0/1");
final privateKey = HEX.encode(child1.privateKey);
final private = EthPrivateKey.fromHex(privateKey);
final address = await private.extractAddress();```
Hey, I am using this library to derive accounts from the deprivation path of
m/44'/60'/0'/0/0which works fine, but when I derive path withm/44'/60'/0'/0/1it is inconsistent with what we get from metamask or other applications.I am using this mnemonic
company loud estate century olive gun tribe pulse bread play addict amount0th address if fine which is
0x2Ee331840018465bD7Fe74aA4E442b9EA407fBBEfrom 1st address it gives different account then expected, it should give
0x97F5aE30eEdd5C3c531C97E41386618b1831Cb7bbut its giving0xeeed912ce027042b94ea6288001c27541d2cc59bYou can check accounts with this site https://iancoleman.io/bip39/
I am using this snippet to derive account