pub trait IbcClientQueryFns<Chain>: CwOrcQuery<Chain, QueryMsg = QueryMsg>where
Chain: CwEnv,{
// Provided methods
fn config(&self) -> Result<ConfigResponse, CwOrchError> { ... }
fn list_accounts(&self) -> Result<ListAccountsResponse, CwOrchError> { ... }
fn account(
&self,
account_id: u32,
chain: String
) -> Result<AccountResponse, CwOrchError> { ... }
fn latest_query_result(
&self,
account_id: u32,
chain: String
) -> Result<LatestQueryResponse, CwOrchError> { ... }
fn list_channels(&self) -> Result<ListChannelsResponse, CwOrchError> { ... }
}