Returns the name of the contract in which the called function is
Last updated 1 month ago
get_contract_name() -> str
from glider import * def query(): instructions = ( Instructions() .exec(1,98) .filter(lambda x: x.is_call()) ) for ins in instructions: print(ins.get_value().get_contract_name()) return instructions