electrum-bitcoinprivate/scripts/watch_address

38 lines
871 B
Plaintext
Raw Normal View History

2012-04-30 02:48:19 -07:00
#!/usr/bin/env python
2012-11-15 03:14:29 -08:00
import sys, time
from electrum import Interface
2012-05-10 05:38:49 -07:00
2012-04-30 02:48:19 -07:00
try:
addr = sys.argv[1]
except:
print "usage: watch_address <bitcoin_address>"
2012-06-14 12:11:37 -07:00
sys.exit(1)
2012-04-30 02:48:19 -07:00
2012-11-15 03:14:29 -08:00
i = Interface({'server':'ecdsa.org:50001:t'})
2012-04-30 02:48:19 -07:00
i.start()
2012-11-15 03:14:29 -08:00
i.send([('blockchain.address.subscribe',[addr])] )
time.sleep(1)
2012-04-30 02:48:19 -07:00
while True:
2012-11-15 03:14:29 -08:00
r = i.get_response()
2012-04-30 02:48:19 -07:00
method = r.get('method')
if method == 'blockchain.address.subscribe':
2012-11-15 03:14:29 -08:00
#i.send([('blockchain.address.get_history',[addr])])
print r
2012-04-30 02:48:19 -07:00
elif method == 'blockchain.address.get_history':
confirmed = unconfirmed = 0
h = r.get('result')
if h is None:
2012-04-30 02:48:19 -07:00
continue
for item in h:
v = item['value']
if item['height']:
confirmed += v
else:
2012-05-01 12:37:35 -07:00
unconfirmed += v
2012-04-30 02:48:19 -07:00
print (confirmed+unconfirmed)/1.e8