pub trait IbcClientQueryFns<Chain>: BootQuery<Chain, QueryMsg = QueryMsg>where
Chain: BootEnvironment,{
fn config(&self) -> Result<ConfigResponse, BootError> { ... }
fn list_accounts(&self) -> Result<ListAccountsResponse, BootError> { ... }
fn account(
&self,
chain: String,
os_id: u32
) -> Result<AccountResponse, BootError> { ... }
fn latest_query_result(
&self,
chain: String,
os_id: u32
) -> Result<LatestQueryResponse, BootError> { ... }
fn list_channels(&self) -> Result<ListChannelsResponse, BootError> { ... }
}