Instructions.functions_recursive()
Returns Functions object for the functions where the instructions can be executed in.
function includeInFee(address account) public onlyOwner {
_isExcludedFromFee[account] = false;
}_isExcludedFromFee[account] = false;Query Example
from glider import *
def query():
# Fetch a function
functions = (
Functions()
.with_name("includeInFee")
.exec(1)
)
print(
functions
.instructions()
.functions_recursive()
.exec()
.name
)
return functionsExample Output

Last updated