Skip to content

Commit 6e30280

Browse files
committed
Incorporate SEO recommendations
1 parent 375ca95 commit 6e30280

File tree

2 files changed

+46
-6
lines changed

2 files changed

+46
-6
lines changed

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

Lines changed: 29 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -10,14 +10,20 @@ markdown:
1010
editPage:
1111
hide: true
1212
---
13-
# How to Mint an NFT on the XRP Ledger: A Step-by-Step Guide
13+
# How to Mint an NFT: A Simple Step-by-Step Guide
1414

1515
The first in a broader series dedicated to making your XRP Ledger building journey an altogether smoother experience is here! In this piece we cover how you can begin to shape your very own NFT collection on the XRP Ledger today.
1616

17-
Navigating the exciting realm of [Non-fungible Tokens (NFTs)](https://xrpl.org/docs/concepts/tokens/nfts/) on the XRP Ledger can seem daunting at first. However, with the right tools and a bit of JavaScript or Python, minting, managing, and burning NFTs becomes a straightforward process. This blog demystifies the process, providing a clear guide on how to create, view, and destroy NFTs on this innovative platform.
17+
Navigating the exciting realm of [Non-fungible Tokens (NFTs)](https://xrpl.org/docs/concepts/tokens/nfts/) on the XRP Ledger can seem daunting at first. However, with the right tools and a bit of JavaScript or Python, minting, managing, and burning NFTs becomes a straightforward process. This blog demystifies the process, providing a clear step-by-step guide on how to create, view, and destroy NFTs on this innovative platform.
1818

1919
<!-- BREAK -->
2020

21+
## What is an NFT?
22+
23+
A Non-Fungible Token (NFT) is a unique digital asset that represents ownership or proof of authenticity of a specific item, such as digital art, collectibles, music, in-game assets, or even tokenized real-world assets.
24+
25+
Unlike fungible tokens such as XRP, which are interchangeable and hold the same value, NFTs are distinct and cannot be exchanged on a one-to-one basis. Each NFT carries unique metadata stored on the blockchain, ensuring verifiable provenance and scarcity. On the XRP Ledger (XRPL), NFTs benefit from low transaction costs, high-speed settlements, and built-in royalty enforcement, making them an efficient and scalable option for creators and businesses looking to tokenize assets.
26+
2127

2228
## How Much Does it Cost to Mint an NFT?
2329

@@ -40,7 +46,7 @@ The following table provides examples of how much the total owner reserve might
4046

4147
## Getting Started
4248

43-
Before diving into NFT minting, 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:
49+
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:
4450

4551
1. Open the `3.mint-nfts.html` file in a browser to initiate.
4652
2. Obtain test accounts:
@@ -49,20 +55,37 @@ Before diving into NFT minting, ensure you have access to test accounts on the X
4955

5056
![Screenshot: Token Test Harness to mint and burn NFTs](/blog/img/devblog-how-to-mint-nfts-token-test-harness.png)
5157

58+
59+
<div align="center">
60+
<iframe width="560" height="315" src="https://www.youtube.com/watch?v=oGzKbQJCTJ0&t=9s" title="YouTube video player" frameborder="0" allow="accelerometer; autoplay; clipboard-write; encrypted-media; gyroscope; picture-in-picture; web-share" allowfullscreen></iframe>
61+
</div>
62+
63+
<script type="application/ld+json">
64+
{
65+
"@context": "https://schema.org",
66+
"@type": "VideoObject",
67+
"name": "How to Mint an NFT on the XRP Ledger?",
68+
"description": "How to Mint an NFT on the XRP Ledger?",
69+
"uploadDate": "2024-02-29",
70+
"embedUrl": "https://www.youtube.com/watch?v=oGzKbQJCTJ0&t=9s"
71+
}
72+
</script>
73+
74+
5275
## What does it mean to mint an NFT?
5376

54-
Minting an NFT involves creating a new, unique digital token on the blockchain. To [mint an NFT](https://xrpl.org/docs/concepts/tokens/nfts/) on the XRP Ledger:
77+
Minting an NFT involves creating a new, unique digital token using blockchain technology. To [mint an NFT](https://xrpl.org/docs/concepts/tokens/nfts/) on the XRP Ledger:
5578

5679
1. Set the Flags: For testing, set the Flags field to 8. This makes your NFT transferable to others outside the issuing account. For a non-transferable NFT, you can omit this or set a different value.
5780
2. Input the Token URL: This URL points to your NFT's data or metadata. You can use a sample URI or provide your own.
5881
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.
5982
4. Click **Mint NFT** to create your token.
6083

61-
## Viewing Your NFTs
84+
## Viewing Your Minted NFTs
6285

6386
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.
6487

65-
## Burning Your NFT
88+
## Burning Your Minted NFT
6689

6790
[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:
6891

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

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -18,6 +18,23 @@ The XRP Ledger has possibly the world's oldest _decentralized exchange_ (sometim
1818
<!-- To Do
1919
## What is a Decentralized Exchange?
2020
21+
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.
22+
23+
<div align="center">
24+
<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>
25+
</div>
26+
27+
<script type="application/ld+json">
28+
{
29+
"@context": "https://schema.org",
30+
"@type": "VideoObject",
31+
"name": "What is a Decentralized Exchange, or DEX?",
32+
"description": "What is a Decentralized Exchange, or DEX?",
33+
"uploadDate": "2022-01-10",
34+
"embedUrl": "https://www.youtube.com/watch?v=VWNrHBDfXvA"
35+
}
36+
</script>
37+
2138
## How DEX Works?
2239
-->
2340

0 commit comments

Comments
 (0)