Instructions.callables_recursive()
Returns a set of Callables objects for the callables where the instructions can be executed in.
modifier onlyOwner() {
require(_owner == _msgSender(),"Ownable: caller is not the owner");
_;
}
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()
.callables_recursive()
.exec()
.name
)
return functionsExample Output

Last updated