MethodProp.HAS_ARGS
function myFunction(uint256 investAmount){}from glider import *
def query():
props_excluded = [MethodProp.HAS_ARGS]
functions = Functions()\
.without_properties(props_excluded)\
.exec(5)
return functionsOutput

Last updated