mynode/rootfs/standard/usr/bin/get_scripthash.py

13 lines
299 B
Python
Raw Normal View History

2019-06-15 23:02:44 +00:00
#!/usr/bin/env python3
from bitcointx.wallet import *
import hashlib
import sys
if len(sys.argv) != 2:
print("Usage: get_scripthash.py <addr>")
exit(1)
addr = CBitcoinAddress( sys.argv[1] )
script = addr.to_scriptPubKey()
script_hash = hashlib.sha256(script).hexdigest()
print(script_hash)