You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
15 lines
291 B
15 lines
291 B
#!/usr/bin/env python
|
|
|
|
import sys
|
|
from electrum import Network, print_json
|
|
|
|
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_json(h)
|
|
|