pub fn wasm_instantiate(
code_id: u64,
msg: &impl Serialize,
funds: Vec<Coin>,
label: String,
) -> StdResult<WasmMsg>
Expand description
Shortcut helper as the construction of WasmMsg::Instantiate can be quite verbose in contract code.
When using this, admin
is always unset. If you need more flexibility, create the message directly.