Adds a filter to get instructions that don't call a function with the given name.
Last updated 3 months ago
without_callee_function_names(name: str, sensitivity: bool = True) →
without_callee_function_names(
name: str
,
sensitivity: bool = True
) →
from glider import * def query(): return ( Instructions() .without_callee_function_names(["transfer", "transferFrom"]) .exec(3, 101) )
Instructions