mirror of
https://github.com/XRPLF/xrpl-dev-portal.git
synced 2025-11-30 08:35:50 +00:00
tasks -> how-tos
This commit is contained in:
committed by
Amarantha Kulkarni
parent
5f5852a57e
commit
5c12a9b80a
@@ -72,7 +72,7 @@ The legal requirements for trading on a blockchain vary by jurisdiction. In many
|
||||
|
||||
### Placing Trades
|
||||
|
||||
Buying and selling _fungible_ tokens and XRP within the XRP Ledger's decentralized exchange typically involves sending [OfferCreate transactions](../../references/protocol/transactions/types/offercreate.md). For a detailed walkthrough of the code and technical steps to place a trade this way, see [Trade in the Decentralized Exchange](../../tutorials/tasks/use-tokens/trade-in-the-decentralized-exchange.md). It is also possible to exchange currencies using the [Payment transaction type](../../references/protocol/transactions/types/payment.md). You could send a [cross-currency payment](../../concepts/payment-types/cross-currency-payments.md) to another user or even send it back to yourself, using a long [path](../../concepts/tokens/fungible-tokens/paths.md) to link arbitrage opportunities together into a single operation.
|
||||
Buying and selling _fungible_ tokens and XRP within the XRP Ledger's decentralized exchange typically involves sending [OfferCreate transactions](../../references/protocol/transactions/types/offercreate.md). For a detailed walkthrough of the code and technical steps to place a trade this way, see [Trade in the Decentralized Exchange](../../tutorials/how-tos/use-tokens/trade-in-the-decentralized-exchange.md). It is also possible to exchange currencies using the [Payment transaction type](../../references/protocol/transactions/types/payment.md). You could send a [cross-currency payment](../../concepts/payment-types/cross-currency-payments.md) to another user or even send it back to yourself, using a long [path](../../concepts/tokens/fungible-tokens/paths.md) to link arbitrage opportunities together into a single operation.
|
||||
|
||||
Non-fungible tokens work differently; for the code and technical steps to trade NFTs, see [Transfer NFTokens Using JavaScript](../../tutorials/javascript/nfts/transfer-nfts.md).
|
||||
|
||||
|
||||
@@ -614,7 +614,7 @@ Off-Ledger Balances</td>
|
||||
- [Source and Destination Tags](../../concepts/transactions/source-and-destination-tags.md)
|
||||
- **Tutorials:**
|
||||
- [Install `rippled`](../../infrastructure/installation/index.md)
|
||||
- [Send XRP](../../tutorials/tasks/send-xrp.md)
|
||||
- [Send XRP](../../tutorials/how-tos/send-xrp.md)
|
||||
- [Set Up Secure Signing](../../concepts/transactions/secure-signing.md)
|
||||
- [Monitor Incoming Payments with WebSocket](../../tutorials/http-websocket-apis/build-apps/monitor-incoming-payments-with-websocket.md)
|
||||
- **References:**
|
||||
|
||||
@@ -42,14 +42,14 @@ Checks are a straightforward, familiar, and flexible way to transfer funds when
|
||||
|
||||
While this method is the simplest, it doesn't guarantee the funds. Checks are deferred payments, meaning funds aren't moved until the moment you try to cash the check. It's possible for the sending account to not have the necessary funds at the time the check is cashed, which can cause delays or other headaches, depending on your business.
|
||||
|
||||
See: [Use Checks](../../tutorials/tasks/use-specialized-payment-types/use-checks/use-checks.md).
|
||||
See: [Use Checks](../../tutorials/how-tos/use-specialized-payment-types/use-checks/use-checks.md).
|
||||
|
||||
|
||||
### Escrow
|
||||
|
||||
If you require a guarantee of funds at the time of deposit, another option is to have deposits made with an escrow. Like regular escrows, a sender sets aside funds on the ledger, effectively locking them up until certain conditions are met. This guarantees the funds will be available when you close the escrow to release the funds.
|
||||
|
||||
See: [Use Escrows](../../tutorials/tasks/use-specialized-payment-types/use-escrows/index.md).
|
||||
See: [Use Escrows](../../tutorials/how-tos/use-specialized-payment-types/use-escrows/index.md).
|
||||
|
||||
|
||||
<!-- Need a better understanding of Payment Channels use cases.
|
||||
|
||||
@@ -37,7 +37,7 @@ The oracle gives the condition hex value to the escrow creator, enabling them to
|
||||
|
||||
After the oracle's programming detects the conditions are met, it gives the fulfillment hex value to the escrow recipient. It does nothing else after this point, such as finishing the escrow. The recipient of the escrow would most likely finish the escrow.
|
||||
|
||||
See: [Generate a condition and fulfillment](../../tutorials/tasks/use-specialized-payment-types/use-escrows/send-a-conditionally-held-escrow.md#1-generate-condition-and-fulfillment).
|
||||
See: [Generate a condition and fulfillment](../../tutorials/how-tos/use-specialized-payment-types/use-escrows/send-a-conditionally-held-escrow.md#1-generate-condition-and-fulfillment).
|
||||
|
||||
## Examples
|
||||
|
||||
|
||||
@@ -75,7 +75,7 @@ The most straightforward payment for XRPL NFTs is XRP. For examples of selling a
|
||||
|
||||

|
||||
|
||||
For trade in other currencies, you can leverage the DEX to accept and convert issued currencies of all kinds. See [Trade in the Decentralized Exchange](../../tutorials/tasks/use-tokens/trade-in-the-decentralized-exchange.md#trade-in-the-decentralized-exchange).
|
||||
For trade in other currencies, you can leverage the DEX to accept and convert issued currencies of all kinds. See [Trade in the Decentralized Exchange](../../tutorials/how-tos/use-tokens/trade-in-the-decentralized-exchange.md#trade-in-the-decentralized-exchange).
|
||||
|
||||
## Indexing NFTs
|
||||
|
||||
|
||||
@@ -69,7 +69,7 @@ The most straightforward payment for XRPL NFTs is XRP. For examples of selling a
|
||||
|
||||

|
||||
|
||||
For trade in other currencies, you can leverage the DEX to accept and convert issued currencies of all kinds. See [Trade in the Decentralized Exchange](../../tutorials/tasks/use-tokens/trade-in-the-decentralized-exchange.md#trade-in-the-decentralized-exchange).
|
||||
For trade in other currencies, you can leverage the DEX to accept and convert issued currencies of all kinds. See [Trade in the Decentralized Exchange](../../tutorials/how-tos/use-tokens/trade-in-the-decentralized-exchange.md#trade-in-the-decentralized-exchange).
|
||||
|
||||
|
||||
## Indexing NFTs
|
||||
|
||||
@@ -113,7 +113,7 @@ The most straightforward payment for XRPL NFTs is XRP. For examples of selling a
|
||||
|
||||

|
||||
|
||||
For trade in other currencies, you can leverage the DEX to accept and convert issued currencies of all kinds. See [Trade in the Decentralized Exchange](../../tutorials/tasks/use-tokens/trade-in-the-decentralized-exchange.md#trade-in-the-decentralized-exchange).
|
||||
For trade in other currencies, you can leverage the DEX to accept and convert issued currencies of all kinds. See [Trade in the Decentralized Exchange](../../tutorials/how-tos/use-tokens/trade-in-the-decentralized-exchange.md#trade-in-the-decentralized-exchange).
|
||||
|
||||
<!--
|
||||
|
||||
|
||||
@@ -69,7 +69,7 @@ The most straightforward payment for XRPL NFTs is XRP. For examples of selling a
|
||||
|
||||

|
||||
|
||||
For trade in other currencies, you can leverage the DEX to accept and convert issued currencies of all kinds. See [Trade in the Decentralized Exchange](../../tutorials/tasks/use-tokens/trade-in-the-decentralized-exchange.md#trade-in-the-decentralized-exchange).
|
||||
For trade in other currencies, you can leverage the DEX to accept and convert issued currencies of all kinds. See [Trade in the Decentralized Exchange](../../tutorials/how-tos/use-tokens/trade-in-the-decentralized-exchange.md#trade-in-the-decentralized-exchange).
|
||||
|
||||
## Indexing NFTs
|
||||
|
||||
|
||||
@@ -114,7 +114,7 @@ For additional considerations, see:
|
||||
|
||||
- [Stablecoin Issuer - Precautions](../../concepts/tokens/fungible-tokens/stablecoins/precautions.md)
|
||||
- [Stablecoin Issuer - Compliance Guidelines](../../concepts/tokens/fungible-tokens/stablecoins/compliance-guidelines.md)
|
||||
- [Issue a Fungible Token](../../tutorials/tasks/use-tokens/issue-a-fungible-token.md)
|
||||
- [Issue a Fungible Token](../../tutorials/how-tos/use-tokens/issue-a-fungible-token.md)
|
||||
|
||||
### Create a Trust Line
|
||||
|
||||
@@ -154,7 +154,7 @@ If you see signs of suspicious activity, you can enact a global freeze on your a
|
||||
|
||||

|
||||
|
||||
See [Enact Global Freeze](../../tutorials/tasks/use-tokens/enact-global-freeze.md).
|
||||
See [Enact Global Freeze](../../tutorials/how-tos/use-tokens/enact-global-freeze.md).
|
||||
|
||||
|
||||
### Clawback
|
||||
@@ -183,7 +183,7 @@ To ensure a limited supply, you can "black hole" the issuer after issuing tokens
|
||||
|
||||
**Warning:** A black hole account has no way to send transactions of any kind, so you cannot update any settings or do any maintenance on the account afterwards!
|
||||
|
||||
See [Disable Master Key Pair](../../tutorials/tasks/manage-account-settings/disable-master-key-pair.md).
|
||||
See [Disable Master Key Pair](../../tutorials/how-tos/manage-account-settings/disable-master-key-pair.md).
|
||||
|
||||
### Reliable Transaction Submission
|
||||
|
||||
|
||||
Reference in New Issue
Block a user