summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2020-10-05Merge pull request #978 from MarcoFalke/patch-1Luke Dashjr
BIP 325: Clarify that scriptWitness is a stack, not a byte string
2020-10-05Merge pull request #989 from dr-orlovsky/patch-2Luke Dashjr
BIP 174: rename responsibilities->roles to match Bitcoin Core
2020-10-05Merge pull request #971 from yahiheb/bip79-statusLuke Dashjr
Update bip79 status
2020-10-05Merge pull request #839 from pengpengliu/masterLuke Dashjr
BIP39: Add swift implementation
2020-10-05Merge pull request #985 from joshklop/patch-1Luke Dashjr
Fixing spelling in BIP 9
2020-10-05Merge pull request #969 from pacu/patch-1Luke Dashjr
Added MnemonicSwift as Swift impl for BIP-39
2020-10-05Merge pull request #975 from ysangkok/expire-bip-0124Luke Dashjr
Reject 124 (expired)
2020-10-05Merge pull request #974 from ysangkok/expire-bip-0135Luke Dashjr
Reject 135 (expired)
2020-10-05Merge pull request #973 from ysangkok/expire-bip-0114Luke Dashjr
Reject 114 (expired)
2020-10-01Merge pull request #967 from vasild/bip155_time_and_varintLuke Dashjr
BIP155: clarify variable integer format and change time to fixed 32 bit
2020-09-29BIP155: clarify that "services" uses CompactSizeVasil Dimov
The Bitcoin Core source code has `VARINT` type which is different than the "variable integer" format used all over the P2P protocol and also for the "services" field in this BIP. The latter is called `CompactSize` in some BIPs and also in the Bitcoin Core source code, thus use the word `CompactSize` to refer to it and link to its documentation.
2020-09-23Merge pull request #907 from vasild/bip155_clarificationsLuke Dashjr
BIP155: include changes from followup discussions
2020-09-08Merge pull request #986 from kallewoof/202009-bip325-1-5-bytesLuke Dashjr
BIP 325: correct byte count for compact size
2020-09-07BIP 174: rename responsibilities->roles to match Bitcoin CoreDr. Maxim Orlovsky
[Bitcoin Core uses "roles" instead of "responsibilities"](https://github.com/bitcoin/bitcoin/blob/master/src/psbt.h#L559) and it makes semantical sense (plus less verbose).
2020-09-03bip-0325: correct byte count for compact size, and tweak to header nameKarl-Johan Alm
2020-09-02Fixing spelling in BIP 9Josh Klopfenstein
course grained => coarse-grained
2020-09-03Merge branch 'master' into masterLiu Pengpeng
2020-09-01Merge pull request #983 from kallewoof/202008-signet-empty-commitmentLuke Dashjr
bip-0325: clarify the OP_TRUE challenge special case
2020-08-29bip-0325: clarify the OP_TRUE challenge special caseKarl-Johan Alm
2020-08-27Merge pull request #980 from peterizzoo/patch-2Luke Dashjr
Update bip-0001.mediawiki
2020-08-27Merge pull request #982 from sipa/bip-taprootLuke Dashjr
BIP340 updates: even R, new tags, small fixups, clarifications
2020-08-26Merge pull request #212 from sipa/202008_evenr_clarifyPieter Wuille
Clarify that Jacobian coordinates are the optimization
2020-08-26Clarify that Jacobian coordinates are the optimization, not the Legendre symbolPieter Wuille
2020-08-26Merge pull request #210 from sipa/202008_even_r_tiebreakerPieter Wuille
Switch BIP340 to even R tiebreaker
2020-08-26Update bip-0001.mediawikipeterizzoo
It seems the date is wrong for when this BIP was created. I see here (https://sourceforge.net/p/bitcoin/mailman/message/28106734/) it was created on 9/19/11. I don't see any earlier entries on the mailing list that would suggest the 8/19 date is accurate
2020-08-22Update bip-0325.mediawikiMarcoFalke
It just happens that an empty byte vector is serialized identical to an empty vector of any other type, but it takes the reader an extra step. Thus, the minor fixup suggestion.
2020-08-21Reject 135 (expired)Janus
2020-08-21Reject 124 (expired)Janus
2020-08-21Reject 114 (expired)Janus
2020-08-21Update bip79 statusYahia Chiheb
2020-08-20Merge pull request #970 from instagibbs/patch-12Luke Dashjr
BIP 342: be slightly more explicit about codesep_pos
2020-08-20Merge pull request #964 from sanket1729/masterLuke Dashjr
BIP 174: Fix formatting changes
2020-08-20Merge pull request #955 from apoelstra/2020-07-hash-preimages-to-174Luke Dashjr
BIP174: add hash preimage fields to inputs
2020-08-20Merge pull request #966 from sdaftuar/2020-08-wtxid-relay-fixesLuke Dashjr
BIP 339 clarifications
2020-08-20Merge pull request #965 from yahiheb/bip79Luke Dashjr
Update bip79 status
2020-08-20Merge pull request #962 from darosior/bip32_python_implemLuke Dashjr
bip-0032: remove the 'Implementations' section
2020-08-20Merge pull request #959 from ysangkok/expire-bip-0180Luke Dashjr
Reject 180 (expired)
2020-08-20Merge pull request #958 from ysangkok/expire-bip-0171Luke Dashjr
Reject 171 (expired)
2020-08-20Merge pull request #957 from ysangkok/expire-bip-0134Luke Dashjr
Reject 134 (expired)
2020-08-20Merge pull request #956 from ysangkok/expire-bip-0131Luke Dashjr
Reject 131 (expired)
2020-08-20Update test vectors and generation scriptPieter Wuille
2020-08-20Rename lift_x_even_y to lift_xPieter Wuille
2020-08-20Change tags to avoid collisions with earlier draftPieter Wuille
2020-08-20Switch to even tiebreaker for RPieter Wuille
2020-08-16be slightly more explicit about codesep_posGregory Sanders
Felt this could be under-defined, and if this is wrong, would be nice to have correct text in its place
2020-08-15Added MnemonicSwift as Swift impl for BIP-39Francisco Gindre
2020-08-13BIP155: change "time" to fixed 32 bit unsignedVasil Dimov
32 bit unsigned can represent time up to year 2106 (32 bit signed is limited to just 2038). So, we don't need to have "time" encoded as variable integer which would take 5 bytes instead of 4.
2020-08-11BIP174: add hash preimage fields to inputsAndrew Poelstra
2020-08-07BIP339: clarify fetchingSuhas Daftuar
A node may always fetch a transactions using the txid.
2020-08-07BIP339: clarify handshakeJohn Newbery