我正在使用這個BIP32 實現(xiàn)來派生密鑰。如何導出 Base64 格式的派生公鑰?var node = bip32js.bip32.fromBase58('<some private key>');var child = node.derivePath('m/0/0');var publicKey = child.publicKey(); // This gets the public key for the childconsole.log(btoa(publicKey)) // This gives an error since the returned public key is not a string
導出 BIP32 公鑰(Base64 格式)
哈士奇WWW
2023-08-24 15:53:35