Commit graph

1360 commits

Author SHA1 Message Date
junderw
93af5afe67
Add warning to future segwit version address generation/parsing 2021-11-27 08:35:19 +09:00
junderw
45187a32d0
Add taggedHash, sigHash v1
Co-authored-by: Brandon Black <brandonblack@bitgo.com>
Co-authored-by: Otto Allmendinger <otto@bitgo.com>
Co-authored-by: Tyler Levine <tyler@bitgo.com>
Co-authored-by: Daniel McNally <danielmcnally@bitgo.com>
2021-11-12 08:33:18 +09:00
junderw
84bc2ea6bf
Remove bip32, (User must bring their own) 2021-10-21 08:58:53 +09:00
junderw
b1ff3cee49
Use ES2020, add dev dep for randombytes 2021-10-20 23:55:57 +09:00
junderw
e5a77304fa
Refactor: Remove all require statements, remove ECPair, remove tiny-secp256k1 dep 2021-10-20 19:18:01 +09:00
Jonathan Underwood
793bf5a720
Merge pull request #1657 from bitcoincoretech/issue_1477
#1477 - Remove TransactionBuilder
2021-10-20 12:44:34 +09:00
Otto Allmendinger
6b71eb0c65
fix(transaction): use writeInt32 to write version
We are reading `version` as `int32` so we should write it as that as
well.
2021-08-17 14:57:28 +02:00
Andrew Toth
2f7c83b286 Support address de/serialization from/to future bech32m outputs 2021-02-16 16:48:05 -05:00
Andrew Toth
40e73b4898 Bump bech32 to v2.0.0 2021-02-15 14:47:17 -05:00
Vlad Stan
c217551884 #1477 remove non-public dependecies of TransactionBuilder (classify & templates)) 2020-11-27 12:02:07 +02:00
Vlad Stan
5c6243f4e4 #1477 remove TransactionBuilder and all references to it 2020-11-27 11:39:10 +02:00
Vlad Stan
09a0eb9779 #4 do not add empty redeem script name 2020-10-01 15:10:49 +03:00
junderw
17c47e9102
Merge branch 'master' into addPsbtMethods 2020-09-12 00:18:37 +09:00
junderw
65d7603cf7
Fix signInputAsync when SignerAsync rejects
Co-authored-by: Zhang Zengbo <zengbo.zhang@gmail.com>
2020-06-01 15:40:28 +09:00
Luke Childs
48967652ca
Handle non-standard output types in Psbt.txOutputs 2020-05-29 16:05:27 +09:00
junderw
c2d8d19c61
Simplify chunkHasUncompressedPubkey and remove lazy load of output script 2020-05-21 12:54:49 +09:00
junderw
25b5806cf1
Throw errors when p2wsh or p2wpkh contain uncompressed pubkeys.
This will enforce BIP143 compressed pubkey rules on an address generation level.
2020-05-21 11:11:12 +09:00
junderw
f87a20caa7
Add hasHDKey 2020-04-29 14:39:50 +09:00
junderw
5d19abfb85
Add ability to get redeemScript|witnessScript from finalized scripts 2020-04-29 13:32:57 +09:00
junderw
c9f399e509
Add getInputType 2020-04-29 11:05:33 +09:00
Luke Childs
d02483473b allocUnsafe for faster buffer cloning
It's safe to do this because we immediately overwrite the entire buffer. No need to zero out first.
2020-04-28 19:58:21 +07:00
junderw
0c52803ba1
Add discouraged unsafe nonsegwit signing 2020-04-28 18:52:43 +09:00
junderw
7d09fe5dcb
Refactor Psbt logic 2020-04-28 18:50:00 +09:00
junderw
97074f8a64
Refactor getMeaningfulScript 2020-04-28 14:41:48 +09:00
Luke Childs
e9382ebea2 Fix horrific bug! 2020-04-27 20:37:32 +07:00
junderw
361ea7c098
Add inputHasPubkey and outputHasPubkey methods 2020-04-27 17:10:11 +09:00
Luke Childs
fde6025480 Remove script from txInputs 2020-04-27 10:23:53 +07:00
Luke Childs
2d4a3b9354 Don't expose witness on Psbt.txInputs 2020-04-26 18:15:06 +07:00
Luke Childs
e7345d5446 {in,out}puts => tx{In,Out}puts 2020-04-26 18:07:09 +07:00
Luke Childs
6c616bff78 Add address to output data 2020-04-26 18:05:18 +07:00
Luke Childs
58cdb3a362 Add setters for version and locktime 2020-04-26 17:43:58 +07:00
Luke Childs
c9b2964546 Remove extra return statement 2020-04-26 15:37:57 +07:00
Luke Childs
c68986231c Improve property names 2020-04-26 15:34:11 +07:00
Luke Childs
f7034350e9 Clone transaction data more efficiently 2020-04-26 15:22:38 +07:00
Luke Childs
854c601342 Add getters for Psbt.{txVersion,txLocktime,txInputs,txOutputs} 2020-04-26 14:30:13 +07:00
junderw
5679a4b455
Check write/read Slice out of bounds 2020-01-15 14:14:02 +09:00
junderw
717166e668
Fix comment 2020-01-15 11:28:56 +09:00
junderw
c8fdfae955
Add BufferReader tests 2020-01-15 11:25:53 +09:00
junderw
06674b19fe
Add BufferReader to Transaction and fix tests 2020-01-15 10:50:33 +09:00
junderw
91e6c8abc3
Move to bufferutils and add BufferReader 2020-01-15 10:44:29 +09:00
Otto Allmendinger
cec5fb5357
Extract BufferWriter class
Move various write methods to a class `BufferWriter`.

This allows increased code reuse for libraries that want to implement
different serialization formats.

Also de-duplicates some code paths and increases test coverage.

Original concept by idea by https://github.com/argjv:
https://github.com/BitGo/bitgo-utxo-lib/blob/master/src/bufferWriter.js
2020-01-14 15:03:14 +01:00
d-yokoi
f67aab371c
Merge pull request #1491 from bitcoinjs/finalizerCallback
Allow custom implementations of finalizers
2020-01-06 12:19:27 +09:00
d-yokoi
879d49033c
Merge pull request #1519 from bitcoinjs/doubleMSSamekey
PSBT Bugfix for multiple of same pubkey in p2ms
2020-01-02 00:57:47 +09:00
d-yokoi
3f6f5ef97a
Merge pull request #1487 from bitcoinjs/addError
Add sanity check for arguments
2019-12-11 13:41:11 +09:00
junderw
85e4512e08
Add JS fixes too 2019-12-09 14:54:22 +09:00
junderw
10fcf3d9e1
Remove private __byteLength from Transaction 2019-12-09 10:37:55 +09:00
junderw
e10324f850
PSBT Bugfix for multiple of same pubkey in p2ms 2019-12-02 15:58:04 +09:00
junderw
48bf08c0d3
Add weight and ability to get strippedsize 2019-11-29 15:30:23 +09:00
junderw
4b5a519bfe
Use single func instead of 3 2019-10-28 11:40:56 +09:00
junderw
22682fc2c3
Allow custom implementations of finalizers 2019-10-10 11:01:54 +09:00