Skip to content

Latest commit

 

History

History
30 lines (24 loc) · 1.1 KB

Add-actions-to-my-Smart-Contract.md

File metadata and controls

30 lines (24 loc) · 1.1 KB

To make an action available in your Smart Contract, you will need to hook up your code to the global variable actions. These actions can be synchronous or asynchronous.

For example, if I want to have an action called addUser:

// synchronous version
actions.addUser = (payload) => {
	// the code of my action here
	// the parameter payload is passed to all the actions
	// payload is a JSON containing the payload that was passed by the user via the protocol
}

// asynchronous version
actions.addUser = async (payload) => {
	// the code of my action here
	// the parameter payload is passed to all the actions
	// payload is a JSON containing the payload that was passed by the user via the protocol
	// code can be called with the "await" keyword
}

The "createSSC" action is a reserved action that is triggered only once during the whole life of the Smart Contract, and this happens when the Smart Contract is deployed. This is the only place where you can initialize the storage for your Smart Contract. For example:

actions.createSSC = (payload) => {
	// initialize some stuffs here
}