summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2023-03-29BIP327: fixups for buildtable.plAnthony Towns
2023-03-27Merge pull request #1372 from jonasnick/musig2-squashedkallewoof
Add BIP MuSig2
2023-03-27Add BIP327: MuSig2 for BIP340-compatible Multi-SignaturesJonas Nick
2023-03-24Merge pull request #1433 from raphjaph/patch-1kallewoof
Improve BIP-341 wording
2023-03-17Merge pull request #1428 from dhruv/bip324-update-feb-2023kallewoof
BIP324: Fixed length message type IDs
2023-03-17new BIP: codex32 (#1425)Andrew Poelstra
new BIP: codex32 --------- Co-authored-by: Russell O'Connor <roconnor@blockstream.io>
2023-03-10Improve BIP-341 wordingraphjaph
Reading the spec closely the different language used for serialization of input outpoints and input amounts was confusing on first read. This change uses the same language for both, which makes it easier to read.
2023-03-09replace travis with Github Actions (#1432)kallewoof
replace travis with Github Actions
2023-03-08Merge pull request #1430 from bigspider/psbtv0-fix-signing-algokallewoof
PSBTv0: Update Simple Signer Algorithm for SegWitv0 inputs
2023-03-08Merge pull request #1431 from bigspider/psbtv2-fix-txversionkallewoof
PSBTv2: Relax transaction version requirement
2023-03-04Relax transaction version requirement when the Creator is also a Constructor.Salvatore Ingala
2023-03-04Update Simple Signer Algorithm for SegWitv0 inputsSalvatore Ingala
It is no longer expected that SegWitV0 inputs have no witness-utxo field. Reverting the order of checks avoids this assumption (while still relying on the mandatory lack of witness-utxo for legacy inputs).
2023-02-28Updates to BIP324 since January 11 2023dhruv
2023-02-27Merge pull request #1427 from cmdruid/patch-1kallewoof
Update bip-0370.mediawiki
2023-02-27Merge pull request #1423 from uncomputable/taproot-finalkallewoof
Mark Taproot BIPs as Final
2023-02-23Update bip-0370.mediawikicmd
Small typo. Changed 'gemeric' to 'generic'.
2023-02-21Mark BIP 343 as FinalChristian Lewe
2023-02-21Merge pull request #1157 from tcharding/list-renderkallewoof
Remove newline to fix list rendering
2023-02-21Merge pull request #1418 from jeepkd/patch-1kallewoof
Add BIP-329 to the index table
2023-02-21Merge pull request #1417 from achow101/380-clarify-optional-checksumkallewoof
380: Clarify optionality of descriptor checksum
2023-02-20Merge pull request #1422 from instagibbs/patch-18kallewoof
Update PSBT_IN_TAP_BIP32_DERIVATION key desc
2023-02-19Mark Taproot BIPs as FinalChristian Lewe
2023-02-15Update PSBT_IN_TAP_BIP32_DERIVATION key descGregory Sanders
Clarify intended usage of PSBT_IN_TAP_BIP32_DERIVATION for key-spends.
2023-02-11Add BIP-329 to the index tableNutthawut (Jeep) Kiddee
2023-02-10380: Clarify optionality of descriptor checksumAndrew Chow
Parsers must handle checksum optionality, but applications can choose to reject descriptors that don't have a checksum.
2023-02-10Merge pull request #1416 from Shadouts/masterkallewoof
BIP0174 and BIP0370 PSBT_GLOBAL_TX_VERSION <valuedata> type correction
2023-02-08Fix valuedata type to match description.Jack
2023-02-03Merge pull request #1405 from sipa/202301_bip324_updatekallewoof
BIP324 reference code / test vector improvements
2023-01-18Merge pull request #1407 from instagibbs/patch-17kallewoof
BIP174: s/uiht/uint/s
2023-01-17uihtGregory Sanders
2023-01-17Wallet Labels Export Format (#1383)craigraw
* initial commit * fix formatting * add importing section * clarify csv preference * tabs to spaces * add rationale and references, require that rfc4180 is followed * fix reference links * show reference links as list * use self describing json lines format instead of csv * add bip number and accommodate 65 byte pubkeys * fix comments uri
2023-01-11BIP324 updatesPieter Wuille
Includes: * Simpler (but equivalent) ElligatorSwift encoding function & spec * Improved test vectors * Test vector generation code * Code for converting test vectors for libsecp256k1 code. * Code for running test vectors against SwiftEC paper authors' code. * Miscellaneous reference code improvements (style, comments).
2023-01-05Merge pull request #1378 from dhruv/bip324kallewoof
Add BIP324: v2 P2P Transport Protocol
2023-01-05Merge pull request #1350 from jonasnick/bip-0341-signingfixkallewoof
BIP 341: allow taproot_sign_key with no script tree
2023-01-04Add BIP324dhruv
2023-01-04BIP 341: allow taproot_sign_key with no script treeJonas Nick
In contrast to taproot_output_script, taproot_sign_key was not able to deal with a script_tree that is None. This commit fixes taproot_sign_key such that it can sign for such outputs. This commit avoids changing the behavior of the functions except taproot_sign_key at the cost of having some code duplication. Alternatively, one could let taproot_tree_helper deal with a None script_tree directly.
2023-01-04Merge pull request #1379 from DariusParvin/bip341-aux_randkallewoof
BIP341: add aux_rand argument to taproot_sign_key
2023-01-04Merge pull request #1386 from jonasnick/fix-taproot-tweak-pubkeykallewoof
BIP 341: Fix taproot_tweak_pubkey
2022-11-03BIP341: add bip340_aux_rand argument to taproot_sign_keyDarius Parvin
2022-10-28Merge pull request #1376 from vasild/bip330_sendtxrcncl_smplfctnLuke Dashjr
BIP330: drop redundant booleans from the sendtxrcncl message
2022-10-24BIP 341: Fix taproot_tweak_pubkeyJonas Nick
`lift_x` returns `None` if the input integer is not an X coordinate on the curve to indicate failure. `point_add`, on the other hand, interprets `None` as the point at infinity. Therefore, without this commit, if the internal `pubkey` is not a valid X coordinate, the function will not fail, which contradicts the specification in the "Script validation rules section". Instead, it sets `Q` to `t*G`.
2022-10-06BIP330: drop redundant booleans from the sendtxrcncl messageVasil Dimov
The reconciliation protocol assumes using one role consistently. Since it is irrelevant which one is which, we can imply that the initiator of the P2P connection will assume the role of reconciliation initiator. This protocol simplification will seep into the implementation.
2022-09-30Merge pull request #1351 from russeree/bip12-Implementation-url-fixLuke Dashjr
bip-0011/12 - fixed broken implementation url
2022-09-30Merge pull request #724 from jeffrade/BIP70_url_fixLuke Dashjr
[Trivial] BIP-70 Fixing sipa's gist proposal url
2022-09-29Update BIP 11/12 OP_EVAL implementation commit urlrusseree
2022-09-29Merge pull request #1370 from naumenkogs/bip_0330_updatesLuke Dashjr
Changes/clarifications to bip-330.
2022-09-29Merge pull request #1369 from DariusParvin/bip341Luke Dashjr
BIP 341: add missing conversions between bytes and int
2022-09-29Merge pull request #1367 from ajtowns/202209-sighash-vs-342Luke Dashjr
BIP118: simplify explanation of signature message
2022-09-29Merge pull request #1349 from alfred-hodler/bip-alfredhodler-private-paymentsLuke Dashjr
New BIP 351: Private Payments
2022-09-29Merge pull request #1293 from BP-WG/bip/p2cLuke Dashjr
BIP 372: Pay-to-contract tweak fields for PSBT