-
Notifications
You must be signed in to change notification settings - Fork 26
/
transactions.py
197 lines (151 loc) · 6.37 KB
/
transactions.py
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
#!/usr/bin/env python3
from typing import List, Tuple
import coincurve
from bip32 import BIP32
import scanner
import scripts
VERSION = 2
SEGWIT_MARKER = 0
SEGWIT_FLAG = 1
SEQUENCE = 0xffff_ffff
LOCKTIME = 0x0000_0000
SIGHASH_ALL = 0x01
NON_SEGWIT_DUST = 546
class Transaction:
"""
Sweep transaction.
"""
def __init__(self, master_key: BIP32, utxos: List[scanner.Utxo], address: str, amount_in_sat: int):
"""
Craft and sign a transaction that spends all the UTXOs and sends the requested funds to a specific address.
"""
output_script = scripts.build_output_script_from_address(address)
if output_script is None:
raise ValueError('The address is invalid or the format isn\'t recognized.')
if amount_in_sat < NON_SEGWIT_DUST:
raise ValueError('Not enough funds to create a sweep transaction.')
self.outputs = [(amount_in_sat, output_script)]
self.inputs = []
for index in range(len(utxos)):
utxo = utxos[index]
# Build the inputs for signing: they should all have empty scripts, save for the input that we are signing,
# which should have the output script of a P2PKH output.
pubkey = master_key.get_pubkey_from_path(utxo.path.to_list())
script = scripts.ScriptType.LEGACY.build_output_script(pubkey)
inputs = [(u, script if u == utxo else b'', []) for u in utxos]
if utxo.script_type == scripts.ScriptType.LEGACY:
# If this is a legacy input, then the transaction digest is just the wire format serialization.
tx = _serialize_tx(inputs, self.outputs, include_witness=False)
else:
# If this is a segwit input (native or not), then the transaction digest is the one defined in BIP143.
tx = _serialize_tx_for_segwit_signing(index, inputs, self.outputs)
# To produce the final message digest we need to append the sig-hash type, and double sha256 the message.
tx.extend(SIGHASH_ALL.to_bytes(4, 'little'))
hash = scripts.sha256(scripts.sha256(bytes(tx)))
privkey = master_key.get_privkey_from_path(utxo.path.to_list())
signature = coincurve.PrivateKey(privkey).sign(hash, hasher=None)
extended_signature = bytearray(signature)
extended_signature.append(SIGHASH_ALL)
extended_signature = bytes(extended_signature)
self.inputs.append((
utxo,
utxo.script_type.build_input_script(pubkey, extended_signature),
utxo.script_type.build_witness(pubkey, extended_signature)
))
def virtual_size(self) -> int:
"""
Compute the size of the transaction in virtual bytes.
"""
witness_tx = _serialize_tx(self.inputs, self.outputs)
non_witness_tx = _serialize_tx(self.inputs, self.outputs, include_witness=False)
return (3 * len(non_witness_tx) + len(witness_tx)) // 4
def to_bytes(self) -> bytes:
"""
Serialize the transaction according to BIP144 for witness transactions, and according to the old serialization
format for non-witness transactions.
"""
return _serialize_tx(self.inputs, self.outputs)
def _serialize_tx(
inputs: List[Tuple[scanner.Utxo, bytes, List[bytes]]],
outputs: List[Tuple[int, bytes]],
include_witness: bool = True
) -> bytearray:
"""
Serialize a transaction in wire format.
"""
segwit = include_witness and any(len(witness) > 0 for _, _, witness in inputs)
tx = bytearray()
tx.extend(VERSION.to_bytes(4, 'little'))
if segwit:
tx.append(SEGWIT_MARKER)
tx.append(SEGWIT_FLAG)
tx.extend(_varint(len(inputs)))
for utxo, script, _ in inputs:
tx.extend(_reversed(bytes.fromhex(utxo.txid)))
tx.extend(utxo.output_index.to_bytes(4, 'little'))
tx.extend(_varint(len(script)))
tx.extend(script)
tx.extend(SEQUENCE.to_bytes(4, 'little'))
tx.extend(_varint(len(outputs)))
for amount, script in outputs:
tx.extend(amount.to_bytes(8, 'little'))
tx.extend(_varint(len(script)))
tx.extend(script)
if segwit:
for _, _, witness in inputs:
tx.extend(_varint(len(witness)))
for item in witness:
tx.extend(_varint(len(item)))
tx.extend(item)
tx.extend(LOCKTIME.to_bytes(4, 'little'))
return tx
def _serialize_tx_for_segwit_signing(
input_index: int,
inputs: List[Tuple[scanner.Utxo, bytes, List[bytes]]],
outputs: List[Tuple[int, bytes]]
) -> bytearray:
"""
Serialize a transaction in order to produce the BIP143 digest needed to sign segwit inputs.
"""
tx = bytearray()
tx.extend(VERSION.to_bytes(4, 'little'))
outpoints = bytearray()
sequences = bytearray()
for utxo, _, _ in inputs:
outpoints.extend(_reversed(bytes.fromhex(utxo.txid)))
outpoints.extend(utxo.output_index.to_bytes(4, 'little'))
sequences.extend(SEQUENCE.to_bytes(4, 'little'))
tx.extend(scripts.sha256(scripts.sha256(bytes(outpoints))))
tx.extend(scripts.sha256(scripts.sha256(bytes(sequences))))
utxo, script, _ = inputs[input_index]
tx.extend(_reversed(bytes.fromhex(utxo.txid)))
tx.extend(utxo.output_index.to_bytes(4, 'little'))
tx.extend(_varint(len(script)))
tx.extend(script)
tx.extend(utxo.amount_in_sat.to_bytes(8, 'little'))
tx.extend(SEQUENCE.to_bytes(4, 'little'))
outs = bytearray()
for amount, script in outputs:
outs.extend(amount.to_bytes(8, 'little'))
outs.extend(_varint(len(script)))
outs.extend(script)
tx.extend(scripts.sha256(scripts.sha256(bytes(outs))))
tx.extend(LOCKTIME.to_bytes(4, 'little'))
return tx
def _varint(number: int) -> bytes:
"""
Create a script that pushes an integer to the script stack.
"""
if number <= 0xfc:
return bytes([number])
if number <= 0xffff:
return bytes([0xfd, *number.to_bytes(2, 'little')])
if number <= 0xffff_ffff:
return bytes([0xfe, *number.to_bytes(4, 'little')])
if number <= 0xffff_ffff_ffff_ffff:
return bytes([0xff, *number.to_bytes(8, 'little')])
raise ValueError()
def _reversed(array: bytes) -> bytes:
array = bytearray(array)
array.reverse()
return bytes(array)