Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/guides/nft/nft-cli.md
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ Here is a description of the options used:
| `-lh` | The hash of the NFT's license. |
| -en | The edition number. Specify if this NFT has multiple editions (multiple identical copies of an NFT). |
| -et | The edition total number. Specify if this NFT has multiple editions. |
| `-rp` | The royalty percentage expressed as tens of thousandths of a percent. |
| `-rp` | The royalty percentage expressed as hundredths of a percent. |
| `--no-did-ownership` | Disables DID ownership. |
| `-m` | The fee for this transaction in XCH. |

Expand Down
2 changes: 1 addition & 1 deletion docs/guides/nft/nft-rpc.md
Original file line number Diff line number Diff line change
Expand Up @@ -276,7 +276,7 @@ Here is a description of the parameters used in the command:
| "license_uris" | A list of URIs containing the license. |
| "license_hash" | The hash of the license. |
| "royalty_address" | The wallet or smart coin address of the creator. |
| "royalty_percentage" | The royalty percentage expressed as tens of thousandths of a percent. |
| "royalty_percentage" | The royalty percentage expressed as hundredths of a percent. |
| "target_address" | The address of the owner. |
| "edition_number" | If this NFT has multiple **editions** (multiple identical copies of an NFT), then this parameter indicates the edition number of this NFT. |
| "edition_total" | If this NFT has multiple **editions**, then this parameter indicates the total number of editions of this NFT. This parameter should be used with `edition_number`. |
Expand Down
2 changes: 1 addition & 1 deletion docs/rpc-reference/nfts.md
Original file line number Diff line number Diff line change
Expand Up @@ -167,7 +167,7 @@ Request Parameters:
| royalty_assets | Each royalty asset requires three sub-parameters, listed on the following lines | False | A list of NFTs for which to calculate royalties. If this parameter is not included, then nothing will be returned |
| | asset | True | The asset ID of the NFT to be traded. This is only used for display in the response; a bogus value may be used |
| | royalty_address | True | The address where the royalties will be sent. A bogus value may be used |
| | royalty_percentage | True | The number of basis points in the royalty, with three significant digits. For example, a value of `321` equates to a 3.21% royalty |
| | royalty_percentage | True | The number of basis points in the royalty. For example, a value of `321` equates to a 3.21% royalty |
| fungible_assets | Each fungible asset requires two sub-parameters, listed on the following lines | False | The assets against which to calculate royalties. If this parameter is not included, no royalties will be returned |
| | asset | True | The name of the asset for which to trade one or more NFTs. A bogus value may be used. Standard naming convention is `xch` for XCH or the asset ID for CATs. Note that no royalties are calculated for NFT:NFT trades, so NFT assets should not be included here |
| | amount | True | The amount (in mojos) to trade the NFT(s) for |
Expand Down
Loading