-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
executable file
·48 lines (48 loc) · 1.85 KB
/
package.json
File metadata and controls
executable file
·48 lines (48 loc) · 1.85 KB
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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
{
"scripts": {
"clean": "hardhat clean",
"compile": "hardhat compile",
"build": "npm run clean && npm run compile",
"deploy:goerli": "hardhat run scripts/deploy.js --network goerli",
"deploy:ganache": "hardhat run scripts/deploy.js --network ganache",
"deploy:local": "hardhat run scripts/deploy.js --network localhost",
"deploy:erc20:goerli": "hardhat run scripts/deploy2.js --network goerli",
"deploy3": "hardhat run scripts/deploy3.js --network goerli",
"deploy_lvt": "hardhat run scripts/deploy_lvt.js --network sepolia",
"deploy:all": "yarn deploy:goerli && yarn deploy:erc20:goerli",
"verify": "hardhat verify --network goerli ",
"verify_lvt": "hardhat verify --network sepolia 0xb9314c2eacb4c956d429d548f98796a0f72a70fa ",
"verify_in_arbitrumSepolia": "npx hardhat verify --network arbitrumSepolia 0x1b2ea0d361b75e20a36890492AfeF6Ac7c13E581",
"test_lvt": "hardhat test ./test/LVToken.js",
"test:trace": "hardhat test --trace"
},
"dependencies": {
"-": "^0.0.1",
"@openzeppelin/contracts": "^4.8.0",
"yarn": "^1.22.19"
},
"name": "hardhat-tutorial",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"devDependencies": {
"@ethersproject/abi": "^5.4.7",
"@ethersproject/providers": "^5.4.7",
"@nomicfoundation/hardhat-chai-matchers": "^1.0.0",
"@nomicfoundation/hardhat-network-helpers": "^1.0.0",
"@nomicfoundation/hardhat-toolbox": "^2.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.3",
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@typechain/ethers-v5": "^10.1.0",
"@typechain/hardhat": "^6.1.2",
"bignumber.js": "^9.1.0",
"chai": "^4.2.0",
"dotenv": "^16.0.3",
"ethers": "^5.4.7",
"hardhat": "^2.12.2",
"hardhat-gas-reporter": "^1.0.8",
"hardhat-tracer": "^1.1.1",
"solidity-coverage": "^0.8.0",
"typechain": "^8.1.0"
}
}