Skip to content

Commit c6c727c

Browse files
seedhammerjonatack
andauthored
bip-bod-descriptors: apply suggested edits
Suggestions by @jonatack. Co-authored-by: Jon Atack <[email protected]>
1 parent 710fe83 commit c6c727c

File tree

1 file changed

+21
-21
lines changed

1 file changed

+21
-21
lines changed

bip-bod-descriptors.mediawiki

+21-21
Original file line numberDiff line numberDiff line change
@@ -28,21 +28,21 @@ This BIP is licensed under the BSD 2-clause license.
2828
A BIP 380 output descriptor is a textual representation of a set of output
2929
scripts, such that Bitcoin wallets may agree on the scripts and addresses
3030
to provide the user. However, a descriptor string by itself is not ideal for
31-
transferring between wallets: it lacks a machine recognizable header, cannot
31+
transferring between wallets: it lacks a machine-recognizable header, cannot
3232
represent metadata such as name and birth block, and its use of base58 for
3333
extended keys is inefficient.
3434

35-
BIP 174 gives us a self-describing file format, metadata as well as a compact,
36-
binary representation of keys. Assuming most wallets already implements the PSBT
35+
BIP 174 gives us a self-describing file format, metadata, and a compact,
36+
binary representation of keys. Assuming most wallets already implement the PSBT
3737
format, the implementation overhead of this BIP is expected to be low
3838
<ref> '''Why not extend BIP 174?'''
39-
The PSBT format is not a general purpose container format, and descriptors
39+
The PSBT format is not a general-purpose container format, and descriptors
4040
are useful outside of signing flows (backup, initializing wallet
4141
software).</ref>
4242
<ref> '''Why not use the older Blockchain Commons BCR-2020-010 format?'''
4343
The format was [[https://github.com/BlockchainCommons/Research/blob/master/papers/bcr-2020-010-output-desc.md#deprecated-superseded-by-version-3-output-descriptors|recently deprecated]],
44-
because its use of reserved CBOR tags.</ref>
45-
<ref>'''Why not use the new Blockchain Commons BCR-2023-010 format?'''
44+
due to its use of reserved CBOR tags.</ref>
45+
<ref>'''Why not use the new Blockchain Commons BCR-2023-010 format?'''.
4646
The [[https://github.com/BlockchainCommons/Research/blob/master/papers/bcr-2023-010-output-descriptor.md|BCR-2023-010 format]]
4747
is roughly equivalent to this proposal, but was designed and released outside of
4848
the usual BIP proposal process.
@@ -52,10 +52,10 @@ in the BIP process because it is based on the [[https://cbor.io/spec.html|CBOR e
5252
CBOR is designed for generality and compactness and is therefore significantly
5353
more complex than the PSBT encoding. In contrast, the PSBT key-value maps are
5454
supported by all wallet software that interact with PSBT files, are easier to
55-
review and fit in embedded devices.
55+
review, and they fit in embedded devices.
5656

57-
Release in late 2023, BCR-2023-010 doesn't event have the advantage of widespread
58-
support.</ref>.
57+
Released in late 2023, BCR-2023-010 doesn't even have the advantage of widespread
58+
support at the time of this writing.</ref>.
5959

6060
==Specification==
6161

@@ -86,26 +86,26 @@ The defined global types are as follows:
8686
| The earliest block height that may contain transactions for the descriptor, optionally followed by the UTF-8 encoded name of the descriptor.
8787
| <tt><bytes descriptor></tt>
8888
| The output descriptor in BIP 380 format without inline keys<ref>''Why not encode the descriptor in binary?'''
89-
The BIP 380 descriptor language is complicated and expanding and we believe
90-
the efforts of designing a parallel binary encoding does not outweigh the
89+
The BIP 380 descriptor language is complicated and expanding, and we believe
90+
the effort of designing a parallel binary encoding does not outweigh the
9191
space savings.
9292
93-
The major source of bloat, base58 encoded keys, are binary encoded for compactness and
93+
The major source of bloat, base58-encoded keys, are binary encoded for compactness and
9494
can be re-used multiple times in a single descriptor.
9595
.</ref>
9696
|-
9797
| Proprietary Use Type
9898
| <tt>BOD_GLOBAL_PROPRIETARY = 0xFC</tt>
9999
| <tt><compact size uint identifier length> <bytes identifier> <compact size uint subtype> <bytes subkeydata></tt>
100-
| Compact size unsigned integer of the length of the identifier, followed by identifier prefix, followed by a compact size unsigned integer subtype, followed by the key data itself.
100+
| A compact size unsigned integer of the length of the identifier, followed by an identifier prefix, followed by a compact size unsigned integer subtype, followed by the key data itself.
101101
| <tt><bytes data></tt>
102102
| Any value data as defined by the proprietary type user.
103103
|}
104104
105105
It is an error to omit the BOD_GLOBAL_OUTPUT_DESCRIPTOR entry.
106106
107107
All key expressions in the BOD_GLOBAL_OUTPUT_DESCRIPTOR descriptor string must be
108-
specified as references on the form <tt>@<index></tt> where <tt>index</tt> is
108+
specified as references in the form of <tt>@<index></tt> where <tt>index</tt> is
109109
the 0-based index into the ordered list of <tt><key-map></tt> entries. An index
110110
out of range is invalid.
111111
@@ -132,14 +132,14 @@ The defined key types are as follows:
132132
| Extended Public Key
133133
| <tt>BOD_KEY_XPUB = 0x00</tt>
134134
| <tt><bytes xpub></tt>
135-
| The 78 byte serialized extended public key as defined by BIP 32.
135+
| The 78-byte serialized extended public key, as defined by BIP 32.
136136
| <tt><4 byte fingerprint> <32-bit little endian uint path element>*</tt>
137-
| The master key fingerprint as defined by BIP 32 concatenated with the derivation path of the public key. The derivation path is represented as 32-bit little endian unsigned integer indexes concatenated with each other. The number of 32 bit unsigned integer indexes must match the depth provided in the extended public key.
137+
| The master key fingerprint, as defined by BIP 32, concatenated with the derivation path of the public key. The derivation path is represented as 32-bit little endian unsigned integer indexes concatenated with each other. The number of 32-bit unsigned integer indexes must match the depth provided in the extended public key.
138138
|-
139139
| Proprietary Use Type
140140
| <tt>BOD_KEY_PROPRIETARY = 0xFC</tt>
141141
| <tt><compact size uint identifier length> <bytes identifier> <compact size uint subtype> <bytes subkeydata></tt>
142-
| Compact size unsigned integer of the length of the identifier, followed by identifier prefix, followed by a compact size unsigned integer subtype, followed by the key data itself.
142+
| A compact size unsigned integer of the length of the identifier, followed by an identifier prefix, followed by a compact size unsigned integer subtype, followed by the key data itself.
143143
| <tt><bytes data></tt>
144144
| Any value data as defined by the proprietary type user.
145145
|}
@@ -153,10 +153,10 @@ A descriptor with a key reference out of bounds.
153153
Hex encoded BOD: 70736274ff0207000a77706b682840302f2a29000000
154154
155155
A descriptor with an invalid UTF-8 name.
156-
Hex encoded BOD: 70736274ff05070061c57a0a77706b682840302f2a2953010488b21e041c0ae906800000025afed56d755c088320ec9bc6acd84d33737b580083759e0a0ff8f26e429e0b77028342f5f7773f6fab374e1c2d3ccdba26bc0933fc4f63828b662b4357e4cc3791bec0fbd814c5d8729748000080000000800000008002000080000000
156+
Hex-encoded BOD: 70736274ff05070061c57a0a77706b682840302f2a2953010488b21e041c0ae906800000025afed56d755c088320ec9bc6acd84d33737b580083759e0a0ff8f26e429e0b77028342f5f7773f6fab374e1c2d3ccdba26bc0933fc4f63828b662b4357e4cc3791bec0fbd814c5d8729748000080000000800000008002000080000000
157157
158158
A descriptor with an inline key.
159-
Hex encoded BOD: 70736274ff0207008e77706b68285b64633536373237362f3438682f30682f30682f32685d7870756236446959726652774e6e6a655834764873574d616a4a56464b726245456e753867415739764475517a675457457345484531367347576558585556314c42575145317943546d657072534e63715a3357373468715664674462745948557633654d3457325445556870616e2f2a29000000
159+
Hex-encoded BOD: 70736274ff0207008e77706b68285b64633536373237362f3438682f30682f30682f32685d7870756236446959726652774e6e6a655834764873574d616a4a56464b726245456e753867415739764475517a675457457345484531367347576558585556314c42575145317943546d657072534e63715a3357373468715664674462745948557633654d3457325445556870616e2f2a29000000
160160
161161
===Valid Cases===
162162
@@ -167,15 +167,15 @@ A 2-of-3 multisig descriptor
167167
Key 0: [dc567276/48h/0h/0h/2h]xpub6DiYrfRwNnjeX4vHsWMajJVFKrbEEnu8gAW9vDuQzgTWEsEHE16sGWeXXUV1LBWQE1yCTmeprSNcqZ3W74hqVdgDbtYHUv3eM4W2TEUhpan
168168
Key 1: [f245ae38/48h/0h/0h/2h]xpub6DnT4E1fT8VxuAZW29avMjr5i99aYTHBp9d7fiLnpL5t4JEprQqPMbTw7k7rh5tZZ2F5g8PJpssqrZoebzBChaiJrmEvWwUTEMAbHsY39Ge
169169
Key 2: [c5d87297/48h/0h/0h/2h]xpub6DjrnfAyuonMaboEb3ZQZzhQ2ZEgaKV2r64BFmqymZqJqviLTe1JzMr2X2RfQF892RH7MyYUbcy77R7pPu1P71xoj8cDUMNhAMGYzKR4noZ
170-
Hex encoded BOD: 70736274ff1907ff79df0d86487000005361746f73686927732053746173683477736828736f727465646d756c746928322c40302f3c303b313e2f2a2c40312f3c303b313e2f2a2c40322f3c303b313e2f2a292953010488b21e0418f8c2e7800000026b3a4cfb6a45f6305efe6e0e976b5d26ba27f7c344d7fc7abef7be2d06d52dfd021c0b479ecf6e67713ddf0c43b634592f51c037b6f951fb1dc6361a98b1e5735e0f8b515314dc5672764800008000000080000000800200008053010488b21e04221eb5a080000002c887c72d9d8ac29cddd5b2b060e8b0239039a149c784abe6079e24445db4aa8a0397fcf2274abd243d42d42d3c248608c6d1935efca46138afef43af08e971289657009d2b14f245ae384800008000000080000000800200008053010488b21e041c0ae906800000025afed56d755c088320ec9bc6acd84d33737b580083759e0a0ff8f26e429e0b77028342f5f7773f6fab374e1c2d3ccdba26bc0933fc4f63828b662b4357e4cc3791bec0fbd814c5d8729748000080000000800000008002000080000000
170+
Hex-encoded BOD: 70736274ff1907ff79df0d86487000005361746f73686927732053746173683477736828736f727465646d756c746928322c40302f3c303b313e2f2a2c40312f3c303b313e2f2a2c40322f3c303b313e2f2a292953010488b21e0418f8c2e7800000026b3a4cfb6a45f6305efe6e0e976b5d26ba27f7c344d7fc7abef7be2d06d52dfd021c0b479ecf6e67713ddf0c43b634592f51c037b6f951fb1dc6361a98b1e5735e0f8b515314dc5672764800008000000080000000800200008053010488b21e04221eb5a080000002c887c72d9d8ac29cddd5b2b060e8b0239039a149c784abe6079e24445db4aa8a0397fcf2274abd243d42d42d3c248608c6d1935efca46138afef43af08e971289657009d2b14f245ae384800008000000080000000800200008053010488b21e041c0ae906800000025afed56d755c088320ec9bc6acd84d33737b580083759e0a0ff8f26e429e0b77028342f5f7773f6fab374e1c2d3ccdba26bc0933fc4f63828b662b4357e4cc3791bec0fbd814c5d8729748000080000000800000008002000080000000
171171
172172
==Rationale==
173173
174174
<references/>
175175
176176
==Compatibility==
177177
178-
This is a new format and as such have no campatibility burden.
178+
This is a new format and as such has no compatibility burden.
179179
180180
== Reference Implementation==
181181

0 commit comments

Comments
 (0)