Instruction.next_instructions_recursive()
Returns the set of all instructions following the current node in the control flow graph.
function approve(address spender, uint256 amount) public override returns (bool) {
_approve(_msgSender(), spender, amount);
return true;
}_approve(_msgSender(), spender, amount);Query Example
from glider import *
def query():
instructions = Functions().with_name("approve").exec(1, 9).instructions().exec(1,1)
return instructions + list(instructions.next_instructions_recursive())Output Example







Last updated