forked from Focus1010/solana-smart-tx-stack
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathpackage.json
More file actions
31 lines (31 loc) · 1.16 KB
/
Copy pathpackage.json
File metadata and controls
31 lines (31 loc) · 1.16 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
{
"name": "solana-smart-tx-stack",
"version": "2.0.0",
"description": "Smart Solana transaction stack with Jito bundles, Yellowstone gRPC streaming, stream-based commitment tracking, leader window detection, and AI-driven tip and retry decisions",
"main": "dist/index.js",
"scripts": {
"build": "tsc",
"start": "ts-node src/index.ts",
"run:stack": "ts-node src/index.ts",
"run:inject": "ts-node src/scripts/fault-inject.ts",
"generate:evidence": "ts-node src/scripts/generate-evidence.ts"
},
"keywords": ["solana", "jito", "yellowstone", "bundles", "ai-agent"],
"author": "",
"license": "MIT",
"dependencies": {
"@solana/web3.js": "^1.98.4",
"@triton-one/yellowstone-grpc": "^5.0.8",
"bs58": "^6.0.0",
"chalk": "^5.6.2",
"dotenv": "^17.4.2",
"groq-sdk": "^1.2.1",
"jito-js-rpc": "^0.2.2",
"jito-ts": "^4.2.1"
},
"devDependencies": {
"@types/node": "^25.9.1",
"ts-node": "^10.9.2",
"typescript": "^6.0.3"
}
}