✅ Novel Token Mode
✅ A healthy economic model
✅ Cooperation agreement with pancakeswap
✅ Strong project development endorsement
✅ Strong technical team support
✅ Safe and reliable contract
✅ Strong reserves and marketing team
✅ Huge preheating promotion plan
✅ Mysterious promotional advertising
TOKENS.addLiquidity(uint256,uint256) (#775-788) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#780-787)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in TOKENS._transfer(address,address,uint256) (#673-722):
External calls:
- swapAndLiquify(contractTokenBalance) (#696)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#780-787)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#764-770)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#696)
- recipient.transfer(amount) (#621)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#780-787)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#699)
- finalAmount = takeFee(sender,recipient,amount) (#710)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#802)
- _balances[recipient] = _balances[recipient].add(finalAmount) (#716)
- addBot(recipient) (#707)
- _isAntiwhaleed[recipient] = true (#662)
Apply the check-effects-interactions pattern.
Additional information: link
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
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.
TOKENS.addLiquidity(uint256,uint256) (#775-788) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#780-787)
Ensure that all the return values of the function calls are used.
Additional information: link
TOKENS.allowance(address,address).owner (#506) shadows:
- Ownable.owner() (#150-152) (function)
TOKENS._approve(address,address,uint256).owner (#529) shadows:
- Ownable.owner() (#150-152) (function)
Rename the local variables that shadow another component.
Additional information: link
TOKENS.setBuyTaxes(uint256,uint256,uint256) (#554-560) should emit an event for:
- _totalTaxIfBuying = _buyLiquidityFee.add(_buyMarketingFee).add(_buyTeamFee) (#559)
TOKENS.setSellTaxes(uint256,uint256,uint256) (#562-568) should emit an event for:
- _totalTaxIfSelling = _sellLiquidityFee.add(_sellMarketingFee).add(_sellTeamFee) (#567)
TOKENS.setDistributionSettings(uint256,uint256,uint256) (#570-576) should emit an event for:
- _liquidityShare = newLiquidityShare (#571)
- _teamShare = newTeamShare (#573)
- _totalDistributionShares = _liquidityShare.add(_marketingShare).add(_teamShare) (#575)
TOKENS.setMaxTxAmount(uint256) (#578-580) should emit an event for:
- _maxTxAmount = maxTxAmount (#579)
TOKENS.setWalletLimit(uint256) (#590-592) should emit an event for:
- _walletMax = newLimit (#591)
TOKENS.setNumTokensBeforeSwap(uint256) (#594-596) should emit an event for:
- minimumTokensBeforeSwap = newLimit (#595)
TOKENS.setBotBlock(uint256) (#665-667) should emit an event for:
- botblock = num (#666)
Emit an event for critical parameter changes.
Additional information: link
TOKENS.setMarketingWalletAddress(address).newAddress (#598) lacks a zero-check on :
- marketingWalletAddress = address(newAddress) (#599)
TOKENS.setTeamWalletAddress(address).newAddress (#602) lacks a zero-check on :
- teamWalletAddress = address(newAddress) (#603)
Check that the address is not zero.
Additional information: link
Reentrancy in TOKENS.changeRouterVersion(address) (#624-641):
External calls:
- newPairAddress = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#632-633)
State variables written after the call(s):
- isMarketPair[address(uniswapPair)] = true (#640)
- isWalletLimitExempt[address(uniswapPair)] = true (#639)
- uniswapPair = newPairAddress (#636)
- uniswapV2Router = _uniswapV2Router (#637)
Reentrancy in TOKENS.constructor() (#453-484):
External calls:
- uniswapPair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#457-458)
State variables written after the call(s):
- _allowances[address(this)][address(uniswapV2Router)] = _totalSupply (#461)
- _balances[_msgSender()] = _totalSupply (#482)
- _totalDistributionShares = _liquidityShare.add(_marketingShare).add(_teamShare) (#468)
- _totalTaxIfBuying = _buyLiquidityFee.add(_buyMarketingFee).add(_buyTeamFee) (#466)
- _totalTaxIfSelling = _sellLiquidityFee.add(_sellMarketingFee).add(_sellTeamFee) (#467)
- isExcludedFromFee[owner()] = true (#463)
- isExcludedFromFee[address(this)] = true (#464)
- isMarketPair[address(uniswapPair)] = true (#477)
- isTxLimitExempt[owner()] = true (#474)
- isTxLimitExempt[address(this)] = true (#475)
- isWalletLimitExempt[owner()] = true (#470)
- isWalletLimitExempt[address(uniswapPair)] = true (#471)
- isWalletLimitExempt[address(this)] = true (#472)
- marketingWalletAddress = address(owner()) (#480)
- teamWalletAddress = address(owner()) (#479)
- uniswapV2Router = _uniswapV2Router (#460)
Reentrancy in TOKENS.swapAndLiquify(uint256) (#731-753):
External calls:
- swapTokensForEth(tokensForSwap) (#736)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#764-770)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#752)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#780-787)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#746)
- recipient.transfer(amount) (#621)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#749)
- recipient.transfer(amount) (#621)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#752)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#780-787)
State variables written after the call(s):
- addLiquidity(tokensForLP,amountBNBLiquidity) (#752)
- _allowances[owner][spender] = amount (#533)
Reentrancy in TOKENS.transferFrom(address,address,uint256) (#651-655):
External calls:
- _transfer(sender,recipient,amount) (#652)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#780-787)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#764-770)
External calls sending eth:
- _transfer(sender,recipient,amount) (#652)
- recipient.transfer(amount) (#621)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#780-787)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#653)
- _allowances[owner][spender] = amount (#533)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in TOKENS._transfer(address,address,uint256) (#673-722):
External calls:
- swapAndLiquify(contractTokenBalance) (#696)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#780-787)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#764-770)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#696)
- recipient.transfer(amount) (#621)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#780-787)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#803)
- finalAmount = takeFee(sender,recipient,amount) (#710)
- Transfer(sender,recipient,finalAmount) (#718)
Reentrancy in TOKENS.constructor() (#453-484):
External calls:
- uniswapPair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#457-458)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_totalSupply) (#483)
Reentrancy in TOKENS.swapAndLiquify(uint256) (#731-753):
External calls:
- swapTokensForEth(tokensForSwap) (#736)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#764-770)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#752)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#780-787)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#746)
- recipient.transfer(amount) (#621)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#749)
- recipient.transfer(amount) (#621)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#752)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#780-787)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#534)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#752)
Reentrancy in TOKENS.swapTokensForEth(uint256) (#755-773):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#764-770)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#772)
Reentrancy in TOKENS.transferFrom(address,address,uint256) (#651-655):
External calls:
- _transfer(sender,recipient,amount) (#652)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#780-787)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#764-770)
External calls sending eth:
- _transfer(sender,recipient,amount) (#652)
- recipient.transfer(amount) (#621)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#780-787)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#534)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#653)
Apply the check-effects-interactions pattern.
Additional information: link
Address.isContract(address) (#83-92) uses assembly
- INLINE ASM (#90)
Address._functionCallWithValue(address,bytes,uint256,string) (#119-136) uses assembly
- INLINE ASM (#128-131)
Do not use evm assembly.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#119-136) is never used and should be removed
Address.functionCall(address,bytes) (#102-104) is never used and should be removed
Address.functionCall(address,bytes,string) (#106-108) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#110-112) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#114-117) is never used and should be removed
Address.isContract(address) (#83-92) is never used and should be removed
Address.sendValue(address,uint256) (#94-100) is never used and should be removed
Context._msgData() (#10-13) is never used and should be removed
SafeMath.mod(uint256,uint256) (#71-73) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#75-78) is never used and should be removed
Remove unused functions.
Additional information: link
TOKENS._totalSupply (#416) is set pre-construction with a non-constant function or state variable:
- 10 * 10 ** 5 * 10 ** _decimals
TOKENS._maxTxAmount (#417) is set pre-construction with a non-constant function or state variable:
- 10 * 10 ** 5 * 10 ** _decimals
TOKENS._walletMax (#418) is set pre-construction with a non-constant function or state variable:
- 10 * 10 ** 5 * 10 ** _decimals
TOKENS.minimumTokensBeforeSwap (#419) is set pre-construction with a non-constant function or state variable:
- 10 * 10 ** _decimals
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
Low level call in Address.sendValue(address,uint256) (#94-100):
- (success) = recipient.call{value: amount}() (#98)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#119-136):
- (success,returndata) = target.call{value: weiValue}(data) (#122)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#206) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#207) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#223) is not in mixedCase
Function IUniswapV2Router01.WETH() (#242) is not in mixedCase
Function TOKENS.Launch() (#537-540) is not in mixedCase
Parameter TOKENS.setSwapAndLiquifyEnabled(bool)._enabled (#606) is not in mixedCase
Variable TOKENS._balances (#391) is not in mixedCase
Variable TOKENS._buyLiquidityFee (#400) is not in mixedCase
Variable TOKENS._buyMarketingFee (#401) is not in mixedCase
Variable TOKENS._buyTeamFee (#402) is not in mixedCase
Variable TOKENS._sellLiquidityFee (#404) is not in mixedCase
Variable TOKENS._sellMarketingFee (#405) is not in mixedCase
Variable TOKENS._sellTeamFee (#406) is not in mixedCase
Variable TOKENS._liquidityShare (#408) is not in mixedCase
Variable TOKENS._marketingShare (#409) is not in mixedCase
Variable TOKENS._teamShare (#410) is not in mixedCase
Variable TOKENS._totalTaxIfBuying (#412) is not in mixedCase
Variable TOKENS._totalTaxIfSelling (#413) is not in mixedCase
Variable TOKENS._totalDistributionShares (#414) is not in mixedCase
Variable TOKENS._maxTxAmount (#417) is not in mixedCase
Variable TOKENS._walletMax (#418) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#11)" inContext (#4-14)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Reentrancy in TOKENS._transfer(address,address,uint256) (#673-722):
External calls:
- swapAndLiquify(contractTokenBalance) (#696)
- recipient.transfer(amount) (#621)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#696)
- recipient.transfer(amount) (#621)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#780-787)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#699)
- finalAmount = takeFee(sender,recipient,amount) (#710)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#802)
- _balances[recipient] = _balances[recipient].add(finalAmount) (#716)
- addBot(recipient) (#707)
- _isAntiwhaleed[recipient] = true (#662)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#803)
- finalAmount = takeFee(sender,recipient,amount) (#710)
- Transfer(sender,recipient,finalAmount) (#718)
Reentrancy in TOKENS.swapAndLiquify(uint256) (#731-753):
External calls:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#746)
- recipient.transfer(amount) (#621)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#749)
- recipient.transfer(amount) (#621)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#746)
- recipient.transfer(amount) (#621)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#749)
- recipient.transfer(amount) (#621)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#752)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#780-787)
State variables written after the call(s):
- addLiquidity(tokensForLP,amountBNBLiquidity) (#752)
- _allowances[owner][spender] = amount (#533)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#534)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#752)
Reentrancy in TOKENS.transferFrom(address,address,uint256) (#651-655):
External calls:
- _transfer(sender,recipient,amount) (#652)
- recipient.transfer(amount) (#621)
External calls sending eth:
- _transfer(sender,recipient,amount) (#652)
- recipient.transfer(amount) (#621)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#780-787)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#653)
- _allowances[owner][spender] = amount (#533)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#534)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#653)
Apply the check-effects-interactions pattern.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#247) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#248)
Prevent variables from having similar names.
Additional information: link
Ownable.waiveOwnership() (#159-162) uses literals with too many digits:
- OwnershipTransferred(_owner,address(0x000000000000000000000000000000000000dEaD)) (#160)
Ownable.waiveOwnership() (#159-162) uses literals with too many digits:
- _owner = address(0x000000000000000000000000000000000000dEaD) (#161)
TOKENS.slitherConstructorVariables() (#375-810) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#389)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
TOKENS._decimals (#382) should be constant
TOKENS._name (#380) should be constant
TOKENS._symbol (#381) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
waiveOwnership() should be declared external:
- Ownable.waiveOwnership() (#159-162)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#164-168)
getTime() should be declared external:
- Ownable.getTime() (#170-172)
name() should be declared external:
- TOKENS.name() (#486-488)
symbol() should be declared external:
- TOKENS.symbol() (#490-492)
decimals() should be declared external:
- TOKENS.decimals() (#494-496)
totalSupply() should be declared external:
- TOKENS.totalSupply() (#498-500)
allowance(address,address) should be declared external:
- TOKENS.allowance(address,address) (#506-508)
increaseAllowance(address,uint256) should be declared external:
- TOKENS.increaseAllowance(address,uint256) (#510-513)
decreaseAllowance(address,uint256) should be declared external:
- TOKENS.decreaseAllowance(address,uint256) (#515-518)
minimumTokensBeforeSwapAmount() should be declared external:
- TOKENS.minimumTokensBeforeSwapAmount() (#520-522)
approve(address,uint256) should be declared external:
- TOKENS.approve(address,uint256) (#524-527)
Launch() should be declared external:
- TOKENS.Launch() (#537-540)
setMarketPairStatus(address,bool) should be declared external:
- TOKENS.setMarketPairStatus(address,bool) (#542-544)
setIsExcludedFromFee(address,bool) should be declared external:
- TOKENS.setIsExcludedFromFee(address,bool) (#550-552)
setSwapAndLiquifyEnabled(bool) should be declared external:
- TOKENS.setSwapAndLiquifyEnabled(bool) (#606-609)
setSwapAndLiquifyByLimitOnly(bool) should be declared external:
- TOKENS.setSwapAndLiquifyByLimitOnly(bool) (#612-614)
getCirculatingSupply() should be declared external:
- TOKENS.getCirculatingSupply() (#616-618)
changeRouterVersion(address) should be declared external:
- TOKENS.changeRouterVersion(address) (#624-641)
transfer(address,uint256) should be declared external:
- TOKENS.transfer(address,uint256) (#646-649)
transferFrom(address,address,uint256) should be declared external:
- TOKENS.transferFrom(address,address,uint256) (#651-655)
isAntiwhale(address) should be declared external:
- TOKENS.isAntiwhale(address) (#657-659)
setBotBlock(uint256) should be declared external:
- TOKENS.setBotBlock(uint256) (#665-667)
writeAntiwhale(address,bool) should be declared external:
- TOKENS.writeAntiwhale(address,bool) (#669-671)
Use the external attribute for functions never called from the contract.
Additional information: link
Unable to find website, listings and other project-related information
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
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account
Twitter account has few posts