{"id":22975879,"url":"https://github.com/vladmeer/pumpfun-bundler","last_synced_at":"2025-04-15T03:44:21.605Z","repository":{"id":251212643,"uuid":"834702488","full_name":"vladmeer/pumpfun-bundler","owner":"vladmeer","description":"PumpFun bundler, create/buy token in single bundle for Pumpfun","archived":false,"fork":false,"pushed_at":"2025-03-06T10:34:27.000Z","size":5346,"stargazers_count":440,"open_issues_count":1,"forks_count":305,"subscribers_count":3,"default_branch":"main","last_synced_at":"2025-04-15T03:44:08.054Z","etag":null,"topics":["bot","bundler","buy","pool","pump","pumpfun","pumpfun-bot","pumpfun-bundler","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/vladmeer.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-07-28T05:15:48.000Z","updated_at":"2025-04-13T18:55:23.000Z","dependencies_parsed_at":"2024-08-01T14:47:31.003Z","dependency_job_id":"dcc750be-34fb-4576-832b-c5730bff12f5","html_url":"https://github.com/vladmeer/pumpfun-bundler","commit_stats":null,"previous_names":["bambi-bf/pumpfun-bundler","vladmeer/pumpfun-bundler"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vladmeer%2Fpumpfun-bundler","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vladmeer%2Fpumpfun-bundler/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vladmeer%2Fpumpfun-bundler/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/vladmeer%2Fpumpfun-bundler/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/vladmeer","download_url":"https://codeload.github.com/vladmeer/pumpfun-bundler/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":249003938,"owners_count":21196794,"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","buy","pool","pump","pumpfun","pumpfun-bot","pumpfun-bundler","pumpfun-tool","solana","solana-bundle"],"created_at":"2024-12-15T00:40:06.476Z","updated_at":"2025-04-15T03:44:21.587Z","avatar_url":"https://github.com/vladmeer.png","language":"TypeScript","funding_links":[],"categories":["TypeScript"],"sub_categories":[],"readme":"# Pumpfun Bundler v1\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`\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\": \"B@mbi\",\n      \"symbol\": \"Bam\",\n      \"description\": \"Bambi's token\",\n      \"image\": \"./upload/img.jpg\",\n      \"showName\": true,\n      \"createdOn\": \"https://pump.fun\",\n      \"twitter\": \"https://x.com/bambi\",\n      \"telegram\": \"https://t.me/bambi\",\n      \"website\": \"https://bambi\"\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#### 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\n### Telegram: [Vladmeer](https://t.me/vladmeer67)   \nhttps://t.me/vladmeer67\n\n### Twitter: [Vladmeer](https://x.com/vladmeer67)   \nhttps://x.com/vladmeer67\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvladmeer%2Fpumpfun-bundler","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fvladmeer%2Fpumpfun-bundler","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fvladmeer%2Fpumpfun-bundler/lists"}