Basic Execution
Execute with Funds
Attach native tokens to the execution message. The tokens are transferred to the contract as part of the message execution.Execute Multiple Contracts Atomically
Bundle multiple contract calls into a single transaction usingexecuteMultiple. If any call fails, the entire transaction is reverted.
ExecuteInstruction interface:
Parsing Events
Contract executions emit custom events under the"wasm" event type. These contain contract-defined key-value attributes.
executeMultiple, each contract call produces its own set of wasm events. Filter by the _contract_address attribute to distinguish which contract emitted each event.
Execution Result
Next Steps
Contract Administration
Migrate contracts and manage admin privileges.
Gas and Advanced Usage
Gas estimation, custom messages, and binary helpers.