fix links

This commit is contained in:
ddawson
2023-09-05 15:24:36 -07:00
parent 757bfd4c07
commit 8aa25dfca4
7 changed files with 15 additions and 15 deletions

View File

@@ -1,6 +1,6 @@
--- ---
html: py-authorize-minter.html html: py-authorize-minter.html
parent: send-payments-using-python.html parent: nfts-using-python.html
blurb: Authorize another account to mint NFTs for you. blurb: Authorize another account to mint NFTs for you.
labels: labels:
- Accounts - Accounts

View File

@@ -1,6 +1,6 @@
--- ---
html: py-broker-sale.html html: py-broker-sale.html
parent: quickstart-python.html parent: nfts-using-python.html
blurb: Broker a sale between a sell offer and a buy offer. blurb: Broker a sale between a sell offer and a buy offer.
labels: labels:
- Accounts - Accounts
@@ -9,7 +9,7 @@ labels:
- XRP - XRP
--- ---
# Broker an NFT Sale (Python) # Broker an NFT Sale Using Python
Earlier examples showed how to make buy and sell offers directly between two accounts. Another option is to use a third account as a broker for the sale. The broker acts on behalf of the NFT owner. The seller creates an offer with the broker account as its destination. The broker gathers and evaluates buy offers and chooses which one to accept, adding an agreed-upon fee for arranging the sale. When the broker account accepts a sell offer with a buy offer, the funds and ownership of the NFT are transferred simultaneously, completing the deal. This allows an account to act as a marketplace or personal agent for NFT creators and traders. Earlier examples showed how to make buy and sell offers directly between two accounts. Another option is to use a third account as a broker for the sale. The broker acts on behalf of the NFT owner. The seller creates an offer with the broker account as its destination. The broker gathers and evaluates buy offers and chooses which one to accept, adding an agreed-upon fee for arranging the sale. When the broker account accepts a sell offer with a buy offer, the funds and ownership of the NFT are transferred simultaneously, completing the deal. This allows an account to act as a marketplace or personal agent for NFT creators and traders.

View File

@@ -1,14 +1,14 @@
--- ---
html: py-create-accounts-send-xrp.html html: py-create-accounts-send-xrp.html
parent: quickstart-python.html parent: send-payments-using-python.html
blurb: Quickstart 1, create two accounts and transfer XRP between them. blurb: Create two accounts and transfer XRP between them using Python.
labels: labels:
- Accounts - Accounts
- Quickstart - Quickstart
- Transaction Sending - Transaction Sending
- XRP - XRP
--- ---
# 1. Create Accounts and Send XRP (Python) # Create Accounts and Send XRP Using Python
This example shows how to: This example shows how to:

View File

@@ -1,14 +1,14 @@
--- ---
html: py-create-trustline-send-currency.html html: py-create-trustline-send-currency.html
parent: quickstart-python.html parent: send-payments-using-python.html
blurb: Quickstart step 2, create trust lines and send currency. blurb: Create trust lines and send currency.
labels: labels:
- Cross-Currency - Cross-Currency
- Payments - Payments
- Quickstart - Quickstart
- Tokens - Tokens
--- ---
# 2. Create Trust Line and Send Currency (Python) # Create Trust Line and Send Currency Using Python
This example shows how to: This example shows how to:

View File

@@ -1,14 +1,14 @@
--- ---
html: py-mint-and-burn-nfts.html html: py-mint-and-burn-nfts.html
parent: quickstart-python.html parent: nfts-using-python.html
blurb: Quickstart step 3, mint and burn NFTs. blurb: Mint and burn NFTs.
labels: labels:
- Quickstart - Quickstart
- Tokens - Tokens
- Non-fungible tokens, NFTs - Non-fungible tokens, NFTs
--- ---
# 3. Mint and Burn NFTs (Python) # Mint and Burn NFTs Using Python
This example shows how to: This example shows how to:

View File

@@ -1,6 +1,6 @@
--- ---
html: py-transfer-nfts.html html: py-transfer-nfts.html
parent: quickstart-python.html parent: nfts-using-python.html
blurb: Use a Python test harness to create and accept NFT buy and sell offers. blurb: Use a Python test harness to create and accept NFT buy and sell offers.
labels: labels:
- Quickstart - Quickstart
@@ -8,7 +8,7 @@ labels:
- Non-fungible Tokens, NFTs - Non-fungible Tokens, NFTs
--- ---
# 4. Transfer NFTs (Python) # Transfer NFTs Using Python
This example shows how to: This example shows how to:

View File

@@ -55,7 +55,7 @@ To create your first NFTs, follow the instructions in the tutorial _Mint and Bur
The NFToken URL is a link to the location where the content of the NFT is stored. One option is create an IPFS account and store the NFToken content at a persistent URL. See [Best Practices for Storing NFT Data](https://docs.ipfs.io/how-to/best-practices-for-nft-data). The NFToken URL is a link to the location where the content of the NFT is stored. One option is create an IPFS account and store the NFToken content at a persistent URL. See [Best Practices for Storing NFT Data](https://docs.ipfs.io/how-to/best-practices-for-nft-data).
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](nftoken.html#nftoken-flags) and [Transferable flag](nftoken.html#nftoken-flags). 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](nftoken.html) and [Transferable flag](nftoken.html).
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](nftoken.html#transferfee). 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](nftoken.html#transferfee).