Merge commit '2a838803d7179c32d174e104421d575b82b2f5ce' into ja-usecases-rwa

This commit is contained in:
tequ
2024-12-15 17:48:02 +09:00
141 changed files with 1390 additions and 529 deletions

View File

@@ -55,11 +55,11 @@ You can act as a broker, connecting sellers with bidders, completing the transfe
### Reserve requirements
There are several XRP reserve requirements when you mint NFTs for sale. Each NFToken page requires a reserve of 2 XRP. A NFToken page can store 16-32 NFTs.
There are several XRP reserve requirements when you mint NFTs for sale. Each NFToken page requires a reserve of {% $env.PUBLIC_OWNER_RESERVE %}. A NFToken page can store 16-32 NFTs.
![Reserves](/docs/img/uc-nft-reserves.png)
Each `NFTokenOffer` object requires a reserve of 2 XRP.
Each `NFTokenOffer` object requires a reserve of {% $env.PUBLIC_OWNER_RESERVE %}.
When you post the `NFTokenOffer` or sell the NFT, there are trivial transfer fees (roughly 6000 drops, or .006 XRP). When you are selling at a high volume, the trivial amounts can add up quickly, and need to be considered as part of your cost of doing business.

View File

@@ -49,9 +49,9 @@ You can sell your NFTs in an auction format. See [Running an NFT Auction](../../
### Reserve requirements
There are several XRP reserve requirements when you mint NFTs for sale. Each NFToken page requires a reserve of 2 XRP. A NFToken page can store 16-32 NFTs.
There are several XRP reserve requirements when you mint NFTs for sale. Each NFToken page requires a reserve of {% $env.PUBLIC_OWNER_RESERVE %}. A NFToken page can store 16-32 NFTs.
Each `NFTokenOffer` object requires a reserve of 2 XRP.
Each `NFTokenOffer` object requires a reserve of {% $env.PUBLIC_OWNER_RESERVE %}.
![Reserves](/docs/img/uc-nft-reserves.png)

View File

@@ -70,7 +70,7 @@ Once the authorized minter has finished creating NFTs for you, you can revoke th
See [Authorized Minter](../../concepts/tokens/nfts/authorizing-another-minter.md).
Minted NFTs are listed on a `NFTokenPage`. There is a reserve requirement of 2 XRP for every `NFTokenPage` on your account. See [NFT Reserve Requirements](../../concepts/tokens/nfts/reserve-requirements.md).
Minted NFTs are listed on a `NFTokenPage`. There is a reserve requirement of {% $env.PUBLIC_OWNER_RESERVE %} for every `NFTokenPage` on your account. See [NFT Reserve Requirements](../../concepts/tokens/nfts/reserve-requirements.md).
Each `NFTokenPage` holds 16-32 NFTs. Minting a large number of NFTs can tie up a great deal of your XRP. You can keep your XRP liquid by minting on demand (or _lazy minting_). For details of different approaches, see [Batch minting](../../concepts/tokens/nfts/batch-minting.md).
@@ -79,7 +79,7 @@ Each `NFTokenPage` holds 16-32 NFTs. Minting a large number of NFTs can tie up a
Set up a new wallet. See [Xaman](https://xaman.app/).
When you set up your account, keep in mind that there is a base reserve requirement of 10 XRP. See [Reserves](../../concepts/accounts/reserves.md#base-reserve-and-owner-reserve).
When you set up your account, keep in mind that there is a base reserve requirement of {% $env.PUBLIC_BASE_RESERVE %}. See [Reserves](../../concepts/accounts/reserves.md#base-reserve-and-owner-reserve).
### Transferring NFTs
@@ -93,9 +93,9 @@ You can act as a broker, connecting sellers with bidders, completing the transfe
#### Reserve requirements
There are several XRP reserve requirements when you mint NFTs for sale. Each NFToken page requires a reserve of 2 XRP. A NFToken page can store 16-32 NFTs.
There are several XRP reserve requirements when you mint NFTs for sale. Each NFToken page requires a reserve of {% $env.PUBLIC_OWNER_RESERVE %}. A NFToken page can store 16-32 NFTs.
Each `NFTokenOffer` object requires a reserve of 2 XRP.
Each `NFTokenOffer` object requires a reserve of {% $env.PUBLIC_OWNER_RESERVE %}.
![Reserves](/docs/img/uc-nft-reserves.png)

View File

@@ -43,11 +43,11 @@ You can act as a broker, connecting sellers with bidders, completing the transfe
### Reserve requirements
There are several XRP reserve requirements when you mint NFTs for sale. Each NFToken page requires a reserve of 2 XRP. A NFToken page can store 16-32 NFTs.
There are several XRP reserve requirements when you mint NFTs for sale. Each NFToken page requires a reserve of {% $env.PUBLIC_OWNER_RESERVE %}. A NFToken page can store 16-32 NFTs.
![Reserves](/docs/img/uc-nft-reserves.png)
Each `NFTokenOffer` object requires a reserve of 2 XRP.
Each `NFTokenOffer` object requires a reserve of {% $env.PUBLIC_OWNER_RESERVE %}.
When you post the `NFTokenOffer` or sell the NFT, there are trivial transfer fees (roughly 6000 drops, or .006 XRP). When you are selling at a high volume, the trivial amounts can add up quickly, and need to be considered as part of your cost of doing business.

View File

@@ -1,5 +1,6 @@
import { useThemeHooks } from "@redocly/theme/core/hooks";
import { Link } from "@redocly/theme/components/Link/Link";
import { useEffect } from "react";
export const frontmatter = {
seo: {
@@ -243,7 +244,7 @@ function UpcomingEvents() {
<section className="upcoming-events">
<h2 className="upcoming-events__title">
{translate(
"Explore the companies tokenizing real-world assets on the XRP Ledger"
"Explore the companies pioneering tokenization using XRP Ledger"
)}
</h2>
<div className="upcoming-events__logo-container">
@@ -270,6 +271,25 @@ const BenefitCard = ({ iconClass, title, description }) => {
export default function RwaTokenization() {
const { useTranslate } = useThemeHooks();
const { translate } = useTranslate();
useEffect(() => {
const script = document.createElement('script');
script.id = 'video-schema'
script.type = 'application/ld+json';
script.innerHTML = JSON.stringify({
"@context": "https://schema.org",
"@type": "VideoObject",
"name": "Tokenization on XRP Ledger",
"description": "The XRP Ledger was the first blockchain to support the tokenization of a variety of assets. This includes stablecoins or other forms of value anything from US dollars, to euros, gold, stocks, and other cryptocurrencies like Bitcoin or Ethereum and even non-fungible tokens (NFTs) that might represent valuable items like pieces of art or cinema tickets. Tokens are often called issued assets, or IOUs, on the XRPL.",
"thumbnailUrl": "https://i.ytimg.com/vi/Oj4cWOiWf4A/hqdefault.jpg",
"uploadDate": "2022-01-10",
"embedUrl": "https://www.youtube.com/watch?v=Oj4cWOiWf4A"
});
document.head.appendChild(script);
// Remove the script from the head when the component unmounts
return () => {
document.head.removeChild(script);
};
}, []);
return (
<div className="page-rwa-tokenization">
<div className="position-relative d-none-sm">
@@ -324,7 +344,7 @@ export default function RwaTokenization() {
<div>
<h2 className="cards-title-token">
{translate(
"Benefits of RWA Tokenization on XRP Ledger for Developers"
"Benefits of Real-World Asset Tokenization Development on XRP Ledger"
)}
</h2>
</div>