Instruction.builtin_callee_names()
Returns the list of builtin call names that are called from the instruction. E.g. keccak256, ecrecover...
builtin_callee_names() → List[str]
Query Example
from glider import *
def query():
instructions = Instructions().with_callee_name("keccak256").exec(1)
print(instructions[0].builtin_callee_names())
return instructions
Example Output

Last updated