Create NFTs
There are two ways to create new NFTs with Koii-X:
Programmatically using our JavaScript Libraries
Using the Drag and Drop Widget
The Finnie Wallet employs Drag and Drop and users can create NFTs directly from Finnie
Programmatically
To create an Atomic NFT yourself, write your content in JavaScript and head on over to atomicnft.com for help with deploying it.
The Drag and Drop Widget
The leaderboard template contains a drag-and-drop NFT minting widget. This widget makes it very easy for users to create NFTs from within your dApp.
// Drag and drop widget: src/compoents/widgets/DragAndDropUploader.tsx
export function DragAndDropUploader() {
// Use Finnie
// Dropzone
// Add NFT details
// helper tools
}
// Used in src/pages/home/index/tsx
<Box
/* Drag and drop uploader to Koi.rocks */
<DragAndDropUploader />
</Box>
Last updated