diff --git a/content/tutorials/use-tokens/trade-in-the-decentralized-exchange.md b/content/tutorials/use-tokens/trade-in-the-decentralized-exchange.md index ff46e05f5c..1fa3a86513 100644 --- a/content/tutorials/use-tokens/trade-in-the-decentralized-exchange.md +++ b/content/tutorials/use-tokens/trade-in-the-decentralized-exchange.md @@ -66,4 +66,60 @@ Before you buy or sell a token, you usually want to look up what others are buyi ### {{n.next()}}. Send OfferCreate Transaction -### {{n.next()}}. Wait for Confirmation +To actually make a trade, send an [OfferCreate transaction][]. In this case, you want to buy TST using XRP, so you should set the parameters as follows: + +| Field | Type | Description | +|---|---|---| +| `TakerPays` | [Token Amount object](#specifying-currency-amounts) | How much of what currency you want to buy, in total. For this tutorial, buy some amount of **TST** issued by `rP9jPyP5kyvFRb6ZiRghAGw5u8SGAmU4bd`. | +| `TakerGets` | [XRP, in drops][] | How much of what currency you are offering to pay in total. For this tutorial, you should offer approximately slightly over 10 XRP per TST. | + +{{ start_step("Send OfferCreate") }} +
+
TakerPays
+
+ +
+ +
+
+
+ +
+ +
+
+
+ +
+ +
+
+
TakerGets
+
+ +
+ +
+
+
Exchange Rate
+
+ +
+ +
+
+
+ +
Sending...
+
+{{ end_step() }} + +### {{n.next()}}. Wait for Validation + +Most transactions are accepted into the next ledger version after they're submitted, which means it may take 4-7 seconds for a transaction's outcome to be final. If the XRP Ledger is busy or poor network connectivity delays a transaction from being relayed throughout the network, a transaction may take longer to be confirmed. (For information on how to set an expiration for transactions, see [Reliable Transaction Submission](reliable-transaction-submission.html).) + +{{ start_step("Wait") }} +{% include '_snippets/interactive-tutorials/wait-step.md' %} +{{ end_step() }}