{"id":21384694,"url":"https://github.com/0xdaebak/honeypotchecker","last_synced_at":"2025-07-15T12:03:59.918Z","repository":{"id":144655636,"uuid":"536596993","full_name":"0xdaebak/HoneyPotChecker","owner":"0xdaebak","description":"⚱️ 💊 🔐  #1st Time On Internet - Check If Token is honeypot or not 🥇","archived":false,"fork":false,"pushed_at":"2022-10-12T04:29:38.000Z","size":16,"stargazers_count":41,"open_issues_count":0,"forks_count":8,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-07-13T14:41:22.116Z","etag":null,"topics":["binance","binance-smart-chain","bnb-chain","bsc","honeypot","honeypot-detector","honeypots","solidity"],"latest_commit_sha":null,"homepage":"","language":"Solidity","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/0xdaebak.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":"2022-09-14T13:42:59.000Z","updated_at":"2025-07-04T09:23:06.000Z","dependencies_parsed_at":null,"dependency_job_id":"f7723c7a-329e-49fc-aaaa-6f1aefbd1526","html_url":"https://github.com/0xdaebak/HoneyPotChecker","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/0xdaebak/HoneyPotChecker","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0xdaebak%2FHoneyPotChecker","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0xdaebak%2FHoneyPotChecker/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0xdaebak%2FHoneyPotChecker/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0xdaebak%2FHoneyPotChecker/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/0xdaebak","download_url":"https://codeload.github.com/0xdaebak/HoneyPotChecker/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/0xdaebak%2FHoneyPotChecker/sbom","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":265434601,"owners_count":23764549,"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":["binance","binance-smart-chain","bnb-chain","bsc","honeypot","honeypot-detector","honeypots","solidity"],"created_at":"2024-11-22T11:42:42.535Z","updated_at":"2025-07-15T12:03:59.855Z","avatar_url":"https://github.com/0xdaebak.png","language":"Solidity","funding_links":[],"categories":[],"sub_categories":[],"readme":"\n# 🩺 HoneyPotChecker\n\n\n![](https://img.shields.io/badge/solidity-v1.0.0-green?style=for-the-badge) ![](https://img.shields.io/badge/0xdaebak-alphaLeaks-red?style=for-the-badge)\n\n\n#🥇1st Time On Internet\n\nComplete Open Source HoneyPot Checker For BSC\n\nSupports WBNB,BUSD,USDT\n\nContract Address : 0x77Dd873ad58418c40974016EbB792D2c20A1ABCA\n\nIt is a smart contract on bsc. You can check if token contract is honeypot or not.\n\n\n## HOW TO USE\n- Always use callStatic or eth_call to perform the operation because if you don't then you might loose some fund because we want to simulate the buy and sell so static call will just simulate the transaction and return the result without changing any state.\n- Make sure you have some funds in your wallet to perform the operation.\n- Use try \u0026 catch to make sure you won't mess your project runtime.\n\n```javascript\nROUTER = DEX ROUTER ADDRESS\nBASE = EX. WBNB, USDT, BUSD\nTOKEN = TOKEN CONTRACT ADDRESS\n\n _.callStatic.isHoneyPot(ROUTER,BASE,TOKEN, {\n        value: AMOUNT\n});\n\nRESPONSE =\n[\n  false,\n  '...',\n  '...',\n  BigNumber { _hex: '0x07c5afd2', _isBigNumber: true },\n  BigNumber { _hex: '0x07129d70', _isBigNumber: true },\n  BigNumber { _hex: '0x0c9195e6e59aa589', _isBigNumber: true },\n  BigNumber { _hex: '0x0b42767a8d31f2ec', _isBigNumber: true },\n  BigNumber { _hex: '0x0234fe', _isBigNumber: true },\n  BigNumber { _hex: '0x067d50', _isBigNumber: true },\n  isHoneyPot: false,\n  base: '...',\n  token: '...',\n  estimatedBuy: BigNumber { _hex: '0x07c5afd2', _isBigNumber: true },\n  buyAmount: BigNumber { _hex: '0x07129d70', _isBigNumber: true },\n  estimatedSell: BigNumber { _hex: '0x0c9195e6e59aa589', _isBigNumber: true },\n  sellAmount: BigNumber { _hex: '0x0b42767a8d31f2ec', _isBigNumber: true },\n  buyGas: BigNumber { _hex: '0x0234fe', _isBigNumber: true },\n  sellGas: BigNumber { _hex: '0x067d50', _isBigNumber: true }\n]\n\nlet buyTax = Math.round(((parseInt(RESPONSE.estimatedBuy) - parseInt(RESPONSE.buyAmount)) / parseInt(RESPONSE.estimatedBuy)) * 100);\nlet sellTax = Math.round(((parseInt(RESPONSE.estimatedSell) - parseInt(RESPONSE.sellAmount)) / parseInt(RESPONSE.estimatedSell)) * 100);\n        \n//RESPONSE BREAKDOWN \nestimatedBuy = estimated amount of token bought\nbuyAmount = actual amount of token bought\nestimatedSell = estimated amount of token sold\nsellAmount = actual amount of token sold\nbuyGas = gas required to buy the token\nsellGas = gas required to sell the token\n\n```\n\n\n\n\n\n## Warning\n\n- ALWAYS use callstatic or eth_call to perform the operation.\n- Try this at your own risk. I'm not responsible if you lost your funds. This contract checks only the current state.\n- Nothing is perfect. This repo is constantly under development.\n- Contract does not hold any token or balance.\n- I'm not an expert. I'm always learning and improving myself so if you find any bugs, problems or issues then feel free to contact me.\n\n## Authors\n\n- [@0xdaebak](https://www.github.com/0xdaebak)\n\n\n## License\n\n![MIT License](https://img.shields.io/github/license/0xdaebak/solselector?style=for-the-badge)\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F0xdaebak%2Fhoneypotchecker","html_url":"https://awesome.ecosyste.ms/projects/github.com%2F0xdaebak%2Fhoneypotchecker","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2F0xdaebak%2Fhoneypotchecker/lists"}