> ## Documentation Index
> Fetch the complete documentation index at: https://docs.noramp.io/llms.txt
> Use this file to discover all available pages before exploring further.

# Quickstart

> Start receiving payments in less than 5 minutes.

<Info>
  **Prerequisite** You should have installed Solidity Compiler (version 0.8.2 or
  higher).
</Info>

Step 1. Install NoRamp's ERC721N SDK to use the contract easily in your project:

<CodeGroup>
  ```bash yarn theme={null}
  yarn add -D erc721n
  ```

  ```bash npm theme={null}
  npm i --save-dev erc721n
  ```
</CodeGroup>

Step 2. Add the following code to your frontend:

```solidity theme={null}
pragma solidity ^0.8.2;

import "erc721n/contracts/ERC721N.sol";

contract ERC721NTest is ERC721N {
    constructor(IERC20 _erc20Token) ERC721N(_erc20Token) {
        reserveTokenAddress = _erc20Token;
    }

    function mint(address to, uint256 amount) external {
        safeMint(to, amount);
    }
}
```
