Transfer an NFT
Last updated
Was this helpful?
Last updated
Was this helpful?
The final core capability of the sample app is the ability to transfer NFTs to users. This is accomplished via the mutation, which:
Takes in the ID of the NFT or NFTModel to transfer
Mints the NFT if it hasn't already been minted, and
Transfers the minted NFT to the user's wallet
Since these can be time-consuming operations, the transfer
API schedules the work to happen asynchronously, and returns back the NFT
that will be transferred to the user. The NFT
's field tells you what is going on.
Follow the sample app's structure for an example on how to invoke the transfer
mutation, or read further on how to invoke.
You now have everything you need to get startedβexcept the NFTs themselves! So let's discuss the Niftory Admin Portal next, where you can set up your NFT collections and manage your app.