forked from PegasysLending/Lending-Contracts
-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
162 lines (162 loc) · 9.41 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
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
{
"name": "@aave/protocol-v2",
"version": "1.0.1",
"description": "Agave Protocol V2 smart contracts",
"files": [
"contracts",
"artifacts"
],
"scripts": {
"run-env": "npm i && tail -f /dev/null",
"hardhat": "hardhat",
"hardhat:kovan": "hardhat --network kovan",
"hardhat:tenderly-main": "hardhat --network tenderlyMain",
"hardhat:rinkeby": "hardhat --network rinkeby",
"hardhat:ropsten": "hardhat --network ropsten",
"hardhat:xdai": "hardhat --network xdai",
"hardhat:main": "hardhat --network main",
"hardhat:docker": "hardhat --network hardhatevm_docker",
"compile": "SKIP_LOAD=true hardhat compile",
"console:fork": "MAINNET_FORK=true hardhat console",
"test": "TS_NODE_TRANSPILE_ONLY=1 hardhat test ./test/*.spec.ts",
"test-scenarios": "npx hardhat test test/__setup.spec.ts test/scenario.spec.ts",
"test-repay-with-collateral": "hardhat test test/__setup.spec.ts test/repay-with-collateral.spec.ts",
"test-liquidate-with-collateral": "hardhat test test/__setup.spec.ts test/flash-liquidation-with-collateral.spec.ts",
"test-liquidate-underlying": "hardhat test test/__setup.spec.ts test/liquidation-underlying.spec.ts",
"test-configurator": "hardhat test test/__setup.spec.ts test/configurator.spec.ts",
"test-transfers": "hardhat test test/__setup.spec.ts test/atoken-transfer.spec.ts",
"test-flash": "hardhat test test/__setup.spec.ts test/flashloan.spec.ts",
"test-liquidate": "hardhat test test/__setup.spec.ts test/liquidation-atoken.spec.ts",
"test-deploy": "hardhat test test/__setup.spec.ts test/test-init.spec.ts",
"test-pausable": "hardhat test test/__setup.spec.ts test/pausable-functions.spec.ts",
"test-permit": "hardhat test test/__setup.spec.ts test/atoken-permit.spec.ts",
"test-stable-and-atokens": "hardhat test test/__setup.spec.ts test/atoken-transfer.spec.ts test/stable-token.spec.ts",
"test-subgraph:scenarios": "hardhat --network hardhatevm_docker test test/__setup.spec.ts test/subgraph-scenarios.spec.ts",
"test-weth": "hardhat test test/__setup.spec.ts test/weth-gateway.spec.ts",
"test-uniswap": "hardhat test test/__setup.spec.ts test/uniswapAdapters*.spec.ts",
"test:main:check-list": "MAINNET_FORK=true TS_NODE_TRANSPILE_ONLY=1 hardhat test test/__setup.spec.ts test/mainnet/check-list.spec.ts",
"dev:coverage": "buidler compile --force && buidler coverage --network coverage",
"agave:evm:dev:migration": "npm run compile && hardhat agave:dev",
"agave:docker:full:migration": "npm run compile && npm run hardhat:docker -- agave:mainnet",
"agave:kovan:full:migration": "npm run compile && npm run hardhat:kovan -- agave:mainnet",
"agave:kovan:full:initialize": "npm run hardhat:kovan -- full:initialize-lending-pool --verify --pool Agave",
"agave:rinkeby:deploy-registry": "npm run hardhat:rinkeby -- full:deploy-address-provider-registry",
"agave:rinkeby:full:migration": "npm run hardhat:rinkeby -- agave:mainnet",
"agave:rinkeby:full:initialize": "npm run hardhat:rinkeby -- full:initialize-lending-pool --verify --pool Agave",
"agave:ropsten:full:migration": "npm run compile && npm run hardhat:ropsten -- agave:mainnet --verify",
"agave:ropsten:full:initialize": "npm run hardhat:ropsten -- full:initialize-lending-pool --verify --pool Agave",
"agave:xdai:deploy-registry": "npm run hardhat:xdai -- full:deploy-address-provider-registry",
"agave:main:deploy-registry": "npm run hardhat:main -- full:deploy-address-provider-registry",
"agave:xdai:full:migration": "npm run compile && npm run hardhat:xdai -- agave:mainnet",
"agave:xdai:full:initialize": "npm run hardhat:xdai -- full:initialize-lending-pool --pool Agave",
"agave:fork:main:tenderly": "npm run compile && npm run hardhat:tenderly-main -- agave:mainnet",
"agave:fork:main": "npm run compile && MAINNET_FORK=true hardhat agave:mainnet",
"agave:main:full:migration": "npm run compile && npm run hardhat:main -- agave:mainnet --verify",
"agave:main:full": "npm run compile && npm run hardhat:main -- agave:mainnet",
"agave:main:full:initialize": "npm run compile && MAINNET_FORK=true full:initialize-tokens --pool Agave",
"agave:deployUniswapRepayAdapter": "hardhat --network rinkeby deploy-UniswapRepayAdapter --provider 0x7D716cA020b551f17531b1F793Ff58409f13F449 --router 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D --weth 0xDf032Bc4B9dC2782Bb09352007D4C57B75160B15",
"agave:UniswapLiquiditySwapAdapter": "hardhat --network rinkeby deploy-UniswapLiquiditySwapAdapter --provider 0x7D716cA020b551f17531b1F793Ff58409f13F449 --router 0x7a250d5630B4cF539739dF2C5dAcb4c659F2488D --weth 0xDf032Bc4B9dC2782Bb09352007D4C57B75160B15",
"prettier:check": "npx prettier -c 'tasks/**/*.ts' 'contracts/**/*.sol' 'helpers/**/*.ts' 'test/**/*.ts'",
"prettier:write": "prettier --write 'tasks/**/*.ts' 'contracts/**/*.sol' 'helpers/**/*.ts' 'test/**/*.ts'",
"ci:test": "npm run compile && npm run test",
"ci:clean": "rm -rf ./artifacts ./cache ./types",
"print-contracts:kovan": "npm run hardhat:kovan -- print-contracts",
"print-contracts:main": "npm run hardhat:main -- print-contracts",
"print-contracts:ropsten": "npm run hardhat:main -- print-contracts",
"dev:deployUIProvider": "npm run hardhat:kovan deploy-UiPoolDataProvider",
"kovan:verify": "npm run hardhat:kovan verify:general -- --all --pool Agave",
"rinkeby:verify": "npm run hardhat:rinkeby verify:general -- --all --pool Agave",
"ropsten:verify": "npm run hardhat:ropsten verify:general -- --all --pool Agave",
"mainnet:verify": "npm run hardhat:main verify:general -- --all --pool Agave",
"kovan:verify:tokens": "npm run hardhat:kovan verify:tokens -- --pool Agave",
"rinkeby:verify:tokens": "npm run hardhat:rinkeby verify:tokens -- --pool Agave",
"ropsten:verify:tokens": "npm run hardhat:ropsten verify:tokens -- --pool Agave",
"mainnet:verify:tokens": "npm run hardhat:main verify:tokens -- --pool Agave",
"print-config:fork:mainnet": "MAINNET_FORK=true hardhat print-config:fork",
"print-config:rinkeby": "hardhat --network rinkeby print-config --pool Agave --data-provider 0xA1901785c29cBd48bfA74e46b67C736b26054fa4",
"print-config:kovan": "hardhat --network kovan print-config --pool Agave --data-provider 0xA1901785c29cBd48bfA74e46b67C736b26054fa4",
"main:fork:initialize-tokens": "npm run compile && MAINNET_FORK=true hardhat full:initialize-tokens --pool Agave",
"main:initialize-tokens": "npm run compile && hardhat --network main full:initialize-tokens --pool Agave --rates-deployer 0x5Dda19AC38b19788A7842819d6673034006090E1 --data-provider 0xb8920436477885AC4463d9aAc9832AFEe81cCc9C",
"rinkeby:initialize-tokens": "npm run compile && hardhat --network rinkeby full:initialize-tokens --pool Agave",
"kovan:initialize-tokens": "npm run compile && hardhat --network kovan full:initialize-tokens --pool Agave",
"external:deploy-assets-kovan": "npm run compile && hardhat --network kovan external:deploy-new-asset --symbol ${SYMBOL} --verify",
"external:deploy-assets-main": "hardhat --network main external:deploy-new-asset --symbol WBTC",
"external:deploy-assets-xdai": "npm run compile && hardhat --network xdai external:deploy-new-asset --symbol ${SYMBOL}",
"prepublishOnly": "npm run compile"
},
"devDependencies": {
"@nomiclabs/buidler": "^1.4.7",
"@nomiclabs/buidler-ethers": "2.0.0",
"@nomiclabs/buidler-etherscan": "^2.1.0",
"@nomiclabs/buidler-waffle": "2.0.0",
"@nomiclabs/hardhat-ethers": "^2.0.0",
"@nomiclabs/hardhat-waffle": "^2.0.0",
"@openzeppelin/contracts": "3.1.0",
"@tenderly/hardhat-tenderly": "^1.1.0-beta.3",
"@typechain/ethers-v4": "1.0.0",
"@typechain/ethers-v5": "^2.0.0",
"@typechain/truffle-v4": "2.0.2",
"@typechain/truffle-v5": "2.0.2",
"@typechain/web3-v1": "1.0.0",
"@types/chai": "4.2.11",
"@types/lowdb": "1.0.9",
"@types/mocha": "7.0.2",
"@types/node": "14.0.5",
"bignumber.js": "9.0.0",
"buidler-typechain": "0.1.1",
"chai": "4.2.0",
"chai-bignumber": "3.0.0",
"chai-bn": "^0.2.1",
"dotenv": "^8.2.0",
"eth-sig-util": "2.5.3",
"ethereum-waffle": "3.0.2",
"ethereumjs-util": "7.0.2",
"ethers": "^5.0.19",
"globby": "^11.0.1",
"hardhat": "^2.0.8",
"hardhat-gas-reporter": "^1.0.0",
"hardhat-typechain": "^0.3.3",
"husky": "^4.2.5",
"lowdb": "1.0.0",
"prettier": "^2.0.5",
"prettier-plugin-solidity": "^1.0.0-alpha.53",
"pretty-quick": "^2.0.1",
"solidity-coverage": "0.7.10",
"temp-hardhat-etherscan": "^2.0.2",
"ts-generator": "^0.1.1",
"ts-node": "^8.10.2",
"tslint": "^6.1.2",
"tslint-config-prettier": "^1.18.0",
"tslint-plugin-prettier": "^2.3.0",
"typechain": "^4.0.0",
"typescript": "^4.0.5"
},
"husky": {
"hooks": {
"pre-commit": "pretty-quick --staged --pattern 'contracts/**/*.sol' --pattern 'helpers/**/*.ts' --pattern 'test/**/*.ts' --pattern 'tasks/**/*.ts'"
}
},
"author": "Aave",
"contributors": [
"Ernesto Boado <[email protected]>",
"Emilio Frangella <[email protected]>",
"Andrey Kozlov <[email protected]>",
"David Racero <[email protected]>",
"Pol Sendra <[email protected]>",
"David Truong <[email protected]>"
],
"license": "AGPLv3",
"dependencies": {
"axios": "^1.5.0",
"bn.js": "^5.2.1",
"escape-string-regexp": "^4.0.0",
"tmp-promise": "^3.0.2"
},
"keywords": [
"aave",
"protocol",
"protocol-v2",
"ethereum",
"solidity"
]
}