Returns the node which represents the given function.
Last updated 7 months ago
get_corresponding_node_for_function(function: ) →
get_corresponding_node_for_function(function:
) →
from glider import * def query(): contracts = Contracts().exec(1) contract = contracts[0] for func in contract.functions().exec(): call_node = contract.call_graph().get_corresponding_node_for_function(func) print(call_node.callable_name()) return []
[ { "print_output": [ "_msgSender", "_msgData" ] } ]
Callable
CallNode