{"id":25152455,"url":"https://github.com/gromagic/solana-pumpfun-bundler","last_synced_at":"2026-04-26T23:31:52.182Z","repository":{"id":276203037,"uuid":"927911319","full_name":"Gromagic/solana-pumpfun-bundler","owner":"Gromagic","description":"Pumpfun-bundler on pump.fun protocol. This bot can help the token create intial-buy their token.","archived":false,"fork":false,"pushed_at":"2025-02-05T18:45:28.000Z","size":5265,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-02-06T21:33:38.035Z","etag":null,"topics":["bot","bundler","jito","pumpfun","solana","typescipt"],"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/Gromagic.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":"2025-02-05T18:40:53.000Z","updated_at":"2025-02-06T15:27:16.000Z","dependencies_parsed_at":"2025-02-06T21:33:40.824Z","dependency_job_id":"a45d08cd-5422-480e-926e-c3af84d8abc5","html_url":"https://github.com/Gromagic/solana-pumpfun-bundler","commit_stats":null,"previous_names":["gromagic/solana-pumpfun-bundler"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Gromagic%2Fsolana-pumpfun-bundler","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Gromagic%2Fsolana-pumpfun-bundler/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Gromagic%2Fsolana-pumpfun-bundler/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/Gromagic%2Fsolana-pumpfun-bundler/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/Gromagic","download_url":"https://codeload.github.com/Gromagic/solana-pumpfun-bundler/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":246981148,"owners_count":20863825,"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","jito","pumpfun","solana","typescipt"],"created_at":"2025-02-08T23:17:37.612Z","updated_at":"2025-04-03T09:44:50.840Z","avatar_url":"https://github.com/Gromagic.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Pumpfun Bundler README\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\": \"Example\",\n      \"symbol\": \"Ex\",\n      \"description\": \"Exam token\",\n      \"image\": \"./upload/img.jpg\",\n      \"showName\": true,\n      \"createdOn\": \"https://pump.fun\",\n      \"twitter\": \"https://x.com/Exam\",\n      \"telegram\": \"https://t.me/Exam\",\n      \"website\": \"https://Exam\"\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","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgromagic%2Fsolana-pumpfun-bundler","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fgromagic%2Fsolana-pumpfun-bundler","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fgromagic%2Fsolana-pumpfun-bundler/lists"}