Integers
Arithmetic in smart contracts on TON is always done with integers and never with floating-point numbers since the floats are unpredictable. Therefore, the big accent goes on integers and their handling.
The only primitive number type in Tact is Int
, for -bit signed integers.
It’s capable of storing integers between and
Notation
Tact supports various ways of writing primitive values of Int
as integer literals.
Most of the notations allow adding underscores (_
) in-between digits, except for:
- Representations in strings, as seen in nano-tons case.
- Decimal numbers written with a leading zero Their use is generally discouraged, see below.
Additionally, several underscores in a row as in , or trailing underscores as in are not allowed.
Decimal
Most common and most used way of representing numbers, using the decimal numeral system:
You can use underscores (_
) to improve readability: is equal to
Hexadecimal
Represent numbers using hexadecimal numeral system, denoted by the (or ) prefix:
Use underscores (_
) to improve readability: is equal to
Octal
Represent numbers using octal numeral system, denoted by the (or ) prefix:
Use underscores (_
) to improve readability: is equal to
Binary
Represent numbers using binary numeral system, denoted by the (or ) prefix:
Use underscores (_
) to improve readability: is equal to
NanoToncoin
Arithmetic with dollars requires two decimal places after the dot — those are used for the cents value. But how would we represent the number $ if we’re only able to work with integers? The solution is to work with cents directly. This way, $ becomes cents. We simply memorize that the two rightmost digits represent the numbers after the decimal point.
Similarly, working with Toncoin, the main currency of TON Blockchain, requires nine decimal places instead of the two. One can say that nanoToncoin is the of the Toncoin.
Therefore, the amount of Toncoin, which can be represented in Tact as ton("1.25")
, is actually the number . We refer to such numbers as nanoToncoin(s) (or nano-ton(s)) rather than cents.
Serialization
When encoding Int
values to persistent state (fields of contracts and traits), it’s usually better to use smaller representations than -bits to reduce storage costs. Usage of such representations is also called “serialization” due to them representing the native TL-B types which TON Blockchain operates on.
The persistent state size is specified in every declaration of a state variable after the as
keyword:
Integer serialization is also available for the fields of Structs and Messages, as well as in key/value types of maps:
Motivation is very simple:
- Storing -bit integers in state costs about TON per year.
- Storing -bit integers only costs TON per year by comparison.
Common serialization types
Name | TL-B | Inclusive range | Space taken |
---|---|---|---|
uint8 | uint8 | to | bits = byte |
uint16 | uint16 | to | bits = bytes |
uint32 | uint32 | to | bits = bytes |
uint64 | uint64 | to | bits = bytes |
uint128 | uint128 | to | bits = bytes |
uint256 | uint256 | to | bits = bytes |
int8 | int8 | to | bits = byte |
int16 | int16 | to | bits = bytes |
int32 | int32 | to | bits = bytes |
int64 | int64 | to | bits = bytes |
int128 | int128 | to | bits = bytes |
int256 | int256 | to | bits = bytes |
int257 | int257 | to | bits = bytes + bit |
coins | VarUInteger 16 | to | between and bits, see below |
Arbitrary bit-width types
Available since Tact 1.5In addition to common serialization types, it’s possible to specify arbitrary bit-width integers by using a prefix int
or uint
followed by digits. For example, writing int7
refers to a signed -bit integer.
The minimum allowed bit-width of an Int
type is , while the maximum is for int
prefixes (signed integers) and for uint
prefixes (unsigned integers).
Name | TL-B | Inclusive range | Space taken |
---|---|---|---|
uintX | uintX | to | bits, where is between and |
intX | intX | to | bits, where is between and |
Variable coins
type
In Tact, coins
is an alias to VarUInteger 16
in TL-B representation, i.e. it takes a variable bit length depending on the optimal number of bytes needed to store the given integer and is commonly used for storing nanoToncoin amounts.
This serialization format consists of two TL-B fields:
len
, a -bit unsigned big-endian integer storing the byte length of the value providedvalue
, a -bit unsigned big-endian representation of the value provided
That is, integers serialized as coins
occupy between and bits ( bits for len
and to bytes for value
) and have values in the inclusive range from to .
Examples:
Operations
All runtime calculations with numbers are done at 257-bits, so overflows are quite rare. Nevertheless, if any math operation overflows, an exception will be thrown, and the transaction will fail. You could say that Tact’s math is safe by default.
Note, that there is no problem with mixing variables of different state sizes in the same calculation. At runtime they are all the same type no matter what — -bit signed, so overflows won’t happen then.
However, this can still lead to errors in the compute phase of the transaction. Consider the following example:
Here, oneByte
is serialized as a uint8
, which occupies only one byte and ranges from to , which is . And when used in runtime calculations no overflow happens and everything is calculated as a -bit signed integers. But the very moment we decide to store the value of tmp
back into oneByte
we get an error with the exit code 5, which states the following: Integer out of the expected range
.