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

Last updated