CallNode.get_extended_callees()

Returns all nodes corresponding the callees of the corresponding callable with the callees of those callables etc.

get_extended_callees() β†’ APISet[CallNode]

Query Example

from glider import *

def query():
    contracts = Contracts().exec(1,3)
    contract = contracts[0]

    call_nodes = contract.call_graph().all_nodes()
    call_node = call_nodes[32]

    print(f"Call node callable name: {call_node.callable_name()}")

    for callee in call_node.get_extended_callees():
        print(f"Extended callee callable name: {callee.callable_name()}")

    return []

Example Output

[
  {
    "print_output": [
      "Call node callable name: transferOwnership",
      "Extended callee callable name: owner",
      "Extended callee callable name: _msgSender",
      "Extended callee callable name: onlyOwner"
    ]
  }
]

Last updated