> For the complete documentation index, see [llms.txt](https://koii-network.gitbook.io/getting-started/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://koii-network.gitbook.io/getting-started/finnie-for-devs/ethereum-network/mint-nft.md).

# Mint NFT

Let's take our final step - mint our own NFT! We can do that by using the method `mintCollectibles` which is available on our brand new `collectiblesContract`.

```javascript
const mintCollectibles = async () => {
  try {
    const mint = await collectiblesContract.mintCollectibles(1, {from: accounts[0]})
    const result = await mint.wait()
    console.log('Transaction hash: ' + result.transactionHash)
  } catch (err) {
    console.error(err.data)
  }
}
```
