2014-03-28 18:47:53 +00:00
|
|
|
import binascii
|
|
|
|
import urllib2
|
|
|
|
import json
|
2014-05-28 12:38:44 +00:00
|
|
|
from decimal import Decimal
|
2014-03-28 18:47:53 +00:00
|
|
|
try:
|
2015-02-22 13:38:33 +00:00
|
|
|
raise Exception() # remove this line to enable caching
|
|
|
|
from filecache import filecache, DAY
|
2014-03-28 18:47:53 +00:00
|
|
|
except:
|
|
|
|
def filecache(x):
|
|
|
|
def _inner(y):
|
|
|
|
return y
|
|
|
|
return _inner
|
2015-02-22 13:38:33 +00:00
|
|
|
DAY = None
|
2014-03-28 18:47:53 +00:00
|
|
|
|
|
|
|
import types_pb2 as proto_types
|
|
|
|
|
2014-04-02 17:31:47 +00:00
|
|
|
def op_push_data(data):
|
|
|
|
l = len(data)
|
|
|
|
if l < 0x4C:
|
|
|
|
return chr(l) + data
|
|
|
|
elif i < 0xFF:
|
|
|
|
return '\x4C' + chr(l) + data
|
|
|
|
elif i < 0xFFFF:
|
|
|
|
return '\x4D' + struct.pack("<H", i) + data
|
2014-03-29 20:31:17 +00:00
|
|
|
else:
|
2014-04-02 17:31:47 +00:00
|
|
|
return '\x4E' + struct.pack("<I", i) + data
|
2014-03-29 20:31:17 +00:00
|
|
|
|
|
|
|
def opcode_serialize(opcode):
|
2014-04-02 17:31:47 +00:00
|
|
|
mapping = {
|
|
|
|
'OP_TRUE' : '\x51',
|
|
|
|
'OP_RETURN' : '\x6A',
|
|
|
|
'OP_DUP' : '\x76',
|
|
|
|
'OP_EQUAL' : '\x87',
|
|
|
|
'OP_EQUALVERIFY' : '\x88',
|
|
|
|
'OP_RIPEMD160' : '\xA6',
|
|
|
|
'OP_SHA1' : '\xA7',
|
|
|
|
'OP_SHA256' : '\xA8',
|
|
|
|
'OP_HASH160' : '\xA9',
|
|
|
|
'OP_HASH256' : '\xAA',
|
|
|
|
'OP_CHECKSIG' : '\xAC',
|
|
|
|
'OP_CHECKSIGVERIFY' : '\xAD',
|
|
|
|
'OP_CHECKMULTISIG' : '\xAE',
|
|
|
|
'OP_CHECKMULTISIGVERIFY' : '\xAF',
|
|
|
|
}
|
|
|
|
# check if it is known opcode
|
|
|
|
if mapping.has_key(opcode):
|
|
|
|
return mapping[opcode]
|
2014-03-29 20:31:17 +00:00
|
|
|
# it's probably hex data
|
|
|
|
try:
|
|
|
|
x = binascii.unhexlify(opcode)
|
2014-04-02 17:31:47 +00:00
|
|
|
return op_push_data(x)
|
2014-03-29 20:31:17 +00:00
|
|
|
except:
|
|
|
|
raise Exception('Unknown script opcode: %s' % opcode)
|
|
|
|
|
2015-03-03 23:36:51 +00:00
|
|
|
def insight_tx(url, rawdata=False):
|
|
|
|
if not rawdata:
|
|
|
|
try:
|
|
|
|
f = urllib2.urlopen(url)
|
|
|
|
data = json.load(f)
|
|
|
|
except:
|
|
|
|
raise Exception('URL error: %s' % url)
|
|
|
|
else:
|
|
|
|
data = url
|
2014-03-28 18:47:53 +00:00
|
|
|
|
2014-03-28 20:34:15 +00:00
|
|
|
t = proto_types.TransactionType()
|
|
|
|
t.version = data['version']
|
|
|
|
t.lock_time = data['locktime']
|
2014-03-28 18:47:53 +00:00
|
|
|
|
2014-03-28 20:34:15 +00:00
|
|
|
for vin in data['vin']:
|
2014-03-28 18:47:53 +00:00
|
|
|
i = t.inputs.add()
|
2014-05-28 12:38:44 +00:00
|
|
|
if 'coinbase' in vin.keys():
|
|
|
|
i.prev_hash = "\0"*32
|
|
|
|
i.prev_index = 0xffffffff # signed int -1
|
|
|
|
i.script_sig = binascii.unhexlify(vin['coinbase'])
|
|
|
|
i.sequence = vin['sequence']
|
2014-12-02 02:58:26 +00:00
|
|
|
|
|
|
|
else:
|
2014-05-28 12:38:44 +00:00
|
|
|
i.prev_hash = binascii.unhexlify(vin['txid'])
|
|
|
|
i.prev_index = vin['vout']
|
|
|
|
asm = vin['scriptSig']['asm'].split(' ')
|
|
|
|
asm = [ opcode_serialize(x) for x in asm ]
|
|
|
|
i.script_sig = ''.join(asm)
|
|
|
|
i.sequence = vin['sequence']
|
2014-03-28 18:47:53 +00:00
|
|
|
|
2014-03-28 20:34:15 +00:00
|
|
|
for vout in data['vout']:
|
2014-04-07 14:25:03 +00:00
|
|
|
o = t.bin_outputs.add()
|
2015-03-03 23:37:32 +00:00
|
|
|
o.amount = int(Decimal(str(vout['value'])) * 100000000)
|
2014-03-28 20:48:48 +00:00
|
|
|
asm = vout['scriptPubKey']['asm'].split(' ')
|
2014-03-29 20:31:17 +00:00
|
|
|
asm = [ opcode_serialize(x) for x in asm ]
|
|
|
|
o.script_pubkey = ''.join(asm)
|
2014-03-28 18:47:53 +00:00
|
|
|
|
2014-03-28 20:34:15 +00:00
|
|
|
return t
|
|
|
|
|
|
|
|
class TXAPIBitcoin(object):
|
|
|
|
|
2015-02-22 13:38:33 +00:00
|
|
|
@filecache(DAY)
|
2014-03-28 20:34:15 +00:00
|
|
|
def get_tx(self, txhash):
|
2014-12-02 02:58:26 +00:00
|
|
|
url = 'https://insight.bitpay.com/api/tx/%s' % txhash
|
|
|
|
return insight_tx(url)
|
2014-03-28 18:47:53 +00:00
|
|
|
|
2014-03-28 20:34:15 +00:00
|
|
|
class TXAPITestnet(object):
|
2014-03-28 18:47:53 +00:00
|
|
|
|
2015-02-22 13:38:33 +00:00
|
|
|
@filecache(DAY)
|
2014-03-28 20:34:15 +00:00
|
|
|
def get_tx(self, txhash):
|
2015-01-23 20:24:15 +00:00
|
|
|
url = 'https://test-insight.bitpay.com/api/tx/%s' % txhash
|
2014-12-02 02:58:26 +00:00
|
|
|
return insight_tx(url)
|