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