python-trezor/trezorlib/tx_api.py

117 lines
3.5 KiB
Python
Raw Normal View History

2014-03-28 11:47:53 -07:00
import binascii
2014-05-28 05:38:44 -07:00
from decimal import Decimal
2016-05-19 02:50:33 -07:00
# from filecache import filecache, DAY
2016-05-20 07:08:55 -07:00
import requests
2016-05-26 08:20:44 -07:00
from . import types_pb2 as proto_types
def fetch_json(url):
try:
r = requests.get(url, headers={'User-agent': 'Mozilla/5.0'})
return r.json()
except:
raise Exception('URL error: %s' % url)
2016-10-21 06:24:30 -07:00
def insight_tx(url, rawdata=False, zcash=False):
if not rawdata:
2016-05-26 08:20:44 -07:00
data = fetch_json(url)
else:
data = url
2014-03-28 11:47:53 -07:00
2014-03-28 13:34:15 -07:00
t = proto_types.TransactionType()
t.version = data['version']
t.lock_time = data['locktime']
2014-03-28 11:47:53 -07:00
2014-03-28 13:34:15 -07:00
for vin in data['vin']:
2014-03-28 11:47:53 -07:00
i = t.inputs.add()
2014-05-28 05:38:44 -07:00
if 'coinbase' in vin.keys():
i.prev_hash = b"\0"*32
2014-05-28 05:38:44 -07:00
i.prev_index = 0xffffffff # signed int -1
i.script_sig = binascii.unhexlify(vin['coinbase'])
i.sequence = vin['sequence']
2014-12-01 18:58:26 -08:00
else:
2014-05-28 05:38:44 -07:00
i.prev_hash = binascii.unhexlify(vin['txid'])
i.prev_index = vin['vout']
i.script_sig = binascii.unhexlify(vin['scriptSig']['hex'])
2014-05-28 05:38:44 -07:00
i.sequence = vin['sequence']
2014-03-28 11:47:53 -07:00
2014-03-28 13:34:15 -07:00
for vout in data['vout']:
2014-04-07 07:25:03 -07:00
o = t.bin_outputs.add()
o.amount = int(Decimal(str(vout['value'])) * 100000000)
o.script_pubkey = binascii.unhexlify(vout['scriptPubKey']['hex'])
2014-03-28 11:47:53 -07:00
2016-10-21 06:24:30 -07:00
if zcash:
if t.version == 2:
joinsplit_cnt = len(data['vjoinsplit'])
if joinsplit_cnt == 0:
t.extra_data =b'\x00'
else:
extra_data_len = 1 + joinsplit_cnt * 1802 + 32 + 64 # we assume cnt < 253, so we can treat varIntLen(cnt) as 1
raw = fetch_json(url.replace('/tx/', '/rawtx/'))
raw = binascii.unhexlify(raw['rawtx'])
t.extra_data = raw[-extra_data_len:]
2014-03-28 13:34:15 -07:00
return t
2016-05-01 05:21:20 -07:00
def smartbit_tx(url, rawdata=False):
if not rawdata:
2016-05-26 08:20:44 -07:00
data = fetch_json(url)
2016-05-01 05:21:20 -07:00
else:
data = url
data = data['transaction']
t = proto_types.TransactionType()
t.version = int(data['version'])
t.lock_time = data['locktime']
for vin in data['inputs']:
i = t.inputs.add()
if 'coinbase' in vin.keys():
i.prev_hash = b"\0"*32
2016-05-01 05:21:20 -07:00
i.prev_index = 0xffffffff # signed int -1
i.script_sig = binascii.unhexlify(vin['coinbase'])
i.sequence = vin['sequence']
else:
i.prev_hash = binascii.unhexlify(vin['txid'])
i.prev_index = vin['vout']
i.script_sig = binascii.unhexlify(vin['script_sig']['hex'])
i.sequence = vin['sequence']
for vout in data['outputs']:
o = t.bin_outputs.add()
o.amount = int(Decimal(vout['value']) * 100000000)
o.script_pubkey = binascii.unhexlify(vout['script_pub_key']['hex'])
return t
2014-03-28 13:34:15 -07:00
class TXAPIBitcoin(object):
2016-05-19 02:50:33 -07:00
# @filecache(DAY)
2014-03-28 13:34:15 -07:00
def get_tx(self, txhash):
url = 'https://insight.bitpay.com/api/tx/%s' % txhash.decode('ascii')
2014-12-01 18:58:26 -08:00
return insight_tx(url)
2014-03-28 11:47:53 -07:00
2016-05-20 07:08:55 -07:00
2014-03-28 13:34:15 -07:00
class TXAPITestnet(object):
2014-03-28 11:47:53 -07:00
2016-05-19 02:50:33 -07:00
# @filecache(DAY)
2014-03-28 13:34:15 -07:00
def get_tx(self, txhash):
url = 'https://test-insight.bitpay.com/api/tx/%s' % txhash.decode('ascii')
2014-12-01 18:58:26 -08:00
return insight_tx(url)
2016-05-01 05:21:20 -07:00
class TXAPISegnet(object):
# @filecache(DAY)
2016-05-01 05:21:20 -07:00
def get_tx(self, txhash):
url = 'https://segnet-api.smartbit.com.au/v1/blockchain/tx/%s' % txhash.decode('ascii')
2016-05-01 05:21:20 -07:00
return smartbit_tx(url)
2016-10-21 06:24:30 -07:00
class TXAPIZcashTestnet(object):
# @filecache(DAY)
def get_tx(self, txhash):
url = 'https://explorer.testnet.z.cash/api/tx/%s' % txhash.decode('ascii')
return insight_tx(url, zcash=True)