{"id":19413967,"url":"https://github.com/0xapp123/Shitcoin-Raydium-bot","last_synced_at":"2025-05-11T18:31:58.772Z","repository":{"id":232096154,"uuid":"781701678","full_name":"0xapp123/Shitcoin-bot","owner":"0xapp123","description":"This is the bot connecting with Raydium SDK,: Unwrap Sol, Token creation, Market creation, Pool creation, Buy/Sell, Add/Remove Liquidity","archived":false,"fork":false,"pushed_at":"2024-07-23T19:54:48.000Z","size":46,"stargazers_count":53,"open_issues_count":0,"forks_count":33,"subscribers_count":5,"default_branch":"main","last_synced_at":"2024-11-10T12:45:56.581Z","etag":null,"topics":["amm","create","liquidity","lp","market","raydium","remove","solana","token"],"latest_commit_sha":null,"homepage":"","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/0xapp123.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"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-04-03T21:55:50.000Z","updated_at":"2024-11-10T00:00:45.000Z","dependencies_parsed_at":"2024-04-08T02:07:24.776Z","dependency_job_id":"d3b4f1e3-0ec0-4461-90be-51867770f515","html_url":"https://github.com/0xapp123/Shitcoin-bot","commit_stats":null,"previous_names":["0xapp123/shitcoin-bot"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0xapp123%2FShitcoin-bot","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0xapp123%2FShitcoin-bot/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0xapp123%2FShitcoin-bot/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0xapp123%2FShitcoin-bot/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/0xapp123","download_url":"https://codeload.github.com/0xapp123/Shitcoin-bot/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":225084276,"owners_count":17418374,"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":["amm","create","liquidity","lp","market","raydium","remove","solana","token"],"created_at":"2024-11-10T12:35:39.646Z","updated_at":"2025-05-11T18:31:53.511Z","avatar_url":"https://github.com/0xapp123.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Shitcoin-Bot\n\n`--base-amount` is initial base token liquidity\n\n`--quote-amount`  is initial quote token liquidity\n\n`--buy-token` which token you want to buy (ans in base or quote)\n\n`--buy-amount` for how many token instantly you want to buy just after the pool creation\n\n\n\n\n### Market creation\n```cmd\nnode ./dist/index.js createmarket --base J1bREnQ2HPHkVuiKgGeGCmdW6P3SPvPgCvj5ii4oYHJg --quote So11111111111111111111111111111111111111112 --order-size 0.01 --price-tick 0.01 --url mainnet\n```\n\n### Create Pool And Buy:\n```cmd\nnode ./dist/index.js create-and-buy --market \"C5XyB8Jb6wNoyPDFkFoFzsJEojPwK1cRHzjs6bwTmi3C\" --base-amount 1000000000 --quote-amount 8 --buy-token \"base\" --buy-amount 480000000\n```\n\n### Remove Liquidity\n```cmd\nnode ./dist/index.js removeliquidity --pool 2MMjLmVMBWChxfWT3baZ3Xq57c1Z3UyVoQUZKuz7B6BC --amount -1 --url mainnet\n```\n\n### creates pool, adds liq, removes liq:\n```cmd\nnode ./dist/index.js createpool-remove --market \"FLxNH1ciyL1LNfbWm9aMBS235K9ti2iyGd9SNdwECkzU\" --base-amount 850000000 --quote-amount 8 --delay-seconds 0\n```\n\n### creates pool, adds liq, removes liq ncludes bundle buys:\n```cmd\nnode ./dist/index.js createpool-buy-remove --market \"48YUgRMkxk7fGSVdxMWzJVgoBJ1jDtp9nvkPgHXCo7RE\" --base-amount 850000000 --quote-amount 8 --buy-token \"base\" --buy-amount 350000000 --delay-seconds 1\n```\n\n### Unwrap Sol:\n```cmd\nnode ./dist/index.js unwrap --url mainnet\n```\n\n\n\n\n\n\n### Token creation\n```cmd\nexport NODE_PATH=./dist \u0026\u0026 node ./dist/index.js createtoken --name \"TOKEN_NAME\" --symbol \"TOKEN_SYMBOL\" --image \"TOKEN_IMAGE_LINK\" --decimals 5 --website \"web_link\" --initial-minting 10000 --url devnet\n```\n\n### Market creation\n```cmd\nexport NODE_PATH=./dist \u0026\u0026 node ./dist/index.js createmarket --base BASE_TOKEN_ADDRESS --quote QUOTE_TOKEN_ADDRESS --order-size 0.01 --price-tick 0.1 --url devnet\n```\n\n### Pool creation\n```cmd\nexport NODE_PATH=./dist \u0026\u0026 node ./dist/index.js createpool --market MAREKET_ID --baseAmount 100 --quoteAmount 1 --url devnet\n```\n\n### Buy\n```cmd\nexport NODE_PATH=./dist \u0026\u0026 node ./dist/index.js buy --pool POOL_ID --buy-token 'base' --amount 100\n```\n\n### Sell\n```cmd\nexport NODE_PATH=./dist \u0026\u0026 node ./dist/index.js buy --pool POOL_ID --sell-token 'base' --amount 100\n```\n\n### Add Liquidity\n```cmd\nexport NODE_PATH=./dist \u0026\u0026 node ./dist/index.js addliquidity --pool POOL_ID --amount 100 --amount-side 'base'\n```\n\n### Remove Liquidity\n```cmd\nexport NODE_PATH=./dist \u0026\u0026 node ./dist/index.js removeliquidity --pool POOL_ID --amount -1 --url 'devnet'\n```\n\n### DEVELOPMENT\n```\nexport NODE_PATH=./dist\nnode ./dist/index.js createtoken --name \"NAME\" --symbol \"SYMBOL\" --decimals 5 --image \"https://www.google.com\" --website \"https://www.google.com\" --initial-minting 10000 --url devnet\nnode ./dist/index.js createmarket --order-size 0.01 --price-tick 0.1 --url devnet --quote \"So11111111111111111111111111111111111111112\" --base \"\"\nnode ./dist/index.js createpool --baseAmount 10000 --quoteAmount 1 --url devnet --market \"\"\nnode ./dist/index.js removeliquidity --amount -1 --url devnet --pool \"\"\n```\n\n### RUNNING FOR REAL\n```\nexport NODE_PATH=./dist\nnode ./dist/index.js createtoken --name \"SideEyeDog\" --symbol \"SID\" --decimals 5 --initial-minting 1000000000 --image \"https://i.kym-cdn.com/photos/images/newsfeed/002/418/775/f5d.jpeg\" --website \"https://knowyourmeme.com/memes/side-eye-dog\" --twitter \"\" --telegram \"\" --description \"\"\nnode ./dist/index.js createmarket --order-size 0.01 --price-tick 0.1 --quote \"So11111111111111111111111111111111111111112\" --base \"\"\nnode ./dist/index.js revokeauth --token \"\"\nnode ./dist/index.js createpool --baseAmount 300000000 --quoteAmount 10 --market \"\"\nnode ./dist/index.js removeliquidity --amount -1 --pool \"\"\nnode ./dist/index.js unwrap\n```\n\n### COOKS\n```\nexport NODE_PATH=./dist\n\nnode ./dist/index.js createtoken --name \"dogwifcrown\" --symbol \"WIC\" --decimals 5 --image \"https://pbs.twimg.com/media/GHtutvaWMAAhujZ?format=jpg\u0026name=small\" --website \"\" --twitter \"https://twitter.com/blknoiz06/status/1764125414815842519\" --telegram \"\" --description \"\" --initial-minting 1000000000\n\nnode ./dist/index.js createtoken --name \"SideEyeDog\" --symbol \"SED\" --decimals 5 --initial-minting 1000000000 --image \"https://i.kym-cdn.com/photos/images/newsfeed/002/418/775/f5d.jpeg\" --website \"https://knowyourmeme.com/memes/side-eye-dog\" --twitter \"\" --telegram \"\" --description \"\"\n\nnode ./dist/index.js createtoken --name \"Shiba Inu\" --symbol \"SHIB\" --decimals 5 --image \"https://pbs.twimg.com/profile_images/1764023553505054720/u3Gy4BZd_400x400.jpg\" --website \"\" --twitter \"https://twitter.com/shibainucoinsol\" --telegram \"http://t.me/ShibaInuCoinSol\" --description \"\" --initial-minting 1000000000\n\nnode ./dist/index.js createtoken --name \"MAGA\" --symbol \"TRUMP\" --decimals 5 --initial-minting 1000000000 --image \"\" --website \"\" --twitter \"\" --telegram \"\" --description \"\"\n\nnode ./dist/index.js createtoken --name \"bellgetes\" --symbol \"getes\" --decimals 5 --initial-minting 1000000000 --image \"https://bellgetes.xyz/images/DDDTT.jpg\" --website \"https://bellgetes.xyz/\" --twitter \"\" --telegram \"\" --description \"\"  \n\nnode ./dist/index.js createtoken --name \"waranboofut\" --symbol \"boofut\" --decimals 5 --initial-minting 1000000000 --image \"https://waranboofut.xyz/images/1.jpg\" --website \"https://waranboofut.xyz/\" --twitter \"\" --telegram \"\" --description \"\"  \n\nnode ./dist/index.js createtoken --name \"dagecoin\" --symbol \"dagecoin\" --decimals 5 --initial-minting 1000000000 --image \"https://dagecoin.xyz/assets/images/logo-coin.PNG\" --website \"https://dagecoin.xyz/\" --twitter \"\" --telegram \"\" --description \"\"  \n\nnode ./dist/index.js createtoken --name \"keawnu weeves\" --symbol \"neow\" --decimals 5 --initial-minting 1000000000 --image \"https://neow.fun/assets/images/logo-coin.PNG\" --website \"https://neow.fun/\" --twitter \"\" --telegram \"\" --description \"\"  \n\n```\n```\nexport NODE_PATH=./dist \u0026\u0026 node ./dist/index.js createmarket --order-size 0.01 --price-tick 0.1 --quote \"So11111111111111111111111111111111111111112\" --base \"\"\n```\n```\nexport NODE_PATH=./dist \u0026\u0026 node ./dist/index.js revokeauth --token \"E89PFXFkxAyXhdocLszAxVS35jERhMqDyDjsZiFsbgi\"\n```\n```\nexport NODE_PATH=./dist \u0026\u0026 node ./dist/index.js createpool --baseAmount 850000000 --quoteAmount 20 --market \"\"\n```\n```\nexport NODE_PATH=./dist \u0026\u0026 node ./dist/index.js removeliquidity --amount -1 --pool \"\"\n```\n```\nexport NODE_PATH=./dist \u0026\u0026 node ./dist/index.js unwrap\n```\n\n### RUN ALLS\n```\nnode ./dist/index.js run --name \"dogwifcrown\" --symbol \"WIC\" --decimals 5 --initial-minting 1000000000 --image \"https://pbs.twimg.com/media/GHtutvaWMAAhujZ?format=jpg\u0026name=small\" --website \"\" --twitter \"https://twitter.com/blknoiz06/status/1764125414815842519\" --telegram \"\" --description \"\" --order-size 0.01 --price-tick 0.1 --baseAmount 850000000 --quoteAmount 8\n\nnode ./dist/index.js run --name \"SideEyeDog\" --symbol \"SIDEEYEDOG\" --decimals 5 --initial-minting 1000000000 --image \"https://i.kym-cdn.com/photos/images/newsfeed/002/418/775/f5d.jpeg\" --website https://knowyourmeme.com\"/memes/side-eye-dog\" --twitter \"\" --telegram \"\" --description \"\" --order-size 0.01 --price-tick 0.1 --baseAmount 850000000 --quoteAmount 8\n\nnode ./dist/index.js run --name \"bellgetes\" --symbol \"getes\" --decimals 5 --initial-minting 1000000000 --image \"https://bellgetes.xyz/images/DDDTT.jpg\" --website \"https://bellgetes.xyz/\" --twitter \"https://twitter.com/BellGetesSol\" --telegram \"\" --description \"\" --order-size 0.01 --price-tick 0.1 --baseAmount 850000000 --quoteAmount 8\n\nnode ./dist/index.js run --name \"waranboofut\" --symbol \"boofut\" --decimals 5 --initial-minting 1000000000 --image \"https://waranboofut.xyz/images/1.jpg\" --website \"https://waranboofut.xyz/\" --twitter \"https://x.com/waranbufoofut?s=21\u0026t=U_NbbXAlEnKwM5KHqJxJ9w\" --telegram \"https://t.me/waranboofut\" --description \"\" --order-size 0.01 --price-tick 0.1 --baseAmount 850000000 --quoteAmount 8\n\nnode ./dist/index.js run --name \"dagecoin\" --symbol \"https://neow.fun/\" --decimals 5 --initial-minting 1000000000 --image \"https://dagecoin.xyz/assets/images/logo-coin.PNG\" --website \"https://dagecoin.xyz/\" --twitter \"https://twitter.com/DageCoinOnSol\" --telegram \"https://t.me/dagecoinchat\" --description \"\" --order-size 0.01 --price-tick 0.1 --baseAmount 850000000 --quoteAmount 8\n\nnode ./dist/index.js run --name \"dagecoin\" --symbol \"dagecoin\" --decimals 5 --initial-minting 1000000000 --image \"https://dagecoin.xyz/assets/images/logo-coin.PNG\" --website \"https://dagecoin.xyz/\" --twitter \"https://twitter.com/DageCoinOnSol\" --telegram \"https://t.me/dagecoinchat\" --description \"\" --order-size 0.01 --price-tick 0.1 --baseAmount 850000000 --quoteAmount 8\n\nnode ./dist/index.js run --name \"dagecoin\" --symbol \"dagecoin\" --decimals 5 --initial-minting 1000000000 --image \"https://dagecoin.xyz/assets/images/logo-coin.PNG\" --website \"https://dagecoin.xyz/\" --twitter \"https://twitter.com/DageCoinOnSol\" --telegram \"https://t.me/dagecoinchat\" --description \"\" --order-size 0.01 --price-tick 0.1 --baseAmount 850000000 --quoteAmount 8\n\nnode ./dist/index.js run --name \"dagecoin\" --symbol \"dagecoin\" --decimals 5 --initial-minting 1000000000 --image \"https://dagecoin.xyz/assets/images/logo-coin.PNG\" --website \"https://dagecoin.xyz/\" --twitter \"https://twitter.com/DageCoinOnSol\" --telegram \"https://t.me/dagecoinchat\" --description \"\" --order-size 0.01 --price-tick 0.1 --baseAmount 850000000 --quoteAmount 8\n\nnode ./dist/index.js run --name \"dagecoin\" --symbol \"dagecoin\" --decimals 5 --initial-minting 1000000000 --image \"https://dagecoin.xyz/assets/images/logo-coin.PNG\" --website \"https://dagecoin.xyz/\" --twitter \"https://twitter.com/DageCoinOnSol\" --telegram \"https://t.me/dagecoinchat\" --description \"\" --order-size 0.01 --price-tick 0.1 --baseAmount 850000000 --quoteAmount 8\n\nhttps://www.solanabag.net/ BAG BAG\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F0xapp123%2FShitcoin-Raydium-bot","html_url":"https://awesome.ecosyste.ms/projects/github.com%2F0xapp123%2FShitcoin-Raydium-bot","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F0xapp123%2FShitcoin-Raydium-bot/lists"}