MethodProp.IS_PAYABLE
function depositETH() external payable {
depositor[msg.sender].balance = msg.value;
}from glider import *
def query():
props_included = [MethodProp.IS_PAYABLE]
functions = Functions()\
.with_all_properties(props_included)\
.exec(5)
return functionsOutput

Last updated