The Best Token, the first with the Multi-Stake function, is a project entirely based on the profitability of our investors, for which we have developed a platform, where free basic modules for graphical analysis (root) and advanced courses will be made available. On our platform you will be able to carry out transactions and obtain tools developed for a better performance in your decision making, thus reducing the risk and increasing the probability of a bigger gain.
In The Best Token, in addition to being able to monetize with the possible appreciation of the token due to low stock, you receive rewards from other partner tokens. Think it's over! You can even compete in sweepstakes that run live daily through our official YouTube channel.
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
DividendDistributor.distributeDividend(address) (#253-264) ignores return value by REWARD.transfer(shareholder,amount) (#259)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.
Additional information: link
TheBest.swapBack() (#489-515) sends eth to arbitrary user
Dangerous calls:
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#508)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in TheBest._transferFrom(address,address,uint256) (#413-445):
External calls:
- swapBack() (#419)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#500)
- distributor.deposit{value: amountBNBReflection}() (#507)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#508)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,developmentReceiver,block.timestamp) (#512)
- triggerAutoBuyback() (#421)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#552)
External calls sending eth:
- swapBack() (#419)
- distributor.deposit{value: amountBNBReflection}() (#507)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#508)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,developmentReceiver,block.timestamp) (#512)
- triggerAutoBuyback() (#421)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#552)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#425)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#428)
- amountReceived = takeFee(sender,recipient,amount) (#427)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#477)
- triggerAutoBuyback() (#421)
- inSwap = true (#363)
- inSwap = false (#363)
Apply the check-effects-interactions pattern.
Additional information: link
Combination 1: Reentrancy vulnerabilities + Functions that send Ether to arbitraty destination. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.
Combination 2: Unchecked transfer + Functions that send Ether to arbitraty destination. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.
Combination 3: Reentrancy vulnerabilities + Unchecked transfer vulnerability. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.
Reentrancy in DividendDistributor.setShare(address,uint256) (#198-210):
External calls:
- distributeDividend(shareholder) (#200)
- REWARD.transfer(shareholder,amount) (#259)
State variables written after the call(s):
- shares[shareholder].amount = amount (#208)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#209)
Apply the check-effects-interactions pattern.
Additional information: link
TheBest.swapBack() (#489-515) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,developmentReceiver,block.timestamp) (#512)
Ensure that all the return values of the function calls are used.
Additional information: link
TheBest.setTargetLiquidity(uint256,uint256) (#638-641) should emit an event for:
- targetLiquidity = _target (#639)
- targetLiquidityDenominator = _denominator (#640)
Emit an event for critical parameter changes.
Additional information: link
TheBest.setFeeReceivers(address,address)._marketingFeeReceiver (#628) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#630)
Check that the address is not zero.
Additional information: link
Reentrancy in TheBest.triggerManualBuyback(uint256,bool) (#525-531):
External calls:
- buyTokens(amount,DEAD) (#526)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#552)
State variables written after the call(s):
- buybackMultiplierTriggeredAt = block.timestamp (#528)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in TheBest.triggerManualBuyback(uint256,bool) (#525-531):
External calls:
- buyTokens(amount,DEAD) (#526)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#552)
Event emitted after the call(s):
- BuybackMultiplierActive(buybackMultiplierLength) (#529)
Apply the check-effects-interactions pattern.
Additional information: link
TheBest.isOverLiquified(uint256,uint256) (#673-675) uses timestamp for comparisons
Dangerous comparisons:
- getLiquidityBacking(accuracy) > target (#674)
Avoid relying on block.timestamp.
Additional information: link
DividendDistributor.process(uint256) (#228-246) has costly operations inside a loop:
- currentIndex ++ (#243)
Use a local variable to hold the loop computation result.
Additional information: link
TheBest.swapThreshold (#361) is set pre-construction with a non-constant function or state variable:
- _totalSupply / 1500
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
solc-0.8.7 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
Low level call in TheBest.swapBack() (#489-515):
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#508)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Variable TheBest._allowances (#316) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#99) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#100)
Prevent variables from having similar names.
Additional information: link
TheBest.slitherConstructorVariables() (#300-694) uses literals with too many digits:
- _totalSupply = 300000 * (10 ** _decimals) (#311)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
TheBest.ZERO (#305) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
cooldownEnabled(bool,uint8) should be declared external:
- TheBest.cooldownEnabled(bool,uint8) (#686-689)
Use the external attribute for functions never called from the contract.
Additional information: link
Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.
Number of Binance Smart Chain (BSC) token holders is low.
Token is deployed only at one blockchain
Token has only one trading pair
Unable to find PancakeSwap trading pair to compute liquidity.
Unable to find PancakeSwap trading pair to compute volume.
Unable to find PancakeSwap trading pair to compute number of swaps.
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
Unable to find token on CoinGecko
Additional information: link
Unable to find token on CoinMarketCap
Additional information: link
Unable to find token/project description on the website or on BscScan, CoinMarketCap
Unable to find token contract audit
Unable to verify that token and website are owned by the same team (no listings + unable to find contract on website)
Unable to verify token contract address on the website
Unable to find audit link on the website
Unable to find whitepaper link on the website
Unable to find Telegram link on the website
Unable to find Twitter link on the website
Unable to find token on CoinHunt
Additional information: link
Unable to find code repository for the project
Young tokens have high risks of scam / price dump / death
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Young tokens have high risks of price dump / death
Twitter account link seems to be invalid
Unable to find Blog account (Reddit or Medium)
Unable to find Discord account