cw_i2_creator_pkg/msgs/
mod.rs

1//! Messages are how interactions occur in CosmWasm contracts.
2
3/// Available execute messages (likely changing state)
4pub mod execute_msg;
5/// Available instantiate messages (the parameters sent to the bytecode when instantiating)
6pub mod instantiate_msg;
7/// Available query messages (read-only, not changing state)
8pub mod query_msg;