pub trait BootQuery<Chain: BootEnvironment> {
    type QueryMsg: Serialize;

    fn query<G: Serialize + DeserializeOwned>(
        &self,
        query_msg: &Self::QueryMsg
    ) -> Result<G, BootError>; }
Expand description

Smart Contract query endpoint

Required Associated Types

Required Methods

Implementors