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

Last updated