Type Alias abstract_std::app::ExecuteMsg

source ·
pub type ExecuteMsg<ModuleMsg = Empty, ReceiveMsg = Empty> = ExecuteMsg<BaseExecuteMsg, ModuleMsg, ReceiveMsg>;

Aliased Type§

enum ExecuteMsg<ModuleMsg = Empty, ReceiveMsg = Empty> {
    Base(BaseExecuteMsg),
    Module(ModuleMsg),
    IbcCallback(IbcResponseMsg),
    ModuleIbc(ModuleIbcMsg),
    Receive(ReceiveMsg),
}

Variants§

§

Base(BaseExecuteMsg)

A configuration message, defined by the base.

§

Module(ModuleMsg)

An app request defined by a base consumer.

§

IbcCallback(IbcResponseMsg)

IbcReceive to process IBC callbacks In order to trust this, the apps and adapters verify this comes from the ibc-client contract.

§

ModuleIbc(ModuleIbcMsg)

ModuleIbc endpoint to receive messages from modules on other chains
In order to trust this, the apps and adapters verify this comes from the ibc-host contract. They should also trust the sending chain

§

Receive(ReceiveMsg)

Receive endpoint for CW20 / external service integrations

Trait Implementations§

source§

impl<T> From<BaseExecuteMsg> for ExecuteMsg<T>

source§

fn from(base: BaseExecuteMsg) -> Self

Converts to this type from the input type.
source§

impl<T: AppExecuteMsg, R: Serialize> From<T> for ExecuteMsg<T, R>

source§

fn from(app: T) -> Self

Converts to this type from the input type.