get_function_callees
List all functions called by a given function, categorized as internal, external, or library calls. Identifies low-level calls for tracing dependencies and control flow.
Instructions
Gets all functions called by a specific function (outgoing edges in the call graph). Use this when tracing what a function does internally, finding dependencies, or understanding control flow. Returns categorized callees: internal (same contract), external (other contracts), and library calls, plus a flag for low-level calls (call/delegatecall). Does not recurse; call repeatedly to trace deeper.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| request | Yes |
Output Schema
| Name | Required | Description | Default |
|---|---|---|---|
| callees | No | ||
| success | Yes | ||
| error_message | No | ||
| query_context | No |