-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
41 lines (41 loc) · 1.25 KB
/
package.json
File metadata and controls
41 lines (41 loc) · 1.25 KB
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
{
"name": "grem-gru-emoney-companion",
"version": "1.0.0",
"description": "Multi-Asset Private Pool Controller for e-Money tokens on Polygon PoS blockchain",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"compile": "npx hardhat compile",
"deploy:mumbai": "forge script script/DeployMultiAssetController.s.sol --rpc-url $MUMBAI_RPC_URL --broadcast --verify",
"deploy:polygon": "forge script script/DeployMultiAssetController.s.sol --rpc-url $POLYGON_RPC_URL --broadcast --verify",
"bot:start": "npx ts-node bot/multi-asset-bot.ts",
"bot:dry-run": "DRY_RUN=true npx ts-node bot/multi-asset-bot.ts"
},
"keywords": [
"defi",
"emoney",
"polygon",
"dodo",
"oracle",
"rebalancing",
"foundry",
"openzeppelin"
],
"author": "",
"license": "MIT",
"devDependencies": {
"@nomicfoundation/hardhat-chai-matchers": "^2.1.0",
"@nomicfoundation/hardhat-ethers": "^4.0.2",
"@nomicfoundation/hardhat-toolbox": "^6.1.0",
"@types/node": "^20.0.0",
"chai": "^6.2.0",
"ethers": "^6.15.0",
"hardhat": "^3.0.9",
"ts-node": "^10.9.0",
"typescript": "^5.0.0"
},
"dependencies": {
"@openzeppelin/contracts": "^5.4.0"
},
"type": "module"
}