Instructions.with_all_callee_names()
Adds a filter to get Instructions that have callees with all the given names.
Query Example
from glider import *
def query():
return (
Instructions()
.with_all_callee_names(["require", "balanceOf"], sensitivity=False)
.exec(1)
)Example Output

Last updated