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.
29 lines
654 B
29 lines
654 B
#!/usr/bin/env python |
|
|
|
import sys |
|
from electrum import TcpStratumInterface |
|
|
|
try: |
|
addr = sys.argv[1] |
|
except: |
|
print "usage: get_history <bitcoin_address>" |
|
sys.exit(1) |
|
|
|
i = TcpStratumInterface('electrum.novit.ro', 50001) |
|
i.init_socket() |
|
i.start() |
|
i.send([('blockchain.address.get_history',[addr])]) |
|
|
|
while True: |
|
try: |
|
r = i.responses.get(True, 100000000000) |
|
except KeyboardInterrupt: |
|
break |
|
method = r.get('method') |
|
if method == 'blockchain.address.get_history': |
|
confirmed = unconfirmed = 0 |
|
h = r.get('result') |
|
for item in h: |
|
print item['tx_hash'], item['value'] |
|
|
|
break
|
|
|