LBRY-Vault/electrum/scripts/get_history.py

18 lines
384 B
Python
Executable file

#!/usr/bin/env python3
import sys
from .. 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.get_history_for_scripthash(_hash)
print_msg(json_encode(h))