From 195f38a6d286a529546306ed898c22146b88d5d3 Mon Sep 17 00:00:00 2001 From: Gleb Date: Thu, 18 Apr 2024 19:05:14 -0700 Subject: [PATCH 1/2] Add on_hold status for SEP-24 tansactions --- ecosystem/sep-0024.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/ecosystem/sep-0024.md b/ecosystem/sep-0024.md index ed242928e..aa331ba00 100644 --- a/ecosystem/sep-0024.md +++ b/ecosystem/sep-0024.md @@ -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 From b06080558b46f891555eaf54864612d947e07f15 Mon Sep 17 00:00:00 2001 From: Gleb Date: Mon, 22 Apr 2024 10:06:05 -0700 Subject: [PATCH 2/2] Update changelog --- ecosystem/sep-0024.md | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/ecosystem/sep-0024.md b/ecosystem/sep-0024.md index aa331ba00..f5c0ad457 100644 --- a/ecosystem/sep-0024.md +++ b/ecosystem/sep-0024.md @@ -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 @@ -1408,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