File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -25,12 +25,12 @@ encoding. The address is derived from an account's master public key. A classic
2525address is a string with the following characteristics:
2626
2727* It is between 25 and 35 characters long, inclusive.
28- * It starts with the character ` r `
28+ * It starts with the character ` r ` .
2929* It uses alphanumerical characters [ excluding] [ base58btc ] number ` 0 ` , lowercase
3030 letter ` "l" ` and capital letters ` ["O", "I"] ` .
31- * It is case-sensitive
32- * It includes a 4-byte checksum making the probabilty of generating a valid address from random characters approximately 1 in 2<sup >32</sup >
33- * It may optionally include a destination tag appended with a hyphen (` - ` ) separator
31+ * It is case-sensitive.
32+ * It includes a 4-byte checksum making the probability of generating a valid address from random characters approximately 1 in 2<sup >32</sup >.
33+ * It may optionally include a [ destination tag] [ Destination Tags ] in the form of a 32-bit unsigned integer appended with a hyphen (` - ` ) separator.
3434
3535### X-Addresses
3636
@@ -46,13 +46,13 @@ optional destination tag into a single string. An X-address has the following ch
4646### Syntax
4747
4848The ` account_id ` is a case-sensitive string in the form:
49-
49+ ~~~~
5050```
5151account_id: chain_id + ":" + account_address
5252chain_id: See [CAIP-2][]
5353account_address: classic_address | x_address
5454classic_address: r[1-9a-hj-zA-HJ-NP-Z]{24,34} + optional_tag
55- optional_tag: ("-" + [0-9]+ )?
55+ optional_tag: ("-" + [0-9]{1-10} )?
5656x_address: X[1-9a-hj-zA-HJ-NP-Z]{46,47}
5757```
5858
You can’t perform that action at this time.
0 commit comments