1
0
mirror of https://github.com/bitcoinbook/bitcoinbook synced 2024-11-13 11:28:57 +00:00
bitcoinbook/code/rpc_transaction.py

17 lines
472 B
Python
Raw Normal View History

2016-02-05 02:52:15 +00:00
from bitcoin.rpc import RawProxy
p = RawProxy()
# Alice's transaction ID
txid = "466200308696215bbc949d5141a49a4138ecdfdfaa2a8029c1f9bcecd1f96177"
2016-02-05 02:52:15 +00:00
# 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'])