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

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

Smart Contract execute endpoint

Required Associated Types§

Required Methods§

Implementors§