client identifier
A successful response.
PageResponse is to be embedded in gRPC response messages where the corresponding request message has used PageRequest.
message SomeResponse { repeated Bar results = 1; PageResponse page = 2; }
const response = await fetch('https://axelar.nownodes.io/ibc/core/client/v1/consensus_states/{client_id}/heights', { method: 'GET', headers: {}, }); const data = await response.json();
{ "consensus_state_heights": [ { "revision_number": "text", "revision_height": "text" } ], "pagination": { "next_key": "Ynl0ZXM=", "total": "text" } }