-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
32 lines (32 loc) · 824 Bytes
/
package.json
File metadata and controls
32 lines (32 loc) · 824 Bytes
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": "diamond-contract",
"version": "1.0.0",
"description": "ERC20 Upgradeable Diamond Contract (EIP-2535)",
"main": "index.js",
"scripts": {
"test": "hardhat test",
"compile": "hardhat compile",
"deploy": "hardhat run scripts/deploy.js",
"deploy:sepolia": "hardhat run scripts/deploy.js --network sepolia",
"deploy:mainnet": "hardhat run scripts/deploy.js --network mainnet",
"upgrade": "hardhat run scripts/upgrade.js",
"node": "hardhat node",
"clean": "hardhat clean"
},
"keywords": [
"ethereum",
"solidity",
"diamond",
"eip-2535",
"upgradeable",
"erc20"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^3.0.0",
"hardhat": "^2.17.0",
"dotenv": "^16.3.1"
},
"dependencies": {}
}