summaryrefslogtreecommitdiff
AgeCommit message (Collapse)Author
2023-12-12Adds bracketsEthan Heilman
Co-authored-by: kallewoof <kalle.alm@gmail.com>
2023-12-12Grammar fixEthan Heilman
Co-authored-by: kallewoof <kalle.alm@gmail.com>
2023-12-12Better fits bitcoin style guide Ethan Heilman
"If an if only has a single-statement then-clause, it can appear on the same line as the if, without braces. In every other case, braces are required, and the then and else clauses must appear correctly indented on a new line." Co-authored-by: kallewoof <kalle.alm@gmail.com>
2023-12-12Fixes typoEthan Heilman
Co-authored-by: kallewoof <kalle.alm@gmail.com>
2023-12-11Create bip-???-cat.mediawikiEthan Heilman
2023-09-29Merge pull request #1498 from real-or-random/202309-0324-garbauthkallewoof
bip324: Remove garbage authentication packet (breaking change)
2023-09-28bip324: Remove garbage authentication packet (breaking change)Tim Ruffing
by merging it with the version packet. Or more accurately, by merging it with the first packet sent after garbage termination, which may be a decoy packet or the version packet. The new protocol simplifies implementations: - A protocol state machine won't need separate states for garbage authentication and version phases. - The special case of "ignoring the ignore bit" is removed. - The freedom to choose the contents of the garbage authentication packet is removed. This simplifies testing. The reason for having a separate garbage authentication packet was to materialize the separation of the key exchange phase and version negotiation phase even in the bytestream on the wire. However, this is not necessary, and arguably, these phases are still properly separated: Since the AEAD will ensure that AAD (=garbage) is checked before looking at the contents (=version), the peers won't interpret version data before having authenticated the garbage.
2023-09-21Merge pull request #1496 from sipa/bip324kallewoof
bip324: small improvements
2023-09-11For now, remove BIP330 messages before being adoptedPieter Wuille
2023-09-11Allow detecting/disconnecting wrong-network v1 peersPieter Wuille
2023-09-11Use 16-byte prefix to distinguish v1 from v2Pieter Wuille
2023-08-17Merge pull request #1485 from luke-jr/bip300_adj20230726Luke Dashjr
BIP 300: Various improvements
2023-08-16Merge pull request #1482 from JeremyRubin/patch-8Luke Dashjr
Add James O'Beirne to 119 Author List
2023-07-28Add James O'Beirne to 119 Author ListJeremy Rubin
2023-07-26bip-0300: Add some guesstimate weight adjustmentsLuke Dashjr
2023-07-26bip-0300: Ensure tx fee commitment itself has zero value so sidechain coins ↵Luke Dashjr
can't get burned
2023-07-26bip-0300: Forbid extraneous OP_DRIVECHAIN outputs in M5/M6Luke Dashjr
2023-07-26bip-0300: Define endianness of upvote vectorLuke Dashjr
2023-07-26bip-0300: Reorder upvote vector version numbers to leave 1/2 bytes as ↵Luke Dashjr
version 1,2 respectively
2023-07-26bip-0300: Fix upvote vector exampleLuke Dashjr
2023-07-26bip-0300: Add OP_DRIVECHAINLuke Dashjr
2023-07-17Merge pull request #1477 from psztorc/patch-1Luke Dashjr
clearer, more failure details, + use OP_TRUE
2023-07-13clearer, more failure details, + use OP_TRUEPaul Sztorc
2023-07-02Merge pull request #1410 from anquii/bip-0039-patchLuke Dashjr
Add link to anquii/BIP39 (Swift)
2023-07-02Merge pull request #1384 from weareseba/feature/bip127_BDK_proofLuke Dashjr
Added the BDK implementation for bip-0127 proof of reserves
2023-07-02Merge pull request #1414 from coolaj86/patch-2Luke Dashjr
feat: add DashPhrase.js to JS implementations
2023-07-02Add anquii/BIP39 (Swift)anquii
2023-06-30Merge pull request #1459 from ktecho/patch-1kallewoof
Typos in bip-0119
2023-06-30Merge pull request #1444 from satsie/satsie-bip-137-editskallewoof
BIP-137: Fix typo
2023-06-30Merge pull request #1468 from achow101/descriptor-testskallewoof
descriptors: add test vectors
2023-06-30Merge pull request #1450 from yahiheb/patch-1kallewoof
[Trivial] Fix text format (BIP 39)
2023-06-29descriptors: add test vectorsAndrew Chow
2023-06-29Merge pull request #1344 from scgbckbone/passwordsLuke Dashjr
bip85 passwords
2023-06-29Merge pull request #1406 from real-or-random/patch-18Luke Dashjr
BIP341: Fix definition of NUMS point
2023-06-29Merge pull request #1436 from theStack/bip324_handsake_remove_initiating_paramLuke Dashjr
bip-0324: remove `initiating` parameter from `ellswift_create` calls
2023-06-29Merge pull request #1354 from achow101/bip-multipath-descsLuke Dashjr
[New BIP 389] Multipath descriptors
2023-06-27Merge pull request #1452 from sethforprivacy/patch-1kallewoof
BIP 329: Add `spendable` state to outputs
2023-06-06Typos in bip-0119Luis Miguel
2023-06-05Merge pull request #1454 from uncomputable/bech32m-finalkallewoof
Mark bech32m as final
2023-05-30Properly handle `spendable` state and JSON edge casesSeth For Privacy
2023-05-29Merge pull request #1446 from sipa/bip-taprootkallewoof
BIP340 updates: clarifications, variable-length messages, expand domain separation
2023-05-24Add motivation for spendable tagSeth For Privacy
2023-05-24Add `spendable` stateSeth For Privacy
2023-05-18Mark bech32m as finalChristian Lewe
2023-05-16Merge pull request #1412 from craigraw/wallet-labels-originkallewoof
BIP329: Add optional key origin property and expand truncation note
2023-04-28Merge pull request #1448 from stratospher/patch-1kallewoof
bip324: fix link to chacha20
2023-04-27Fix text formatyahiheb
2023-04-26bip324: fix link to chacha20stratospher
2023-04-20bip340: Add subsection on Domain SeparationTim Ruffing
2023-04-20bip340: Allow variable-length messagesTim Ruffing