-
Notifications
You must be signed in to change notification settings - Fork 53
Expand file tree
/
Copy pathpackage.json
More file actions
43 lines (43 loc) · 1.3 KB
/
package.json
File metadata and controls
43 lines (43 loc) · 1.3 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
42
43
{
"name": "volume-bot",
"scripts": {
"tsc": "tsc --noEmit",
"pump": "ts-node ./src/dex/pumpSwap.ts",
"dlmm": "ts-node ./src/dex/meteoraDlmm.ts",
"damm": "ts-node ./src/dex/meteoraDammV2.ts",
"gather": "ts-node ./src/gather.ts",
"arbitrage": "ts-node ./src/arbitrageBot.ts",
"start": "ts-node ./src/excuteBot.ts",
"unified-v1": "ts-node ./src/unifiedArbitrageBot.ts",
"price": "ts-node ./src/dex/index.ts"
},
"dependencies": {
"@coral-xyz/anchor": "^0.30.1",
"@meteora-ag/cp-amm-sdk": "^1.0.11-rc.0",
"@meteora-ag/dlmm": "^1.5.4",
"@project-serum/anchor": "^0.26.0",
"@raydium-io/raydium-sdk": "^1.3.1-beta.58",
"@raydium-io/raydium-sdk-v2": "^0.1.141-alpha",
"@shyft-to/solana-transaction-parser": "^2.0.1",
"@solana/spl-token": "^0.4.0",
"@solana/web3.js": "^1.98.2",
"@triton-one/yellowstone-grpc": "^4.0.2",
"axios": "^1.6.8",
"bigint-buffer": "^1.1.5",
"bn.js": "^5.2.1",
"bs58": "^5.0.0",
"dotenv": "^16.4.1",
"jito-ts": "^4.2.0",
"lodash": "^4.17.21",
"pino": "^8.18.0",
"pino-pretty": "^10.3.1",
"pino-std-serializers": "^6.2.2"
},
"devDependencies": {
"@types/bn.js": "^5.1.5",
"@types/lodash": "^4.17.20",
"prettier": "^3.2.4",
"ts-node": "^10.9.2",
"typescript": "^5.3.3"
}
}