forked from kevin-j-kennedy/Arbitrage-with-AAVE-Flashloan
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathpackage.json
29 lines (29 loc) · 846 Bytes
/
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
{
"name": "10-connect-to-blockchain-with-web3",
"version": "1.0.0",
"description": "",
"main": "run-arbitrage.js",
"scripts": {
"fork": "ganache-cli --fork REPLACE_BY_INFURA_MAINNET_URL --account='REPLACE_BY_PRIVATE_KEY,1000000000000000000000000'",
"deploy:fork": "truffle migrate --reset --network mainnetFork",
"deploy:kovan": "truffle migrate --reset --network kovan",
"arbitrage:fork": "node run-arbitrage-fork.js",
"arbitrage:kovan": "node run-arbitrage-kovan.js"
},
"keywords": [],
"author": "",
"license": "ISC",
"dependencies": {
"@studydefi/money-legos": "^2.3.3",
"@truffle/hdwallet-provider": "^1.0.39",
"@uniswap/sdk": "^2.0.5",
"dotenv": "^8.2.0",
"web3": "^1.2.9"
},
"engines": {
"node": "12.x"
},
"devDependencies": {
"@truffle/contract": "^4.2.13"
}
}