Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
如何从 XPUB 生成比特币地址,我正在寻找有关如何使用 XPUB 生成地址的指针。我想用 XPUB 离线生成地址。
一个 Xpub 密钥可以分为 2 个部分。
前 32 个字节是密钥,后 32 个字节是链码。
您可以使用密钥部分来创建地址,方法是对其进行哈希处理ripemd160(sha256(key)),然后使用 Base58 对遗留 P2PKH 地址或 Bech32 对 Segwit P2WPKH 地址编码生成的 20 字节哈希。
ripemd160(sha256(key))