Instantiation Message
An explainer of the Instantiate file inside of the CosmWasm code framework
What Is Instantiation?
#[entry_point]
pub fn instantiate(
_deps: DepsMut,
_env: Env,
_info: MessageInfo,
_msg: Empty,
) -> StdResult<Response> {
Ok(Response::new())
}Last updated
Was this helpful?