transaction.succeeded

When it fires The transaction completed successfully and is finalized.

Typical use

  • Mark order as PAID

  • Update inventory and revenue stats

  • Send confirmation email

Example:

{
  "event": "transaction.succeeded",
  "timestamp": "2024-01-15T12:25:00.000Z",
  "data": {
    "transactionId": "64abc123def456789012349",
    "linkCode": "abc123xyz7",
    "customOrderId": "ORDER-123456",
    "amount": "100",
    "currency": "USDC",
    "sender": "0x123...",
    "receiver": "0x8356D265646a397b2Dacf0e05A4973E7676597f4",
    "status": "completed",
    "settlementAmount": "100"
  }
}

Last updated

Was this helpful?