mirror of
https://github.com/XRPLF/xrpl-dev-portal.git
synced 2025-12-06 17:27:57 +00:00
Reorg tokens & stablecoin use case
wip fix links fix 2 links trim and add topics Add checklist, rename sc subtopics Fix internal links Add DEX/AMM Add graphics reorg files reorg/rename Fix blurb Remove old JA files edits per review review changes rename output file name of index files to match the folder name Update output file and parent filenames add reusable links snippet fix broken links Update Ja file Move path.md to same location in i18n folder Revert naming for nft-collections page Rename to match files in En and Ja update links to reflect updated file name Rename nft-auctions under Ja folder and update links throughout Rename nftoken-authorized-minting and update links throughout Fix links Rename the nft-fixed-supply Ja file to match the reorg in English and update links Move nft-reserve-requirements file in Ja and update links Fix some more broken links Fix more broken links by renaming html files back Stablecoin reorg: fix various issues Remove nfts_by_issuer method (unreleased) page Remove redundant parent: attrs from config file Fix syntax highlighting of Authorizing Another Minter js Fix config/frontmatter errors
This commit is contained in:
51
content/concepts/tokens/nfts/nft-apis.md
Normal file
51
content/concepts/tokens/nfts/nft-apis.md
Normal file
@@ -0,0 +1,51 @@
|
||||
---
|
||||
html: nft-apis.html
|
||||
parent: non-fungible-tokens.html
|
||||
blurb: Specialized APIs let you access useful NFT metadata.
|
||||
labels:
|
||||
- Non-fungible Tokens, NFTs
|
||||
---
|
||||
# NFT APIs
|
||||
|
||||
This page lists the transactions and requests associated with NFTs as a handy reference.
|
||||
|
||||
## NFT Ledger Entries
|
||||
|
||||
- [NFToken][] data type - The NFT object stored on the ledger.
|
||||
- Ledger Entries
|
||||
- [NFTokenOffer entry][] - An offer to buy or sell an NFT.
|
||||
- [NFTokenPage entry][] - An NFT page holds a maximum of 32 NFTs. In practice, each NFT page typically holds 16-24 NFTs.
|
||||
|
||||
## NFT Transactions
|
||||
|
||||
- [NFTokenMint][] - Create an NFT.
|
||||
|
||||
- [NFTokenCreateOffer][] - Create an offer to buy or sell an NFT.
|
||||
|
||||
- [NFTokenCancelOffer][] - Cancel an offer to buy or sell an NFT.
|
||||
|
||||
- [NFTokenAcceptOffer][] - Accept an offer to buy or sell an NFT.
|
||||
|
||||
- [NFTokenBurn][] - Permanently destroy an NFT.
|
||||
|
||||
## NFT requests
|
||||
|
||||
- [account_nfts method][] - Get a list of non-fungible tokens owned by an account.
|
||||
- [nft_buy_offers method][] - Get a list of buy offers for a specified NFToken object.
|
||||
- [nft_sell_offers method][] - Get a list of sell offers for a specified NFToken object.
|
||||
- [subscribe method][] - Listen for updates about a particular subject. For example, a marketplace can publish real-time updates on the status of NFTs listed on their platform.
|
||||
- [unsubscribe method][] - Stop listening for updates about an NFT.
|
||||
|
||||
## Clio
|
||||
|
||||
[Clio servers](the-clio-server.html) also provide the following APIs related to NFTs:
|
||||
|
||||
- [nft_info](nft_info.html) - Get current status information about the specified NFT.
|
||||
- [nft_history](nft_history.html) - Get past transaction metadata for the specified NFT.
|
||||
|
||||
You can access a public Clio server by sending a request to its URL and Clio port (typically 51233). Public Clio API servers come with no SLAs nor any responsibility to be fixed on priority. If your business use case requires continual monitoring and information requests, consider setting up your own Clio server instance. See [install-clio-on-ubuntu](install-clio-on-ubuntu.html).
|
||||
|
||||
<!--{# common link defs #}-->
|
||||
{% include '_snippets/rippled-api-links.md' %}
|
||||
{% include '_snippets/tx-type-links.md' %}
|
||||
{% include '_snippets/rippled_versions.md' %}
|
||||
Reference in New Issue
Block a user