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