-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathpackage.json
38 lines (38 loc) · 1.65 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
{
"name": "custom-aa-tutorial",
"version": "1.0.0",
"main": "index.js",
"license": "MIT",
"scripts": {
"test": "hardhat test --network hardhat",
"deploy:shared-restricted": "hardhat deploy-zksync --script deploy-shared-restricted.ts --network zkSyncLocalnet",
"deploy:aafactory": "hardhat deploy-zksync --script deploy-aafactory.ts --network zkSyncLocalnet",
"deploy:multisig": "hardhat deploy-zksync --script deploy-multisig.ts --network zkSyncLocalnet",
"deploy:pafactory": "hardhat deploy-zksync --script deploy-pafactory.ts --network zkSyncLocalnet",
"deploy:pension": "hardhat deploy-zksync --script deploy-pension.ts --network zkSyncLocalnet",
"demo:pension-setup": "yarn deploy:pafactory && yarn deploy:pension && yarn demo:pension-fund",
"demo:pension-fund": "ts-node demo/pension-fund-eth.ts",
"demo:pension-withdraw": "ts-node demo/pension-send-eth.ts",
"demo:shared-restricted-setup": "yarn deploy:shared-restricted && yarn demo:shared-restricted-fund",
"demo:shared-restricted-fund": "ts-node demo/shared-restricted-fund.ts",
"demo:fast-forward": "ts-node demo/fast-forward.ts"
},
"devDependencies": {
"@types/chai": "^4.3.10",
"@types/mocha": "^10.0.4",
"chai": "^4.3.10",
"dotenv": "^16.3.1",
"ethers": "^5.7.0",
"ts-node": "^10.9.1",
"typescript": "^4.8.4"
},
"dependencies": {
"@matterlabs/hardhat-zksync-deploy": "^0.6.3",
"@matterlabs/hardhat-zksync-solc": "^0.4.0",
"@matterlabs/hardhat-zksync-node": "0.0.1-beta.6",
"@matterlabs/zksync-contracts": "^0.6.1",
"@openzeppelin/contracts": "^4.7.3",
"hardhat": "^2.12.0",
"zksync-web3": "^0.14.3"
}
}