Callables.extended_callee_functions()

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

extended_callee_functions() → Functions

Query Example

from glider import *

def query():
  functions = Functions().with_name("beforeTokenTransfer").exec(1)
  print(functions)
  callee_functions = []
  for func in functions:
    for callee_func in func.extended_callee_functions().exec():
      callee_functions.append(callee_func)

  return callee_functions

Output Example

Last updated