Uint8List derivePrivateKeyETH(Uint8List seed, String path) { final node = bip32.BIP32.fromSeed(seed); final bip32.BIP32 childNode = node.derivePath( path, ); return childNode.privateKey!; }