Debug
List of functions commonly used for debugging smart contracts in Tact.
require
Checks the condition
and throws an error with an exit code generated from the error
message if the condition
is false
. Does nothing otherwise.
The algorithm for generating the exit code works as follows:
- First, the SHA-256 hash of
error
messageString
is obtained. - Then, its value is read as a 32-bit big-endian number modulo plus , in that order.
- Finally, it’s put into the
.md
compilation report file, which resides with the other compilation artifacts in your project’soutputs/
orbuild/
directories.
The generated exit code is guaranteed to be outside the common range reserved for TVM and Tact contract errors, which makes it possible to distinguish exit codes from require()
and any other standard exit codes.
Usage examples:
dump
Prints the argument arg
to the contract’s debug console. Evaluated only if the debug
option in the configuration file is set to true
, otherwise does nothing.
Can be applied to the following list of types and values:
Int
Bool
Address
Cell
,Builder
orSlice
String
orStringBuilder
map<K, V>
- Optionals and
null
value void
, which is implicitly returned when a function doesn’t have return value defined
Usage examples:
dumpStack
Prints all the values of persistent state variables to the contract’s debug console. Evaluated only if the debug
option in the configuration file is set to true
, otherwise does nothing.
Usage example:
throw
An alias to nativeThrow()
.
nativeThrow
Throws an exception with an error code equal to code
. Execution of the current context stops (the statements after nativeThrow
won’t be executed) and control will be passed to the first try...catch
block in the call stack. If no try
or try...catch
block exists among caller functions, TVM will terminate the transaction.
Attempts to specify the code
outside of range cause an exception with exit code 5: Integer out of expected range
.
Usage examples:
nativeThrowIf
Similar to nativeThrow()
, but throws an exception conditionally, when condition
is equal to true
. Doesn’t throw otherwise.
Attempts to specify the code
outside of range cause an exception with exit code 5: Integer out of expected range
.
Usage examples:
nativeThrowUnless
Similar to nativeThrow()
, but throws an exception conditionally, when condition
is equal to false
. Doesn’t throw otherwise.
Attempts to specify the code
outside of range cause an exception with exit code 5: Integer out of expected range
.
Usage examples: