-
Notifications
You must be signed in to change notification settings - Fork 6
/
package.json
86 lines (86 loc) · 4.2 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
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
77
78
79
80
81
82
83
84
85
86
{
"name": "@pooltogether/v4-testnet",
"version": "1.10.0",
"main": "index.js",
"repository": "[email protected]:pooltogether/v4-testnet.git",
"author": "PoolTogether Inc.",
"license": "MIT",
"scripts": {
"clean": "rm -rf cache/ artifacts/",
"compile": "hardhat compile",
"hh": "hardhat",
"docs": "hardhat deploy-markdown-export --name 'V4 Testnet' --npm-package-name @pooltogether/v4-testnet --github-base-url 'https://github.com/pooltogether/v4-testnet/tree/master' --output-filepath testnet.md",
"addPrizes": "hardhat run ./scripts/addPrizes.js --network ",
"disburse": "hardhat run ./scripts/disburse.js --network ",
"deposit": "hardhat run ./scripts/deposit.js --network ",
"generate": "node ./scripts/generateContractList.js",
"prepare-deploy": "yarn clean && yarn compile",
"prepack": "yarn generate",
"reinstall": "rm -rf node_modules/ && yarn cache clean && yarn",
"format": "prettier --config .prettierrc --write \"**/*.{ts,js}\"",
"format:file": "prettier --config .prettierrc --write",
"deploy:goerli": "DEPLOY=v1.1.0.goerli hardhat deploy --network goerli",
"deploy:sepolia": "DEPLOY=sepolia hardhat deploy --network sepolia",
"deploy:mumbai": "DEPLOY=mumbai hardhat deploy --network mumbai",
"deploy:fuji": "DEPLOY=fuji hardhat deploy --network fuji",
"deploy:optimismgoerli": "DEPLOY=v1.1.0.optimismgoerli hardhat deploy --network optimismGoerli",
"deploy:arbitrumgoerli": "DEPLOY=v1.1.0.arbitrumgoerli hardhat deploy --network arbitrumGoerli",
"node:goerli": "DEPLOY=v1.1.0.goerli hardhat node --network hardhat",
"node:fuji": "DEPLOY=fuji hardhat node --network hardhat",
"node:optimismgoerli": "DEPLOY=v1.1.0.optimismgoerli hardhat node --network hardhat",
"node:arbitrumgoerli": "DEPLOY=v1.1.0.arbitrumgoerli hardhat node --network hardhat",
"verify:goerli": "hardhat --config hardhat.config.ts run ./scripts/verify.ts --network goerli",
"verify:sepolia": "hardhat --config hardhat.config.ts run ./scripts/verify.ts --network sepolia",
"verify:mumbai": "hardhat --config hardhat.config.polygon.ts run ./scripts/verify.ts --network mumbai",
"verify:fuji": "hardhat --config hardhat.config.avalanche.ts run ./scripts/verify.ts --network fuji",
"verify:optimismgoerli": "hardhat --config hardhat.config.optimism.ts run ./scripts/verify.ts --network optimismGoerli",
"verify:arbitrumgoerli": "hardhat --config hardhat.config.arbitrum.ts run ./scripts/verify.ts --network arbitrumGoerli",
"setup:goerli": "yarn deploy-goerli ; yarn verify-goerli ; yarn disburse goerli ; yarn deposit goerli",
"setup:fuji": "yarn deploy-fuji ; yarn verify:fuji ; yarn disburse fuji ; yarn deposit fuji",
"setup:arbitrumgoerli": "yarn deploy-arbitrumgoerli ; yarn verify:arbitrumgoerli ; yarn disburse arbitrumgoerli ; yarn deposit arbitrumgoerli"
},
"dependencies": {
"@chainlink/contracts": "0.4.2",
"@openzeppelin/contracts": "4.7.3",
"@pooltogether/aave-v3-yield-source": "1.1.1",
"@pooltogether/owner-manager-contracts": "1.1.0",
"@pooltogether/pooltogether-rng-contracts": "1.5.1",
"@pooltogether/v4-core": "1.4.0-beta.6",
"@pooltogether/v4-periphery": "1.4.0-beta.2",
"@pooltogether/v4-timelocks": "1.1.0",
"@pooltogether/v4-twab-delegator": "1.0.0",
"@pooltogether/yield-source-interface": "1.5.0-beta.1",
"find": "0.3.0",
"glob": "8.0.3"
},
"devDependencies": {
"@ethersproject/hardware-wallets": "5.6.1",
"@nomiclabs/hardhat-ethers": "npm:hardhat-deploy-ethers",
"@nomiclabs/hardhat-etherscan": "3.1.0",
"@pooltogether/hardhat-deploy-markdown-export": "0.3.5",
"@types/find": "0.2.1",
"@types/node": "18.7.5",
"chalk": "4.1.2",
"colors": "1.4.0",
"debug": "4.3.4",
"ethers": "5.6.9",
"hardhat": "2.10.1",
"hardhat-dependency-compiler": "1.1.3",
"hardhat-deploy": "0.11.12",
"hardhat-deploy-ethers": "0.3.0-beta.13",
"idx": "2.5.6",
"luxon": "3.0.1",
"prettier": "2.7.1",
"ts-node": "10.9.1",
"typescript": "4.7.4"
},
"files": [
"artifacts",
"deployments/mumbai",
"deployments/goerli",
"deployments/fuji",
"deployments/optimismgoerli",
"deployments/arbitrumgoerli",
"contracts.json"
]
}