You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: bip-0142.mediawiki
+13-13Lines changed: 13 additions & 13 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -19,7 +19,7 @@ To define standard payment address for native segregated witness (segwit) transa
19
19
20
20
The new Bitcoin address format defined is for the Pay-to-Witness-Public-Key-Hash (P2WPKH) and Pay-to-Witness-Script-Hash (P2WSH) transaction described in segregated witness soft fork (BIP141). The scriptPubKey is an OP_0 followed by a push of 20-byte-hash (P2WPKH) or 32-byte hash (P2WSH).
21
21
22
-
The new address is encoded in a simlar way as existing address formats:
22
+
The new address is encoded in a way similar to existing address formats:
23
23
24
24
base58-encode:
25
25
[1-byte address version]
@@ -32,23 +32,23 @@ For P2WPKH address, the address version is 6 (0x06) for a main-network address o
32
32
33
33
For P2WSH address, the address version is 10 (0x0A) for a main-network address or 40 (0x28) for a testnet address.
34
34
35
-
The witness program version is an 1-byte value between 0 (0x00) and 16 (0x10). Only version 0 is defined in BIP141. Versions 1 to 16 are reserved for future extensions.
35
+
The witness program version is a 1-byte value between 0 (0x00) and 16 (0x10). Only version 0 is defined in BIP141. Versions 1 to 16 are reserved for future extensions.
36
36
37
-
Following the witness program version is a 0x00 padding to make sure that each witness program version will have an unique prefix.
37
+
Following the witness program version is a 0x00 padding to make sure that each witness program version will have a unique prefix.
38
38
39
39
Following the padding is the program hash, 20 byte for a P2WPKH address and 32 byte for a P2WSH address.
40
40
41
41
The 4-byte checksum is the first four bytes of the double SHA256 hash of the serialization of the previous items.
42
42
43
-
All addresses generated with this scheme will have a constant length, with 36 digits for 20-byte and 53 digits for 32-byte. Different witness program version will have an unique prefix shown in the following table:
43
+
All addresses generated with this scheme will have a constant length, with 36 digits for 20-byte and 53 digits for 32-byte. Different witness program versions will have a unique prefix, as shown in the following table:
44
44
45
45
{|class="wikitable" style="text-align: center;"
46
46
|-
47
47
!rowspan=3 style=""|Witness program version
48
48
!colspan=4 style=""|Hash size
49
49
|-
50
-
!colspan=2 style=""|20-byte (36 digits)
51
-
!colspan=2 style=""|32-byte (53 digits)
50
+
!colspan=2 style=""|20-byte (36 characters)
51
+
!colspan=2 style=""|32-byte (53 characters)
52
52
|-
53
53
!Mainnet
54
54
!Testnet
@@ -94,12 +94,12 @@ All addresses generated with this scheme will have a constant length, with 36 di
94
94
95
95
== Rationale ==
96
96
97
-
The BIP141 defines 2 ways of encoding "witness program", a data push of 2 to 32 bytes:
97
+
BIP141 defines 2 ways of encoding a "witness program", a data push of 2 to 32 bytes:
98
98
99
99
* A native witness program output is a scriptPubKey with a push of version byte followed by a push of witness program, and nothing else;
100
100
* Segwit-in-P2SH is a BIP16 P2SH redeemScript with a push of version byte followed by a push of witness program, while the scriptPubKey looks like a normal P2SH output.
101
101
102
-
As the BIP13 P2SH address has been defined in 2012, using segwit-in-P2SH allows most existing wallets to pay a segwit-compatible wallet without any upgrade. However, this method requires more block space and is only a short-term solution to make the transition smoother. Eventually, all users are expected to use the more efficient native witness program as the primary payment method.
102
+
Considering the BIP13 P2SH address has been defined in 2012, using segwit-in-P2SH allows most existing wallets to pay a segwit-compatible wallet without any upgrade. However, this method requires more block space and is only a short-term solution to make the transition smoother. Eventually, all users are expected to use the more efficient native witness program as the primary method of payment.
103
103
104
104
The drawbacks of Bitcoin addresses have been extensively discussed in BIP13. Since then, better payment methods have been proposed or deployed, for example:
105
105
*BIP47 Reusable Payment Codes for Hierarchical Deterministic Wallets
@@ -108,13 +108,13 @@ The drawbacks of Bitcoin addresses have been extensively discussed in BIP13. Sin
108
108
109
109
However, none of these are as widely adopted as the suboptimal base-58 scriptPubKey template addresses, which is still a standard for the whole eco-system, from wallets, block explorers, merchants, exchanges, to end users. It is believed that the proposed P2WPKH and P2WSH address format is the easiest way for wallets and services to adopt native witness program, which is particularly important in the context of scaling the capacity of the blockchain.
110
110
111
-
While P2WPKH address is specific for simple payment to a single public key, P2WSH address allows arbitrarily complex segwit transactions, resemble to the BIP13 P2SH address.
111
+
While P2WPKH address is specific for simple payment to a single public key, P2WSH address allows arbitrarily complex segwit transactions, similar to the BIP13 P2SH address.
112
112
113
113
== Compatibility ==
114
114
115
-
This proposal is not backwardcompatible. However, an older implementation will report the new address type as invalid and will refuse to create a transaction.
115
+
This proposal is not backward-compatible. However, an older implementation will report the new address type as invalid, and refuse to create a transaction.
116
116
117
-
This proposal is forwardcompatible to the future versions of witness program of 20 and 32 bytes.
117
+
This proposal is forward-compatible with future versions of witness programs of 20 and 32 bytes.
118
118
119
119
== Example ==
120
120
@@ -126,15 +126,15 @@ when encoded as a P2PKH template, would become:
0 commit comments