electrum-bitcoinprivate/scripts/get_history

19 lines
419 B
Plaintext
Raw Permalink Normal View History

2017-09-05 06:27:08 -07:00
#!/usr/bin/env python3
2012-06-14 12:11:37 -07:00
import sys
from electrum import Network
from electrum.util import json_encode, print_msg
2017-11-29 01:12:47 -08:00
from electrum import bitcoin
2012-06-14 12:11:37 -07:00
try:
addr = sys.argv[1]
2013-11-10 12:30:57 -08:00
except Exception:
2017-09-05 06:27:08 -07:00
print("usage: get_history <bitcoin_address>")
2012-06-14 12:11:37 -07:00
sys.exit(1)
2015-08-30 05:18:10 -07:00
n = Network()
n.start()
2017-11-29 01:12:47 -08:00
_hash = bitcoin.address_to_scripthash(addr)
h = n.synchronous_get(('blockchain.scripthash.get_history',[_hash]))
print_msg(json_encode(h))