pub trait ManagerQueryFns<Chain>: BootQuery<Chain, QueryMsg = QueryMsg>where
Chain: BootEnvironment,{
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,
page_size: Option<u8>,
page_token: Option<String>
) -> Result<ModuleInfosResponse, BootError> { ... }
fn config(&self) -> Result<ConfigResponse, BootError> { ... }
fn info(&self) -> Result<InfoResponse, BootError> { ... }
}