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

SEP-6: Accept financial information via SEP-12 #1380

Merged
merged 6 commits into from
Aug 30, 2023

Conversation

philipliu
Copy link
Contributor

@philipliu philipliu commented Aug 15, 2023

Abstract

Today, wallets are required to send a user's financial account information mainly through the dest and dest_extra request parameters when requesting a withdrawal. This is a security risk as web servers often log their GET requests which will include personally identifiable information such as a user's bank account number. The standard should define an alternative method for allowing users to provide their information.

Proposal

This PR proposes excluding the fields from the withdrawal types returned by the GET /info endpoint as a means to collect these fields through an alternative flow. This will force the anchor to put the transaction into the pending_customer_info_update status. The wallet will use then SEP-12 PUT /customer to provide the missing financial account information. This allows us to deprecate the dest and dest_extra request parameters by making them optional when a withdraw type's fields object is missing.

Backwards Compatibility

This change is backward compatible as wallets will continue sending financial account information through the request parameters if the anchors define them as part of the GET /info response.

This depends on some changes from #1379.

@philipliu
Copy link
Contributor Author

I'm skipping a version here as I assume that the deposit PR will be merged first.

@philipliu philipliu marked this pull request as ready for review August 17, 2023 15:54
Copy link
Contributor

@JakeUrban JakeUrban left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

I definitely agree with the outcome we're trying to achieve here, but I think we should encourage clients to provide financial account data via SEP-12's PUT /customer requests, rather than SEP-6's PATCH /transaction request.

I think this simplifies client implementations (and the design of the anchor platform) because we don't have to support PATCH /transaction or the pending_transaction_info_update status. What do you think?

@philipliu
Copy link
Contributor Author

The challenge with using SEP-12 for accepting financial account information is when a user wants to use two different bank accounts (or two accounts of the same type) between withdrawals.

Let's suppose a user requests a withdrawal to the first bank account. Then, they submit another withdrawal request to another bank account. I see two ways of doing this:

  1. Associate a set of bank account fields per transaction. Something like bank_account_number.e0045691-23a7-4f9e-8c56-aeaf3a78010e, for each transaction. When the transaction completes, we would need to delete these bank account fields. SEP-12 does not currently support deleting a subset of fields for a customer.
  2. Block the second withdrawal until the first completes, then ask the user to submit new bank account information again using SEP-12. This would not allow for a user not to have concurrent withdrawals.

I think multi-account withdrawals are a use case we want to support. SEP-12 does not look like it's designed for ephemeral/transaction-related data, so using it would require us to design a partial delete API. I agree that using /PATCH is not ideal, but I feel like it's a simpler approach.

@JakeUrban
Copy link
Contributor

I'm not sure I understand how this approach solves the multiple-account-per-type-per-customer problem though.

If a first-time customer initiates a withdraw to bank account and omits dest and dest_extra, the anchor can move to pending_transaction_info_update and request the customer to provide bank details via PATCH /transaction, but the 2nd time they initiate a withdrawal transaction, how does the anchor know the customer wants to use a different bank account this time?

@philipliu
Copy link
Contributor Author

/PATCH transaction would only update the bank details for a single transaction.

The second withdrawal request would be moved into pending_transaction_info_update and the customer would be asked to provide bank details again using PATCH /transaction.

@JakeUrban
Copy link
Contributor

JakeUrban commented Aug 17, 2023

If the business doesn't store bank details of their customers for future transactions, then that puts responsibility on the wallet to do so, otherwise wallets will need to ask their users for the their bank account info on each transaction. And I don't know if it makes sense to have wallets store customer bank details, especially noncustodial wallets.

While its not ideal, the existing approach of having at most 1 account per type on file works and ensures that customers only have to provide their bank details once. If customers want to use a different bank account, they can update their account on file with the anchor, and the wallet can decide how to build the UX for that. But I'd rather not try to solve a problem a small percentage of customers will use at the expense of additional complexity for wallets or a worse UX for the majority of customers who just use one off-chain account.

@philipliu
Copy link
Contributor Author

Thanks, @JakeUrban, that makes sense. I'll make the changes then.

JakeUrban
JakeUrban previously approved these changes Aug 17, 2023
@philipliu philipliu changed the title SEP-6: Accept financial information via PATCH SEP-6: Accept financial information via SEP-12 Aug 17, 2023
@@ -958,7 +962,7 @@ All assets listed in a `withdraw` and `withdraw-exchange` can contain these attr

* `enabled`: `true` if SEP-6 withdrawal for this asset is supported
* `authentication_required`: Optional. `true` if client must be [authenticated](#authentication) before accessing the withdraw endpoint for this asset. `false` if not specified.
* `types`: a field with each type of withdrawal supported for that asset as a key. Each type can specify a `fields` object as below explaining what fields are needed and what they do.
* `types`: a field with each type of withdrawal supported for that asset as a key. Each type can specify a `fields` object as below explaining what fields are needed and what they do. Anchors are encouraged to use [SEP-9 financial account fields](sep-0009.md#financial-account-fields), but can also define custom fields if necessary. If a `fields` object is not specified, the wallet should assume that no extra fields are needed for that type of withdrawal. In the case that the Anchor requires additional fields for a withdrawal, it should set the transaction status to `pending_customer_info_update`. The wallet can query the `/transaction` endpoint to get the fields needed to complete the transaction in `required_customer_info_updates` and then use [SEP-12](sep-0012.md#customer-put) to collect the information from the user.
Copy link
Contributor

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Can you update Basic Wallet Implementation section to reflect this change?

JakeUrban
JakeUrban previously approved these changes Aug 30, 2023
@philipliu philipliu merged commit 142afff into stellar:master Aug 30, 2023
2 checks passed
@philipliu philipliu deleted the anchor-387-withdrawal branch August 30, 2023 19:56
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

3 participants