Adds a filter to get Instructions that have callees with all the given names.
Last updated 3 months ago
with_all_callee_function_names(names: List[str], sensitivity: bool = True) →
from glider import * def query(): return ( Instructions() .with_all_callee_function_names(["require", "balanceOf"], sensitivity=False) .exec(1) )
Instructions