While an exit (or result) code is a 32-bit signed integer on TON Blockchain, an attempt to throw an exit code outside the bounds of a 16-bit unsigned integer () will cause an error with exit code 5. This is done intentionally to prevent some exit codes from being produced artificially, such as exit code -14.
Table of exit codes
The following table lists exit codes with their origin (where they can occur) and a short description for each.Exit code | Origin | Brief description |
---|---|---|
0 | Compute and action phases | Standard successful execution exit code. |
1 | Compute phase | Alternative successful execution exit code. Reserved, but does not occur. |
2 | Compute phase | Stack underflow. |
3 | Compute phase | Stack overflow. |
4 | Compute phase | Integer overflow. |
5 | Compute phase | Range check error — an integer is out of its expected range. |
6 | Compute phase | Invalid TVM opcode. |
7 | Compute phase | Type check error. |
8 | Compute phase | Cell overflow. |
9 | Compute phase | Cell underflow. |
10 | Compute phase | Dictionary error. |
11 | Compute phase | Described in TVM docs as “Unknown error, may be thrown by user programs.” |
12 | Compute phase | Fatal error. Thrown by TVM in situations deemed impossible. |
13 | Compute phase | Out of gas error. |
-14 | Compute phase | Same as 13. Negative, so that it cannot be faked. |
14 | Compute phase | VM virtualization error. Reserved, but never thrown. |
32 | Action phase | Action list is invalid. |
33 | Action phase | Action list is too long. |
34 | Action phase | Action is invalid or not supported. |
35 | Action phase | Invalid source address in outbound message. |
36 | Action phase | Invalid destination address in outbound message. |
37 | Action phase | Not enough Toncoin. |
38 | Action phase | Not enough extra currencies. |
39 | Action phase | Outbound message does not fit into a cell after rewriting. |
40 | Action phase | Cannot process a message — not enough funds, the message is too large, or its Merkle depth is too big. |
41 | Action phase | Library reference is null during library change action. |
42 | Action phase | Library change action error. |
43 | Action phase | Exceeded the maximum number of cells in the library or the maximum depth of the Merkle tree. |
50 | Action phase | Account state size exceeded limits. |
Often enough, you might encounter the exit code 65535 (or
0xffff
), which usually means the same as the exit code 130 — the received opcode is unknown to the contract, as there were no receivers expecting it. When writing contracts, the exit code 65535 is set by the developers and not by TVM or the Tolk compiler.Exit codes in Blueprint projects
In Blueprint tests, exit codes from the compute phase are specified in theexitCode
field of the object argument for the toHaveTransaction()
method of the expect()
matcher. The field for the result codes (exit codes from the action phase) in the same toHaveTransaction()
method is called actionResultCode
.
Additionally, one can examine the result of sending a message to a contract and discover the phases of each transaction and their values, including exit (or result) codes for the compute phase (or action phase).
Note that to do so, you’ll have to perform a couple of type checks first:
Compute and action phases
0: Normal termination
This exit (or result) code indicates the successful completion of the compute phase (or action phase) of the transaction.Compute phase
TVM initialization and all computations occur in the compute phase. If the compute phase fails (the resulting exit code is neither 0 nor 1), the transaction skips the action phase and proceeds to the bounce phase. In this phase, a bounce message is formed for transactions initiated by the inbound message.1: Alternative termination
This is an alternative exit code for the successful execution of the compute phase. It is reserved but never occurs.2: Stack underflow
If an operation consumes more elements than exist on the stack, an error with exit code 2 is thrown:Stack underflow
.
Useful linksTVM overview.
3: Stack overflow
If there are too many elements copied into a closure continuation, an error with exit code 3 is thrown:Stack overflow
. This occurs rarely unless you’re deep in the Fift and TVM assembly trenches:
Useful linksTVM overview.
4: Integer overflow
If the value in a calculation goes beyond the range from to inclusive, or there’s an attempt to divide or perform modulo by zero, an error with exit code 4 is thrown:Integer overflow
.
5: Integer out of expected range
A range check error occurs when some integer is out of its expected range. Any attempt to store an unexpected amount of data or specify an out-of-bounds value throws an error with exit code 5:Integer out of expected range
.
Examples of specifying an out-of-bounds value:
6: Invalid opcode
If you specify an instruction that is not defined in the current TVM version or attempt to set an unsupported code page, an error with exit code 6 is thrown:Invalid opcode
.
7: Type check error
If an argument to a primitive is of an incorrect value type or there is any other mismatch in types during the compute phase, an error with exit code 7 is thrown:Type check error
.
8: Cell overflow
To construct acell
, a builder
primitive is used. If you try to store more than 1023 bits of data or more than 4 references to other cells, an error with exit code 8 is thrown: Cell overflow
.
This error can be triggered by manual construction of the cells via relevant methods, such as storeInt()
, or when using structs their convenience methods.
9: Cell underflow
To parse acell
, a slice
primitive is used. If you try to load more data or references than a slice
contains, an error with exit code 9 is thrown: Cell underflow
.
The most common cause of this error is a mismatch between the expected and actual memory layouts of the cells, so it’s recommended to use Tolk structs for parsing the cells instead of manual parsing via relevant methods, such as loadInt()
.
10: Dictionary error
In Tolk, themap<K, V>
type is an abstraction over the “hash” map dictionaries of TVM.
If there is incorrect manipulation of dictionaries, such as improper assumptions about their memory layout, an error with exit code 10 is thrown: Dictionary error
. Note that Tolk prevents you from getting this error unless you perform TVM assembly work yourself:
11: “Unknown” error
Described in the TVM docs as “Unknown error, may be thrown by user programs,” although most commonly used for problems with queuing a message send or problems with getters. In particular, if you try to send an ill-formed message on-chain or to call a non-existent getter function off-chain, an exit code 11 will be thrown.12: Fatal error
Fatal error. Thrown by TVM in situations deemed impossible.13: Out of gas error
If there isn’t enough gas to complete computations in the compute phase, an error with exit code 13 is thrown:Out of gas error
.
However, this code isn’t immediately shown as is — instead, the bitwise NOT operation is applied, changing the value from 13 to -14. Only then is the code displayed.
This is done to prevent the resulting code (-14) from being produced artificially in user contracts, as all functions that can throw an exit code can only specify integers in the range from 0 to 65535 inclusive.
-14: Out of gas error
See exit code 13.14: Virtualization error
Virtualization error related to pruned branch cells. Reserved but never thrown.Action phase
The action phase is processed after the successful execution of the compute phase. It attempts to perform the actions stored in the action list by TVM during the compute phase. Some actions may fail during processing, in which case those actions may be skipped or the whole transaction may revert depending on the mode of actions. The code indicating the resulting state of the action phase is called a result code. Since it is also a 32-bit signed integer that essentially serves the same purpose as the exit code of the compute phase, it is common to call the result code an exit code as well.32: Action list is invalid
If the list of actions contains exotic cells, an action entry cell does not have references, or some action entry cell cannot be parsed, an error with exit code 32 is thrown:Action list is invalid
.
Aside from this exit code, there is a boolean flag
valid
, which you can find under description.actionPhase.valid
in the transaction results when working with Sandbox and Blueprint. A transaction can set this flag to false
even when there is some other exit code thrown from the action phase.33: Action list is too long
If there are more than 255 actions queued for execution, the action phase will throw an error with an exit code 33:Action list is too long
.
34: Invalid or unsupported action
There are only four supported actions at the moment: changing the contract code, sending a message, reserving a specific amount of nanoToncoin, and changing the library cell. If there is any issue with the specified action (invalid message, unsupported action, etc.), an error with exit code 34 is thrown:Invalid or unsupported action
.
35: Invalid source address in outbound message
If the source address in the outbound message is not equal toaddr_none
or to the address of the contract that initiated this message, an error with exit code 35 is thrown: Invalid source address in outbound message
.
36: Invalid destination address in outbound message
If the destination address in the outbound message is invalid, e.g., it does not conform to the relevant TL-B schemas, contains an unknown workchain ID, or has an invalid length for the given workchain, an error with exit code 36 is thrown:Invalid destination address in outbound message
.
If the optional
mode
flag +2 is set, this error won’t be thrown, and the given message won’t be sent.37: Not enough Toncoin
If all funds of the inbound message with basemode
64 set have already been consumed and there are not enough funds to pay for the failed action, or the TL-B layout of the provided value (CurrencyCollection
) is invalid, or there are not enough funds to pay forward fees or not enough funds after deducting fees, an error with exit code 37 is thrown: Not enough Toncoin
.
If the optional
mode
flag +2 is set, this error won’t be thrown, and the given message won’t be sent.38: Not enough extra currencies
Besides the native currency, Toncoin, TON Blockchain supports up to extra currencies. They differ from creating new Jettons because extra currencies are natively supported — one can potentially just specify an additionalHashmapE
of extra currency amounts in addition to the Toncoin amount in the internal message to another contract. Unlike Jettons, extra currencies can only be stored and transferred and do not have any other functionality.
When there is not enough extra currency to send the specified amount is already reserved, an exit code 38 is thrown: Not enough extra currencies
.
39: Outbound message does not fit into cell
When processing the message, TON Blockchain tries to pack it according to the relevant TL-B schemas, and if it cannot, an error with exit code 39 is thrown:Outbound message doesn't fit into a cell
.
If attempts at sending the message fail multiple times and the optional
mode
flag +2 is set, this error won’t be thrown, and the given message won’t be sent.40: Cannot process message
If there are not enough funds to process all the cells in a message, the message is too large, or its Merkle depth is too big, an error with exit code 40 is thrown:Cannot process a message
.
If the optional
mode
flag +2 is set, this error won’t be thrown, and the given message won’t be sent.41: Library reference is null
If a library reference is required during a library change action but is null, an error with exit code 41 is thrown:Library reference is null
.
42: Library change action error
If there’s an error during an attempt at a library change action, an error with exit code 42 is thrown:Library change action error
.
43: Library limits exceeded
If the maximum number of cells in the library is exceeded or the maximum depth of the Merkle tree is exceeded, an error with exit code 43 is thrown:Library limits exceeded
.
50: Account state size exceeded limits
If the account state (contract storage, essentially) exceeds any of the limits specified in config param 43 of TON Blockchain by the end of the action phase, an error with exit code 50 is thrown:Account state size exceeded limits
.
If the configuration is absent, the default values are:
max_msg_bits
is equal to — maximum message size in bits.max_msg_cells
is equal to — maximum number of cells a message can occupy.max_library_cells
is equal to 1000 — maximum number of cells that can be used as library reference cells.max_vm_data_depth
is equal to — maximum cells depth in messages and account state.ext_msg_limits.max_size
is equal to 65535 — maximum external message size in bits.ext_msg_limits.max_depth
is equal to — maximum external message depth.max_acc_state_cells
is equal to — maximum number of cells that an account state can occupy.max_acc_state_bits
is equal to — maximum account state size in bits.max_acc_public_libraries
is equal to — maximum number of library reference cells that an account state can use on the masterchain.defer_out_queue_size_limit
is equal to — maximum number of outbound messages to be queued (regarding validators and collators).