pub trait CwInterface {
    type InstantiateMsg: Serialize + Debug;
    type ExecuteMsg: Serialize + Debug;
    type QueryMsg: Serialize + Debug;
    type MigrateMsg: Serialize + Debug;
}
Expand description

Tells BOOT what the contract’s entrypoint messages are.

Required Associated Types§

Implementors§