summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2023-01-31Fix description of M parameterJohn Moffett
The M parameter is used as the inverse of the false probability rate, so change its incorrect usage in two places.
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-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
2022-09-29Merge pull request #1364 from psztorc/masterLuke Dashjr
Update BIPs 300/301
2022-09-29Merge pull request #1363 from achow101/370-git-conflictLuke Dashjr
370: Fix merge conflict and typo
2022-09-29Merge pull request #1361 from joemphilips/fix_typo_bip0370Luke Dashjr
nit: fix typo in bip-0370 test vectors.
2022-09-29Merge pull request #640 from randolf/patch-1Luke Dashjr
Minor improvements
2022-09-29Changes/clarifications to bip-330.Gleb Naumenko
2022-09-28BIP 341: add missing conversions between bytes and intDarius Parvin
Convert seckey0 to bytes at the start of the function. Return the output as bytes for consistency with the rest of the code.
2022-09-20BIP118: simplify explanation of signature messageAnthony Towns
2022-09-15Update BIP351 reference implementation linkAlfred Hodler
2022-09-11BIP-372: Moving Andrew Poelstra from author to ACK sectionDr. Maxim Orlovsky
Basing on https://github.com/bitcoin/bips/pull/1293#issuecomment-1242438684
2022-09-10Update authorsAlfred Hodler
2022-09-02make idential to bip301Paul Sztorc
2022-09-02link to new code + remove outdated referencesPaul Sztorc
2022-09-02header typoPaul Sztorc
2022-09-02Update Bip300Paul Sztorc
2022-09-02replace filesPaul Sztorc
2022-09-02Update Bip300 for consistency with latest codePaul Sztorc
2022-09-01370: Fix merge conflict and typoAndrew Chow
2022-08-30Add a refernce to BIP351Alfred Hodler
2022-08-28nit: fix another typo in bip-0370 test vectorsjoemphilips
2022-08-28nit: fix typo in bip-0370 test vectors.joemphilips
2022-08-25Merge pull request #1355 from jonasnick/fix-missing-intkallewoof
BIP 340 & 341: use consistent definition of lift_x
2022-08-23BIP 340: fix function signature of lift_x in reference codeJonas Nick
bip-0340.mediawiki defines lift_x as taking an integer argument. This commit changes the argument of lift_x in the reference code to be identical to the specification. Previously it took a byte array.
2022-08-22Add Comments-URI; fix author listAlfred Hodler
2022-08-22Add reference implementationAlfred Hodler
2022-08-22Update the index pageAlfred Hodler
2022-08-22Update BIP number and test vectorsAlfred Hodler
2022-08-21BIP-372: add entry to the READMEDr. Maxim Orlovsky
2022-08-21Assign Comments-URI for BIP-372Dr. Maxim Orlovsky