1
0
Fork 0
mirror of https://github.com/bitcoin/bips.git synced 2025-03-10 00:09:05 +01:00
Commit graph

2837 commits

Author SHA1 Message Date
Paul Sztorc
69670c9da2
cleanup 1 2019-07-23 09:26:45 -07:00
Paul Sztorc
42e96858d5
move images 2019-07-23 09:26:15 -07:00
Paul Sztorc
1ff5d5d825
rename folder 2019-07-23 09:20:44 -07:00
Paul Sztorc
6ca33dc635
Rename bip-blind-merged-mining.mediawiki to bip-0301.mediawiki 2019-07-23 09:18:18 -07:00
Paul Sztorc
329df0b836
Update dates/links to merge 2019-07-23 09:14:33 -07:00
Clark Moody
5b74e93fcb Update test vectors with new version bytes 2019-07-23 11:13:15 -05:00
Clark Moody
75ae8418da Link to SLIP-0132 2019-07-23 10:30:10 -05:00
Clark Moody
4413bdc46f Add version bytes section 2019-07-23 10:30:10 -05:00
Luke Dashjr
ac75b1dcf5
Merge pull request #777 from dergigi/dergigi-patch-1-bip-typos
[Trivial] BIP2, BIP16: fix typos
2019-07-23 14:51:57 +00:00
Luke Dashjr
6a25c1478f
Merge pull request #800 from junderw/junderw-patch-1
BIP174: Include suggested sighash check
2019-07-23 14:51:01 +00:00
Luke Dashjr
095087bed0
Merge pull request #766 from laanwj/2019_02_addvr2
BIP 155: addrv2 BIP proposal
2019-07-23 14:43:59 +00:00
Luke Dashjr
15f7e19493
Merge pull request #805 from hebasto/patch-2
BIP 143: Remove duplicated 'the'
2019-07-23 14:37:32 +00:00
Hennadii Stepanov
42cc0c724d
BIP 143: Remove duplicated 'the' 2019-07-18 13:30:06 +03:00
Hennadii Stepanov
39a23b7cbe
BIP 173: Remove duplicated 'the' 2019-07-18 13:24:32 +03:00
Wladimir J. van der Laan
f5174192e2 bip155: Add table entry 2019-07-18 00:37:29 +02:00
Wladimir J. van der Laan
e993478060 bip155: Fix comments URL 2019-07-18 00:33:26 +02:00
Wladimir J. van der Laan
34534b5ee1 bip155: fill in BIP number 2019-07-18 00:17:55 +02:00
Luke Dashjr
bf057da6f7
Merge pull request #784 from achow101/bip174-xpubs
bip174: add global xpub field
2019-07-10 02:05:16 +00:00
Jonathan Underwood
97447f981f
BIP174: Include suggested sighash check 2019-07-10 08:30:23 +09:00
wigy
308594e098
Updated BIP-0138 Comments-Summary
That opinion was unnoticed for more than a month now, maybe this helps getting counter-arguments.
2019-07-01 17:07:12 +02:00
Luke Childs
7ab9ef95c6
[bip174] Fix typo in signer pseudo code 2019-06-26 16:47:04 +07:00
Janus
79c7b80c89 Reject BIP-0083 (three years inactivity) 2019-06-20 16:31:52 -05:00
Janus
71aeb97411 Reject BIP-0074 (three years inactivity) 2019-06-20 16:11:19 -05:00
nkohen
4fe45328c8 Updated Golomb-Rice Coded sets reference implementation link 2019-06-13 13:52:10 -05:00
Fabian Jahr
b65ca1c094 BIP 158: remove old reference to extended filter type 2019-06-13 12:19:57 -04:00
Luke Dashjr
8f9205760e
Merge pull request #555 from veleslavs/Bech32_Encoded_TxRef
BIP 136: Bech32 Encoded Tx Position References
2019-06-13 13:58:40 +00:00
Daniel X. Pape
4e2bb34d04 add examples for TxRefs with Outpoints; fix some typos and wording 2019-06-13 08:14:43 +02:00
Велеслав
a8bb0a4e39 Include Optional Encoded Outpoints
With thanks to Daniel Pape for the work behind this idea.

