Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions docs/reference/idempotency.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,3 +40,6 @@ By incorporating the `idempotencyKey` with specific game and item IDs:
* Players purchases are singular. Any effort to replicate the transaction will fail.

* Should any interruptions occur during the buying process, like server outages or communication failures, the transaction can be re-validated without the threat of repeated charges.

::: info
Since the `idempotencyKey` is global among all payments, developers should consider incorporating a unique value to further differentiate a payment. For example, use `destination` address when appropriate or also include a developer-specific random GUID.