StateVariable.is_private()

Returns true if the visibility of the state variable is private, otherwise returns false.

is_private() β†’ bool

Query Example

from glider import *
def query():
  state_vars = StateVariables().exec(100)
  for state_var in state_vars:
    if state_var.is_private():
      print(state_var.name())
      return [state_var.contract()]
  return []

Output

"root":{2 items
"contract":string"0xd705c24267ed3c55458160104994c55c6492dfcf"
"contract_name":string"Ownable"
}
"root":{1 item
"print_output":[1 item
0:string"_owner"
]
}

Last updated