1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300
|
#!/usr/bin/env python3
# Copyright (c) 2010 ArtForz -- public domain half-a-node
# Copyright (c) 2012 Jeff Garzik
# Copyright (c) 2010-2016 The Bitcoin Core developers
# Distributed under the MIT software license, see the accompanying
# file COPYING or http://www.opensource.org/licenses/mit-license.php.
"""Bitcoin Object Python Serializations
Modified from the test/test_framework/mininode.py file from the
Bitcoin repository
CTransaction,CTxIn, CTxOut, etc....:
data structures that should map to corresponding structures in
bitcoin/primitives for transactions only
"""
import copy
import struct
from .common import (
hash256,
)
from ._script import (
is_opreturn,
is_p2sh,
is_p2pkh,
is_p2pk,
is_witness,
is_p2wsh,
)
from ._serialize import (
deser_uint256,
deser_string,
deser_string_vector,
deser_vector,
Readable,
ser_uint256,
ser_string,
ser_string_vector,
ser_vector,
uint256_from_str,
)
from typing import (
List,
Optional,
Tuple,
)
# Objects that map to bitcoind objects, which can be serialized/deserialized
MSG_WITNESS_FLAG = 1 << 30
class COutPoint(object):
def __init__(self, hash: int = 0, n: int = 0xffffffff):
self.hash = hash
self.n = n
def deserialize(self, f: Readable) -> None:
self.hash = deser_uint256(f)
self.n = struct.unpack("<I", f.read(4))[0]
def serialize(self) -> bytes:
r = b""
r += ser_uint256(self.hash)
r += struct.pack("<I", self.n)
return r
def __repr__(self) -> str:
return "COutPoint(hash=%064x n=%i)" % (self.hash, self.n)
class CTxIn(object):
def __init__(
self,
outpoint: Optional[COutPoint] = None,
scriptSig: bytes = b"",
nSequence: int = 0,
):
if outpoint is None:
self.prevout = COutPoint()
else:
self.prevout = outpoint
self.scriptSig = scriptSig
self.nSequence = nSequence
def deserialize(self, f: Readable) -> None:
self.prevout = COutPoint()
self.prevout.deserialize(f)
self.scriptSig = deser_string(f)
self.nSequence = struct.unpack("<I", f.read(4))[0]
def serialize(self) -> bytes:
r = b""
r += self.prevout.serialize()
r += ser_string(self.scriptSig)
r += struct.pack("<I", self.nSequence)
return r
def __repr__(self) -> str:
return "CTxIn(prevout=%s scriptSig=%s nSequence=%i)" \
% (repr(self.prevout), self.scriptSig.hex(),
self.nSequence)
class CTxOut(object):
def __init__(self, nValue: int = 0, scriptPubKey: bytes = b""):
self.nValue = nValue
self.scriptPubKey = scriptPubKey
def deserialize(self, f: Readable) -> None:
self.nValue = struct.unpack("<q", f.read(8))[0]
self.scriptPubKey = deser_string(f)
def serialize(self) -> bytes:
r = b""
r += struct.pack("<q", self.nValue)
r += ser_string(self.scriptPubKey)
return r
def is_opreturn(self) -> bool:
return is_opreturn(self.scriptPubKey)
def is_p2sh(self) -> bool:
return is_p2sh(self.scriptPubKey)
def is_p2wsh(self) -> bool:
return is_p2wsh(self.scriptPubKey)
def is_p2pkh(self) -> bool:
return is_p2pkh(self.scriptPubKey)
def is_p2pk(self) -> bool:
return is_p2pk(self.scriptPubKey)
def is_witness(self) -> Tuple[bool, int, bytes]:
return is_witness(self.scriptPubKey)
def __repr__(self) -> str:
return "CTxOut(nValue=%i.%08i scriptPubKey=%s)" \
% (self.nValue // 100_000_000, self.nValue % 100_000_000, self.scriptPubKey.hex())
class CScriptWitness(object):
def __init__(self) -> None:
# stack is a vector of strings
self.stack: List[bytes] = []
def __repr__(self) -> str:
return "CScriptWitness(%s)" % \
(",".join([x.hex() for x in self.stack]))
def is_null(self) -> bool:
if self.stack:
return False
return True
class CTxInWitness(object):
def __init__(self) -> None:
self.scriptWitness = CScriptWitness()
def deserialize(self, f: Readable) -> None:
self.scriptWitness.stack = deser_string_vector(f)
def serialize(self) -> bytes:
return ser_string_vector(self.scriptWitness.stack)
def __repr__(self) -> str:
return repr(self.scriptWitness)
def is_null(self) -> bool:
return self.scriptWitness.is_null()
class CTxWitness(object):
def __init__(self) -> None:
self.vtxinwit: List[CTxInWitness] = []
def deserialize(self, f: Readable) -> None:
for i in range(len(self.vtxinwit)):
self.vtxinwit[i].deserialize(f)
def serialize(self) -> bytes:
r = b""
# This is different than the usual vector serialization --
# we omit the length of the vector, which is required to be
# the same length as the transaction's vin vector.
for x in self.vtxinwit:
r += x.serialize()
return r
def __repr__(self) -> str:
return "CTxWitness(%s)" % \
(';'.join([repr(x) for x in self.vtxinwit]))
def is_null(self) -> bool:
for x in self.vtxinwit:
if not x.is_null():
return False
return True
class CTransaction(object):
def __init__(self, tx: Optional['CTransaction'] = None) -> None:
if tx is None:
self.nVersion = 1
self.vin: List[CTxIn] = []
self.vout: List[CTxOut] = []
self.wit = CTxWitness()
self.nLockTime = 0
self.sha256: Optional[int] = None
self.hash: Optional[bytes] = None
else:
self.nVersion = tx.nVersion
self.vin = copy.deepcopy(tx.vin)
self.vout = copy.deepcopy(tx.vout)
self.nLockTime = tx.nLockTime
self.sha256 = tx.sha256
self.hash = tx.hash
self.wit = copy.deepcopy(tx.wit)
def deserialize(self, f: Readable) -> None:
self.nVersion = struct.unpack("<i", f.read(4))[0]
self.vin = deser_vector(f, CTxIn)
flags = 0
if len(self.vin) == 0:
flags = struct.unpack("<B", f.read(1))[0]
# Not sure why flags can't be zero, but this
# matches the implementation in bitcoind
if (flags != 0):
self.vin = deser_vector(f, CTxIn)
self.vout = deser_vector(f, CTxOut)
else:
self.vout = deser_vector(f, CTxOut)
if flags != 0:
self.wit.vtxinwit = [CTxInWitness() for i in range(len(self.vin))]
self.wit.deserialize(f)
self.nLockTime = struct.unpack("<I", f.read(4))[0]
self.sha256 = None
self.hash = None
def serialize_without_witness(self) -> bytes:
r = b""
r += struct.pack("<i", self.nVersion)
r += ser_vector(self.vin)
r += ser_vector(self.vout)
r += struct.pack("<I", self.nLockTime)
return r
# Only serialize with witness when explicitly called for
def serialize_with_witness(self) -> bytes:
flags = 0
if not self.wit.is_null():
flags |= 1
r = b""
r += struct.pack("<i", self.nVersion)
if flags:
r += ser_vector([])
r += struct.pack("<B", flags)
r += ser_vector(self.vin)
r += ser_vector(self.vout)
if flags & 1:
if (len(self.wit.vtxinwit) != len(self.vin)):
# vtxinwit must have the same length as vin
self.wit.vtxinwit = self.wit.vtxinwit[:len(self.vin)]
for _ in range(len(self.wit.vtxinwit), len(self.vin)):
self.wit.vtxinwit.append(CTxInWitness())
r += self.wit.serialize()
r += struct.pack("<I", self.nLockTime)
return r
# Regular serialization is without witness -- must explicitly
# call serialize_with_witness to include witness data.
def serialize(self) -> bytes:
return self.serialize_without_witness()
# Recalculate the txid (transaction hash without witness)
def rehash(self) -> None:
self.sha256 = None
self.calc_sha256()
# We will only cache the serialization without witness in
# self.sha256 and self.hash -- those are expected to be the txid.
def calc_sha256(self, with_witness: bool = False) -> Optional[int]:
if with_witness:
# Don't cache the result, just return it
return uint256_from_str(hash256(self.serialize_with_witness()))
if self.sha256 is None:
self.sha256 = uint256_from_str(hash256(self.serialize_without_witness()))
self.hash = hash256(self.serialize())
return None
def is_null(self) -> bool:
return len(self.vin) == 0 and len(self.vout) == 0
def __repr__(self) -> str:
return "CTransaction(nVersion=%i vin=%s vout=%s wit=%s nLockTime=%i)" \
% (self.nVersion, repr(self.vin), repr(self.vout), repr(self.wit), self.nLockTime)
|