electrum-bitcoinprivate/scripts/get_history

17 lines
340 B
Python
Executable File

#!/usr/bin/env python
import sys
from electrum import Network
from electrum.util import json_encode, print_msg
try:
addr = sys.argv[1]
except Exception:
print "usage: get_history <bitcoin_address>"
sys.exit(1)
n = Network()
n.start()
h = n.synchronous_get(('blockchain.address.get_history',[addr]))
print_msg(json_encode(h))