-
Notifications
You must be signed in to change notification settings - Fork 0
/
package.json
80 lines (80 loc) · 3.32 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
{
"name": "polybotv2",
"devDependencies": {
"@graphprotocol/graph-ts": "^0.29.0",
"@thanpolas/uniswap-chain-queries": "^0.1.1",
"@thanpolas/univ3prices": "^3.0.2",
"@typechain/ethers-v6": "^0.5.1",
"@typechain/hardhat": "^9.1.0",
"@types/express": "^4.17.17",
"@types/node": "^20.6.3",
"@types/node-telegram-bot-api": "^0.61.7",
"@uniswap/sdk": "^3.0.3",
"@uniswap/sdk-core": "^3.2.3",
"@uniswap/v2-core": "^1.0.1",
"@uniswap/v2-periphery": "^1.1.0-beta.0",
"@uniswap/v2-sdk": "^3.0.1",
"@uniswap/v3-core": "^1.0.1",
"@uniswap/v3-periphery": "^1.4.3",
"ansi-colors": "^4.1.3",
"axios": "^0.26.1",
"bignumber.js": "^9.1.1",
"chai": "^4.3.7",
"colors": "^1.4.0",
"concurrently": "^8.2.2",
"console-table-printer": "^2.11.0",
"cross-env": "^7.0.3",
"dayjs": "^1.11.2",
"dotenv": "^8.6.0",
"log4js": "^6.9.1",
"mocha": "^10.2.0",
"prettier": "^2.7.1",
"prettier-plugin-solidity": "^1.0.0",
"ts-node": "^10.7.0",
"ts-node-dev": "^2.0.0",
"typechain": "^8.3.2",
"typescript": "^4.6.2",
"wait-on": "^7.2.0"
},
"dependencies": {
"@cryptoalgebra/core": "^3.0.0",
"@cryptoalgebra/integral-sdk": "^0.10.2",
"@cryptoalgebra/periphery": "^2.0.1",
"@ethersproject/experimental": "^5.7.0",
"@nomicfoundation/hardhat-ethers": "^3.0.5",
"@nomicfoundation/hardhat-toolbox": "^4.0.0",
"@nomicfoundation/hardhat-verify": "^2.0.3",
"@openzeppelin/contracts": "^5.0.0",
"@types/jsonstream": "^0.8.31",
"@uniswap/v3-sdk": "^3.10.0",
"big-number": "^2.0.0",
"ethers": "^6.10.0",
"ethers-multicall": "^0.2.3",
"etherscan": "^0.2.2",
"hardhat": "^2.19.4",
"jsonstream": "^1.0.3",
"JSONStream": "^1.3.5",
"node-telegram-bot-api": "^0.63.0",
"telegraf": "^4.16.3"
},
"scripts": {
"v2BotTest": "cross-env NODE_ENV=test npx ts-node index",
"v2BotLive": "cross-env NODE_ENV=live npx ts-node index",
"v2DeployTest": "cross-env NODE_ENV=test npx hardhat run --network localhost scripts/v2/deployTests.ts",
"v3DeployTest": "cross-env NODE_ENV=test npx hardhat run --network localhost scripts/v3/deployTests.ts",
"v3DeployLive": "cross-env NODE_ENV=live npx hardhat run --network polygon scripts/deploy.ts",
"bot2Test": "cross-env NODE_ENV=test npx ts-node index",
"v3Test": "cross-env NODE_ENV=test npx ts-node index",
"start:node": "npx hardhat node",
"wait:node": "wait-on tcp:8545",
"startTests": "concurrently --kill-others \"npm:wait:node\" \"npm:start:node\" \"npm:v2DeployTest\"",
"arbSim": "npx hardhat run --network localhost test/arbSim.ts",
"deployContracts": "npx hardhat run --network polygon scripts/deployFlash.ts",
"get2": "npx ts-node utils/dexdata/V2/allPairsCtrl",
"get3": "npx ts-node utils/dexdata/V3/getPools",
"match2": "npx ts-node utils/dexdata/V2/matchPairsCtrl",
"match3": "npx ts-node utils/dexdata/V3/matchPools",
"test": "mocha",
"dev": "cross-env NODE_ENV=development tsnd --respawn --debug ./index.ts"
}
}