File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -6,7 +6,7 @@ pragma solidity >= 0.6.2;
6
6
import "@openzeppelin/contracts/token/ERC721/ERC721.sol " ;
7
7
import "@openzeppelin/contracts/utils/Counters.sol " ;
8
8
9
- contract GameItem is ERC721 {
9
+ contract NFT is ERC721 {
10
10
using Counters for Counters.Counter;
11
11
Counters.Counter private _tokenIds;
12
12
Original file line number Diff line number Diff line change 33
33
"test" : " npx hardhat test" ,
34
34
"deploy" : " npx hardhat run scripts/deploy.ts" ,
35
35
"erc20" : " npx hardhat run scripts/erc20.ts" ,
36
- "erc721 " : " npx hardhat run scripts/erc721 .ts --network mainnet" ,
36
+ "nft " : " npx hardhat run scripts/nft .ts --network mainnet" ,
37
37
"storage" : " npx hardhat run scripts/storage.ts" ,
38
38
"send-avax-wallet-signer" : " npx hardhat run scripts/sendAvaxWalletSigner.ts" ,
39
39
"send-avax-json-provider" : " npx hardhat run scripts/sendAvaxJSONProvider.ts" ,
Original file line number Diff line number Diff line change 1
1
import { Contract } from "ethers"
2
2
import { ethers } from "hardhat"
3
- import { abi } from "../artifacts/contracts/ERC721 .sol/NFT.json"
3
+ import { abi } from "../artifacts/contracts/NFT .sol/NFT.json"
4
4
5
5
const coinAddr : string = "0xe304EDd5C4e590e2b8ce08b9625597FF38192D71"
6
6
const main = async ( ) : Promise < any > => {
You can’t perform that action at this time.
0 commit comments