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.
17 lines
356 B
17 lines
356 B
#!/usr/bin/env python |
|
|
|
import sys |
|
from electrum import Interface |
|
|
|
try: |
|
addr = sys.argv[1] |
|
except: |
|
print "usage: get_history <bitcoin_address>" |
|
sys.exit(1) |
|
|
|
i = Interface({'server':'electrum.be:50001:t'}) |
|
i.start() |
|
h = i.synchronous_get([ ('blockchain.address.get_history',[addr]) ])[0] |
|
for item in h: |
|
print item['tx_hash'], item['height'] |
|
|
|
|