get_history script

This commit is contained in:
ThomasV 2012-06-14 21:11:37 +02:00
parent 0340b1868a
commit a3d53c8ab0
2 changed files with 27 additions and 0 deletions

26
get_history Executable file
View File

@ -0,0 +1,26 @@
#!/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('ecdsa.org', 50001)
i.init_socket()
i.start()
i.send([('blockchain.address.get_history',[addr])])
while True:
r = i.responses.get(True, 100000000000)
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

View File

@ -7,6 +7,7 @@ try:
addr = sys.argv[1]
except:
print "usage: watch_address <bitcoin_address>"
sys.exit(1)
i = TcpStratumInterface('ecdsa.org', 50001)
i.init_socket()