Re-levelization: move non-docs content, rename content→docs

For better URLs, the content folder has been renamed 'docs' and all
other files have been moved up a level. Also, non-docs images have been
moved to the static folder at the top level where they belong.

Many relative paths had to be fixed to make this work.
This commit is contained in:
mDuo13
2024-01-31 17:53:52 -08:00
parent 971053ebcc
commit 7645140477
844 changed files with 3136 additions and 3458 deletions

View File

@@ -36,7 +36,7 @@ There are 4 essential areas of preparation for starting your NFT business.
3. Indexing required NFT information
4. Determining your permanent storage strategy to cache your NFTs
[![NFT Marketplace Flow](/img/nft-mkt-overview.png "NFT Marketplace Flow")](/img/nft-mkt-overview.png)
[![NFT Marketplace Flow](/docs/img/nft-mkt-overview.png "NFT Marketplace Flow")](/docs/img/nft-mkt-overview.png)
## Connect to XRPL
@@ -58,7 +58,7 @@ The NFToken URL is a link to the location where the content of the NFT is stored
If you, as the issuer, want to be able to burn the token in the future, set the `Flags` field to _1._ To make the NFT transferable, set the `Flags` field to _8_. Set the `Flags` field to _9_ to make the NFT both burnable and transferable. See [Burnable flag](../../references/protocol/data-types/nftoken.md) and [Transferable flag](../../references/protocol/data-types/nftoken.md).
![Burning a token](/img/uc-nft-burn.png)
![Burning a token](/docs/img/uc-nft-burn.png)
You can collect royalties from future sales by setting a <code>transfer fee<em>. </em></code>This is a value from 0-50000 representing 0-50% of the sale price. See [Transfer Fee](../../references/protocol/data-types/nftoken.md#transferfee).
@@ -85,7 +85,7 @@ When you set up your account, keep in mind that there is a base reserve requirem
You transfer NFTs by creating a sell offer or accepting a buy offer. See [Transfer NFTokens](../../tutorials/quickstart/transfer-nfts-using-javascript.md).
![Transferring NFTs](/img/uc-nft-transferring-nfts.png)
![Transferring NFTs](/docs/img/uc-nft-transferring-nfts.png)
You can sell your NFTs in an auction format. See [Running an NFT Auction](../../concepts/tokens/nfts/running-an-nft-auction.md).
@@ -97,7 +97,7 @@ There are several XRP reserve requirements when you mint NFTs for sale. Each NFT
Each `NFTokenOffer` object requires a reserve of 2 XRP.
![Reserves](/img/uc-nft-reserves.png)
![Reserves](/docs/img/uc-nft-reserves.png)
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.
@@ -111,7 +111,7 @@ See:
The most straightforward payment for XRPL NFTs is XRP. For examples of selling and buying NFTs using XRP, see [Transfer NFTokens](../../tutorials/quickstart/transfer-nfts-using-javascript.md).
![Checkout](/img/uc-nft-checkout.png)
![Checkout](/docs/img/uc-nft-checkout.png)
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/use-tokens/trade-in-the-decentralized-exchange.md#trade-in-the-decentralized-exchange).
@@ -125,7 +125,7 @@ For trade in other currencies, you can leverage the DEX to accept and convert is
When listing NFTs for sale, it can be useful to use object metadata to organize them.
![Indexing NFTs](/img/uc-nft-indexing.png)
![Indexing NFTs](/docs/img/uc-nft-indexing.png)
You can use queries in the XRPL libraries, the Clio server, and extensions in the XRPL API and Bithomp libraries to sort and filter NFTs by creator, price, collection, rarity, and more.