Reorg tutorials to match nav, and update links

This commit is contained in:
mDuo13
2024-01-31 20:06:41 -08:00
parent f7bdf5af2c
commit 4911c25c9c
207 changed files with 802 additions and 6442 deletions

View File

@@ -12,7 +12,7 @@ targets:
The XRP Ledger has possibly the world's oldest _decentralized exchange_ (sometimes abbreviated "DEX"), operating continuously since the XRP Ledger's launch in 2012. The exchange allows users to buy and sell [tokens](../index.md) for XRP or other tokens, with minimal [fees](../../transactions/fees.md) charged to the network itself (not paid out to any party).
**Caution:** Anyone can [issue a token](../../../tutorials/use-tokens/issue-a-fungible-token.md) with any currency code or ticker symbol they want and sell it in the decentralized exchange. Always perform due diligence before buying a token, and pay attention to the issuer. Otherwise, you might give up something of value and receive worthless tokens in exchange.
**Caution:** Anyone can [issue a token](../../../tutorials/tasks/use-tokens/issue-a-fungible-token.md) with any currency code or ticker symbol they want and sell it in the decentralized exchange. Always perform due diligence before buying a token, and pay attention to the issuer. Otherwise, you might give up something of value and receive worthless tokens in exchange.
## Structure

View File

@@ -87,9 +87,9 @@ You can only enable the No Freeze setting with a transaction signed by your addr
- **Concepts:**
- [Trust Lines and Issuing](index.md)
- **Tutorials:**
- [Enable No Freeze](../../../tutorials/use-tokens/enable-no-freeze.md)
- [Enact Global Freeze](../../../tutorials/use-tokens/enact-global-freeze.md)
- [Freeze a Trust Line](../../../tutorials/use-tokens/freeze-a-trust-line.md)
- [Enable No Freeze](../../../tutorials/tasks/use-tokens/enable-no-freeze.md)
- [Enact Global Freeze](../../../tutorials/tasks/use-tokens/enact-global-freeze.md)
- [Freeze a Trust Line](../../../tutorials/tasks/use-tokens/freeze-a-trust-line.md)
- **References:**
- [account_lines method][]
- [account_info method][]

View File

@@ -8,7 +8,7 @@ labels:
---
# Stablecoin Configuration
There are some settings you must configure on your XRP Ledger account before you start issuing tokens. For examples of how to configure these settings, see [Issue a Fungible Token](../../../../tutorials/use-tokens/issue-a-fungible-token.md).
There are some settings you must configure on your XRP Ledger account before you start issuing tokens. For examples of how to configure these settings, see [Issue a Fungible Token](../../../../tutorials/tasks/use-tokens/issue-a-fungible-token.md).
Settings you might want to configure include:

View File

@@ -28,7 +28,7 @@ Any market activity before the initial sale of the NFT is not recorded on the XR
Use a program or script to mint many tokens at once. You might find that [Tickets](../../accounts/tickets.md) help you submit transactions in parallel, up to a current limit of 200 transactions in one group.
For a practical example, see the [Batch Mint NFTs Using JavaScript](../../../tutorials/quickstart/batch-mint-nfts-using-javascript.md) tutorial.
For a practical example, see the [Batch Mint NFTs Using JavaScript](../../../tutorials/javascript/modular-tutorials/nfts/batch-mint-nfts.md) tutorial.
### Benefits

View File

@@ -16,7 +16,7 @@ To guarantee a fixed number of NFTs:
1. Use `AccountSet` to assign your operational wallet as an authorized minter for the issuer. See [Authorizing Another Account to Mint Your NFTs](authorizing-another-minter.md).
1. Use your operational account to mint the tokens using `NFTokenMint`. The operational wallet holds all of the tokens minted for the Issuer. See [Batch Minting](batch-minting.md).
1. Use `AccountSet` to remove your operational wallet as an authorized minter for the Issuer.
1. “Blackhole” the Issuer account. See [Disable Master Key Pair](../../../tutorials/manage-account-settings/disable-master-key-pair.md).
1. “Blackhole” the Issuer account. See [Disable Master Key Pair](../../../tutorials/tasks/manage-account-settings/disable-master-key-pair.md).
At this point, it is impossible for any new tokens to be minted with the issuers address as the issuing account.