When I run the goal app read
command I get back a list of state variables, each containing fields such as tt
, ui
and tb
. Is there anywhere that lists what each of these mean?
- if the variable is a
[]byte
, thentt
is set to 1, andtb
contains the value - if the variable is an
uint
, thentt
is set to 2, andui
contains the value
You indeed need to dig in the code to find this information:
and the TEAL type:
2 Likes