Search
# Ways to Query
Retreiving AutoTX info can be through the TriggerPørtal interface, a TrustlessJS front-end integration or locally through a light client Command-Line Interface.
A list of RPC endpoints are to-be added. Here's one for now: openrpc.trustlesshub.com
# GRPC Queries
The proto queries define the gRPC querier service for interacting with the AutoIbcTx module.
The available queries are as follows:
| Query | Description | Parameter | Returns | HTTP Method | Endpoint |
|---|---|---|---|---|---|
| InterchainAccountFromAddress | Returns the interchain account for a given owner address on a specified connection pair | QueryInterchainAccountFromAddressRequest | QueryInterchainAccountFromAddressResponse | GET | /auto-ibc-tx/v1beta1/address-to-ica |
| AutoTX | Returns the auto-executing interchain account transaction for a specified ID | QueryAutoTxRequest | QueryAutoTxResponse | GET | /auto-ibc-tx/v1beta1/auto-tx/ |
| AutoTXs | Returns all auto-executing interchain account messages | QueryAutoTxsRequest | QueryAutoTxsResponse | GET | /auto-ibc-tx/v1beta1/auto-txs |
| AutoTXsForOwner | Returns all auto-executing interchain account messages for a given owner | QueryAutoTxsForOwnerRequest | QueryAutoTxsForOwnerResponse | GET | /auto-ibc-tx/v1beta1/auto-txs-for-owner/ |
| Params | Returns the total set of AutoIbcTx parameters | QueryParamsRequest | QueryParamsResponse | GET | /auto-ibc-tx/v1beta1/params |
These proto queries provide a convenient way to interact with the AutoIbcTx module and access information about automatic interchain transactions.