You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Create a new PartiallySignedTransaction class that allows creation, updating and signing of transactions in the PSBT BIP0174 format.
Create classes for the underlying PSBT data structure: PSBTKeyValue, PSBTMap as Writable classes.
Create abstract PSBT class for overall data structure: PartiallySignedTransaction. Include interface for updating input/output data, signing, merging, finalizing and obtaining the complete transaction.
Add write method to PartiallySignedTransaction.
Create PartiallySignedTransactionV1 to represent the BIP0174 PSBT which is technically v0 but often regarded as v1. Include a create named constructor.
Implement update methods.
Implement signing.
Implement merging.
Implement finalization.
Implement transaction construction.
Add a fromReader factory constructor to PartiallySignedTransaction to check for and return the relevant sub-class: only PartiallySignedTransactionV1 to begin with.
Create a new
PartiallySignedTransactionclass that allows creation, updating and signing of transactions in the PSBT BIP0174 format.PSBTKeyValue,PSBTMapasWritableclasses.PartiallySignedTransaction. Include interface for updating input/output data, signing, merging, finalizing and obtaining the complete transaction.writemethod toPartiallySignedTransaction.PartiallySignedTransactionV1to represent the BIP0174 PSBT which is technically v0 but often regarded as v1. Include acreatenamed constructor.fromReaderfactory constructor toPartiallySignedTransactionto check for and return the relevant sub-class: onlyPartiallySignedTransactionV1to begin with.