-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
76 lines (76 loc) · 4.1 KB
/
package.json
File metadata and controls
76 lines (76 loc) · 4.1 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
{
"name": "hardhat-project",
"scripts": {
"hh:network": "npx hardhat node",
"hh:compile": "npx hardhat compile",
"hh:test": "npx hardhat test",
"hh:size": "hardhat size-contracts",
"hh:verify": "npx hardhat verify",
"blockscout:verify": "npx hardhat blockscout-verify",
"ts:run": "npx ts-node",
"test": "echo \"Error: no test specified\" && exit 1",
"console:localhost": "npx hardhat console --network localhost",
"deployModelCollection:localhost": "npx hardhat run scripts/deploy/deployModelCollection.ts --network localhost",
"deployWorkerHub:localhost": "npx hardhat run scripts/deploy/deployWorkerHub.ts --network localhost",
"deployHybridModel:localhost": "npx hardhat run scripts/deploy/deployHybridModel.ts --network localhost",
"console:regtest3": "npx hardhat console --network regtest3",
"deployModelCollection:regtest3": "npx hardhat run scripts/deploy/deployModelCollection.ts --network regtest3",
"deployWorkerHub:regtest3": "npx hardhat run scripts/deploy/deployWorkerHub.ts --network regtest3",
"deployHybridModel:regtest3": "npx hardhat run scripts/deploy/deployHybridModel.ts --network regtest3",
"console:cudatest": "npx hardhat console --network cudatest",
"deployModelCollection:cudatest": "npx hardhat run scripts/deploy/deployModelCollection.ts --network cudatest",
"deployWorkerHub:cudatest": "npx hardhat run scripts/deploy/deployWorkerHub.ts --network cudatest",
"deployHybridModel:cudatest": "npx hardhat run scripts/deploy/deployHybridModel.ts --network cudatest",
"console:mainnet": "npx hardhat console --network mainnet",
"deployModelCollection:mainnet": "npx hardhat run scripts/deploy/deployModelCollection.ts --network mainnet",
"deployWorkerHub:mainnet": "npx hardhat run scripts/deploy/deployWorkerHub.ts --network mainnet",
"deployHybridModel:mainnet": "npx hardhat run scripts/deploy/deployHybridModel.ts --network mainnet",
"console:zk_testnet": "npx hardhat console --network zk_testnet",
"deployModelCollection:zk_testnet": "npx hardhat run scripts/deploy/deployModelCollection.ts --network zk_testnet",
"deployWorkerHub:zk_testnet": "npx hardhat run scripts/deploy/deployWorkerHub.ts --network zk_testnet",
"deployHybridModel:zk_testnet": "npx hardhat run scripts/deploy/deployHybridModel.ts --network zk_testnet",
"console:zk_mainnet": "npx hardhat console --network zk_mainnet",
"deployModelCollection:zk_mainnet": "npx hardhat run scripts/deploy/deployModelCollectionERC20.ts --network zk_mainnet",
"deployWorkerHub:zk_mainnet": "npx hardhat run scripts/deploy/deployWorkerHubERC20.ts --network zk_mainnet",
"deployHybridModel:zk_mainnet": "npx hardhat run scripts/deploy/deployHybridModelERC20.ts --network zk_mainnet",
"deployWETH9:zk_mainnet": "npx hardhat run scripts/deploy/deployWETH9.ts --network zk_mainnet"
},
"devDependencies": {
"@ericxstone/hardhat-blockscout-verify": "^1.0.2",
"@matterlabs/hardhat-zksync": "^1.1.0",
"@nomicfoundation/hardhat-foundry": "^1.1.2",
"@nomicfoundation/hardhat-network-helpers": "^1.0.11",
"@nomicfoundation/hardhat-toolbox": "^5.0.0",
"@nomiclabs/hardhat-solhint": "^3.1.0",
"@openzeppelin/contracts": "^4.9.6",
"@openzeppelin/contracts-upgradeable": "^4.9.6",
"@openzeppelin/hardhat-upgrades": "^3.2.1",
"@prb/math": "^4.0.0",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"@types/mocha": "^10.0.6",
"@types/random-seed": "^0.3.5",
"chai": "^4.4.1",
"dotenv": "^16.0.3",
"ethers": "^6.13.2",
"hardhat": "^2.22.2",
"hardhat-deploy": "^0.11.45",
"hardhat-gas-reporter": "^1.0.10",
"hardhat-contract-sizer": "^2.10.0",
"js-big-decimal": "^2.0.7",
"mocha-junit-reporter": "^2.2.1",
"mocha-multi-reporters": "^1.5.1",
"random-seed": "^0.3.0",
"sharp": "^0.32.0",
"solidity-coverage": "^0.8.11",
"solmate": "^6.7.0",
"ts-node": "^10.9.2",
"typechain": "^8.3.2",
"typescript": "^5.4.3",
"zksync-ethers": "^6.11.0"
},
"dependencies": {
"@nomicfoundation/hardhat-verify": "^2.0.5",
"js-levenshtein": "^1.1.6"
}
}