Batched commands

BatchedCommands queries the batched commands for a specified chain and BatchedCommandsID if no BatchedCommandsID is specified, then it returns the latest batched commands

get

/axelar/evm/v1beta1/batched_commands/{chain}//{id}

Path parameters
chainstringrequired
idstringrequired

id defines an optional id for the commandsbatch. If not specified the latest will be returned

Responses
curl -L \
  --url 'https://axelar.nownodes.io/axelar/evm/v1beta1/batched_commands/{chain}/{id}'
{
  "id": "text",
  "data": "text",
  "status": "BATCHED_COMMANDS_STATUS_UNSPECIFIED",
  "key_id": "text",
  "execute_data": "text",
  "prev_batched_commands_id": "text",
  "command_ids": [
    "text"
  ],
  "proof": {
    "addresses": [
      "text"
    ],
    "weights": [
      "text"
    ],
    "threshold": "text",
    "signatures": [
      "text"
    ]
  }
}