Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

[PARTNER-278] Add on_hold status for SEP-24 tansactions #1479

Merged
merged 3 commits into from
May 1, 2024
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
8 changes: 6 additions & 2 deletions ecosystem/sep-0024.md
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@ Title: Hosted Deposit and Withdrawal
Author: SDF
Status: Active
Created: 2019-09-18
Updated: 2024-01-24
Version 3.5.0
Updated: 2024-04-22
Version 3.6.0
```

## Simple Summary
Expand Down Expand Up @@ -1125,6 +1125,9 @@ Each object in the `transactions` array should have the following fields:
transfer.
- `pending_anchor` -- deposit/withdrawal is being processed internally by anchor. This can also be used when the anchor
must verify KYC information prior to deposit/withdrawal.
- `on_hold` -- 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.
- `pending_stellar` -- deposit/withdrawal operation has been submitted to Stellar network, but is not yet confirmed.
- `pending_trust` -- the user must add a trustline for the asset for the deposit to complete.
- `pending_user` -- the user must take additional action before the deposit / withdrawal can complete, for example an
Expand Down Expand Up @@ -1405,6 +1408,7 @@ There is a small set of changes when upgrading from SEP-6 to SEP-24.

## Changelog

- `v3.6.0` Add new `on_hold` status ([#1479](https://github.com/stellar/stellar-protocol/pull/1479/))
- `v3.5.0` Add `fee_details` field to the transaction object
[#1429](https://github.com/stellar/stellar-protocol/pull/1429)
- `v3.4.0`: Add `customer_id` field to deposit and withdrawal requests
Expand Down
Loading