Contract Method
Public:
Private:
Single Node Call (SNC):
var CRC_Contract = {
method1: function(param1, param2){ ... }, // Public method
_method2: function(param1, param2){ ... }, // Private method
__method3: function(param1, param2){ ... } // SNC method
};Examples
Transaction (Modfiying State)
SNC (querying balance)
Last updated