Abci info

Get info about the application.

Get info about the application.

Upon success, the Cache-Control header will be set with the default maximum age.

GEThttps://agoric-tendermint.nownodes.io/abci_info
Response

Get some info about the application.

Body
jsonrpc*string
Example: "2.0"
id*integer
Example: 0
resultobject
Request
const response = await fetch('https://agoric-tendermint.nownodes.io/abci_info', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "jsonrpc": "2.0",
  "id": 0,
  "result": {
    "response": {
      "data": "{\"size\":0}",
      "version": "0.16.1",
      "app_version": "1314126"
    }
  }
}

Last updated