-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathpackage.json
31 lines (31 loc) · 1.26 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
{
"name": "example-aave-v2-listing",
"version": "1.0.0",
"description": "This repository contains an example of a listing on Aave v2 Ethereum, including some useful helpers to test the protocol post-proposal execution.",
"main": "index.js",
"directories": {
"lib": "lib",
"test": "test"
},
"scripts": {
"LUSDvsDAIaToken:diff": "npm run getDAIaToken && npm run getLUSDaToken && npm run generateDiff:aLUSD-aDAI",
"getDAIaToken": "sh sourceEtherscan.sh 0x7b2a3CF972C3193F26CdeC6217D27379b6417bD0 aDAI",
"getLUSDaToken": "sh sourceEtherscan.sh 0x893E606358205AD994e610ad48e8aEF98aEadDbe aLUSD",
"generateDiff:aLUSD-aDAI": "sh generateDiffs.sh ./etherscan/aDAI/AToken/@aave/protocol-v2/contracts/protocol/tokenization/AToken.sol ./etherscan/aLUSD/AToken/contracts/protocol/tokenization/AToken.sol aDAI-aLUSD"
},
"repository": {
"type": "git",
"url": "git+https://github.com/bgd-labs/example-aave-v2-listing.git"
},
"keywords": [],
"author": "sendra",
"license": "ISC",
"bugs": {
"url": "https://github.com/bgd-labs/example-aave-v2-listing/issues"
},
"homepage": "https://github.com/bgd-labs/example-aave-v2-listing#readme",
"devDependencies": {
"prettier": "^2.7.1",
"prettier-plugin-solidity": "^1.0.0-beta.24"
}
}