Skip to content

Commit

Permalink
add limit spec on the amount
Browse files Browse the repository at this point in the history
  • Loading branch information
ackratos committed Jun 23, 2020
1 parent e5dce2f commit 129b9bf
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions BEP64.md
Original file line number Diff line number Diff line change
Expand Up @@ -81,6 +81,11 @@ The scheme component ("bnb:") is case-insensitive, and implementations must acce
#### 3.5.1 Transfer amount/size

If an amount is provided, it MUST be specified in decimal.

All amounts MUST NOT have more than 8 decimal digits.

I.e. amount=50.123456789 is invalid.

All amounts MUST contain no commas and use a period (.) as the separating character to separate whole numbers and decimal fractions.

I.e. amount=50.00 or amount=50 is treated as 50, and amount=50,000.00 is invalid.
Expand Down

0 comments on commit 129b9bf

Please sign in to comment.