Report Transaction Failure
Report failures on signing or sending the transaction
Report Failure API
await rango.reportFailure({
requestId: '2823418f-9e18-4110-8d36-b569b0af025e'
eventType: 'SEND_TX_FAILED',
reason: 'Transaction is underpriced.'
})const response = await axios.post(
'https://api.rango.exchange/basic/report-tx',
{
'requestId': '2823418f-9e18-4110-8d36-b569b0af025e',
'eventType': 'SEND_TX_FAILED',
'reason': 'Transaction is underpriced.'
},
{
params: {
'apiKey': 'c6381a79-2817-4602-83bf-6a641a409e32'
},
headers: {
'content-type': 'application/json'
}
}
);Report Failure Request
Last updated