-
Notifications
You must be signed in to change notification settings - Fork 3
/
package.json
72 lines (72 loc) · 3.46 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
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "w3hc-hardhat-template",
"version": "0.1.0",
"main": "index.js",
"type": "commonjs",
"scripts": {
"test": "hardhat test",
"compile": "hardhat compile",
"deploy:optimism": "hardhat deploy --network optimism --reset",
"deploy:base": "hardhat deploy --network base --reset",
"deploy:arbitrum": "hardhat deploy --network arbitrum --reset",
"deploy:sepolia": "hardhat deploy --network sepolia --reset",
"deploy:op-sepolia": "hardhat deploy --network op-sepolia --reset",
"deploy:base-sepolia": "hardhat deploy --network base-sepolia --reset",
"deploy:arbitrum-sepolia": "hardhat deploy --network arbitrum-sepolia --reset",
"mint:optimism": "hardhat mint --network optimism --amount",
"mint:base": "hardhat mint --network base --amount",
"mint:arbitrum": "hardhat mint --network arbitrum --amount",
"mint:sepolia": "hardhat mint --network sepolia --amount",
"mint:op-sepolia": "hardhat mint --network op-sepolia --amount",
"mint:base-sepolia": "hardhat mint --network base-sepolia --amount",
"mint:arbitrum-sepolia": "hardhat mint --network arbitrum-sepolia --amount",
"send:optimism": "hardhat send --wallet 0xD8a394e7d7894bDF2C57139fF17e5CBAa29Dd977 --network optimism --amount",
"send:base": "hardhat send --wallet 0xD8a394e7d7894bDF2C57139fF17e5CBAa29Dd977 --network base --amount",
"send:arbitrum": "hardhat send --wallet 0xD8a394e7d7894bDF2C57139fF17e5CBAa29Dd977 --network arbitrum --amount",
"send:sepolia": "hardhat send --wallet 0xD8a394e7d7894bDF2C57139fF17e5CBAa29Dd977 --network sepolia --amount",
"send:op-sepolia": "hardhat send --wallet 0xD8a394e7d7894bDF2C57139fF17e5CBAa29Dd977 --network op-sepolia --amount",
"send:base-sepolia": "hardhat send --wallet 0xD8a394e7d7894bDF2C57139fF17e5CBAa29Dd977 --network base-sepolia --amount",
"send:arbitrum-sepolia": "hardhat send --wallet 0xD8a394e7d7894bDF2C57139fF17e5CBAa29Dd977 --network arbitrum-sepolia --amount",
"bal": "npx hardhat run scripts/check-my-balance.ts",
"prettier": "prettier --write \"**/*.ts\"",
"prettier-check": "prettier --check \"**/*.ts\""
},
"keywords": [
"template",
"hardhat",
"solidity",
"web3"
],
"author": "W3HC",
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.0.8",
"@nomicfoundation/hardhat-ethers": "^3.0.8",
"@nomicfoundation/hardhat-network-helpers": "^1.0.12",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.12",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"@types/chai": "^4.3.20",
"@types/cli-color": "^2.0.6",
"@types/mocha": "^10.0.10",
"@types/node": "^22.10.1",
"chai": "^4.5.0",
"hardhat": "^2.22.17",
"hardhat-gas-reporter": "^1.0.10",
"prettier": "^3.4.2",
"prettier-plugin-solidity": "^1.4.1",
"solidity-coverage": "^0.8.14",
"ts-node": "^10.9.2",
"typechain": "^8.3.2",
"typescript": "^5.7.2"
},
"dependencies": {
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers@^0.4.2",
"@openzeppelin/contracts": "^5.1.0",
"cli-color": "^2.0.4",
"dotenv": "^16.4.7",
"ethers": "^6.13.4",
"hardhat-deploy": "^0.12.4",
"hardhat-deploy-ethers": "0.4.2"
}
}