-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
32 lines (32 loc) · 1.08 KB
/
package.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
{
"name": "galaxyz-a-contract",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"deploy:localhost": "npx hardhat run scripts/deploy.js --network localhost",
"deploy:rinkeby": "npx hardhat run scripts/deploy.js --network rinkeby",
"deploy:mainnet": "npx hardhat run scripts/deploy.js --network mainnet",
"verify:rinkeby": "npx hardhat verify 0x676676Cdd8BB03648Bb15D5E801C1F28B9E5a19f 'ipfs://QmNUmeLsifk2HB7iHc45tZ1vXrVa7tAt8NTVKUarLX225a/' --network rinkeby",
"verify:mainnet": "npx hardhat verify YOUR_CONTRACT 'YOUR_IPFS_URL' --network mainnet"
},
"keywords": [],
"author": "",
"license": "ISC",
"devDependencies": {
"@nomiclabs/hardhat-ethers": "^2.0.5",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"chai": "^4.3.6",
"dotenv": "^16.0.0",
"ethereum-waffle": "^3.4.0",
"ethers": "^5.5.4",
"hardhat": "^2.9.0",
"hardhat-deploy": "^0.10.5"
},
"dependencies": {
"@nomiclabs/hardhat-etherscan": "^3.0.3",
"@openzeppelin/contracts": "^4.5.0",
"erc721a": "^3.0.0",
"hardhat-gas-reporter": "^1.0.8"
}
}