pub trait AdapterDeployer<Chain: CwEnv + ChainUpload, CustomInitMsg: Serialize>: ContractInstance<Chain> + CwOrcInstantiate<Chain, InstantiateMsg = InstantiateMsg<CustomInitMsg>> + CwOrcUpload<Chain> {
    // Provided method
    fn deploy(
        &mut self,
        version: Version,
        custom_init_msg: CustomInitMsg
    ) -> Result<(), AbstractInterfaceError> { ... }
}
Expand description

Trait for deploying Adapters

Provided Methods§

source

fn deploy( &mut self, version: Version, custom_init_msg: CustomInitMsg ) -> Result<(), AbstractInterfaceError>

Implementors§