Callables.with_callee_names()
Adds a filter to get functions/modifiers having specified callee names.
Function Example
from glider import *
def query():
# Retrieve all functions that call both the owner() and msgSender() functions
functions = Functions().with_callee_names(["owner", "msgSender"]).exec(1)
# Returns the function found
return functionsExample Output
constructor () {
_balances[_msgSender()] = 10000;
_isExcludedFromFee[owner()] = true;
}Modifier Example
Example Output
Last updated