Hash

Unspent 輸出中的雜湊值是多少?

  • August 7, 2018

我是比特幣的新手。看著

curl https://blockchain.info/unspent?active=1Cdid9KFAaatwczBwBttQcwXYCpvK8h7FK

我猜這個腳本是所有者的地址。我不確定這一點。

"unspent_outputs":[

       {
           "tx_hash":"f2c245c38672a5d8fba5a5caa44dcef277a52e916a0603272f91286f2b052706",
           "tx_hash_big_endian":"0627052b6f28912f2703066a912ea577f2ce4da4caa5a5fbd8a57286c345c2f2",
           "tx_index":47854970,
           "tx_output_n": 1,
           "script":"76a9147f9b1a7fb68d60c536c2fd8aeaa53a8f3cc025a888ac",
           "value": 8450000,
           "value_hex": "0080efd0",
           "confirmations":258278
       },

tx_hash,tx_hash_big_endian,tx_index,tx_output_n 和 value 代表什麼?

tx_hash並且tx_hash_big_endian是該輸出源自小端和大端(反轉)的交易的交易ID。

tx_output_n是引用交易中輸出的數量,即如果交易有 5 個輸出並且您需要引用第 5 個,則使用 a tx_output_n= 5。

tx_index我相信是 blockchain.info 用來辨識交易的內部唯一密鑰

script是輸出的 ScriptPubKey,即您需要滿足的條件才能兌換硬幣。

引用自:https://bitcoin.stackexchange.com/questions/77999