Interpreting "goal app read" response

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, then tt is set to 1, and tb contains the value
  • if the variable is an uint, then tt is set to 2, and ui contains the value

You indeed need to dig in the code to find this information:

and the TEAL type:

2 Likes