MethodProp.IS_PURE
function add(uint256 a,uint256 b) external pure returns uint256 {
return a + b;
}from glider import *
def query():
props_included = [MethodProp.IS_PURE]
functions = Functions()\
.with_all_properties(props_included)\
.exec(5)
return functionsOutput

Last updated