Instructions.with_callee_function_signature()
Adds a filter to get instructions that call a function with the given signature.
with_callee_function_signature(signature: str) →
Instructions
Query Example
from glider import *
def query():
return (
Instructions()
.with_callee_function_signature("deposit(uint256)")
.exec(2,12)
)
Output Example


PreviousInstructions.with_callee_function_name_suffix()NextInstructions.with_one_of_callee_function_names()
Last updated