From 514cad32de34211f2e105ead56dc8f53eb65ca62 Mon Sep 17 00:00:00 2001 From: SatoshiShibanuma Date: Wed, 7 May 2025 19:57:21 +0000 Subject: [PATCH 1/2] empty commit From 86f4ec57c06dd2086c213c8c897d318de6f04c81 Mon Sep 17 00:00:00 2001 From: SatoshiShibanuma Date: Wed, 7 May 2025 19:58:23 +0000 Subject: [PATCH 2/2] Create Prometheus-generated README file --- README_Prometheus.md | 76 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 76 insertions(+) create mode 100644 README_Prometheus.md diff --git a/README_Prometheus.md b/README_Prometheus.md new file mode 100644 index 0000000..6bad300 --- /dev/null +++ b/README_Prometheus.md @@ -0,0 +1,76 @@ +# Prometheus: Add README for pumpfun-sinperbot + +## Project Overview + +FSSB (Fast Solana Sniper Bot) is a sophisticated cryptocurrency trading bot designed specifically for the Solana blockchain. The bot specializes in real-time token sniping on the Raydium decentralized exchange, allowing users to quickly identify and trade new token pools before they become widely available. + +### Key Features +- **Automatic Pool Sniping**: Instantly detects and trades new token liquidity pools on Raydium +- **Smart Trading Controls**: + - Configurable stop-loss and take-profit percentages + - Liquidity range filtering + - Support for USDC and WSOL trading pairs +- **Token Verification**: + - Burn and renouncement checks + - Customizable token selection criteria +- **High-Speed Execution**: Enables trading before tokens appear on the Raydium UI + +### Primary Purpose +The bot addresses the challenge of identifying and quickly trading newly launched tokens on the Solana blockchain. By providing near-instantaneous pool detection and trading capabilities, it offers traders a potential competitive advantage in the fast-moving cryptocurrency market. + +### Core Benefits +- Rapid token discovery and trading +- Automated trading strategy implementation +- Flexible configuration options +- Reduced manual monitoring of new token launches + +## Getting Started, Installation, and Setup + +### Prerequisites +- [Node.js](https://nodejs.org/en/download) (LTS version recommended) +- A Solana wallet with SOL for transaction fees +- USDC or WSOL tokens for trading + +### Quick Start +1. Clone the repository: + ```bash + git clone https://github.com/CryptoTechZoo/fssb-fast-solana-sniper-bot.git + cd fssb-fast-solana-sniper-bot + ``` + +2. Install dependencies: + ```bash + npm install + ``` + +3. Configure the environment: + - Copy `.env.copy` to `.env` + - Edit `.env` with your specific configuration + +4. Run the bot: + ```bash + npm run fssb + ``` + +### Configuration Details +The `.env` file requires the following key configurations: + +- `MY_PRIVATE_KEY`: Your Solana wallet private key +- `RPC_ENDPOINT`: HTTPS RPC endpoint (paid services recommended for better performance) +- `RPC_WEBSOCKET`: Websocket RPC endpoint +- `TOKEN_SYMB`: Trading pair (USDC or WSOL) +- `BUY_AMOUNT`: Amount used to buy each new token +- `TAKE_PROFIT`: Take profit percentage (default: 200%) +- `STOP_LOSS`: Stop loss percentage (default: 90%) + +### Important Considerations +- Ensure you have sufficient SOL for transaction fees +- Recommended to use a separate wallet for trading +- Use paid RPC endpoints for faster and more reliable performance + +### Troubleshooting +- If you encounter RPC node errors, try alternative providers like Shyft, Helius, or Quicknode +- Verify you have a USDC/WSOL token account before running (can be created via [Jup.ag](https://jup.ag)) + +### Disclaimer +⚠️ This bot is provided for learning and testing purposes. Use at your own risk. \ No newline at end of file