Skip to content

Commit

Permalink
use rfc5234
Browse files Browse the repository at this point in the history
  • Loading branch information
MarioDfinity committed Mar 18, 2024
1 parent c2531e9 commit b74946e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions standards/ICRC-3/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -98,9 +98,9 @@ Each standard that adheres to `ICRC-3` MUST define the list of block schemas tha
```
op = icrc_number op_name
icrc_number = nonzero_digit *digit
nonzero digit = "1" "2" "3" "4" "5" "6" "7" "8" "9"
digit = "0" "1" "2" "3" "4" "5" "6" "7" "8" "9"
op_name = a-z *(alphanumeric \ "_" \ "-")
nonzero_digit = "1" / "2" / "3" / "4" / "5" / "6" / "7" / "8" / "9"
digit = "0" / nonzero_digit
op_name = a-z *(a-z / digit / "_" / "-")
```

For instance, `1xfer` is the identifier of the ICRC-1 transfer operation.
Expand Down

0 comments on commit b74946e

Please sign in to comment.