-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
21 lines (21 loc) · 808 Bytes
/
package.json
File metadata and controls
21 lines (21 loc) · 808 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
{
"name": "helios-contracts",
"version": "1.0.0",
"description": "Helios Protocol — ERC-20 smart contracts",
"scripts": {
"compile": "npx hardhat compile",
"test": "npx hardhat test",
"deploy:local": "npx hardhat run scripts/deploy.js --network hardhat",
"deploy:sepolia": "npx hardhat run scripts/deploy.js --network sepolia",
"deploy:amoy": "npx hardhat run scripts/deploy.js --network amoy",
"deploy:base-sepolia": "npx hardhat run scripts/deploy.js --network baseSepolia",
"deploy:mainnet": "npx hardhat run scripts/deploy.js --network mainnet",
"verify": "npx hardhat verify --network"
},
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"@openzeppelin/contracts": "^5.0.0",
"dotenv": "^16.4.0",
"hardhat": "^2.22.0"
}
}