pub trait WasmClientCodeUploader<Chain>{
    // Required method
    fn upload_wasm_client_code(
        chain: &Chain,
        wasm_client_bytes: &Vec<u8>,
        title: &str,
        summary: &str,
        authority: &Chain::Address,
        deposit_amount: &Chain::Amount,
    ) -> impl Future<Output = Result<Chain::ProposalId, Chain::Error>> + Send;
}

Required Methods§

source

fn upload_wasm_client_code( chain: &Chain, wasm_client_bytes: &Vec<u8>, title: &str, summary: &str, authority: &Chain::Address, deposit_amount: &Chain::Amount, ) -> impl Future<Output = Result<Chain::ProposalId, Chain::Error>> + Send

Object Safety§

This trait is not object safe.

Implementors§