Post dexConfirmTx API
Confirms whether a specific transaction hash has been successfully processed on-chain.
Endpoint: POST /dexConfirmTx
POST /dexConfirmTx
Parameters: None
Request Body: A JSON object containing dexConfirmTx
details.
Request Body Fields:
Field
Type
Description
id
string
Internal ID of the transaction
txHash
string
Blockchain transaction hash
Example request:
POST /dexConfirmTx
Content-Type: application/json
{
"id": "6689b73ec90e45f3b3e51553",
"txHash": "0x123456789abcdef..."
}
Example response:
true
Response Fields:
Field
Type
Description
response
boolean
Transaction confirmation response
Last updated