{"id":28154036,"url":"https://github.com/spongejump/trade-butler-bot","last_synced_at":"2025-05-15T06:12:43.936Z","repository":{"id":282613046,"uuid":"865692272","full_name":"spongejump/trade-butler-bot","owner":"spongejump","description":null,"archived":false,"fork":false,"pushed_at":"2024-10-01T02:14:25.000Z","size":35,"stargazers_count":0,"open_issues_count":0,"forks_count":1,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-03-20T08:41:23.395Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"language":"JavaScript","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/spongejump.png","metadata":{"files":{"readme":"README","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-10-01T00:50:34.000Z","updated_at":"2024-10-01T02:14:29.000Z","dependencies_parsed_at":"2025-03-15T19:38:48.679Z","dependency_job_id":"6bb09e2d-57af-4ec9-90fa-9393cca8bca0","html_url":"https://github.com/spongejump/trade-butler-bot","commit_stats":null,"previous_names":["spongepump/trade-butler-bot","spongejump/trade-butler-bot"],"tags_count":0,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/spongejump%2Ftrade-butler-bot","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/spongejump%2Ftrade-butler-bot/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/spongejump%2Ftrade-butler-bot/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/spongejump%2Ftrade-butler-bot/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/spongejump","download_url":"https://codeload.github.com/spongejump/trade-butler-bot/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254283286,"owners_count":22045141,"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":[],"created_at":"2025-05-15T06:12:43.166Z","updated_at":"2025-05-15T06:12:43.915Z","avatar_url":"https://github.com/spongejump.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Trade Butler\n\nWelcome to Trade Butler! It is a local limit trading bot intended\nfor use with uniswap. Other DEXs can be used if their contracts are\nsimilar by switching out the contract address in processor.js\n\n## You MUST hold in your wallet at least 1 TBB Token to use!\n\nPricing tiers/limits are as follows:\n\n* 1 TBB (or 0.4 LP) \n\n   -- 2 max tokens simultaneously \n   -- Buy \u0026 sell limit prices `buyLimitPrice` and `sellLimitPrice`\n   -- Stop losses using `stopLossPrice`\n   -- Moonbag (keep %) - `moonbagToKeep`\n   -- Never Sell X Tokens - `neverSellXTokens`\n   -- Max Gas Per Token - `maxGasPriceGwei`\n   -- Slippage Settings in BIPS - `slippageTolerance`\n   -- Average scans together - `averageXScans`\n   -- Don't Buy/Sell Until Full Scans - `dontBuySellUntilFullScans`\n   -- Support Fee On Transfer of Tokens (burn etc) - `supportFeeOnTransferTokens`\n   -- Keep Trying TXs if they fail - `keepTryingTXifFail`\n   -- Token Pre Approvals - `needTokenApproval`\n\n* 4 TBB (or 1.5 LP)\n\n   -- 10 max tokens simultaneously \n   -- ERC20 to ERC20 trading - `inputTokenAddress`\n   -- Trailing stop and trailing buy features - `trailingBuyPct` and `trailingSellPct`\n   -- Maximum Price Impact - `maxPriceImpact`\n\n* 8 TBB (or 3.0 LP)\n\n   -- unlimited scans\n\n## TBB - Trade Butler Bot\n** TBB Token Address - 0x4a7adcb083fe5e3d6b58edc3d260e2e61668e7a2 **\n** LP Token Address - 0x4f839e991bb8c66b7066e2d4d753f47613f4d558 **\n\n1. wallet-keys.js - add your private key and wallet address.\n   Note that ONLY buysell.js uses these keys for the standard\n   uniswap contracts and token spending approval.\n\n2. setup.js - get an Infura and/or Alchemy API key, both aren't\n   necessary but it's a good idea to have at least one for rate\n   limits. You can setup most other configuration variables here.\n\n3. index.js - add tokens you want to scan here. Make sure your wallet\n   is either already approved to spend on uniswap, or you turn variable\n   needTokenApproval to true. Make sure to turn it to false after\n   allowing one round of approval or else the script will approve each\n   time. If uniswap router cannot spend your tokens, you will fail tx\n   when trying to sell!\n\n4. Install Node.JS for your OS: https://nodejs.org/en/download/\n   For Windows users, you may find it most convenient to just download the correct version right away:\n   14.15.1 - https://nodejs.org/dist/v14.15.1/node-v14.15.1-x64.msi\n\n5. Make sure your Node.js is the correct version (using npm): 14.15.1\n   `npm cache clean -f`\n   `npm install -g n`\n   `n 14.15.1`\n\n   (not needed on windows if you downloaded exact version)\n\n6. Extract files into a folder and open a terminal or cmd.exe\n   Navigate to your folder with:\n   `cd /path/to/bot`\n   OR\n   `cd C:\\Files\\Path\\to\\bot`\n\n7. Run the following commands to install modules, \n   you only need to run this command once: \n   `npm install`\n\n7. To start running the bot:\n   `npm start`\n\n8. Profit!\n\nLatest MD5 Hash for processor.jsc - f4364b5a5cdad2dc27503a200f225f91","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fspongejump%2Ftrade-butler-bot","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fspongejump%2Ftrade-butler-bot","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fspongejump%2Ftrade-butler-bot/lists"}