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;
66import "@openzeppelin/contracts/token/ERC721/ERC721.sol " ;
77import "@openzeppelin/contracts/utils/Counters.sol " ;
88
9- contract GameItem is ERC721 {
9+ contract NFT is ERC721 {
1010 using Counters for Counters.Counter;
1111 Counters.Counter private _tokenIds;
1212
Original file line number Diff line number Diff line change 3333 "test" : " npx hardhat test" ,
3434 "deploy" : " npx hardhat run scripts/deploy.ts" ,
3535 "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" ,
3737 "storage" : " npx hardhat run scripts/storage.ts" ,
3838 "send-avax-wallet-signer" : " npx hardhat run scripts/sendAvaxWalletSigner.ts" ,
3939 "send-avax-json-provider" : " npx hardhat run scripts/sendAvaxJSONProvider.ts" ,
Original file line number Diff line number Diff line change 11import { Contract } from "ethers"
22import { ethers } from "hardhat"
3- import { abi } from "../artifacts/contracts/ERC721 .sol/NFT.json"
3+ import { abi } from "../artifacts/contracts/NFT .sol/NFT.json"
44
55const coinAddr : string = "0xe304EDd5C4e590e2b8ce08b9625597FF38192D71"
66const main = async ( ) : Promise < any > => {
You can’t perform that action at this time.
0 commit comments