我正在开发一个涉及加密货币的应用程序,但在处理所涉及的某些数据的转换时遇到了麻烦。
我正在使用bitcoinjs-lib生成比特币地址。地址创建成功,我的响应对象如下所示:
address: "1Nnn9HpxgykWXxZX5rL3hIH7iikWkQaBSc"
balance: 0
currency: "BTC"
privateKey: Uint8Array(32) [86, 201, 0, 216, 118, 231, 201, 251, 161, 22, 223, 14, 234, 229, 168, 146, 41, 121, 182, 136, 176, 120, 185, 173, 181, 47, 228, 244, 107, 230, 29, 27]
publicKey: Uint8Array(33) [3, 233, 119, 81, 11, 119, 13, 133, 115, 183, 163, 90, 218, 2, 36, 41, 105, 158, 248, 131, 68, 234, 193, 110, 105, 72, 38, 110, 253, 192, 245, 108, 214]
wif: "Kz8QjBvSPjfRVxazJDwGEGwaoGTjRhFGe1MPsiPZRPpKEpidH7Qf"
我正在使用 IndexedDB 来存储创建的钱包。由于我正在生成不同类型的钱包,我的数据库调用如下所示:
{
date: new Date(),
coinType: crypto,
isHDWallet: true,
derivationPath: null,
publicKey: bytesToString(Buffer.from(wallet.publicKey)) ?? null,
privateKey: bytesToString(Buffer.from(wallet.privateKey)) ?? null,
wif: wallet.wif ?? null,
address: wallet.address ?? null,
balance: wallet.balance ?? null,
secret: wallet.secret ?? null,
user_id: 1
}
我的数据很好地存储在我的数据库中,但我无法正确地将 UInt8Array 转换为字符串。我已经尝试了这篇文章中的几乎所有内容,但没有任何成功。
这是bytesToString
我尝试过的功能:
function bytesToString (bytes) {
return String.fromCharCode.apply(null, bytes)
}
我尝试使用 Node 的StringDecoder
模块但没有成功。我也尝试过使用Buffer.from(privateKey).toString('utf-8')
.
我读过比特币地址使用 base 58 编码。我不知道这是否相关。
我没有任何使用缓冲区的经验,或者像这样的任何类型的转换。任何帮助将不胜感激。