Please not that the test-vectors still need to be updated (again).
2019-06-13 08:14:41 +02:00
Велеслав
e78c384755 BIP-136: Bech32 Encoded Tx Position References 2019-06-13 08:14:39 +02:00
Andrew Chow
e1f770e236 bip174: add section describing change detection 2019-06-09 23:39:25 +02:00
Andrew Chow
19d3b9dc82 bip174: add global xpub field 2019-06-09 10:48:05 +02:00
Luke Dashjr
58e737617c
Merge pull request #757 from moneyball/patch-1
fixed minor typo in BIP 79
2019-05-18 16:47:40 +00:00
MarcoFalke
d8dea4ef09
BIP 144: Old serialization format must be used on empty witness 2019-05-13 18:24:52 -04:00
Pieter Wuille
084dee847d
Merge pull request #42 from jonasnick/clarify-diagram
Clarify description of diagram
2019-05-10 09:52:25 -07:00
Jonas Nick
04b844540e Clarify diagram 2019-05-10 13:57:12 +00:00
Pieter Wuille
b55fed9f86
Merge pull request #41 from dgpv/patch-1
taproot_output_script: first returned byte should be OP_1 (0x51)
2019-05-09 15:19:04 -07:00
Dmitry Petukhov
0c49346c87
taproot_output_script: first returned byte should be OP_1 (0x51)
If we look at

  def IsPayToTaproot(script):
      return len(script) == 35 and script[0] == OP_1 and script[1] == 33 and script[2] >= 0 and script[2] <= 1

First byte is is checked for OP_1. OP_1 is 0x51

But the example code in this BIP returns  

`bytes([0x01, 0x21, output_pubkey[0] & 1]) + output_pubkey[1:]`

First byte 0x01, but it should be 0x51
2019-05-10 03:09:54 +05:00
Pieter Wuille
27e61d61e6
Merge pull request #40 from markblundeberg/patch-1
remove duplicate warning
2019-05-06 13:14:39 -07:00
Mark B Lundeberg
d194620af9
remove duplicate warning
Though perhaps, the emphasis is warranted given its importance. :-)
2019-05-06 13:13:20 -07:00
Pieter Wuille
271e5db6d7
Merge pull request #30 from jonasnick/clarify-reduce
Clarify what 'reduced' means in tests and use word 'message' instead of 'message hash'
2019-05-06 13:11:40 -07:00
Jonas Nick
e9ea1710ef Clarify what 'reduced' means in tests and use word 'message' instead of 'message hash' 2019-05-06 20:09:33 +00:00
Pieter Wuille
6733024595 Add taproot/tapscript bips drafts 2019-05-06 10:46:09 -07:00
Pieter Wuille
aeffa07527 Add draft for Schnorr BIP
Includes squashed contributions by GitHub users jonasnick,
real-or-random, AustinWilliams, JustinTArthur, ysangkok,
RCassatta, Sjors, tnakagawa, and guggero.
2019-05-06 10:40:58 -07:00
Torkel Rogstad
49d44b9b28
Update bip-0049.mediawiki
Fix broken internal link
2019-04-30 10:51:43 +02:00
Gigi
0cb0d361a5
[Trivial] Fix word repetition
* changes modifies -> modifies
* index of of -> index of
2019-04-21 19:17:41 -05:00
Paul Sztorc
d69e368ce3 typo
the critical txn should start with "03", as it has version number 3
2019-04-17 16:59:40 -07:00
Gigi
14834fa63c
is alive any working -> is alive and working 2019-04-09 22:41:52 -05:00
Gigi
18f43a6b2a
transaction -> transactions 2019-04-09 22:37:48 -05:00
Luke Dashjr
111e427d20
Merge pull request #770 from torkelrogstad/patch-1
[BIP 44] Remove 21 Machine Wallet
2019-04-09 12:04:09 +00:00
Torkel Rogstad
c6e8351583 [bip44] Remove "Compatible wallets" section 2019-04-09 09:20:44 +02:00