Transaction-Input
如何計算scriptPubkey?
給定一個地址(即 1BnPVV5Tt25cxbDg6DqoxJunjSL8reCGz6),我如何計算它的 scriptPubKey 以建立交易?
我假設您想將其集成到 P2PKH tx 中。您必須對地址進行 base58decode,然後刪除校驗和和網路字節。然後你可以將它集成到標準中的 P2PKH tx 中。大大地:
76 A9 14 <20 字節> 88 AC
我有兩個參考,其中包含 C 和 python 中的一些程式碼範例,當時對我有幫助,當時我有同樣的問題 :-)
<https://bitcointalk.org/index.php?topic=1543429.0>
<https://bitcointalk.org/index.php?topic=1026.0>
和一些線上“玩工具”來驗證:
<http://gobittest.appspot.com/Address>
<http://lenschulwitz.com/base58>