Skip to content

Commit

Permalink
Add new on_hold status (#140)
Browse files Browse the repository at this point in the history
  • Loading branch information
Ifropc authored Jun 28, 2024
1 parent 8f9360f commit 189604b
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions @stellar/typescript-wallet-sdk/src/walletSdk/Types/anchor.ts
Original file line number Diff line number Diff line change
Expand Up @@ -192,4 +192,8 @@ export enum TransactionStatus {

/** Catch-all for any error not enumerated above. */
error = "error",
/** deposit/withdrawal is currently on hold for additional checks after receiving user's funds.
* Anchor may use this status to indicate to the user that transaction is being reviewed (for example,
* for compliance reasons). Once this status cleared, transaction should follow the regular flow */
on_hold = "on_hold",
}

0 comments on commit 189604b

Please sign in to comment.