A Rust-based monitoring system for tracking new pump tokens on the Solana blockchain with specific market cap thresholds.
- Monitors newly created tokens on Solana
- Filters tokens by market cap
- Tracks tokens created within the last 10 minutes
- Redis-based caching system
- Twitter API integration for social monitoring
- Rust and Cargo
- Redis
- Twitter API credentials
- Install Redis:
# macOS (using Homebrew)
brew install redis
# Linux (Ubuntu/Debian)
sudo apt-get update
sudo apt-get install redis-server- Clone the repository:
git clone https://github.com/nick199910/sol_new.git
cd sol_new- Configure environment variables:
- Copy
.env.templateto.env - Update the configuration values in
.env
- Copy
- Start Redis server:
redis-server- Run the application:
cargo runThe application can be configured through environment variables in the .env file:
GRPC_URL: Solana GRPC endpointRPC_URL: Solana RPC endpointREDIS_URL: Redis connection URLMARKET_CAP: Minimum market cap thresholdAI_API_KEY: Gemini API keyX_API_KEY: X (Twitter) API key
MIT