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

Last updated