electrum-bitcoinprivate/scripts/watch_address

27 lines
586 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
2013-08-01 01:59:45 -07:00
i = Interface()
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':
2013-08-01 01:59:45 -07:00
i.send([('blockchain.address.get_history',[addr])])
2012-11-15 03:14:29 -08:00
2012-04-30 02:48:19 -07:00
elif method == 'blockchain.address.get_history':
for line in r.get('result'):
print line
print "---"