|
@ -423,13 +423,10 @@ class Coldcard_KeyStore(Hardware_KeyStore): |
|
|
|
|
|
|
|
|
for txin in inputs: |
|
|
for txin in inputs: |
|
|
if txin['type'] == 'coinbase': |
|
|
if txin['type'] == 'coinbase': |
|
|
self.give_error("Coinbase not supported") # but why not? |
|
|
self.give_error("Coinbase not supported") |
|
|
|
|
|
|
|
|
if txin['type'] in ['p2sh']: |
|
|
if txin['type'] in ['p2sh', 'p2wsh-p2sh', 'p2wsh']: |
|
|
self.give_error('Not ready for multisig transactions yet') |
|
|
self.give_error('No support yet for inputs of type: ' + txin['type']) |
|
|
|
|
|
|
|
|
#if txin['type'] in ['p2wpkh-p2sh', 'p2wsh-p2sh']: |
|
|
|
|
|
#if txin['type'] in ['p2wpkh', 'p2wsh']: |
|
|
|
|
|
|
|
|
|
|
|
# Construct PSBT from start to finish. |
|
|
# Construct PSBT from start to finish. |
|
|
out_fd = io.BytesIO() |
|
|
out_fd = io.BytesIO() |
|
@ -452,6 +449,7 @@ class Coldcard_KeyStore(Hardware_KeyStore): |
|
|
@classmethod |
|
|
@classmethod |
|
|
def input_script(cls, txin, estimate_size=False): |
|
|
def input_script(cls, txin, estimate_size=False): |
|
|
return '' |
|
|
return '' |
|
|
|
|
|
|
|
|
unsigned = bfh(CustomTXSerialization(tx.serialize()).serialize_to_network(witness=False)) |
|
|
unsigned = bfh(CustomTXSerialization(tx.serialize()).serialize_to_network(witness=False)) |
|
|
write_kv(PSBT_GLOBAL_UNSIGNED_TX, unsigned) |
|
|
write_kv(PSBT_GLOBAL_UNSIGNED_TX, unsigned) |
|
|
|
|
|
|
|
@ -471,6 +469,12 @@ class Coldcard_KeyStore(Hardware_KeyStore): |
|
|
for k in pubkeys: |
|
|
for k in pubkeys: |
|
|
write_kv(PSBT_IN_BIP32_DERIVATION, subkeys[k], k) |
|
|
write_kv(PSBT_IN_BIP32_DERIVATION, subkeys[k], k) |
|
|
|
|
|
|
|
|
|
|
|
if txin['type'] == 'p2wpkh-p2sh': |
|
|
|
|
|
assert len(pubkeys) == 1, 'can be only one redeem script per input' |
|
|
|
|
|
pa = hash_160(k) |
|
|
|
|
|
assert len(pa) == 20 |
|
|
|
|
|
write_kv(PSBT_IN_REDEEM_SCRIPT, b'\x00\x14'+pa) |
|
|
|
|
|
|
|
|
out_fd.write(b'\x00') |
|
|
out_fd.write(b'\x00') |
|
|
|
|
|
|
|
|
# outputs section |
|
|
# outputs section |
|
@ -595,7 +599,7 @@ class ColdcardPlugin(HW_PluginBase): |
|
|
] |
|
|
] |
|
|
|
|
|
|
|
|
#SUPPORTED_XTYPES = ('standard', 'p2wpkh-p2sh', 'p2wpkh', 'p2wsh-p2sh', 'p2wsh') |
|
|
#SUPPORTED_XTYPES = ('standard', 'p2wpkh-p2sh', 'p2wpkh', 'p2wsh-p2sh', 'p2wsh') |
|
|
SUPPORTED_XTYPES = ('standard', 'p2wpkh') |
|
|
SUPPORTED_XTYPES = ('standard', 'p2wpkh', 'p2wpkh-p2sh') |
|
|
|
|
|
|
|
|
def __init__(self, parent, config, name): |
|
|
def __init__(self, parent, config, name): |
|
|
HW_PluginBase.__init__(self, parent, config, name) |
|
|
HW_PluginBase.__init__(self, parent, config, name) |
|
|