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.
|
|
|
#!/usr/bin/env python
|
|
|
|
|
|
|
|
import sys, time
|
|
|
|
from electrum import Interface
|
|
|
|
|
|
|
|
try:
|
|
|
|
addr = sys.argv[1]
|
|
|
|
except:
|
|
|
|
print "usage: watch_address <bitcoin_address>"
|
|
|
|
sys.exit(1)
|
|
|
|
|
|
|
|
i = Interface()
|
|
|
|
i.start()
|
|
|
|
i.send([('blockchain.address.subscribe',[addr])] )
|
|
|
|
time.sleep(1)
|
|
|
|
|
|
|
|
while True:
|
|
|
|
r = i.get_response()
|
|
|
|
method = r.get('method')
|
|
|
|
if method == 'blockchain.address.subscribe':
|
|
|
|
i.send([('blockchain.address.get_history',[addr])])
|
|
|
|
|
|
|
|
elif method == 'blockchain.address.get_history':
|
|
|
|
for line in r.get('result'):
|
|
|
|
print line
|
|
|
|
print "---"
|