Prerequisite You should have installed Solidity Compiler (version 0.8.2 or
higher).
ERC721N
Quickstart
Start receiving payments in less than 5 minutes.
Step 1. Install NoRamp’s ERC721N SDK to use the contract easily in your project:
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
Start receiving payments in less than 5 minutes.
yarn add -D erc721n
npm i --save-dev erc721n
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);
}
}
