Using Execute Messages

What are Execute Messages?

Execute messages are transactions sent to a smart contract, instructing it to perform specific actions or operations. These messages can trigger functions defined within the smart contract code, enabling users to interact with the contract's functionality. In short, execute messages are the messages we use to interact with an ADO.

Each of our ADOs has two sets of execute messages:

  • Base ADO Execute: A set of execute messages common to all our ADOs that provide basic information about the ADO. Examples of base executes include transfering ownership of an ADO or setting permissions for an ADO. The list of base executes can be found here.

  • Custom Execute messages: A set of execute messages unique to each ADO. These execute depends on the use of the ADO and are specific to that use. Examples of custom executes include minting an NFT in an CW721, bidding on an NFT in an Auction, sending some tokens in a CW20.

The execute messages can be found in the ADO's panel in the assets page by pressing on the three dots as seen in the image below:

You can also use execute messages from our CLI but we will be focusing on executing from the web-app in this example.

This will display the list of execute messages available for that component. Each execute will perform a different action on the ADO. You can read about each ADO's execute messages here. Selecting the execute message that you want to perform, will take you to a new page where you can set up the message.

Example

If you dont have any assets yet, it is fine to just read and understand how an execute message works for now. You will get plenty of hands on examples in our ADO Builer guides.

Let us perform an execute message to mint some NFTs. On any CW721 ADO I will select the three dots and choose the Mint execute message from the list:

Here, you can set up the minting options to mint an NFT:

Once you have configured your execute message, you can press the publish button to send the message to the chain and have the ADO execute the mint. Once published, your CW721 ADO will have 1 minted NFT. You can check this by performing a query which we will cover in the next section.

Multi Execute

To make life easier, we have created a multi-execute option for our users which allows them to send multiple execute messages in one go:

Selecting "Add Attachment" will allow us to attach a new execute message. For the first message, I want to burn the NFT I minted earlier so I select the Burn message from the options:

Next I want to mint a new NFT. So I select Add Attachment once more and select Mint from the list of execute messages:

I can keep adding messages as I see fit. When done, I can publish all these messages to the chain in one go.

Last updated