> For the complete documentation index, see [llms.txt](https://xact.gitbook.io/xact/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://xact.gitbook.io/xact/sdk/javascript/mint-nft.md).

# Create a NFT

The following sample will show you how to create a NFT on Hedera Hashgraph. We will first generate a request for the end user. Once validated, you will get notified for the NFT's creation success.‌

## Prerequisites: <a href="#pre-requisites" id="pre-requisites"></a>

{% content-ref url="/pages/-Mg56\_a4eJ5VygETYHMC" %}
[Getting started](/xact/sdk/javascript/getting-started.md)
{% endcontent-ref %}

## Step 1: Import the following modules <a href="#step-1-import-de-following-modules" id="step-1-import-de-following-modules"></a>

Let's continue building on the *index.js* from the previous example ([Environment Set-up](/xact/sdk/javascript/getting-started.md#step-1-set-up-your-node-js-environment)) and add the following modules:

```javascript
const { Client, CategoryNFT } = require("@xact-wallet-sdk/client");
require("dotenv").config();
```

## Step 2: Get Xact Fees

In order to get the fees from our service, you need to proceed as below :

```typescript
const xactFees = await client.getXactFeesCreateNFT();
```

## Step 3: Initializing Create NFT <a href="#step-2-initializing-token-transfer" id="step-2-initializing-token-transfer"></a>

When initializing a NFT's creation, a request will be sent to the end user

```javascript
/* Update the fields with your informations */
const name = 'NFT Test';
const description = 'Description of my NFT';
const category = CategoryNFT.ART;
const creator = 'Johny.B';
const cid = ''; /* cid linked to the NFT - IPFS storage */
const supply = 1; /* Nb of NFT available */
const fromAccountId= ''; /* Account ID of the user */
const customRoyaltyFee = {
        numerator: 1,
        denominator: 10,
        fallbackFee: 100, /* in Hbar */
};/* Optional*/

await client.createNFT({fromAccountId, name, description, category, creator, cid, supply, customRoyaltyFee});
```

## Step 4: Listen for the NFT's creation <a href="#step-3-listen-for-the-token-transfer" id="step-3-listen-for-the-token-transfer"></a>

Finally get notified when your NFT has been successfully created !

```javascript
/* Subscribe to new Create NFT Validation */
client.createNFTValidation().subscribe(nft => {
    console.log('NFT Created', nft);
});
```

## Code Check ✅ <a href="#code-check" id="code-check"></a>

Your *index.js* file should look like this:

```javascript
const { Client, CategoryNFT } = require("@xact-wallet-sdk/client");
require("dotenv").config();

async function createNFT() {

    //Grab your api key from your .env file
    const apiKey = process.env.API_KEY;


    // If we weren't able to grab it, we should throw a new error
    if (apiKey == null) {
        throw new Error("Environment variables API_KEY must be present");
    }
    /* Create a new instance of Client */
    const client = new Client({apiKey});
    
    /* Init the connexion */
    await client.initConnexion();
    
    /* Update the fields with your informations */
    const name = 'NFT Test';
    const description = 'Description of my NFT';
    const category = CategoryNFT.ART;
    const creator = 'Johny.B';
    const media = ''; /* base64 format */
    const supply = 1; /* Nb of NFT available */
    const fromAccountId= ''; /* Account ID of the user */
    
    /* Request for NFT's creation */
    await client.createNFT({fromAccountId, name, description, category, creator, media, supply});
    
    /* Listen for Creation's success */
    client.createNFTValidation().subscribe(nft => {
        console.log('NFT Created', nft);
    });
}

createNFT();
```
