pub trait ManagerQueryFns<Chain>: BootQuery<Chain, QueryMsg = QueryMsg>where
    Chain: BootEnvironment,{
    // Provided methods
    fn module_versions(
        &self,
        ids: Vec<String, Global>
    ) -> Result<ModuleVersionsResponse, BootError> { ... }
    fn module_addresses(
        &self,
        ids: Vec<String, Global>
    ) -> Result<ModuleAddressesResponse, BootError> { ... }
    fn module_infos(
        &self,
        limit: Option<u8>,
        start_after: Option<String>
    ) -> Result<ModuleInfosResponse, BootError> { ... }
    fn config(&self) -> Result<ConfigResponse, BootError> { ... }
    fn info(&self) -> Result<InfoResponse, BootError> { ... }
}

Provided Methods§

Implementors§

source§

impl<SupportedContract, Chain> QueryMsgFns<Chain> for SupportedContractwhere Chain: BootEnvironment, SupportedContract: BootQuery<Chain, QueryMsg = QueryMsg>,