pub trait VCExecFns<Chain>: BootExecute<Chain, ExecuteMsg = ExecuteMsg>where
    Chain: BootEnvironment,{
    // Provided methods
    fn remove_module(
        &self,
        module: ModuleInfo
    ) -> Result<<Chain as TxHandler>::Response, BootError> { ... }
    fn add_modules(
        &self,
        modules: Vec<(ModuleInfo, ModuleReference), Global>
    ) -> Result<<Chain as TxHandler>::Response, BootError> { ... }
    fn add_account(
        &self,
        account_base: AccountBase,
        account_id: u32
    ) -> Result<<Chain as TxHandler>::Response, BootError> { ... }
    fn set_admin(
        &self,
        new_admin: String
    ) -> Result<<Chain as TxHandler>::Response, BootError> { ... }
    fn set_factory(
        &self,
        new_factory: String
    ) -> Result<<Chain as TxHandler>::Response, BootError> { ... }
}

Provided Methods§

source

fn remove_module( &self, module: ModuleInfo ) -> Result<<Chain as TxHandler>::Response, BootError>

source

fn add_modules( &self, modules: Vec<(ModuleInfo, ModuleReference), Global> ) -> Result<<Chain as TxHandler>::Response, BootError>

source

fn add_account( &self, account_base: AccountBase, account_id: u32 ) -> Result<<Chain as TxHandler>::Response, BootError>

source

fn set_admin( &self, new_admin: String ) -> Result<<Chain as TxHandler>::Response, BootError>

source

fn set_factory( &self, new_factory: String ) -> Result<<Chain as TxHandler>::Response, BootError>

Implementors§

source§

impl<SupportedContract, Chain> ExecuteMsgFns<Chain> for SupportedContractwhere Chain: BootEnvironment, SupportedContract: BootExecute<Chain, ExecuteMsg = ExecuteMsg>,