Contracts.state_variables()

Returns the State Variables object for the state variables of the contracts.

state_variables() → StateVariables

Query Example

from glider import *


def query():
    state_variables = (
        Contracts()
        .with_name("Manager")
        .exec(1)
        .state_variables()
        .exec()
    )

    return state_variables

Example Output

Last updated