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