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-bod-descriptors.mediawiki
+21-21
Original file line number
Diff line number
Diff line change
@@ -28,21 +28,21 @@ This BIP is licensed under the BSD 2-clause license.
28
28
A BIP 380 output descriptor is a textual representation of a set of output
29
29
scripts, such that Bitcoin wallets may agree on the scripts and addresses
30
30
to provide the user. However, a descriptor string by itself is not ideal for
31
-
transferring between wallets: it lacks a machinerecognizable header, cannot
31
+
transferring between wallets: it lacks a machine-recognizable header, cannot
32
32
represent metadata such as name and birth block, and its use of base58 for
33
33
extended keys is inefficient.
34
34
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
37
37
format, the implementation overhead of this BIP is expected to be low
38
38
<ref> '''Why not extend BIP 174?'''
39
-
The PSBT format is not a generalpurpose container format, and descriptors
39
+
The PSBT format is not a general-purpose container format, and descriptors
40
40
are useful outside of signing flows (backup, initializing wallet
41
41
software).</ref>
42
42
<ref> '''Why not use the older Blockchain Commons BCR-2020-010 format?'''
43
43
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?'''.
46
46
The [[https://github.com/BlockchainCommons/Research/blob/master/papers/bcr-2023-010-output-descriptor.md|BCR-2023-010 format]]
47
47
is roughly equivalent to this proposal, but was designed and released outside of
48
48
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
52
52
CBOR is designed for generality and compactness and is therefore significantly
53
53
more complex than the PSBT encoding. In contrast, the PSBT key-value maps are
54
54
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.
56
56
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>.
59
59
60
60
==Specification==
61
61
@@ -86,26 +86,26 @@ The defined global types are as follows:
86
86
| The earliest block height that may contain transactions for the descriptor, optionally followed by the UTF-8 encoded name of the descriptor.
87
87
| <tt><bytes descriptor></tt>
88
88
| 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
91
91
space savings.
92
92
93
-
The major source of bloat, base58encoded keys, are binary encoded for compactness and
93
+
The major source of bloat, base58-encoded keys, are binary encoded for compactness and
94
94
can be re-used multiple times in a single descriptor.
| 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.
101
101
| <tt><bytes data></tt>
102
102
| Any value data as defined by the proprietary type user.
103
103
|}
104
104
105
105
It is an error to omit the BOD_GLOBAL_OUTPUT_DESCRIPTOR entry.
106
106
107
107
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
109
109
the 0-based index into the ordered list of <tt><key-map></tt> entries. An index
110
110
out of range is invalid.
111
111
@@ -132,14 +132,14 @@ The defined key types are as follows:
132
132
| Extended Public Key
133
133
| <tt>BOD_KEY_XPUB = 0x00</tt>
134
134
| <tt><bytes xpub></tt>
135
-
| The 78byte serialized extended public key as defined by BIP 32.
135
+
| The 78-byte serialized extended public key, as defined by BIP 32.
136
136
| <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 32bit 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.
| 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.
143
143
| <tt><bytes data></tt>
144
144
| Any value data as defined by the proprietary type user.
145
145
|}
@@ -153,10 +153,10 @@ A descriptor with a key reference out of bounds.
0 commit comments