mirror of
https://github.com/bitcoinbook/bitcoinbook
synced 2024-11-11 18:39:20 +00:00
17 lines
472 B
Python
17 lines
472 B
Python
from bitcoin.rpc import RawProxy
|
|
|
|
p = RawProxy()
|
|
|
|
# Alice's transaction ID
|
|
txid = "466200308696215bbc949d5141a49a4138ecdfdfaa2a8029c1f9bcecd1f96177"
|
|
|
|
# First, retrieve the raw transaction in hex
|
|
raw_tx = p.getrawtransaction(txid)
|
|
|
|
# Decode the transaction hex into a JSON object
|
|
decoded_tx = p.decoderawtransaction(raw_tx)
|
|
|
|
# Retrieve each of the outputs from the transaction
|
|
for output in decoded_tx['vout']:
|
|
print(output['scriptPubKey']['address'], output['value'])
|