[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"project-76258":3},{"id":4,"name":5,"fullName":6,"owner":7,"repo":5,"description":8,"homepage":9,"htmlUrl":10,"language":11,"languages":10,"totalLinesOfCode":10,"stars":12,"forks":13,"watchers":14,"openIssues":15,"contributorsCount":15,"subscribersCount":15,"size":15,"stars1d":16,"stars7d":16,"stars30d":14,"stars90d":15,"forks30d":15,"starsTrendScore":17,"compositeScore":18,"rankGlobal":10,"rankLanguage":10,"license":19,"archived":20,"fork":20,"defaultBranch":21,"hasWiki":22,"hasPages":20,"topics":23,"createdAt":10,"pushedAt":10,"updatedAt":32,"readmeContent":33,"aiSummary":34,"trendingCount":15,"starSnapshotCount":15,"syncStatus":16,"lastSyncTime":35,"discoverSource":36},76258,"solana-meteora-damm-v2-alpha-vault-bundler","whisdev\u002Fsolana-meteora-damm-v2-alpha-vault-bundler","whisdev","solana meteora alpha vault to create large marketcap, execute deposit, claim, withdraw across unlimited wallets","https:\u002F\u002Faxiom.trade\u002Fmeme\u002FCJ95NGLBDS36KbzjZ35o62GR7RrEAsnJKdsChioFTyCV?chain=sol",null,"TypeScript",20,260,5,0,2,6,7.25,"MIT License",false,"main",true,[24,25,26,27,28,29,30,31],"alpha","alpha-vault-bundler","meteora","meteora-alpha-vault","meteora-bundler","solana-token-bundler","stealth-bundler","vault","2026-06-12 02:03:41","# Solana Meteora Alpha Vault Token Bundler\n\n**Create large marketcap in short time using Alpha Vault. Move and register tokens with exchange-grade metrics.**\n\nA high-performance multi-wallet tool for Meteora Alpha Vault operations on Solana. Execute deposits, claims, and withdrawals across unlimited wallets with parallel transaction processing.\n\n## Why Alpha Vault Bundler?\n\n- **Liquidity** - Inject substantial liquidity into Alpha Vault pools across multiple wallets simultaneously\n- **Holders** - Distribute tokens across unlimited holder wallets efficiently\n- **Volume** - Generate organic trading volume through coordinated vault interactions\n- **Marketcap** - Build significant marketcap rapidly through strategic vault deposits and claims\n- **Unlimited Bundler** - No wallet limits. Process 10, 100, or 1000+ wallets with parallel execution\n- **Stealth Mode** - Transactions appear as separate organic interactions, avoiding malicious detection patterns\n\n## Features\n\n- **Parallel Execution** - Submit multiple transactions concurrently with configurable concurrency\n- **Auto Confirmation** - Every transaction is confirmed before proceeding\n- **Multi-Operation Support** - Deposit, claim tokens, and withdraw in coordinated batches\n- **Flexible Sizing** - Set per-wallet amounts or auto-distribute totals evenly\n- **Priority Fees** - Configurable compute unit pricing for faster inclusion\n- **Dry Run Mode** - Simulate operations before submitting\n- **Real-time Status** - Check vault state, deposits, and claimable amounts\n\n## Installation\n\n```bash\nnpm install\nnpm run build\n```\n\n## Quick Start\n\n1. **Configure environment**\n   ```bash\n   cp .env.example .env\n   # Edit .env with your RPC and vault address\n   ```\n\n2. **Add wallets**\n   ```bash\n   cp wallets.example.json wallets.json\n   # Add your base58 private keys to the array\n   ```\n\n3. **Run operations**\n   ```bash\n   # Check vault status\n   npm run status\n\n   # Deposit from all wallets\n   npm run deposit\n\n   # Claim tokens after vault closes\n   npm run claim\n\n   # Withdraw unused deposits\n   npm run withdraw\n   ```\n\n## Configuration\n\n### Environment Variables\n\n| Variable | Description | Default |\n|----------|-------------|---------|\n| `RPC_URL` | Solana RPC endpoint | Required |\n| `ALPHA_VAULT_ADDRESS` | Target Alpha Vault pubkey | Required |\n| `WALLETS_FILE` | Path to wallets JSON | `.\u002Fwallets.json` |\n| `PER_WALLET_DEPOSIT` | Fixed deposit per wallet | - |\n| `TOTAL_DEPOSIT` | Total to split across wallets | - |\n| `PRIORITY_FEE_MICROLAMPORTS` | Compute unit price | `50000` |\n| `COMPUTE_UNIT_LIMIT` | Compute units per tx | `400000` |\n| `CONCURRENCY` | Parallel transactions | `5` |\n| `DRY_RUN` | Simulate without submitting | `false` |\n\n### Wallets File Format\n\n```json\n[\n  \"base58_private_key_1\",\n  \"base58_private_key_2\",\n  \"base58_private_key_3\"\n]\n```\n\nOr byte array format:\n```json\n[\n  [1, 2, 3, ... 64 bytes],\n  [1, 2, 3, ... 64 bytes]\n]\n```\n\n## Commands\n\n```bash\n# Generate new wallets (specify count)\nnpm run generate -- -n 100 -o wallets.json\n\n# Deposit to vault (Pro-rata or FCFS mode)\nnpm run deposit\n\n# Claim purchased tokens after vault closes\nnpm run claim\n\n# Withdraw unused deposit tokens\nnpm run withdraw\n\n# Check vault and wallet status\nnpm run status\n\n# Development mode with hot reload\nnpm run dev\n```\n\n## CLI Usage\n\n```bash\n# Build first\nnpm run build\n\n# Run via CLI\n.\u002Fdist\u002Findex.js deposit --per-wallet 100\n.\u002Fdist\u002Findex.js claim --dry-run\n.\u002Fdist\u002Findex.js status --verbose\n```\n\n## Architecture\n\n```\n┌─────────────────────────────────────────────────────────┐\n│                  Alpha Vault Bundler                     │\n├─────────────────────────────────────────────────────────┤\n│                                                          │\n│  Wallet 1  ──┐                                          │\n│  Wallet 2  ──┼──▶  Parallel TX Submit  ──▶  Alpha Vault │\n│  Wallet N  ──┘          │                               │\n│                         ▼                               │\n│              Confirm Each Transaction                   │\n│                                                          │\n└─────────────────────────────────────────────────────────┘\n```\n\n## Alpha Vault Modes\n\n### Pro-rata Mode\n- Deposits accepted throughout the entire deposit period\n- Final allocation proportional to deposit share\n- Excess deposits automatically refundable\n\n### FCFS (First-Come-First-Serve) Mode\n- Fixed cap per wallet\n- First depositors get full allocation\n- Submit early for guaranteed slots\n\n## Advanced Usage\n\n### Adjusting Concurrency\n\nControl how many transactions are sent in parallel:\n\n```bash\n# Lower concurrency for stability\nCONCURRENCY=3 npm run deposit\n\n# Higher concurrency for speed (requires good RPC)\nCONCURRENCY=10 npm run deposit\n```\n\n### Using Premium RPC\n\nFor best results, use a premium RPC endpoint:\n\n```bash\nRPC_URL=https:\u002F\u002Fyour-premium-rpc.com npm run deposit\n```\n\n## Security\n\n- Private keys never leave your machine\n- No external API calls except RPC\n- Open source and auditable\n\n## Troubleshooting\n\n**Transactions failing?**\n- Increase `PRIORITY_FEE_MICROLAMPORTS` (try 100000+)\n- Reduce `CONCURRENCY` to avoid rate limiting\n- Use a premium RPC endpoint\n\n**Timeout errors?**\n- Reduce `CONCURRENCY`\n- Check RPC endpoint health\n- Try during lower network congestion\n\n**Wallet balance issues?**\n- Ensure each wallet has SOL for fees\n- Check quote token (e.g., USDC) balance\n\n## Support\nhttps:\u002F\u002Ft.me\u002Fsnipmaxi\n\n## License\n\nMIT\n\n## Disclaimer\n\nThis software is provided for educational and research purposes. Users are responsible for compliance with applicable laws and platform terms of service. Use at your own risk.\n","Solana Meteora Alpha Vault Token Bundler 是一个用于在短时间内创建大规模市值的高性能多钱包工具，支持在Solana上执行存款、认领和提现等操作。该项目采用TypeScript编写，具备并行处理交易的能力，能够在多个钱包之间同时注入流动性、分发代币，并生成有机交易量。其核心功能包括无限制的钱包数量处理、自动确认每笔交易、支持多种操作（如存款、认领和提现）以及灵活的金额设置。此外，它还提供优先费用配置、模拟运行模式和实时状态检查等功能。适合需要快速增加市场资本化、提高流动性和交易量的场景使用。","2026-06-11 03:54:48","CREATED_QUERY"]