-
Notifications
You must be signed in to change notification settings - Fork 67
/
package.json
36 lines (36 loc) · 1.5 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
{
"name": "zklink-contracts",
"version": "1.0.0",
"license": "MIT",
"homepage": "https://zk.link",
"keywords": [
"zklink",
"zk-rollup",
"cross chain"
],
"devDependencies": {
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"@nomiclabs/hardhat-solpp": "^2.0.1",
"@openzeppelin/hardhat-upgrades": "^3.0.0",
"hardhat": "^2.19.3"
},
"scripts": {
"compile": "npx hardhat compile",
"compile-origin-master": "SYNC_TYPE=1 MASTER=true npx hardhat compile",
"compile-origin-slaver": "SYNC_TYPE=1 MASTER=false npx hardhat compile",
"compile-nexus-master": "SYNC_TYPE=2 MASTER=true npx hardhat compile",
"compile-nexus-slaver": "SYNC_TYPE=2 MASTER=false npx hardhat compile",
"test-origin-master": "SYNC_TYPE=1 MASTER=true npx hardhat test",
"test-origin-slaver": "SYNC_TYPE=1 MASTER=false npx hardhat test",
"test-nexus-master": "SYNC_TYPE=2 MASTER=true npx hardhat test",
"test-nexus-slaver": "SYNC_TYPE=2 MASTER=false npx hardhat test",
"flatten-origin-master": "SYNC_TYPE=1 MASTER=true npx hardhat run script/combine_zklink_abi.js",
"flatten-origin-slaver": "SYNC_TYPE=1 MASTER=false npx hardhat run script/combine_zklink_abi.js",
"flatten-nexus-master": "SYNC_TYPE=2 MASTER=true npx hardhat run script/combine_zklink_abi.js",
"flatten-nexus-slaver": "SYNC_TYPE=2 MASTER=false npx hardhat run script/combine_zklink_abi.js"
},
"dependencies": {
"@openzeppelin/contracts": "^4.9.5",
"@openzeppelin/contracts-upgradeable": "^4.9.5"
}
}