MethodProp.IS_VIEW
function getOwner() external view returns address {
return owner;
}from glider import *
def query():
props_included = [MethodProp.IS_VIEW]
functions = Functions()\
.with_all_properties(props_included)\
.exec(5)
return functionsOutput

Last updated