get_history script
authorThomasV <thomasv@gitorious>
Thu, 14 Jun 2012 19:11:37 +0000 (21:11 +0200)
committerThomasV <thomasv@gitorious>
Thu, 14 Jun 2012 19:11:37 +0000 (21:11 +0200)
get_history [new file with mode: 0755]
watch_address

diff --git a/get_history b/get_history
new file mode 100755 (executable)
index 0000000..3264115
--- /dev/null
@@ -0,0 +1,26 @@
+#!/usr/bin/env python
+
+import sys
+from electrum import TcpStratumInterface
+
+try:
+    addr = sys.argv[1]
+except:
+    print "usage: get_history <bitcoin_address>"
+    sys.exit(1)
+
+i = TcpStratumInterface('ecdsa.org', 50001)
+i.init_socket()
+i.start()
+i.send([('blockchain.address.get_history',[addr])])
+
+while True:
+    r = i.responses.get(True, 100000000000)
+    method = r.get('method') 
+    if method == 'blockchain.address.get_history':
+        confirmed = unconfirmed = 0
+        h = r.get('result')
+        for item in h:
+            print item['tx_hash'], item['value']
+
+        break
index 698d9b4..843ae74 100755 (executable)
@@ -7,6 +7,7 @@ try:
     addr = sys.argv[1]
 except:
     print "usage: watch_address <bitcoin_address>"
+    sys.exit(1)
 
 i = TcpStratumInterface('ecdsa.org', 50001)
 i.init_socket()