From 4d5dcf7c69bd278a80a90d81e27ab5ffc79ca7ef Mon Sep 17 00:00:00 2001 From: Christian Rogobete Date: Wed, 19 Jul 2023 11:45:38 +0200 Subject: [PATCH] fix formatting of sep24.mdx --- docs/building-apps/wallet/sep24.mdx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/docs/building-apps/wallet/sep24.mdx b/docs/building-apps/wallet/sep24.mdx index f90f0796a..a831b1f01 100644 --- a/docs/building-apps/wallet/sep24.mdx +++ b/docs/building-apps/wallet/sep24.mdx @@ -33,6 +33,7 @@ final transferService = await TransferServerSEP24Service.fromDomain("place.domai // Or by providing the service url final transferService = TransferServerSEP24Service("http://api.stellar-anchor.org/transfer"); ``` + First, let's get the information about the anchor's support for [SEP-24]. This request doesn't require authentication, and will return generic info, such as supported currencies, and features supported by the anchor. You can get a full list of returned fields in the [SEP-24 specification](https://github.com/stellar/stellar-protocol/blob/master/ecosystem/sep-0024.md#info). @@ -281,6 +282,7 @@ request.account = "G..."; SEP24InteractiveResponse response = await transferService.withdraw(request); ``` + ## Getting Transaction Info