{"id":25381845,"url":"https://github.com/meta0xflip/pumpfun-bundler","last_synced_at":"2025-04-09T07:10:23.746Z","repository":{"id":276200239,"uuid":"902781692","full_name":"meta0xflip/pumpfun-bundler","owner":"meta0xflip","description":"PumpFun bundler, create/buy token in single bundle for Pumpfun. pumpfun bundler pumpfun bundler pumpfun bundler pumpfun bundler pumpfun bundler pumpfun bundler pumpfun bundler pumpfun bundler pumpfun bundler pumpfun bundler pumpfun bundler pumpfun bundler pumpfun bundler pumpfun bundler pumpfun bundler pumpfun bundler pumpfun bundler pumpfun bundle","archived":false,"fork":false,"pushed_at":"2025-03-10T15:50:46.000Z","size":5370,"stargazers_count":53,"open_issues_count":0,"forks_count":41,"subscribers_count":37,"default_branch":"master","last_synced_at":"2025-04-02T05:07:51.705Z","etag":null,"topics":["bot","bundler","bundler-bot","buy","pool","pump","pumpfun","pumpfun-bot","pumpfun-bundler","pumpfun-bundler-bot","pumpfun-tool","solana","solana-bundle"],"latest_commit_sha":null,"homepage":"https://pump.fun","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/meta0xflip.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}},"created_at":"2024-12-13T08:59:27.000Z","updated_at":"2025-03-10T19:47:49.000Z","dependencies_parsed_at":"2025-03-16T06:03:01.045Z","dependency_job_id":null,"html_url":"https://github.com/meta0xflip/pumpfun-bundler","commit_stats":null,"previous_names":["meta0xflip/pumpfun-bundler"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/meta0xflip%2Fpumpfun-bundler","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/meta0xflip%2Fpumpfun-bundler/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/meta0xflip%2Fpumpfun-bundler/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/meta0xflip%2Fpumpfun-bundler/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/meta0xflip","download_url":"https://codeload.github.com/meta0xflip/pumpfun-bundler/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":247994122,"owners_count":21030050,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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","bundler","bundler-bot","buy","pool","pump","pumpfun","pumpfun-bot","pumpfun-bundler","pumpfun-bundler-bot","pumpfun-tool","solana","solana-bundle"],"created_at":"2025-02-15T06:33:57.633Z","updated_at":"2025-04-09T07:10:23.721Z","avatar_url":"https://github.com/meta0xflip.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# 🚀 Pumpfun Bundler 🤖\n\n## 📖 Overview\n\nThis is the best, fastest, and most efficient self-bundling script for PumpFun, allowing you to create a token and buy tokens with your own 20 different wallets in one single bundle.\n\n## 📦 Installation\n\n`\nnpm i pumpdotfun-sdk\n`\n\n## 🚀 Usage Example\n\nFirst you need to create a `.env` file and set your RPC URL like in the `.env.example`\n\nThen you need to fund an account with atleast 0.004 SOL that is generated when running the command below\nTo launch your token on Pumpfun site, edit the metadata as desired.\n```typescript\n    const metadata = {\n      \"name\": \"Meta0xFlip\",\n      \"symbol\": \"Meta0xFlip\",\n      \"description\": \"Meta0xFlip token\",\n      \"image\": \"./upload/img.png\",\n      \"showName\": true,\n      \"createdOn\": \"https://pump.fun\",\n      \"twitter\": \"https://x.com/itsMeta0xFlip\",\n      \"telegram\": \"https://t.me/Meta0xFlip\",\n      \"website\": \"https://trycoco.me\"\n}\n```\n`\nnpx ts-node example/basic/index.ts\n`\nYou can check token launch and bundling in this link:\n  - pumpfun site\n    https://pump.fun/2q4JLenwD1cRhzSLu3uPMQPw4fTEYp7bLtfmBwFLb48v\n  - solscan.io\n    ![alt text](image.png)\n\n### 🛠 PumpDotFunSDK Class\n\nThe `PumpDotFunSDK` class provides methods to interact with the PumpFun protocol. Below are the method signatures and their descriptions.\n\n\n#### ⚡ createAndBuy\n\n```typescript\nasync createAndBuy(\n  creator: Keypair,\n  mint: Keypair,\n  createTokenMetadata: CreateTokenMetadata,\n  buyAmountSol: bigint,\n  slippageBasisPoints: bigint = 500n,\n  priorityFees?: PriorityFee,\n  commitment: Commitment = DEFAULT_COMMITMENT,\n  finality: Finality = DEFAULT_FINALITY\n): Promise\u003cTransactionResult\u003e\n```\n\n- Creates a new token and buys it.\n- **Parameters**:\n  - `creator`: The keypair of the token creator.\n  - `mint`: The keypair of the mint account.\n  - `createTokenMetadata`: Metadata for the token.\n  - `buyAmountSol`: Amount of SOL to buy.\n  - `slippageBasisPoints`: Slippage in basis points (default: 500).\n  - `priorityFees`: Priority fees (optional).\n  - `commitment`: Commitment level (default: DEFAULT_COMMITMENT).\n  - `finality`: Finality level (default: DEFAULT_FINALITY).\n- **Returns**: A promise that resolves to a `TransactionResult`.\n\n### Running the Examples\n\n#### Basic Example\n\nTo run the basic example for creating, buying, and selling tokens, use the following command:\n\n```bash\nnpx ts-node example/basic/index.ts\n```\n\n## 💡 Contributing\n\nWe welcome contributions! Please submit a pull request or open an issue to discuss any changes.\n\n## 🌟 License\n\nThis project is licensed under the MIT License - see the [LICENSE](LICENSE) file for details.\n\n---\n\n## 🛡 Pumpfun bundler V2\n\n### I made pumpfun bundler version 2 ###\nCreate and buy with 20 wallets in a single bundle\nExample:\nhttps://explorer.jito.wtf/bundle/28d842bef7c919cee00798cee05bb15616bdf96574a8428a27b81c71252342e0\n\n# 👨‍💻 Author\n### 📞 Telegram: [Meta0xFlip](https://t.me/meta0xflip)   \nhttps://t.me/Meta0xFlip\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmeta0xflip%2Fpumpfun-bundler","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmeta0xflip%2Fpumpfun-bundler","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmeta0xflip%2Fpumpfun-bundler/lists"}