Instruction.solidity_callee_names()

Returns the list of solidity function names that are called from the instruction. Returns a empty list if the instruction does not call any solidity function.

solidity_callee_names() → List[str]

Like callee_names() the function return list of called function names, but filtered to only built-in functions, like require, assert, keccak256 etc.

Query Example

from glider import *
def query():

  instructions = Instructions().exec(1, 95)

  print(instructions[0].solidity_callee_names())
  
  return instructions

Output Example

Last updated