Check tx

Checks the transaction without executing it.

The transaction won't be added to the mempool.

Please refer to https://docs.tendermint.com/v0.34/tendermint-core/using-tendermint.html#formatting for formatting/encoding rules.

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

GEThttps://axelar-tendermint.nownodes.io/check_tx
Query parameters
Response

ABCI application's CheckTx response

Body
error*string
Example: ""
result*object
id*integer
Example: 0
jsonrpc*string
Example: "2.0"
Request
const response = await fetch('https://axelar-tendermint.nownodes.io/check_tx?tx=785', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "error": "",
  "result": {
    "code": "0",
    "data": "",
    "log": "",
    "info": "",
    "gas_wanted": "1",
    "gas_used": "0",
    "events": [
      {
        "type": "app",
        "attributes": [
          {
            "key": "YWN0aW9u",
            "value": "c2VuZA==",
            "index": false
          }
        ]
      }
    ],
    "codespace": "bank"
  },
  "id": 0,
  "jsonrpc": "2.0"
}