Callables.callee_functions_recursive()

Returns a Functions object representing the functions which are called from the callables of the Callables object.

callee_functions_recursive() → Functions

Query Example

from glider import *


def query():
  functions = Functions().with_name("beforeTokenTransfer").exec(10)

  callee_functions = []
  for func in functions:
    for callee_func in func.callee_functions_recursive().exec():
      callee_functions.append(callee_func)

  return callee_functions

Example Output

Last updated