-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
115 lines (103 loc) · 6.08 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
{
"name": "layerzero-lending",
"scripts": {
"mainnetfork:start": "source ./start_mainnet_fork_node.sh",
"copy-dts-typechain": "npx copyfiles -u 1 \"typechain/**/*.d.ts\" compiled-typechain",
"coverage": "hardhat coverage",
"build": "tsc -p tsconfig.cjs.json && yarn copy-dts-typechain",
"compile8": "hardhat typechain --config hardhat.config.ts",
"compile": "hardhat typechain --config hardhat.config.ts",
"deploy:rinkeby": "hardhat --network rinkeby deploy --no-compile --reset --tags DeployBundleRinkeby",
"deploy:bsctest": "hardhat --network bsctest deploy --no-compile --reset --tags DeployBundleBSC",
"deploy:fuji": "hardhat --network fuji deploy --no-compile --reset --tags DeployBundleFUJI",
"----------------------": "--------------------",
"script:rinkeby:proxy:upgrade_market": "hardhat --network rinkeby run --no-compile ./scripts/eth/_upgrade_market.ts",
"script:bsctest:proxy:upgrade_market": "hardhat --network bsctest run --no-compile ./scripts/bsc/_upgrade_market.ts",
"script:bsc:proxy:upgrade_market": "hardhat --network bsctest run --no-compile ./scripts/bsc/_upgrade_market.ts",
"script:fuji:proxy:upgrade_market": "hardhat --network fuji run --no-compile ./scripts/fuji/_upgrade_market.ts",
"script:bsc:deposit": "hardhat --network bsctest run --no-compile ./scripts/bsc/deposit.ts",
"script:fuji:deposit": "hardhat --network fuji run --no-compile ./scripts/fuji/deposit.ts",
"script:rinkeby:deposit_and_borrow": "hardhat --network rinkeby run --no-compile ./scripts/eth/deposit_and_borrow.ts",
"script:bsctest:deposit_and_borrow": "hardhat --network bsctest run --no-compile ./scripts/bsc/deposit_and_borrow.ts",
"script:bsc:borrow": "hardhat --network bsctest run --no-compile ./scripts/bsc/borrow.ts",
"script:fuji:borrow": "hardhat --network fuji run --no-compile ./scripts/fuji/borrow.ts",
"script:bsc:repay": "hardhat --network bsctest run --no-compile ./scripts/bsc/repay.ts",
"script:fuji:repay": "hardhat --network fuji run --no-compile ./scripts/fuji/repay.ts",
"script:rinkeby:check_balance": "hardhat --network rinkeby run --no-compile ./scripts/eth/check_balance.ts",
"script:bsctest:check_balance": "hardhat --network bsctest run --no-compile ./scripts/bsc/check_balance.ts",
"script:bsc:check_balance": "hardhat --network bsctest run --no-compile ./scripts/bsc/check_balance.ts",
"script:fuji:check_balance": "hardhat --network fuji run --no-compile ./scripts/fuji/check_balance.ts",
"script:rinkeby:set_market_config": "hardhat --network rinkeby run --no-compile ./scripts/eth/1_set_market_config.ts",
"script:bsctest:set_market_config": "hardhat --network bsctest run --no-compile ./scripts/bsc/1_set_market_config.ts",
"script:bsc:set_market_config": "hardhat --network bsctest run --no-compile ./scripts/bsc/1_set_market_config.ts",
"script:fuji:set_market_config": "hardhat --network fuji run --no-compile ./scripts/fuji/1_set_market_config.ts",
"script:rinkeby:set_market_debt_variables": "hardhat --network rinkeby run --no-compile ./scripts/eth/2_set_market_debt_variables.ts",
"script:bsctest:set_market_debt_variables": "hardhat --network bsctest run --no-compile ./scripts/bsc/2_set_market_debt_variables.ts",
"script:bsc:set_market_debt_variables": "hardhat --network bsctest run --no-compile ./scripts/bsc/2_set_market_debt_variables.ts",
"script:fuji:set_market_debt_variables": "hardhat --network fuji run --no-compile ./scripts/fuji/2_set_market_debt_variables.ts",
"script:rinkeby:feed_price": "hardhat --network rinkeby run --no-compile ./scripts/eth/3_feed_price.ts",
"script:bsctest:feed_price": "hardhat --network bsctest run --no-compile ./scripts/bsc/3_feed_price.ts",
"script:bsc:feed_price": "hardhat --network bsctest run --no-compile ./scripts/bsc/3_feed_price.ts",
"script:fuji:feed_price": "hardhat --network fuji run --no-compile ./scripts/fuji/3_feed_price.ts",
"-----------------------": "---------------------",
"remove:sol-log": "hardhat remove-logs",
"prettier-format:default": "prettier --config .prettierrc 'deploy/**/*.ts' 'utils/**/*.ts' 'scripts/**/*.ts' 'tests/**/*.ts' --write",
"mainnetfork:console": "hardhat console --network mainnetfork",
"test:case": "mocha --timeout 500000 --require hardhat/register --file tests/**/* --extension ts -g",
"prepublishOnly": "yarn compile && yarn build",
"bsctest": "hardhat console --network bsctest",
"rinkeby": "hardhat console --network rinkeby"
},
"version": "0.1.0",
"main": "index.js",
"license": "GPL-3.0",
"devDependencies": {
"@defi-wonderland/smock": "^2.0.7",
"@eth-optimism/smock": "^1.1.10",
"@ethersproject/bignumber": "^5.6.0",
"@nomiclabs/ethereumjs-vm": "^4.2.2",
"@nomiclabs/hardhat-ethers": "^2.0.5",
"@nomiclabs/hardhat-etherscan": "^3.0.3",
"@nomiclabs/hardhat-waffle": "^2.0.3",
"@openzeppelin/contracts": "^4.6.0",
"@openzeppelin/contracts-upgradeable": "^4.6.0",
"@openzeppelin/hardhat-upgrades": "^1.17.0",
"@sushiswap/core": "^1.4.2",
"@typechain/ethers-v5": "10.0.0",
"@typechain/hardhat": "6.0.0",
"@types/chai": "^4.3.1",
"@types/mocha": "^9.1.1",
"@types/node": "^17.0.31",
"@typescript-eslint/eslint-plugin": "^5.23.0",
"@typescript-eslint/parser": "^5.23.0",
"chai": "^4.3.6",
"chai-bn": "^0.3.1",
"dotenv": "^16.0.0",
"eslint": "^8.15.0",
"eslint-config-prettier": "^8.5.0",
"eslint-plugin-prettier": "^4.0.0",
"ethereum-waffle": "^3.4.4",
"ethereumjs-util": "^7.1.4",
"ethers": "^5.6.5",
"fp-ts": "^2.12.1",
"hardhat": "2.9.3",
"hardhat-deploy": "^0.11.4",
"hardhat-log-remover": "^2.0.2",
"hardhat-typechain": "^0.3.5",
"prettier": "^2.6.2",
"prettier-plugin-solidity": "^1.0.0-beta.19",
"solhint": "^3.3.7",
"solhint-plugin-prettier": "^0.0.5",
"solidity-coverage": "^0.7.21",
"ts-generator": "^0.1.1",
"ts-node": "^10.7.0",
"typechain": "8.0.0",
"typescript": "^4.6.4"
},
"files": [
"typechain",
"artifacts",
"contracts",
"compiled-typechain"
]
}