Trait boot_core::BootUpload

source ·
pub trait BootUpload<Chain: CwEnv> {
    // Required method
    fn upload(&mut self) -> Result<Chain::Response, BootError>;
}
Expand description

Smart Contract migrate endpoint

Required Methods§

source

fn upload(&mut self) -> Result<Chain::Response, BootError>

Implementors§

source§

impl<T: ContractInstance<Chain>, Chain: CwEnv> BootUpload<Chain> for T