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-path-templates.mediawiki
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -98,7 +98,7 @@ Each section consists of ''index template'', optionally followed by the hardened
98
98
Index template can be:
99
99
100
100
* An integer value from 0 to 2147483647 ("Unit index template")
101
-
* The <nowiki>"["</nowiki> character, followed by a number of ''index ranges'' delimited by commas (","), followed by <nowiki>"]"</nowiki> character ("Ranged index template")
101
+
* The <nowiki>"{"</nowiki> character, followed by a number of ''index ranges'' delimited by commas (","), followed by <nowiki>"}"</nowiki> character ("Ranged index template")
102
102
103
103
Implementations MAY limit the maximum number of index ranges within the Ranged index template.
104
104
@@ -129,7 +129,7 @@ It may be desireable to have fully unambiguous encoding, where for each valid pa
129
129
130
130
To achieve this, two extra rules are needed:
131
131
132
-
* Within Ranged index template, subsequent range MUST NOT start with the value that is equal to the end of the previous range plus one. Thus, <nowiki>"[1,2,3-5]"</nowiki> is not allowed, and should be specified as <nowiki>"[1-5]"</nowiki> instead. This rule might make templates less convenient for frequent edits, though.
132
+
* Within Ranged index template, subsequent range MUST NOT start with the value that is equal to the end of the previous range plus one. Thus, <nowiki>"{1,2,3-5}"</nowiki> is not allowed, and should be specified as <nowiki>"{1-5}"</nowiki> instead. This rule might make templates less convenient for frequent edits, though.
133
133
134
134
* Only one type of hardened marker should be allowed (either "h" or "'").
135
135
@@ -193,7 +193,7 @@ At the moment, three implementations exist:
193
193
194
194
==Examples==
195
195
196
-
'''"m/[44,49,84]'/0'/0'/[0-1]/[0-50000]"''' specifies a full template that matches both external and internal chains of BIP44, BIP49 and BIP84 paths, with a constraint that the address index cannot be larger than 50000
196
+
'''"m/{44,49,84}'/0'/0'/{0-1}/{0-50000}"''' specifies a full template that matches both external and internal chains of BIP44, BIP49 and BIP84 paths, with a constraint that the address index cannot be larger than 50000
197
197
198
198
Its representation after parsing can be (using Python syntax, ignoring full/partial distinction):
@@ -202,7 +202,7 @@ Its representation after parsing can be (using Python syntax, ignoring full/part
202
202
[(0, 1)],
203
203
[(0, 50000)]]
204
204
205
-
'''"[0-2,33,123]/*"''' specifies a partial template that matches non-hardened values 0, 1, 2, 33, 123 as first index, and any non-hardened value at second index
205
+
'''"{0-2,33,123}/*"''' specifies a partial template that matches non-hardened values 0, 1, 2, 33, 123 as first index, and any non-hardened value at second index
0 commit comments