From 7c584331cdba7508527daa1d2739acd7bba8d320 Mon Sep 17 00:00:00 2001 From: sbsmith09 Date: Wed, 7 May 2025 21:27:51 +0000 Subject: [PATCH 1/2] empty commit From ec1b07f4490a90761d3372f6b816aa65a02a1db0 Mon Sep 17 00:00:00 2001 From: sbsmith09 Date: Wed, 7 May 2025 21:28:57 +0000 Subject: [PATCH 2/2] Create Prometheus-generated README file --- README_Prometheus.md | 82 ++++++++++++++++++++++++++++++++++++++++++++ 1 file changed, 82 insertions(+) create mode 100644 README_Prometheus.md diff --git a/README_Prometheus.md b/README_Prometheus.md new file mode 100644 index 0000000..e6f50af --- /dev/null +++ b/README_Prometheus.md @@ -0,0 +1,82 @@ +# 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. It specializes in automatically detecting and trading new token pools on the Raydium decentralized exchange, focusing on USDC/SOL trading pairs. + +### Key Purpose +The bot aims to provide traders with a competitive edge by enabling rapid identification and execution of trades on newly created token liquidity pools before they become widely visible on standard trading interfaces. + +### Core Features +- **Automatic Pool Sniping**: Instantly detects and trades new token pools in real-time +- **Advanced Filtering**: Configurable liquidity filters to manage trading risk +- **Smart Trading Mechanisms**: + - Automatic stop-loss and take-profit controls + - Configurable buy amounts + - Selective token trading via inclusion lists +- **Token Verification**: + - Burn check + - Renouncement check + - Liquidity pool size validation + +### Technical Highlights +- Built with TypeScript for robust performance +- Supports both USDC and WSOL trading +- Configurable through environment variables +- Automated sell functionality with customizable parameters + +### Primary Benefits +- Rapid market entry for new token launches +- Automated trading with configurable risk management +- Elimination of manual monitoring for new token pools + +## Getting Started, Installation, and Setup + +### Prerequisites +- [Node.js](https://nodejs.org/en/download) must be installed +- 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 wallet details and trading preferences + - Configure `MY_PRIVATE_KEY` + - Set `RPC_ENDPOINT` (recommended: paid RPC services) + - Choose `TOKEN_SYMB` (USDC or WSOL) + - Set `BUY_AMOUNT` + - Configure trading parameters like `TAKE_PROFIT` and `STOP_LOSS` + +4. Run the bot: + ```bash + npm run fssb + ``` + +### Development Mode +To run the project in development, ensure all configurations are set in the `.env` file and use the standard start command: +```bash +npm run fssb +``` + +### Important Considerations +- Create a new Solana wallet specifically for this bot +- Transfer SOL to the wallet for transaction fees +- Ensure you have USDC or WSOL for trading +- Verify RPC endpoints for optimal performance +- Use at your own risk - no financial advice is provided + +### Optional Configuration +- Modify `snipedlist.txt` to specify exact token mint addresses to snipe +- Adjust `USE_SNIPEDLIST` in `.env` to enable/disable specific token sniping +- Configure auto-sell parameters in `.env` \ No newline at end of file