Trait hermes_wasm_test_components::traits::chain::upload_client_code::WasmClientCodeUploader
source · 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§
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.