Transaction Relay

GET <API_ENDPOINT>/v0/<CHAIN>/transaction/relay/<TRANSACTION_HEX>

OR

POST <API_ENDPOINT>/v0/<CHAIN>/transaction/relay
txn_hex=<TRANSACTION_HEX>

Takes a fully formed and signed Transaction and relays to the <CHAIN> network. Reurns the id of the transaction.

Notes: It might take several seconds between a Transaction being successfully relayed at it being queryable via the other API functions. This is because our outgoing node is independent of our blockchain parser. In effect we wait for the Transaction to be broadcast to the nextwork and be returned back to us. This ensures our API data reflects to true state of the network.

Example Output

{
    "status": "success",
        "data": {
            "id": "ffb9bab978152bebdb1ddcff9cd316d11852b79edc2aca0c3f523fceac1f6dde",
            "_request": {
        <REQUEST_OBJECT>
            }
        }
}

Also see

Access Criteria

  1. Return to API
  2. Transaction
  3. Transaction Relay
  4. Transaction Decode
  5. Table of Contents