PendingCctx

Queries a list of pending cctxs.

GEThttps://zetachain.nownodes.io/zeta-chain/crosschain/pendingCctx
Query parameters
Response

A successful response.

Body
CrossChainTxarray of crosschainCrossChainTx (object)
totalPendingstring (uint64)
Request
const response = await fetch('https://zetachain.nownodes.io/zeta-chain/crosschain/pendingCctx', {
    method: 'GET',
    headers: {},
});
const data = await response.json();
Response
{
  "CrossChainTx": [
    {
      "creator": "text",
      "index": "text",
      "zeta_fees": "text",
      "relayed_message": "text",
      "cctx_status": {
        "status": "PendingInbound",
        "status_message": "text",
        "lastUpdate_timestamp": "text",
        "isAbortRefunded": false
      },
      "inbound_tx_params": {
        "sender": "text",
        "sender_chain_id": "text",
        "tx_origin": "text",
        "coin_type": "Zeta",
        "asset": "text",
        "amount": "text",
        "inbound_tx_observed_hash": "text",
        "inbound_tx_observed_external_height": "text",
        "inbound_tx_ballot_index": "text",
        "inbound_tx_finalized_zeta_height": "text",
        "tx_finalization_status": "NotFinalized"
      },
      "outbound_tx_params": [
        {
          "receiver": "text",
          "receiver_chainId": "text",
          "coin_type": "Zeta",
          "amount": "text",
          "outbound_tx_tss_nonce": "text",
          "outbound_tx_gas_limit": "text",
          "outbound_tx_gas_price": "text",
          "outbound_tx_hash": "text",
          "outbound_tx_ballot_index": "text",
          "outbound_tx_observed_external_height": "text",
          "outbound_tx_gas_used": "text",
          "outbound_tx_effective_gas_price": "text",
          "outbound_tx_effective_gas_limit": "text",
          "tss_pubkey": "text",
          "tx_finalization_status": "NotFinalized"
        }
      ]
    }
  ],
  "totalPending": "text"
}