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.
18 lines
419 B
18 lines
419 B
#!/usr/bin/env python3 |
|
|
|
import sys |
|
from electrum import Network |
|
from electrum.util import json_encode, print_msg |
|
from electrum import bitcoin |
|
|
|
try: |
|
addr = sys.argv[1] |
|
except Exception: |
|
print("usage: get_history <bitcoin_address>") |
|
sys.exit(1) |
|
|
|
n = Network() |
|
n.start() |
|
_hash = bitcoin.address_to_scripthash(addr) |
|
h = n.synchronous_get(('blockchain.scripthash.get_history',[_hash])) |
|
print_msg(json_encode(h))
|
|
|