pub trait InstantiateEndpoint: Handler {
    type InstantiateMsg: Serialize + JsonSchema;

    fn instantiate(
        self,
        deps: DepsMut<'_>,
        env: Env,
        info: MessageInfo,
        msg: Self::InstantiateMsg
    ) -> Result<Response, Self::Error>; }

Required Associated Types§

Required Methods§

Instantiate the base contract

Implementors§