return_instructions() β Instructions
return_instructions() β
Instructions
Returns the return instructions of the function.
return
from glider import * def query(): # Fetch a list of functions functions = Functions().exec(10) # Retrieve the return instructions of the first function instruction = functions[0].return_instructions().exec() return instruction
Output:
"root":{4 items "contract":string"0xd705c24267ed3c55458160104994c55c6492dfcf" "contract_name":string"Context" "sol_function":solidity function _msgSender() internal view virtual returns (address) { return msg.sender; } "sol_instruction":solidity return msg.sender }
Last updated 7 months ago