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> { ... }
}

Provided Methods§

source

fn config(&self) -> Result<ConfigResponse, CwEnvError>

source

fn list_accounts(&self) -> Result<ListAccountsResponse, CwEnvError>

source

fn account( &self, account_id: AccountId, chain: String ) -> Result<AccountResponse, CwEnvError>

source

fn latest_query_result( &self, account_id: AccountId, chain: String ) -> Result<LatestQueryResponse, CwEnvError>

source

fn list_channels(&self) -> Result<ListChannelsResponse, CwEnvError>

Implementors§

source§

impl<SupportedContract, Chain> QueryMsgFns<Chain> for SupportedContractwhere Chain: CwEnv, SupportedContract: CwOrchQuery<Chain, QueryMsg = QueryMsg>,