Our team has developed a multi-chain trading platform with unrivaled features that will level the playing field for common investors in the DeFi market.
In the frequently cutthroat economy of Decentralized Finance, the ordinary investor faces various difficulties. These include a lack of early information about new projects, insufficient data on the safety of investing in tokens at an early stage, the inability to monitor investments 24 hours a day, seven days a week to protect against rug pulls, and a lack of investment tools that successfully compete with professional snipers and crypto whales. We aim to break down these obstacles by providing a suite of integrated trading services to our users, allowing them to make faster, safer, and smarter trades, increasing their chances of profit.
We are an experienced team of professionals dedicated to changing the way DeFi is done, undoing the damage brought across diverse blockchain ecosystems by dishonest developers, and restoring investor confidence in decentralized finance.
The envisioned trading platform is being built to provide cross-chain services, with the goal of leveling the playing field for all decentralized finance players. It has features that protect investors and equip them to trade more intelligently, with greater market awareness.
Because of the fast loss of trust in the DeFi space, we decided to create a platform that would allow all investors to use the same investment tools.
TradersClub.App will provide access to the following tools:
1. The BULLET SNIPER – for a fast and safe entry or exit
2. The Wallet Guardian – keep your assets safe from rug pulls of any kind
3. Trading Platform – trade with lowest fees and have access to buy/sell orders(just like trading on a CEX)
4. Telegram bot for scraping launches
5. Copy trades – similar to CEXes or other trading platforms
6. Untraceable trades – for those that want to make sure bots can’t copy
7. Alerts
8. AnonFinance – loose trace of a wallet’s funds
9. Launchpad – fair or stealth
Reentrancy in Bullet._transfer(address,address,uint256) (#1117-1200):
External calls:
- swapTokens(contractTokenBalance) (#1196)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1240-1246)
External calls sending eth:
- swapTokens(contractTokenBalance) (#1196)
- recipient.transfer(amount) (#1228)
State variables written after the call(s):
- super._transfer(sender,receiver,amount - taxAmount) (#1199)
- _balances[sender] = senderBalance - amount (#350)
- _balances[recipient] += amount (#352)
Apply the check-effects-interactions pattern.
Additional information: link
Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains
Contract ownership is not renounced (belongs to a wallet)
name() should be declared external:
- ERC20.name() (#127-129)
symbol() should be declared external:
- ERC20.symbol() (#135-137)
decimals() should be declared external:
- ERC20.decimals() (#152-154)
totalSupply() should be declared external:
- ERC20.totalSupply() (#159-161)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#184-192)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (#197-205)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#217-225)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#243-262)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#276-287)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#303-318)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#499-502)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#504-511)
getMaxWalletExempt(address) should be declared external:
- Bullet.getMaxWalletExempt(address) (#1051-1053)
isSniper(address) should be declared external:
- Bullet.isSniper(address) (#1090-1092)
getMarketing() should be declared external:
- Bullet.getMarketing() (#1094-1096)
getDev() should be declared external:
- Bullet.getDev() (#1098-1100)
getRewards() should be declared external:
- Bullet.getRewards() (#1102-1104)
manage_Snipers(address[],bool) should be declared external:
- Bullet.manage_Snipers(address[],bool) (#1106-1115)
setSwapThreshold(uint256) should be declared external:
- Bullet.setSwapThreshold(uint256) (#1251-1253)
manualSwap() should be declared external:
- Bullet.manualSwap() (#1260-1262)
emergencyWithdrawTokens(address) should be declared external:
- Bullet.emergencyWithdrawTokens(address) (#1264-1266)
Use the external attribute for functions never called from the contract.
Additional information: link
Reentrancy in Bullet.constructor(address,address,address,address) (#913-959):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#951-952)
State variables written after the call(s):
- _isMaxWalletExempt[_uniswapV2Pair] = true (#958)
- liquidityPool[_uniswapV2Pair] = true (#957)
- uniswapV2Pair = _uniswapV2Pair (#955)
- uniswapV2Router = _uniswapV2Router (#954)
Apply the check-effects-interactions pattern.
Additional information: link
Bullet.slitherConstructorVariables() (#864-1276) uses literals with too many digits:
- _tTotal = 1000000000 * 10 ** _decimals (#893)
Bullet.slitherConstructorVariables() (#864-1276) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#901)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
Different versions of Solidity is used:
- Version used: ['^0.8.0', '^0.8.4']
- ^0.8.4 (#1)
- ^0.8.0 (#46)
- ^0.8.0 (#73)
Use one Solidity version.
Additional information: link
Bullet.manage_Snipers(address[],bool).i (#1110) is a local variable never initialized
Initialize all the variables. If a variable is meant to be initialized to zero, explicitly set it to zero to improve code readability.
Additional information: link
Bullet.setMaxWalletPercent_base1000(uint256) (#1040-1045) performs a multiplication on the result of a division:
-_maxWalletToken = (_tTotal / 1000) * maxWallPercent_base1000 (#1044)
Bullet.setMaxSellTXPercent_base1000(uint256) (#1055-1058) performs a multiplication on the result of a division:
-maxSellTX = (_tTotal / 1000) * maxSellPercent_base1000 (#1057)
Bullet.setSwapThreshold(uint256) (#1251-1253) performs a multiplication on the result of a division:
-swapThreshold = (_tTotal / 10000) * percentBase10000 (#1252)
Bullet.slitherConstructorVariables() (#864-1276) performs a multiplication on the result of a division:
-_maxWalletToken = (_tTotal / 1000) * 50 (#894)
Bullet.slitherConstructorVariables() (#864-1276) performs a multiplication on the result of a division:
-maxSellTX = (_tTotal / 1000) * 1 (#895)
Bullet.slitherConstructorVariables() (#864-1276) performs a multiplication on the result of a division:
-swapThreshold = (_tTotal / 10000) * 10 (#897)
Consider ordering multiplication before division.
Additional information: link
Bullet.setMaxWalletPercent_base1000(uint256) (#1040-1045) should emit an event for:
- _maxWalletToken = (_tTotal / 1000) * maxWallPercent_base1000 (#1044)
Bullet.setMaxSellTXPercent_base1000(uint256) (#1055-1058) should emit an event for:
- maxSellTX = (_tTotal / 1000) * maxSellPercent_base1000 (#1057)
Bullet.openTrading(bool,uint256) (#1082-1088) should emit an event for:
- deadBlocks = _deadBlocks (#1086)
Bullet.setSwapThreshold(uint256) (#1251-1253) should emit an event for:
- swapThreshold = (_tTotal / 10000) * percentBase10000 (#1252)
Emit an event for critical parameter changes.
Additional information: link
Redundant expression "this (#9)" inContext (#3-12)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Bullet.constructor(address,address,address,address)._marketingWallet (#913) lacks a zero-check on :
- marketingWallet = _marketingWallet (#923)
Bullet.constructor(address,address,address,address)._devWallet (#913) lacks a zero-check on :
- devWallet = _devWallet (#924)
Bullet.constructor(address,address,address,address)._rewardsWallet (#913) lacks a zero-check on :
- rewardsWallet = _rewardsWallet (#925)
Bullet.constructor(address,address,address,address)._uniswapV2Pair (#951-952) lacks a zero-check on :
- uniswapV2Pair = _uniswapV2Pair (#955)
Bullet.setMarketing(address)._marketingWallet (#1061) lacks a zero-check on :
- marketingWallet = address(_marketingWallet) (#1062)
Bullet.setDev(address)._devWallet (#1068) lacks a zero-check on :
- devWallet = address(_devWallet) (#1069)
Bullet.setRewards(address)._rewardsWallet (#1075) lacks a zero-check on :
- rewardsWallet = address(_rewardsWallet) (#1076)
Check that the address is not zero.
Additional information: link
Bullet._transfer(address,address,uint256) (#1117-1200) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(lastTrade[sender] < (block.timestamp - tradeCooldown),string(No consecutive sells allowed. Please wait.)) (#1164-1167)
Avoid relying on block.timestamp.
Additional information: link
Ownable._previousOwner (#476) is never used in Bullet (#864-1276)
Ownable._lockTime (#477) is never used in Bullet (#864-1276)
Remove unused state variables.
Additional information: link
Reentrancy in Bullet._transfer(address,address,uint256) (#1117-1200):
External calls:
- swapTokens(contractTokenBalance) (#1196)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1240-1246)
External calls sending eth:
- swapTokens(contractTokenBalance) (#1196)
- recipient.transfer(amount) (#1228)
Event emitted after the call(s):
- Transfer(sender,recipient,amount) (#354)
- super._transfer(sender,receiver,amount - taxAmount) (#1199)
Reentrancy in Bullet.swapTokensForEth(uint256) (#1231-1249):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1240-1246)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#1248)
Apply the check-effects-interactions pattern.
Additional information: link
Bullet._transfer(address,address,uint256) (#1117-1200) compares to a boolean constant:
-liquidityPool[sender] == true (#1139)
Bullet._transfer(address,address,uint256) (#1117-1200) compares to a boolean constant:
-liquidityPool[receiver] == false (#1145)
Bullet._transfer(address,address,uint256) (#1117-1200) compares to a boolean constant:
-liquidityPool[receiver] == true (#1152)
Remove the equality to the boolean constant.
Additional information: link
Context._msgData() (#8-11) is never used and should be removed
ERC20._burn(address,uint256) (#391-406) is never used and should be removed
Remove unused functions.
Additional information: link
Bullet._tTotal (#893) is set pre-construction with a non-constant function or state variable:
- 1000000000 * 10 ** _decimals
Bullet._maxWalletToken (#894) is set pre-construction with a non-constant function or state variable:
- (_tTotal / 1000) * 50
Bullet.maxSellTX (#895) is set pre-construction with a non-constant function or state variable:
- (_tTotal / 1000) * 1
Bullet.swapThreshold (#897) is set pre-construction with a non-constant function or state variable:
- (_tTotal / 10000) * 10
Remove any initialization of state variables via non-constant state variables or function calls. If variables must be set upon contract deployment, locate initialization in the constructor instead.
Additional information: link
Pragma version^0.8.0 (#46) allows old versions
Pragma version^0.8.0 (#73) allows old versions
solc-0.8.10 is not recommended for deployment
Deploy with any of the following Solidity versions: 0.5.16 - 0.5.17, 0.6.11 - 0.6.12, 0.7.5 - 0.7.6 Use a simple pragma version that allows any of these versions. Consider using the latest version of Solidity for testing.
Additional information: link
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#581) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#583) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#613) is not in mixedCase
Function IUniswapV2Router01.WETH() (#659) is not in mixedCase
Event BulletchangeRatios(uint256,uint256,uint256) (#903) is not in CapWords
Event BulletchangeTax(uint8,uint8,uint8) (#904) is not in CapWords
Event BulletchangeCooldown(uint8) (#905) is not in CapWords
Event BulletchangeLiquidityPoolStatus(address,bool) (#906) is not in CapWords
Event BulletchangeWhitelistTax(address,bool) (#907) is not in CapWords
Event BulletchangeMarketing(address) (#908) is not in CapWords
Event BulletchangeDev(address) (#909) is not in CapWords
Event BulletchangeRewards(address) (#910) is not in CapWords
Parameter Bullet.setTaxes(uint8,uint8,uint8)._sellTax (#962) is not in mixedCase
Parameter Bullet.setTaxes(uint8,uint8,uint8)._buyTax (#963) is not in mixedCase
Parameter Bullet.setTaxes(uint8,uint8,uint8)._transferTax (#964) is not in mixedCase
Parameter Bullet.setRatios(uint256,uint256,uint256)._marketingRatio (#989) is not in mixedCase
Parameter Bullet.setRatios(uint256,uint256,uint256)._devRatio (#990) is not in mixedCase
Parameter Bullet.setRatios(uint256,uint256,uint256)._rewardsRatio (#991) is not in mixedCase
Parameter Bullet.setCooldownForTrades(uint8)._tradeCooldown (#1013) is not in mixedCase
Parameter Bullet.setLiquidityPoolStatus(address,bool)._lpAddress (#1018) is not in mixedCase
Parameter Bullet.setLiquidityPoolStatus(address,bool)._status (#1018) is not in mixedCase
Parameter Bullet.setWhitelist(address,bool)._address (#1027) is not in mixedCase
Parameter Bullet.setWhitelist(address,bool)._status (#1027) is not in mixedCase
Function Bullet.setMaxWalletPercent_base1000(uint256) (#1040-1045) is not in mixedCase
Parameter Bullet.setMaxWalletPercent_base1000(uint256).maxWallPercent_base1000 (#1040) is not in mixedCase
Parameter Bullet.setMaxWalletExempt(address)._addr (#1047) is not in mixedCase
Parameter Bullet.getMaxWalletExempt(address)._addr (#1051) is not in mixedCase
Function Bullet.setMaxSellTXPercent_base1000(uint256) (#1055-1058) is not in mixedCase
Parameter Bullet.setMaxSellTXPercent_base1000(uint256).maxSellPercent_base1000 (#1055) is not in mixedCase
Parameter Bullet.setMarketing(address)._marketingWallet (#1061) is not in mixedCase
Parameter Bullet.setDev(address)._devWallet (#1068) is not in mixedCase
Parameter Bullet.setRewards(address)._rewardsWallet (#1075) is not in mixedCase
Parameter Bullet.openTrading(bool,uint256)._status (#1082) is not in mixedCase
Parameter Bullet.openTrading(bool,uint256)._deadBlocks (#1082) is not in mixedCase
Function Bullet.manage_Snipers(address[],bool) (#1106-1115) is not in mixedCase
Variable Bullet._maxWalletToken (#894) is not in mixedCase
Variable Bullet.DEAD (#901) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Reentrancy in Bullet._transfer(address,address,uint256) (#1117-1200):
External calls:
- swapTokens(contractTokenBalance) (#1196)
- recipient.transfer(amount) (#1228)
State variables written after the call(s):
- super._transfer(sender,receiver,amount - taxAmount) (#1199)
- _balances[sender] = senderBalance - amount (#350)
- _balances[recipient] += amount (#352)
Event emitted after the call(s):
- Transfer(sender,recipient,amount) (#354)
- super._transfer(sender,receiver,amount - taxAmount) (#1199)
Apply the check-effects-interactions pattern.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#664) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#665)
Variable Bullet.setMaxSellTXPercent_base1000(uint256).maxSellPercent_base1000 (#1055) is too similar to Bullet.setMaxWalletPercent_base1000(uint256).maxWallPercent_base1000 (#1040)
Prevent variables from having similar names.
Additional information: link
Bullet.DEAD (#901) should be constant
Bullet._decimals (#888) should be constant
Ownable._lockTime (#477) should be constant
Ownable._previousOwner (#476) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
Contract has 10% buy tax and 11% sell tax.
Taxes are suspiciously high (over 10%) and contract ownership is not renounced. Token has a high risk of becoming a honeypot.
Number of Binance Smart Chain (BSC) token holders is low.
Token is deployed only at one blockchain
Token has only one trading pair
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
Unable to find KYC or doxxing proof
Unable to find audit link on the website
Token is not listed at Mobula.Finance
Additional information: link
Unable to find token on CoinHunt
Additional information: link
Young tokens have high risks of scam / price dump / death
Young tokens have high risks of scam / price dump / death
Young tokens have high risks of scam / price dump / death
Token has no active CoinMarketCap listing / rank
Young tokens have high risks of price dump / death
Young tokens have high risks of price dump / death
Token has relatively low CoinGecko rank
Twitter account has relatively few followers
Unable to find Discord account