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.

27 lines
583 B

13 years ago
#!/usr/bin/env python
import sys, time, electrum
13 years ago
try:
addr = sys.argv[1]
except:
print "usage: watch_address <bitcoin_address>"
sys.exit(1)
13 years ago
# 1. start the interface and wait for connection
interface = electrum.Interface('electrum.no-ip.org:50002:s')
interface.start(wait = True)
if not interface.is_connected:
print "not connected"
exit()
# 2. send the subscription
callback = lambda _,result: electrum.print_json(result.get('result'))
interface.send([('blockchain.address.subscribe',[addr])], callback)
# 3. wait for results
13 years ago
while True:
time.sleep(1)