Skip to content

Commit d4a9d2d

Browse files
committed
minorest of nits
1 parent de48451 commit d4a9d2d

1 file changed

Lines changed: 6 additions & 6 deletions

File tree

xrpl/caip10.md

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -25,12 +25,12 @@ encoding. The address is derived from an account's master public key. A classic
2525
address 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

4848
The `account_id` is a case-sensitive string in the form:
49-
49+
~~~~
5050
```
5151
account_id: chain_id + ":" + account_address
5252
chain_id: See [CAIP-2][]
5353
account_address: classic_address | x_address
5454
classic_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})?
5656
x_address: X[1-9a-hj-zA-HJ-NP-Z]{46,47}
5757
```
5858

0 commit comments

Comments
 (0)