2 releases
0.4.2 | Jan 28, 2024 |
---|---|
0.4.1 | Jan 27, 2024 |
#100 in #callback
639 downloads per month
Used in cw-ica-controller
7KB
cw-ica-controller-derive
- ICA Controller Derive
This crate provides a derive macro for contracts receiving ICA controller callback messages.
This crate's macros are not intended to be used directly, but rather as a dependency of the
cw-ica-controller
crate where it is re-exported under the cw_ica_controller::helpers
.
This allows the users of the cw-ica-controller
crate to easily merge the required callback
message enum variant into their ExecuteMsg
enum.
Usage
I will show the usage of this crate (from the cw-ica-controller
crate) in
testing/contracts/callback-counter/src/msg.rs
.
use cosmwasm_schema::{cw_serde, QueryResponses};
use cw_ica_controller::helpers::ica_callback_execute;
#[cw_serde]
pub struct InstantiateMsg {}
#[ica_callback_execute]
#[cw_serde]
pub enum ExecuteMsg {}
#[cw_serde]
#[derive(QueryResponses)]
pub enum QueryMsg {
/// GetCallbackCounter returns the callback counter.
#[returns(crate::state::CallbackCounter)]
GetCallbackCounter {},
}
Dependencies
~1.5MB
~36K SLoC