kallewoof
c6725580c5
Merge pull request #1386 from jonasnick/fix-taproot-tweak-pubkey
...
BIP 341: Fix taproot_tweak_pubkey
2023-01-04 10:33:15 +09:00
Luke Dashjr
15c8203eb3
Merge pull request #1376 from vasild/bip330_sendtxrcncl_smplfctn
...
BIP330: drop redundant booleans from the sendtxrcncl message
2022-10-28 13:04:33 +00:00
Jonas Nick
be340277fc
BIP 341: Fix taproot_tweak_pubkey
...
`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-24 20:33:05 +00:00
Vasil Dimov
8b107a0af6
BIP330: drop redundant booleans from the sendtxrcncl message
...
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-10-06 13:56:53 +02:00
Luke Dashjr
6545b81022
Merge pull request #1351 from russeree/bip12-Implementation-url-fix
...
bip-0011/12 - fixed broken implementation url
2022-09-30 23:56:57 +00:00
Luke Dashjr
9d1f7954d8
Merge pull request #724 from jeffrade/BIP70_url_fix
...
[Trivial] BIP-70 Fixing sipa's gist proposal url
2022-09-30 23:56:15 +00:00
russeree
61d6631e5b
Update BIP 11/12 OP_EVAL implementation commit url
2022-09-29 16:57:40 -07:00
Luke Dashjr
e76137c32d
Merge pull request #1370 from naumenkogs/bip_0330_updates
...
Changes/clarifications to bip-330.
2022-09-29 22:58:21 +00:00
Luke Dashjr
194ee7320b
Merge pull request #1369 from DariusParvin/bip341
...
BIP 341: add missing conversions between bytes and int
2022-09-29 22:57:27 +00:00
Luke Dashjr
40aef27767
Merge pull request #1367 from ajtowns/202209-sighash-vs-342
...
BIP118: simplify explanation of signature message
2022-09-29 22:41:13 +00:00
Luke Dashjr
cf420089a4
Merge pull request #1349 from alfred-hodler/bip-alfredhodler-private-payments
...
New BIP 351: Private Payments
2022-09-29 22:39:41 +00:00
Luke Dashjr
be59b4fe75
Merge pull request #1293 from BP-WG/bip/p2c
...
BIP 372: Pay-to-contract tweak fields for PSBT
2022-09-29 22:34:07 +00:00
Luke Dashjr
0eb216caa5
Merge pull request #1364 from psztorc/master
...
Update BIPs 300/301
2022-09-29 22:31:22 +00:00
Luke Dashjr
af15873715
Merge pull request #1363 from achow101/370-git-conflict
...
370: Fix merge conflict and typo
2022-09-29 22:30:01 +00:00
Luke Dashjr
783d73c0c0
Merge pull request #1361 from joemphilips/fix_typo_bip0370
...
nit: fix typo in bip-0370 test vectors.
2022-09-29 22:29:28 +00:00
Luke Dashjr
d9700e7e4e
Merge pull request #640 from randolf/patch-1
...
Minor improvements
2022-09-29 22:11:18 +00:00
Gleb Naumenko
2f98abd9ea
Changes/clarifications to bip-330.
2022-09-29 14:43:19 +03:00
Darius Parvin
3cdfe1bd16
BIP 341: add missing conversions between bytes and int
...
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-28 15:45:02 -07:00
Anthony Towns
8bbf2a1424
BIP118: simplify explanation of signature message
2022-09-20 06:15:54 +10:00
Alfred Hodler
2cabfe167e
Update BIP351 reference implementation link
2022-09-15 15:01:30 +00:00
Dr. Maxim Orlovsky
d7888e53aa
BIP-372: Moving Andrew Poelstra from author to ACK section
...
Basing on https://github.com/bitcoin/bips/pull/1293#issuecomment-1242438684
2022-09-11 11:02:19 +02:00
Alfred Hodler
aa4f030041
Update authors
2022-09-10 09:54:36 +00:00
Paul Sztorc
f46b898999
make idential to bip301
2022-09-02 13:20:46 -04:00
Paul Sztorc
16fba9650a
link to new code + remove outdated references
2022-09-02 13:19:46 -04:00
Paul Sztorc
80b33be54d
header typo
2022-09-02 13:15:29 -04:00
Paul Sztorc
3176623da9
Update Bip300
2022-09-02 13:14:51 -04:00
Paul Sztorc
8447ec666a
replace files
2022-09-02 11:50:48 -04:00
Paul Sztorc
de6c9a6fcf
Update Bip300 for consistency with latest code
2022-09-02 11:39:50 -04:00
Andrew Chow
e6c08f3fac
370: Fix merge conflict and typo
2022-09-01 13:04:00 -04:00
Alfred Hodler
bffc84f63a
Add a refernce to BIP351
2022-08-30 10:45:40 +00:00
joemphilips
a924d03298
nit: fix another typo in bip-0370 test vectors
2022-08-28 14:04:22 +09:00
joemphilips
15a888dabe
nit: fix typo in bip-0370 test vectors.
2022-08-28 13:10:05 +09:00
kallewoof
52f68fecd8
Merge pull request #1355 from jonasnick/fix-missing-int
...
BIP 340 & 341: use consistent definition of lift_x
2022-08-25 16:05:58 +09:00
Jonas Nick
3998dbbc8a
BIP 340: fix function signature of lift_x in reference code
...
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-23 10:07:32 +00:00
Alfred Hodler
ac7b6c1f50
Add Comments-URI; fix author list
2022-08-22 10:03:54 +00:00
Alfred Hodler
1385d65187
Add reference implementation
2022-08-22 09:49:32 +00:00
Alfred Hodler
e56fb64292
Update the index page
2022-08-22 09:17:11 +00:00
Alfred Hodler
75a6f21e3a
Update BIP number and test vectors
2022-08-22 08:53:42 +00:00
Dr. Maxim Orlovsky
d2b4d5d099
BIP-372: add entry to the README
2022-08-21 21:55:44 +02:00
Dr. Maxim Orlovsky
697de96475
Assign Comments-URI for BIP-372
2022-08-21 21:45:47 +02:00
Dr Maxim Orlovsky
2f57890cbe
CI: Allow dashes in author e-mail domain names
...
Signed-off-by: Dr. Maxim Orlovsky <orlovsky@pandoraprime.ch>
2022-08-21 21:43:18 +02:00
Dr. Maxim Orlovsky
cdaccbedb5
Fix CI failure in BIP-372
...
Signed-off-by: Dr. Maxim Orlovsky <orlovsky@pandoraprime.ch>
2022-08-21 21:43:18 +02:00
Dr. Maxim Orlovsky
ad46e586d1
Syntaxic proofs for BIP-372
...
Signed-off-by: Dr. Maxim Orlovsky <orlovsky@pandoraprime.ch>
2022-08-21 21:43:18 +02:00
Dr. Maxim Orlovsky
0337a6c64d
Assign BIP-372 number to P2C BIP as per @kallewoof decision
...
Signed-off-by: Dr. Maxim Orlovsky <orlovsky@pandoraprime.ch>
2022-08-21 21:43:17 +02:00
Dr Maxim Orlovsky
5716f2878f
BIP P2C proposal initial version
...
Signed-off-by: Dr. Maxim Orlovsky <orlovsky@pandoraprime.ch>
2022-08-21 21:43:17 +02:00
Alfred Hodler
187135c4f6
Updates to the BIP
...
- fix out of range indexing
- add a note about compressed keys
- add a note about of-of-band notifications
- add a backward compatibility section
2022-08-19 10:14:32 +00:00
Jonas Nick
2119931f01
BIP 341: add missing conversion from bytes to int
2022-08-16 15:09:14 +00:00
kallewoof
64aba767e2
Merge pull request #1353 from ishaanam/bip174-143
...
BIP 174: fix incorrect reference to BIP 173
2022-08-16 10:37:00 +09:00
ishaanam
555c1d8c89
BIP 174: fix incorrect reference to BIP 173
2022-08-15 12:38:08 -04:00
russeree
df9c3fa977
fixed bip-0011/12 broken url - implementation
...
fixed bip-0012 broken url - implementation
fixed bip-0011 broken url - implementation
2022-08-12 17:38:29 -07:00