bitcoinjs-lib
Advanced tools
Changelog
6.0.0
removed
added
fixed
Changelog
5.2.0
changed
added
getInputType
, inputHasPubkey
, inputHasHDKey
, outputHasPubkey
, outputHasHDKey
(#1563)Changelog
5.1.10
fixed
Changelog
5.1.8
fixed
added
changed
Changelog
5.1.7
fixed
weight()
to Block class, add optional includeWitness arg to Transaction byteLength method (#1515)added
Changelog
5.1.6
fixed
PsbtOutputExtended
did not support using the address attribute properly. It is now fixed.Changelog
5.1.5
added
Psbt
now has getFee(): number
for use when all inputs are finalized. It returns the satoshi fee of the transaction. Calling getFee, getFeeRate, or extractTransaction will cache these values so if you call one after the other, the second call will return immediately.Changelog
5.1.4
changed
Psbt
inputs using segwit scripts can now work with nonWitnessUtxo as well as the original witnessUtxo. The reasoning for this is that nonWitnessUtxo has all the information contained in the witnessUtxo, so rejecting signing even though we have all the info we need is unnecessary. Trying to sign a non-segwit script with a witnessUtxo will still throw an Error as it should.