MethodProp.IS_CONSTRUCTOR
contract Example {
constructor(){
owner = msg.sender;
}
}from glider import *
def query():
props_included = [MethodProp.IS_CONSTRUCTOR]
functions = Functions()\
.with_all_properties(props_included)\
.exec(5)
return functionsOutput

Last updated