pub trait BootMigrate<Chain: BootEnvironment> {
    type MigrateMsg: Serialize;

    fn migrate(
        &self,
        migrate_msg: &Self::MigrateMsg,
        new_code_id: u64
    ) -> Result<Chain::Response, BootError>; }
Expand description

Smart Contract migrate endpoint

Required Associated Types

Required Methods

Implementors