pub trait BootExecute<Chain: BootEnvironment> {
    type ExecuteMsg: Serialize;

    fn execute<'a>(
        &self,
        execute_msg: &'a Self::ExecuteMsg,
        coins: Option<&[Coin]>
    ) -> Result<Chain::Response, BootError>; }
Expand description

Smart Contract execute endpoint

Required Associated Types

Required Methods

Implementors