Skip to content

Commit 91b7bad

Browse files
committed
Incorporate PR feedback
1 parent 6147893 commit 91b7bad

File tree

2 files changed

+6
-4
lines changed

2 files changed

+6
-4
lines changed

blog/2024/how-to-mint-nfts.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@ The following table provides examples of how much the total owner reserve might
4444
| 200 | 14 XRP | 18 XRP | 26 XRP |
4545
| 1000 | 64 XRP | 84 XRP | 126 XRP |
4646

47-
## Getting Started
47+
## NFT Minting: Getting Started
4848

4949
Before diving into how to mint an NFT, ensure you have access to test accounts on the XRP Ledger's Testnet or Devnet. This is crucial for experimenting without risking real assets. You can easily acquire test accounts by downloading the Quickstart Samples archive, available in [JavaScript] (https://github.com/XRPLF/xrpl-dev-portal/tree/master/_code-samples/quickstart/js/) and [Python](https://github.com/XRPLF/xrpl-dev-portal/tree/master/_code-samples/quickstart/py), and following these steps:
5050

@@ -81,11 +81,11 @@ Minting an NFT involves creating a new, unique digital token using blockchain te
8181
3. Specify the Transfer Fee: Define a fee between 0-50000, allowing for a royalty of 0.000% to 50.000% on future sales. If the NFT is non-transferable, set this to 0.
8282
4. Click **Mint NFT** to create your token.
8383

84-
## Viewing Your Minted NFTs
84+
## Viewing Your NFTs
8585

8686
To view a list of NFTs associated with your account, simply click **Get NFTs**. This action fetches and displays all NFTs owned by the account in use.
8787

88-
## Burning Your Minted NFT
88+
## Burning Your NFT
8989

9090
[Burning an NFT](https://xrpl.org/docs/tutorials/python/nfts/mint-and-burn-nfts) is the process of permanently destroying the token. To burn an NFT:
9191

docs/concepts/tokens/decentralized-exchange/index.md

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,14 +11,16 @@ targets:
1111
---
1212
# Decentralized Exchange (DEX)
1313

14-
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 trading [fees](../../transactions/fees.md) charged to the network itself (not paid out to any party).
14+
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).
1515

1616
{% admonition type="warning" name="Caution" %}Anyone can [issue a token](../../../tutorials/how-tos/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.{% /admonition %}
1717

1818
## What is a Decentralized Exchange?
1919

2020
A decentralized exchange, abbreviated "DEX", is a platform that enables anyone to directly buy, sell, and trade digital assets with one another, without relying on a centralized intermediary like a bank or traditional exchange. DEXes typically use smart contracts and automated market makers (AMMs) to facilitate peer-to-peer trading and liquidity provision, enabling users to retain control over their assets while interacting in a decentralized manner.
2121

22+
The XRP Ledger's CLOB DEX is unique in that it does **not require** AMMs to swap. Trades on the XRP Ledger _can_ use AMMs to swap too, but unlike other DEXes, an AMM is not required.
23+
2224
<div align="center">
2325
<iframe width="560" height="315" src="https://www.youtube.com/watch?v=VWNrHBDfXvA" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
2426
</div>

0 commit comments

Comments
 (0)