pub trait BootInstantiate<Chain: BootEnvironment> {
    type InstantiateMsg: Serialize;

    fn instantiate(
        &self,
        instantiate_msg: &Self::InstantiateMsg,
        admin: Option<&Addr>,
        coins: Option<&[Coin]>
    ) -> Result<Chain::Response, BootError>; }
Expand description

Smart Contract instantiate endpoint

Required Associated Types§

Required Methods§

Implementors§