mirror of
https://github.com/bitcoin/bips.git
synced 2025-05-12 12:03:29 +00:00
New proposal with 2 address types
This commit is contained in:
parent
09192275ac
commit
93cedfbf2d
@ -1,6 +1,6 @@
|
||||
<pre>
|
||||
BIP: x
|
||||
Title: Address Format for Witness Program
|
||||
Title: Address Formats for Witness Program
|
||||
Author: Johnson Lau <jl2012@xbt.hk>
|
||||
Status: Draft
|
||||
Type: Standards Track
|
||||
@ -9,35 +9,65 @@
|
||||
|
||||
==Abstract==
|
||||
|
||||
This BIP describes a new type of Bitcoin address to support native Segregated Witness (segwit) transactions. An address encoded under this proposal represents the base-58 encoding of a witness program. It supports arbitrarily complex transactions, and is forward compatible to new version witness programs in the future.
|
||||
This BIP describes 2 new types of Bitcoin address to support native Segregated Witness (segwit) transactions. The first type resembles the original P2PKH base-58 address. The second type is a z-base-32 representation of a witness program with Damm algorithm checksum, which supports arbitrarily complex transactions, and is forward compatible to new version witness programs in the future.
|
||||
|
||||
==Motivation==
|
||||
|
||||
To define a standard payment address for native segwit transactions, with minimal changes from existing address types, for the promotion of early adoption of the more efficient transaction method.
|
||||
To define standard payment addresses for native segwit transactions to promote early adoption of the more efficient transaction method.
|
||||
|
||||
==Specification==
|
||||
== Specification ==
|
||||
=== P2PKH segwit address ===
|
||||
The first new Bitcoin address format defined is specific to pay-to-public-key-hash segwit transaction. The scriptPubKey is a single push of version-0 witness program in this form,
|
||||
<0x0076A914{20-byte-hash-value}88AC>
|
||||
The new address is encoded exactly in the same way as the original pay-to-public-key-hash address:
|
||||
base58-encode: [1-byte version][20-byte-hash-value][4-byte checksum]
|
||||
Version byte is 0x19 for a main-network address, 0x41 for a testnet address. The following 20-byte is the public key hash. And the 4-byte checksum is the first four bytes of the double SHA256 hash of the version and public key hash.
|
||||
|
||||
The new bitcoin address type is constructed in a similar manner of the original pay-to-public-key-hash addresses and pay-to-script-hash addresses (see BIP13):
|
||||
All addresses generated with this scheme will a constant length of 34 characters, with a "B" prefix for main-network and "T" prefix for testnet.
|
||||
|
||||
base58-encode:
|
||||
[one-byte version]
|
||||
[one-byte program length]
|
||||
[2 to 41-byte witness program]
|
||||
[padding by 0x00 to 43 bytes]
|
||||
[4-byte checksum]
|
||||
(47 bytes in total)
|
||||
=== General segwit address ===
|
||||
The second new bitcoin address format defined is applicable to any version of witness program with a length of 2 to 33 bytes.
|
||||
|
||||
Version byte is 0x15 for a main-network address, 0x37 for a testnet address.
|
||||
The z-base-32 character set is used:
|
||||
{|class="wikitable" style="width:40ex; text-align: center; margin: 0 auto 0 auto;"
|
||||
!width="12%"|Value
|
||||
!width="12%"|Symbol
|
||||
!width="12%"|Value
|
||||
!width="12%"|Symbol
|
||||
!width="12%"|Value
|
||||
!width="12%"|Symbol
|
||||
!width="12%"|Value
|
||||
!width="12%"|Symbol
|
||||
|-
|
||||
| 0 || y || 8 || e || 16 || o || 24 || a
|
||||
|-
|
||||
| 1 || b || 9 || j || 17 || t || 25 || 2
|
||||
|-
|
||||
| 2 || n || 10 || k || 18 || 1 || 26 || 4
|
||||
|-
|
||||
| 3 || d || 11 || m || 19 || u || 27 || 5
|
||||
|-
|
||||
| 4 || r || 12 || c || 20 || w || 28 || h
|
||||
|-
|
||||
| 5 || f || 13 || p || 21 || i || 29 || 7
|
||||
|-
|
||||
| 6 || g || 14 || q || 22 || s || 30 || 6
|
||||
|-
|
||||
| 7 || 8 || 15 || x || 23 || z || 31 || 9
|
||||
|}
|
||||
|
||||
Program length byte indicates the length of witness program (L), from 0x02 to 0x29.
|
||||
It is case-insensitive and includes all alphanumeric characters excluding 0, 2, l, v. The order of alphabet is chosen so that less ambiguous alphabet characters will appear more frequently than others.
|
||||
|
||||
The following 2 to 41 bytes is the actual witness program.
|
||||
An address starts with a version digit, which is b<sub>32</sub> for the main-network and t<sub>32</sub> for the testnet.
|
||||
|
||||
The following (41 minus L) bytes is padded by 0x00.
|
||||
The next digit is a length digit, which the value is length of the witness program in byte (L) minus 2.
|
||||
|
||||
The 4-byte checksum is the first four bytes of the double SHA256 hash of the version, program length, program, and padding.
|
||||
The length digit is followed by the witness program. The witness program is padded with leading 0<sub>b</sub> to become 265-bit, and transformed to z-base-32 with 53 digits.
|
||||
|
||||
The 55-digit raw address is then divided into 11 equal segments. For each segment, a checksum is calculated with Damm algorithm and appended to the end of the segment. This makes the length increases to 66 digits.
|
||||
|
||||
A second round of checksum is calculated by taking the digits in the same position of the 11 segments, and appended to the end of the address. This is the final address with 71 digits.
|
||||
|
||||
All addresses generated with this scheme will have 64 characters, with a "B" prefix for main-network and "T" prefix for testnet.
|
||||
|
||||
==Rationale==
|
||||
|
||||
@ -48,50 +78,55 @@ The segregated witness soft fork (BIP x) defines 2 ways of encoding "witness pro
|
||||
|
||||
As the P2SH address has been defined in 2012, using witness program in P2SH allows most existing wallets to pay a segwit-compatible wallet without any upgrade. However, this method requires more block space and is less collision-resistance than a native witness program, 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.
|
||||
|
||||
Currently there are 2 payment addresses format in Bitcoin, the original pay-to-public-key-hash addresses and the pay-to-script-hash addresses defined in 2012. All address formats, including the one defined in this BIP, are mutually incompatible. However, due to the excellent upgradability of witness programme, this proposal is likely to be the last address format encoding a scriptPubKey template.
|
||||
|
||||
The drawbacks of Bitcoin addresses have been extensively discussed in BIP13. Since then, better payment methods have been proposed or deployed, for example:
|
||||
*BIP47 Reusable Payment Codes for Hierarchical Deterministic Wallets
|
||||
*BIP63 Stealth Addresses
|
||||
*BIP70 Payment protocol
|
||||
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. The author believes this proposal as the most efficient way to promote early adoption of native witness program, which is particularly important in the context of scaling the capacity of the blockchain.
|
||||
|
||||
Following the same rationale of BIP13, and to minimize the changes needed in wallet upgrade, this proposal resembles the original address format, including the checksum algorithm.
|
||||
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. As P2PKH transactions are still dominating the blockchain, the author believes that the proposed P2PKH segwit addresses 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.
|
||||
|
||||
The P2PKH segwit addresses only allow simple payment to a single public key. For arbitrarily complex segwit transactions, the general segwit address is used. The use of z-base-32 eliminates case-sensitiveness and simplifies transformation to and from hexadecimals. The Damm algorithm checksum allows detection of all single-digit errors and all adjacent transposition errors. With the excellent upgradability of witness program, this proposal is also forward compatible to new version witness programs that is not longer than 33 bytes.
|
||||
|
||||
==Compatibility==
|
||||
|
||||
This proposal is not backward compatible, but it fails gracefully -- if an older implementation is given one of these new Bitcoin addresses, it will report the address as invalid and will refuse to create a transaction.
|
||||
|
||||
This proposal is forward compatible to any new version witness program in the future.
|
||||
This proposal is forward compatible to any new version witness program with 2 to 33 bytes.
|
||||
|
||||
==Example==
|
||||
|
||||
=== Address for Pay-to-Public-Key-Hash Version 0 Witness Program ===
|
||||
The following public key,
|
||||
0450863AD64A87AE8A2FE83C1AF1A8403CB53F53E486D8511DAD8A04887E5B23522CD470243453A299FA9E77237716103ABC11A1DF38855ED6F2EE187E9C582BA6
|
||||
when encoded as a P2PKH template, would become:
|
||||
DUP HASH160 <010966776006953D5567439E5E39F86A0D273BEE> EQUALVERIFY CHECKSIG
|
||||
And the corresponding version 1 Bitcoin address is
|
||||
16UwLL9Risc3QfPqBUvKofHmBQ7wMtjvM
|
||||
In the case of using the same P2PKH template as a version 0 witness program, the scriptPubKey becomes a 26-byte single push of:
|
||||
0076A914010966776006953D5567439E5E39F86A0D273BEE88AC
|
||||
Prefixing with the address version byte 0x15 and program length 0x1A:
|
||||
151A0076A914010966776006953D5567439E5E39F86A0D273BEE88AC
|
||||
Padding with 41 - 26 = 15 0x00:
|
||||
151A0076A914010966776006953D5567439E5E39F86A0D273BEE88AC000000000000000000000000000000
|
||||
Perform double SHA-256 hash:
|
||||
1B4A8136E38479EF5F08626D524534E6C94C92B1E77690B727CE8BD30BB3DAA0
|
||||
Take the first 4 bytes. This is the address checksum:
|
||||
1B4A8136
|
||||
Add the 4 checksum bytes at the end of extended witness program. This is the 47-byte binary witness program address:
|
||||
151A0076A914010966776006953D5567439E5E39F86A0D273BEE88AC0000000000000000000000000000001B4A8136
|
||||
Convert the result from a byte string into a base58 string with 64 characters.
|
||||
BAxHaPmrSLbCt4QjJkW1W7MMXZmMdJkoxFHTEQXKmL9LpMUvDMcLAGgeeuLnkvNR
|
||||
When the same script is encoded as a version 0 witness program, the scriptPubKey becomes a single push of
|
||||
<0x0076A914010966776006953D5567439E5E39F86A0D273BEE88AC>
|
||||
Using 0x19 as the address version, the equivalent witness program address is:
|
||||
B4YZZ3nMBETWVF9ZSfotSwTxVnqhdkTi7r
|
||||
|
||||
=== General witness program address ===
|
||||
With the same 26 bytes witness program in the last example:
|
||||
0x0076A914010966776006953D5567439E5E39F86A0D273BEE88AC
|
||||
The witness program is transformed to z-base-32 with 53 digits:
|
||||
yyyyyyyyyyyyyq4wteyejc35sybwi8iksqoh6mah9o4oprh767nfc
|
||||
Prepending with version digit b<sub>32</sub> and length digit a<sub>32</sub> (24 = 26 - 2)
|
||||
bayyyyyyyyyyyyyq4wteyejc35sybwi8iksqoh6mah9o4oprh767nfc
|
||||
Split into 11 equal segments:
|
||||
bayyy -yyyyy -yyyyy -q4wte -yejc3 -5sybw -i8iks -qoh6m -ah9o4 -oprh7 -67nfc
|
||||
Calculate the Damm checksum for each segment:
|
||||
For example: Damm(bayyy) = h
|
||||
bayyyh-yyyyyy-yyyyyy-q4wtey-yejc3w-5sybwu-i8iksj-qoh6mr-ah9o4h-oprh7t-67nfcs
|
||||
Calculate the Damm checksum for digits in the same position of different segments:
|
||||
For example: Damm(byyqy5iqao6) = d
|
||||
bayyyh-yyyyyy-yyyyyy-q4wtey-yejc3w-5sybwu-i8iksj-qoh6mr-ah9o4h-oprh7t-67nfcs-dmi1t
|
||||
|
||||
==Reference Implementation==
|
||||
From arbitrary witness program to general segwit address: https://gist.github.com/jl2012/760b0f952715b8b6c608
|
||||
|
||||
==See Also==
|
||||
|
||||
* [[bip-0013.mediawiki|BIP 13: Address Format for pay-to-script-hash]]
|
||||
* [[bip-0016.mediawiki|BIP 16: Pay to Script Hash (aka "/P2SH/")]]
|
||||
* [[bip-xxxx.mediawiki|BIP x: Segregated Witness]]
|
||||
|
||||
* [[bip-xxxx.mediawiki|BIP x: Segregated Witness]] https://github.com/bitcoin/bips/pull/265
|
||||
|
Loading…
x
Reference in New Issue
Block a user