{"id":24189264,"url":"https://github.com/variablevar/probable-adventure","last_synced_at":"2026-02-06T05:31:13.666Z","repository":{"id":270562358,"uuid":"910173192","full_name":"variablevar/probable-adventure","owner":"variablevar","description":"This Telegram bot enables users to monitor specified Solana wallets for transactions and execute copy trades automatically. It's designed to be user-friendly and customizable, making it ideal for traders looking to streamline their workflow.","archived":false,"fork":false,"pushed_at":"2025-08-11T14:02:41.000Z","size":652,"stargazers_count":20,"open_issues_count":1,"forks_count":5,"subscribers_count":1,"default_branch":"main","last_synced_at":"2026-01-27T04:24:50.807Z","etag":null,"topics":["bot","copytrade","copytrading","solana","swap","telegram-bot","wallet","wallet-listen","wallet-watch"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/variablevar.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null}},"created_at":"2024-12-30T17:10:55.000Z","updated_at":"2025-08-11T14:02:44.000Z","dependencies_parsed_at":"2025-01-01T11:29:42.919Z","dependency_job_id":"b1c2111a-06aa-436a-835e-dc6c279db205","html_url":"https://github.com/variablevar/probable-adventure","commit_stats":null,"previous_names":["variablevar/probable-adventure"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/variablevar/probable-adventure","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/variablevar%2Fprobable-adventure","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/variablevar%2Fprobable-adventure/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/variablevar%2Fprobable-adventure/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/variablevar%2Fprobable-adventure/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/variablevar","download_url":"https://codeload.github.com/variablevar/probable-adventure/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/variablevar%2Fprobable-adventure/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29152426,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-06T02:39:25.012Z","status":"ssl_error","status_checked_at":"2026-02-06T02:37:22.784Z","response_time":59,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.5:443 state=error: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["bot","copytrade","copytrading","solana","swap","telegram-bot","wallet","wallet-listen","wallet-watch"],"created_at":"2025-01-13T14:24:08.327Z","updated_at":"2026-02-06T05:31:13.649Z","avatar_url":"https://github.com/variablevar.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"---\n# Solana Ghost Bot: Wallet Watcher \u0026 Copy Trader\n\nThis Telegram bot enables users to monitor specified Solana wallets for transactions and execute copy trades automatically. It's designed to be user-friendly and customizable, making it ideal for traders looking to streamline their workflow.\n---\n\n## Features\n\n- **Wallet Monitoring**: Watch target wallets for transactions in real time.\n- **Copy Trading**: Automatically replicate trades from monitored wallets to a designated wallet.\n- **Notifications**: Get detailed trade alerts via Telegram messages, including trade type, amount, and token pairs.\n- **Customizable Filters**: Monitor specific wallets or transactions involving a specific program ID.\n- **Error Handling**: Handles rate limits and provides descriptive error messages.\n\n---\n\n## How it's look like now\n\n![image](https://github.com/user-attachments/assets/082abc7f-8ce9-41d9-9a36-821ef66bd08c)\n\n## Requirements\n\n### **Environment**\n\n- **Node.js**: v18+\n- **Telegram Bot API Key**: Obtain from [BotFather](https://core.telegram.org/bots#botfather).\n- **Solana RPC Endpoint**: Use a reliable RPC provider (e.g., Alchemy, QuickNode).\n\n### **Dependencies**\n\n- `@solana/web3.js`: Interact with Solana blockchain.\n- `telegraf`: Interface with Telegram Bot API.\n- `dotenv`: Manage environment variables.\n- `prisma`: For database management and migrations.\n- `jest`: For testing the application.\n\n---\n\n## Installation\n\n### **Step 1**: Clone the Repository\n\n```bash\ngit clone https://github.com/variablevar/probable-adventure.git\ncd probable-adventure\n```\n\n### **Step 2**: Install Dependencies\n\n```bash\nnpm install\n```\n\n### **Step 3**: Configure Environment Variables\n\nCreate a `.env` file in the project root and populate it with your configuration:\n\n```env\nTELEGRAM_BOT_TOKEN=\nSOLANA_RPC_URL=\nDATABASE_URL=\nADMIN_USER_NAME=\n```\n\n### **Step 4**: Run Database Migrations\n\nGenerate and deploy the database schema using Prisma:\n\n```bash\nnpm run migrate:dev\nnpm run prisma:generate\n```\n\n### **Step 6**: Start the Bot\n\n```bash\nnpm run dev\n```\n\n---\n\n## Scripts\n\nThe following scripts are available in the `package.json` file:\n\n| Script                    | Description                                               |\n| ------------------------- | --------------------------------------------------------- |\n| `npm run dev`             | Runs the application in development mode using `ts-node`. |\n| `npm run build`           | Builds the application for production using TypeScript.   |\n| `npm run start`           | Starts the built application from the `dist` directory.   |\n| `npm run migrate:dev`     | Applies Prisma migrations in development mode.            |\n| `npm run migrate:deploy`  | Deploys Prisma migrations in production.                  |\n| `npm run prisma:generate` | Generates Prisma client based on the schema.              |\n| `npm run test`            | Runs tests using Jest.                                    |\n\n---\n\n## Usage\n\n### **Add the Bot to Telegram**\n\n- Search for your bot's username in Telegram.\n- Start a chat by clicking \"Start\".\n\n### **Sample Trade Notification**\n\n```\n💼 *Trade Alert!*\n👤 *From*: `TargetWalletPublicKey`\n🔄 *Pair*: `USDC/SOL`\n📈 *Amount In*: `💰 500 USDC`\n📉 *Amount Out*: `💎 25 SOL`\n⏰ *Time*: `2025-01-08 12:34:56`\n🔗 [View Transaction on Solscan](https://solscan.io/tx/TransactionHash)\n```\n\n---\n\n## Contributing\n\nWe welcome contributions! Please follow these steps:\n\n1. **Fork the repository**.\n2. **Create a new branch**: Use a descriptive name like `feature/my-feature`.\n3. **Commit your changes**: Write clear and concise commit messages.\n4. **Open a pull request**: Provide details about the changes and their purpose.\n\n## Thank you for helping improve the project!\n\n## License\n\nThis project is licensed under the MIT License. See the [LICENSE](LICENSE) file for details.\n\n---\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvariablevar%2Fprobable-adventure","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvariablevar%2Fprobable-adventure","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvariablevar%2Fprobable-adventure/lists"}