/ibc/core/connection/v1/client_connections/{client_id}

ClientConnections queries the connection paths associated with a client state.

Parameters:

client_id - string, client identifier associated with a connection

Example:

// Request
curl -X GET -H 'Content-Type: application/json' https://cosmos-lcd.blockpi.network/cosmos/<your-api-key>/v1/ibc/core/connection/v1/client_connections/07-tendermint-0

// Result
{
    "connection_paths": [
        "connection-560",
        "connection-561",
        "connection-562"
    ],
    "proof": null,
    "proof_height": {
        "revision_number": "4",
        "revision_height": "14099411"
    }
}

Last updated