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.
36 lines
875 B
36 lines
875 B
13 years ago
|
#!/usr/bin/env python
|
||
|
|
||
13 years ago
|
import sys
|
||
|
from electrum import TcpStratumInterface
|
||
|
|
||
13 years ago
|
try:
|
||
|
addr = sys.argv[1]
|
||
|
except:
|
||
|
print "usage: watch_address <bitcoin_address>"
|
||
13 years ago
|
sys.exit(1)
|
||
13 years ago
|
|
||
12 years ago
|
i = TcpStratumInterface('electrum.novit.ro', 50001)
|
||
13 years ago
|
i.init_socket()
|
||
13 years ago
|
i.start()
|
||
|
i.send([('blockchain.address.subscribe',[addr])])
|
||
|
|
||
|
while True:
|
||
|
r = i.responses.get(True, 100000000000)
|
||
|
method = r.get('method')
|
||
|
if method == 'blockchain.address.subscribe':
|
||
|
i.send([('blockchain.address.get_history',[addr])])
|
||
|
elif method == 'blockchain.address.get_history':
|
||
|
confirmed = unconfirmed = 0
|
||
|
h = r.get('result')
|
||
13 years ago
|
if h is None:
|
||
13 years ago
|
continue
|
||
|
for item in h:
|
||
|
v = item['value']
|
||
|
if item['height']:
|
||
|
confirmed += v
|
||
|
else:
|
||
13 years ago
|
unconfirmed += v
|
||
13 years ago
|
print (confirmed+unconfirmed)/1.e8
|
||
|
|
||
|
|