BabyApeCoin is a brand new NFT project built around the concept of a club designed for the elite. Our NFTs will provide significant benefits to holders both online and in the real world.
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
TOKEN.swapAndLiquify(uint256) (#1341-1370) sends eth to arbitrary user
Dangerous calls:
- (successed) = address(_devWalletAddress).call{gas: 30000,value: devFunds}() (#1362-1365)
TOKEN.addLiquidity(uint256,uint256) (#1386-1396) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1388-1395)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in TOKEN._transfer(address,address,uint256) (#1277-1339):
External calls:
- swapAndLiquify(contractTokenBalance) (#1308)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1388-1395)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1377-1383)
- (success) = address(_marketingWalletAddress).call{gas: 30000,value: marketingFunds}() (#1356-1359)
- (successed) = address(_devWalletAddress).call{gas: 30000,value: devFunds}() (#1362-1365)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1308)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1388-1395)
- (success) = address(_marketingWalletAddress).call{gas: 30000,value: marketingFunds}() (#1356-1359)
- (successed) = address(_devWalletAddress).call{gas: 30000,value: devFunds}() (#1362-1365)
State variables written after the call(s):
- _devFee = _buyDevFee (#1321)
- _devFee = _sellDevFee (#1327)
- _devFee = _buyDevFee (#1333)
- _tokenTransfer(from,to,amount,takeFee) (#1338)
- _devFee = _previousDevFee (#1258)
- _devFee = 0 (#1251)
- _liquidityFee = _buyLiquidityFee (#1319)
- _liquidityFee = _sellLiquidityFee (#1325)
- _liquidityFee = _buyLiquidityFee (#1331)
- _tokenTransfer(from,to,amount,takeFee) (#1338)
- _liquidityFee = _previousLiquidityFee (#1257)
- _liquidityFee = 0 (#1250)
- _marketingFee = _buyMarketingFee (#1320)
- _marketingFee = _sellMarketingFee (#1326)
- _marketingFee = _buyMarketingFee (#1332)
- _tokenTransfer(from,to,amount,takeFee) (#1338)
- _marketingFee = _previousMarketingFee (#1256)
- _marketingFee = 0 (#1249)
- _tokenTransfer(from,to,amount,takeFee) (#1338)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidityAndMarketing) (#1201-1203)
- _rOwned[address(this)] = _rOwned[address(this)].add(rDev) (#1213-1215)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1435)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1457)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#985)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1481)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1436)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1482)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1459)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#987)
- _tokenTransfer(from,to,amount,takeFee) (#1338)
- _rTotal = _rTotal.sub(rFee) (#1089)
- _tokenTransfer(from,to,amount,takeFee) (#1338)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidityAndMarketing) (#1205-1207)
- _tOwned[address(this)] = _tOwned[address(this)].add(tDev) (#1217-1219)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#984)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1480)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1458)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#986)
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.
Contract ownership is not renounced (belongs to a wallet)
TOKEN.addLiquidity(uint256,uint256) (#1386-1396) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1388-1395)
Ensure that all the return values of the function calls are used.
Additional information: link
TOKEN._burnAddress (#710) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
TOKEN.swapAndLiquify(uint256) (#1341-1370) performs a multiplication on the result of a division:
-marketingTokens = contractTokenBalance.div(_totalFees).mul(_marketingFee) (#1343-1345)
TOKEN.swapAndLiquify(uint256) (#1341-1370) performs a multiplication on the result of a division:
-devTokens = contractTokenBalance.div(_totalFees).mul(_devFee) (#1346)
TOKEN.swapAndLiquify(uint256) (#1341-1370) performs a multiplication on the result of a division:
-marketingFunds = newBalance.div(_totalFees).mul(_marketingFee) (#1355)
TOKEN.swapAndLiquify(uint256) (#1341-1370) performs a multiplication on the result of a division:
-devFunds = newBalance.div(_totalFees).mul(_devFee) (#1361)
TOKEN.swapAndLiquify(uint256) (#1341-1370) performs a multiplication on the result of a division:
-halfFunds = newBalance.div(_totalFees).mul(_liquidityFee.div(2)) (#1367)
Consider ordering multiplication before division.
Additional information: link
TOKEN.allowance(address,address).owner (#836) shadows:
- Ownable.owner() (#309-311) (function)
TOKEN._approve(address,address,uint256).owner (#1266) shadows:
- Ownable.owner() (#309-311) (function)
Rename the local variables that shadow another component.
Additional information: link
TOKEN.setMaxTxPercent(uint256) (#1002-1004) should emit an event for:
- _maxTxAmount = maxTxPercent * 10 ** _decimals (#1003)
TOKEN.setMaxWalletBalance(uint256) (#1025-1027) should emit an event for:
- _maxWalletBalance = maxBalancePercent * 10 ** _decimals (#1026)
TOKEN.setSellFeePercent(uint256,uint256,uint256,uint256) (#1029-1039) should emit an event for:
- _sellTaxFee = tFee (#1035)
- _sellLiquidityFee = lFee (#1036)
- _sellMarketingFee = mFee (#1037)
- _sellDevFee = dFee (#1038)
TOKEN.setBuyFeePercent(uint256,uint256,uint256,uint256) (#1041-1051) should emit an event for:
- _buyTaxFee = tFee (#1047)
- _buyLiquidityFee = lFee (#1048)
- _buyMarketingFee = mFee (#1049)
- _buyDevFee = dFee (#1050)
TOKEN.setNumTokensSellToAddToLiquidity(uint256) (#1054-1059) should emit an event for:
- numTokensSellToAddToLiquidity = amount * 10 ** _decimals (#1058)
Emit an event for critical parameter changes.
Additional information: link
TOKEN.setMarketingWalletAddress(address)._addr (#1017) lacks a zero-check on :
- _marketingWalletAddress = _addr (#1018)
TOKEN.setDevWalletAddress(address)._addr (#1021) lacks a zero-check on :
- _devWalletAddress = _addr (#1022)
Check that the address is not zero.
Additional information: link
Reentrancy in TOKEN._transfer(address,address,uint256) (#1277-1339):
External calls:
- swapAndLiquify(contractTokenBalance) (#1308)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1388-1395)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1377-1383)
- (success) = address(_marketingWalletAddress).call{gas: 30000,value: marketingFunds}() (#1356-1359)
- (successed) = address(_devWalletAddress).call{gas: 30000,value: devFunds}() (#1362-1365)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1308)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1388-1395)
- (success) = address(_marketingWalletAddress).call{gas: 30000,value: marketingFunds}() (#1356-1359)
- (successed) = address(_devWalletAddress).call{gas: 30000,value: devFunds}() (#1362-1365)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1338)
- _previousDevFee = _devFee (#1246)
- _tokenTransfer(from,to,amount,takeFee) (#1338)
- _previousLiquidityFee = _liquidityFee (#1245)
- _tokenTransfer(from,to,amount,takeFee) (#1338)
- _previousMarketingFee = _marketingFee (#1244)
- _tokenTransfer(from,to,amount,takeFee) (#1338)
- _previousTaxFee = _taxFee (#1243)
- _tokenTransfer(from,to,amount,takeFee) (#1338)
- _tFeeTotal = _tFeeTotal.add(tFee) (#1090)
- _taxFee = _buyTaxFee (#1318)
- _taxFee = _sellTaxFee (#1324)
- _taxFee = _buyTaxFee (#1330)
- _tokenTransfer(from,to,amount,takeFee) (#1338)
- _taxFee = _previousTaxFee (#1255)
- _taxFee = 0 (#1248)
Reentrancy in TOKEN.constructor() (#768-804):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#786-787)
State variables written after the call(s):
- _isExcluded[_burnAddress] = true (#799)
- _isExcluded[uniswapV2Pair] = true (#800)
- _isExcludedFromFee[_msgSender()] = true (#793)
- _isExcludedFromFee[address(this)] = true (#794)
- _isExcludedFromFee[_devWalletAddress] = true (#795)
- _isExcludedFromFee[_marketingWalletAddress] = true (#796)
- _owner = _msgSender() (#802)
- uniswapV2Router = _uniswapV2Router (#790)
Reentrancy in TOKEN.setRouterAddress(address) (#1061-1066):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1063-1064)
State variables written after the call(s):
- uniswapV2Router = _uniswapV2Router (#1065)
Reentrancy in TOKEN.swapAndLiquify(uint256) (#1341-1370):
External calls:
- swapTokensForEth(swapTokens) (#1353)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1377-1383)
- (success) = address(_marketingWalletAddress).call{gas: 30000,value: marketingFunds}() (#1356-1359)
- (successed) = address(_devWalletAddress).call{gas: 30000,value: devFunds}() (#1362-1365)
- addLiquidity(otherHalf,halfFunds) (#1368)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1388-1395)
External calls sending eth:
- (success) = address(_marketingWalletAddress).call{gas: 30000,value: marketingFunds}() (#1356-1359)
- (successed) = address(_devWalletAddress).call{gas: 30000,value: devFunds}() (#1362-1365)
- addLiquidity(otherHalf,halfFunds) (#1368)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1388-1395)
State variables written after the call(s):
- addLiquidity(otherHalf,halfFunds) (#1368)
- _allowances[owner][spender] = amount (#1273)
Reentrancy in TOKEN.transferFrom(address,address,uint256) (#854-869):
External calls:
- _transfer(sender,recipient,amount) (#859)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1388-1395)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1377-1383)
- (success) = address(_marketingWalletAddress).call{gas: 30000,value: marketingFunds}() (#1356-1359)
- (successed) = address(_devWalletAddress).call{gas: 30000,value: devFunds}() (#1362-1365)
External calls sending eth:
- _transfer(sender,recipient,amount) (#859)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1388-1395)
- (success) = address(_marketingWalletAddress).call{gas: 30000,value: marketingFunds}() (#1356-1359)
- (successed) = address(_devWalletAddress).call{gas: 30000,value: devFunds}() (#1362-1365)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#860-867)
- _allowances[owner][spender] = amount (#1273)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in TOKEN._transfer(address,address,uint256) (#1277-1339):
External calls:
- swapAndLiquify(contractTokenBalance) (#1308)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1388-1395)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1377-1383)
- (success) = address(_marketingWalletAddress).call{gas: 30000,value: marketingFunds}() (#1356-1359)
- (successed) = address(_devWalletAddress).call{gas: 30000,value: devFunds}() (#1362-1365)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1308)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1388-1395)
- (success) = address(_marketingWalletAddress).call{gas: 30000,value: marketingFunds}() (#1356-1359)
- (successed) = address(_devWalletAddress).call{gas: 30000,value: devFunds}() (#1362-1365)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1440)
- _tokenTransfer(from,to,amount,takeFee) (#1338)
- Transfer(sender,recipient,tTransferAmount) (#1486)
- _tokenTransfer(from,to,amount,takeFee) (#1338)
- Transfer(sender,recipient,tTransferAmount) (#1463)
- _tokenTransfer(from,to,amount,takeFee) (#1338)
- Transfer(sender,recipient,tTransferAmount) (#991)
- _tokenTransfer(from,to,amount,takeFee) (#1338)
Reentrancy in TOKEN.constructor() (#768-804):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#786-787)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#803)
Reentrancy in TOKEN.swapAndLiquify(uint256) (#1341-1370):
External calls:
- swapTokensForEth(swapTokens) (#1353)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1377-1383)
- (success) = address(_marketingWalletAddress).call{gas: 30000,value: marketingFunds}() (#1356-1359)
- (successed) = address(_devWalletAddress).call{gas: 30000,value: devFunds}() (#1362-1365)
- addLiquidity(otherHalf,halfFunds) (#1368)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1388-1395)
External calls sending eth:
- (success) = address(_marketingWalletAddress).call{gas: 30000,value: marketingFunds}() (#1356-1359)
- (successed) = address(_devWalletAddress).call{gas: 30000,value: devFunds}() (#1362-1365)
- addLiquidity(otherHalf,halfFunds) (#1368)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1388-1395)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1274)
- addLiquidity(otherHalf,halfFunds) (#1368)
- SwapAndLiquify(half,halfFunds,otherHalf) (#1369)
Reentrancy in TOKEN.transferFrom(address,address,uint256) (#854-869):
External calls:
- _transfer(sender,recipient,amount) (#859)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1388-1395)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1377-1383)
- (success) = address(_marketingWalletAddress).call{gas: 30000,value: marketingFunds}() (#1356-1359)
- (successed) = address(_devWalletAddress).call{gas: 30000,value: devFunds}() (#1362-1365)
External calls sending eth:
- _transfer(sender,recipient,amount) (#859)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1388-1395)
- (success) = address(_marketingWalletAddress).call{gas: 30000,value: marketingFunds}() (#1356-1359)
- (successed) = address(_devWalletAddress).call{gas: 30000,value: devFunds}() (#1362-1365)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1274)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#860-867)
Apply the check-effects-interactions pattern.
Additional information: link
Ownable.unlock() (#341-349) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked.) (#346)
Avoid relying on block.timestamp.
Additional information: link
Address.isContract(address) (#163-169) uses assembly
- INLINE ASM (#165-167)
Address._verifyCallResult(bool,bytes,string) (#274-291) uses assembly
- INLINE ASM (#283-286)
Do not use evm assembly.
Additional information: link
TOKEN.includeInReward(address) (#957-968) has costly operations inside a loop:
- _excluded.pop() (#964)
Use a local variable to hold the loop computation result.
Additional information: link
Address._verifyCallResult(bool,bytes,string) (#274-291) is never used and should be removed
Address.functionCall(address,bytes) (#183-188) is never used and should be removed
Address.functionCall(address,bytes,string) (#190-196) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#198-210) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#212-227) is never used and should be removed
Address.functionDelegateCall(address,bytes) (#252-262) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (#264-272) is never used and should be removed
Address.functionStaticCall(address,bytes) (#229-240) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (#242-250) is never used and should be removed
Address.isContract(address) (#163-169) is never used and should be removed
Address.sendValue(address,uint256) (#171-181) is never used and should be removed
Context._msgData() (#156-159) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#128-137) is never used and should be removed
SafeMath.mod(uint256,uint256) (#113-115) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#139-148) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (#36-46) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (#75-84) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (#86-95) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (#59-73) is never used and should be removed
SafeMath.trySub(uint256,uint256) (#48-57) is never used and should be removed
Remove unused functions.
Additional information: link
TOKEN._taxFee (#739) is set pre-construction with a non-constant function or state variable:
- _buyTaxFee
TOKEN._liquidityFee (#740) is set pre-construction with a non-constant function or state variable:
- _buyLiquidityFee
TOKEN._marketingFee (#741) is set pre-construction with a non-constant function or state variable:
- _buyMarketingFee
TOKEN._devFee (#742) is set pre-construction with a non-constant function or state variable:
- _buyDevFee
TOKEN._previousTaxFee (#744) is set pre-construction with a non-constant function or state variable:
- _taxFee
TOKEN._previousMarketingFee (#745) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
TOKEN._previousLiquidityFee (#746) is set pre-construction with a non-constant function or state variable:
- _marketingFee
TOKEN._previousDevFee (#747) is set pre-construction with a non-constant function or state variable:
- _devFee
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) (#171-181):
- (success) = recipient.call{value: amount}() (#176)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (#212-227):
- (success,returndata) = target.call{value: value}(data) (#223-225)
Low level call in Address.functionStaticCall(address,bytes,string) (#242-250):
- (success,returndata) = target.staticcall(data) (#248)
Low level call in Address.functionDelegateCall(address,bytes,string) (#264-272):
- (success,returndata) = target.delegatecall(data) (#270)
Low level call in TOKEN.withdrawStuckedFunds(uint256) (#1077-1081):
- (sent) = _owner.call{value: amount}() (#1079)
Low level call in TOKEN.swapAndLiquify(uint256) (#1341-1370):
- (success) = address(_marketingWalletAddress).call{gas: 30000,value: marketingFunds}() (#1356-1359)
- (successed) = address(_devWalletAddress).call{gas: 30000,value: devFunds}() (#1362-1365)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Variable Ownable._owner (#295) is not in mixedCase
Variable Ownable._lockTime (#297) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#415) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#417) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#448) is not in mixedCase
Function IUniswapV2Router01.WETH() (#494) is not in mixedCase
Parameter TOKEN.setMarketingWalletAddress(address)._addr (#1017) is not in mixedCase
Parameter TOKEN.setDevWalletAddress(address)._addr (#1021) is not in mixedCase
Parameter TOKEN.setSwapAndLiquifyEnabled(bool)._enabled (#1068) is not in mixedCase
Parameter TOKEN.calculateTaxFee(uint256)._amount (#1222) is not in mixedCase
Parameter TOKEN.calculateDevFee(uint256)._amount (#1226) is not in mixedCase
Parameter TOKEN.calculateLiquidityAndMarketingFee(uint256)._amount (#1234) is not in mixedCase
Variable TOKEN._isBlacklisted (#706) is not in mixedCase
Variable TOKEN._marketingWalletAddress (#708) is not in mixedCase
Variable TOKEN._devWalletAddress (#709) is not in mixedCase
Variable TOKEN._burnAddress (#710) is not in mixedCase
Variable TOKEN._maxWalletBalance (#722) is not in mixedCase
Variable TOKEN._maxTxAmount (#723) is not in mixedCase
Variable TOKEN._taxFee (#739) is not in mixedCase
Variable TOKEN._liquidityFee (#740) is not in mixedCase
Variable TOKEN._marketingFee (#741) is not in mixedCase
Variable TOKEN._devFee (#742) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#157)" inContext (#151-160)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#499) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#500)
Variable TOKEN._takeLiquidityAndMarketing(uint256).rLiquidityAndMarketing (#1198-1200) is too similar to TOKEN._takeLiquidityAndMarketing(uint256).tLiquidityAndMarketing (#1194)
Variable TOKEN.reflectionFromToken(uint256,bool).rTransferAmount (#930) is too similar to TOKEN._transferStandard(address,address,uint256).tTransferAmount (#1430)
Variable TOKEN._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1168-1170) is too similar to TOKEN._transferStandard(address,address,uint256).tTransferAmount (#1430)
Variable TOKEN.reflectionFromToken(uint256,bool).rTransferAmount (#930) is too similar to TOKEN._getValues(uint256).tTransferAmount (#1107)
Variable TOKEN._getValues(uint256).rTransferAmount (#1112) is too similar to TOKEN._getTValues(uint256).tTransferAmount (#1143-1145)
Variable TOKEN._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1168-1170) is too similar to TOKEN._getValues(uint256).tTransferAmount (#1107)
Variable TOKEN._transferFromExcluded(address,address,uint256).rTransferAmount (#1473) is too similar to TOKEN._transferToExcluded(address,address,uint256).tTransferAmount (#1452)
Variable TOKEN._transferBothExcluded(address,address,uint256).rTransferAmount (#977) is too similar to TOKEN._transferStandard(address,address,uint256).tTransferAmount (#1430)
Variable TOKEN.reflectionFromToken(uint256,bool).rTransferAmount (#930) is too similar to TOKEN._transferBothExcluded(address,address,uint256).tTransferAmount (#979)
Variable TOKEN._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1168-1170) is too similar to TOKEN._transferBothExcluded(address,address,uint256).tTransferAmount (#979)
Variable TOKEN._getValues(uint256).rTransferAmount (#1112) is too similar to TOKEN._transferToExcluded(address,address,uint256).tTransferAmount (#1452)
Variable TOKEN._transferBothExcluded(address,address,uint256).rTransferAmount (#977) is too similar to TOKEN._transferBothExcluded(address,address,uint256).tTransferAmount (#979)
Variable TOKEN.reflectionFromToken(uint256,bool).rTransferAmount (#930) is too similar to TOKEN._transferFromExcluded(address,address,uint256).tTransferAmount (#1475)
Variable TOKEN._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1168-1170) is too similar to TOKEN._transferFromExcluded(address,address,uint256).tTransferAmount (#1475)
Variable TOKEN._transferBothExcluded(address,address,uint256).rTransferAmount (#977) is too similar to TOKEN._transferFromExcluded(address,address,uint256).tTransferAmount (#1475)
Variable TOKEN._transferStandard(address,address,uint256).rTransferAmount (#1428) is too similar to TOKEN._transferToExcluded(address,address,uint256).tTransferAmount (#1452)
Variable TOKEN._transferFromExcluded(address,address,uint256).rTransferAmount (#1473) is too similar to TOKEN._transferStandard(address,address,uint256).tTransferAmount (#1430)
Variable TOKEN._getValues(uint256).rTransferAmount (#1112) is too similar to TOKEN._transferStandard(address,address,uint256).tTransferAmount (#1430)
Variable TOKEN._transferFromExcluded(address,address,uint256).rTransferAmount (#1473) is too similar to TOKEN._transferBothExcluded(address,address,uint256).tTransferAmount (#979)
Variable TOKEN._getValues(uint256).rTransferAmount (#1112) is too similar to TOKEN._getValues(uint256).tTransferAmount (#1107)
Variable TOKEN._getValues(uint256).rTransferAmount (#1112) is too similar to TOKEN._transferBothExcluded(address,address,uint256).tTransferAmount (#979)
Variable TOKEN._transferFromExcluded(address,address,uint256).rTransferAmount (#1473) is too similar to TOKEN._transferFromExcluded(address,address,uint256).tTransferAmount (#1475)
Variable TOKEN._getValues(uint256).rTransferAmount (#1112) is too similar to TOKEN._transferFromExcluded(address,address,uint256).tTransferAmount (#1475)
Variable TOKEN._transferStandard(address,address,uint256).rTransferAmount (#1428) is too similar to TOKEN._transferStandard(address,address,uint256).tTransferAmount (#1430)
Variable TOKEN.reflectionFromToken(uint256,bool).rTransferAmount (#930) is too similar to TOKEN._transferToExcluded(address,address,uint256).tTransferAmount (#1452)
Variable TOKEN._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1168-1170) is too similar to TOKEN._transferToExcluded(address,address,uint256).tTransferAmount (#1452)
Variable TOKEN._transferStandard(address,address,uint256).rTransferAmount (#1428) is too similar to TOKEN._transferBothExcluded(address,address,uint256).tTransferAmount (#979)
Variable TOKEN._transferBothExcluded(address,address,uint256).rTransferAmount (#977) is too similar to TOKEN._transferToExcluded(address,address,uint256).tTransferAmount (#1452)
Variable TOKEN._transferStandard(address,address,uint256).rTransferAmount (#1428) is too similar to TOKEN._transferFromExcluded(address,address,uint256).tTransferAmount (#1475)
Variable TOKEN._transferToExcluded(address,address,uint256).rTransferAmount (#1450) is too similar to TOKEN._transferToExcluded(address,address,uint256).tTransferAmount (#1452)
Variable TOKEN._transferToExcluded(address,address,uint256).rTransferAmount (#1450) is too similar to TOKEN._transferBothExcluded(address,address,uint256).tTransferAmount (#979)
Variable TOKEN._transferToExcluded(address,address,uint256).rTransferAmount (#1450) is too similar to TOKEN._getTValues(uint256).tTransferAmount (#1143-1145)
Variable TOKEN._transferToExcluded(address,address,uint256).rTransferAmount (#1450) is too similar to TOKEN._transferFromExcluded(address,address,uint256).tTransferAmount (#1475)
Variable TOKEN._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1168-1170) is too similar to TOKEN._getTValues(uint256).tTransferAmount (#1143-1145)
Variable TOKEN.reflectionFromToken(uint256,bool).rTransferAmount (#930) is too similar to TOKEN._getTValues(uint256).tTransferAmount (#1143-1145)
Variable TOKEN._transferStandard(address,address,uint256).rTransferAmount (#1428) is too similar to TOKEN._getTValues(uint256).tTransferAmount (#1143-1145)
Variable TOKEN._transferToExcluded(address,address,uint256).rTransferAmount (#1450) is too similar to TOKEN._getValues(uint256).tTransferAmount (#1107)
Variable TOKEN._transferToExcluded(address,address,uint256).rTransferAmount (#1450) is too similar to TOKEN._transferStandard(address,address,uint256).tTransferAmount (#1430)
Variable TOKEN._transferBothExcluded(address,address,uint256).rTransferAmount (#977) is too similar to TOKEN._getTValues(uint256).tTransferAmount (#1143-1145)
Variable TOKEN._transferFromExcluded(address,address,uint256).rTransferAmount (#1473) is too similar to TOKEN._getTValues(uint256).tTransferAmount (#1143-1145)
Variable TOKEN._transferStandard(address,address,uint256).rTransferAmount (#1428) is too similar to TOKEN._getValues(uint256).tTransferAmount (#1107)
Variable TOKEN._transferBothExcluded(address,address,uint256).rTransferAmount (#977) is too similar to TOKEN._getValues(uint256).tTransferAmount (#1107)
Variable TOKEN._transferFromExcluded(address,address,uint256).rTransferAmount (#1473) is too similar to TOKEN._getValues(uint256).tTransferAmount (#1107)
Prevent variables from having similar names.
Additional information: link
TOKEN.constructor() (#768-804) uses literals with too many digits:
- _tTotal = 1000000000000 * 10 ** _decimals (#772)
TOKEN.constructor() (#768-804) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 5000000000 * 10 ** _decimals (#774)
TOKEN.constructor() (#768-804) uses literals with too many digits:
- _maxTxAmount = 10000000000 * 10 ** _decimals (#775)
TOKEN.constructor() (#768-804) uses literals with too many digits:
- _maxWalletBalance = 10000000000 * 10 ** _decimals (#776)
TOKEN.slitherConstructorVariables() (#697-1489) uses literals with too many digits:
- _burnAddress = 0x000000000000000000000000000000000000dEaD (#710)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#318-321)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#323-330)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#333-338)
unlock() should be declared external:
- Ownable.unlock() (#341-349)
name() should be declared external:
- TOKEN.name() (#806-808)
symbol() should be declared external:
- TOKEN.symbol() (#810-812)
decimals() should be declared external:
- TOKEN.decimals() (#814-816)
totalSupply() should be declared external:
- TOKEN.totalSupply() (#818-820)
transfer(address,uint256) should be declared external:
- TOKEN.transfer(address,uint256) (#827-834)
allowance(address,address) should be declared external:
- TOKEN.allowance(address,address) (#836-843)
approve(address,uint256) should be declared external:
- TOKEN.approve(address,uint256) (#845-852)
transferFrom(address,address,uint256) should be declared external:
- TOKEN.transferFrom(address,address,uint256) (#854-869)
increaseAllowance(address,uint256) should be declared external:
- TOKEN.increaseAllowance(address,uint256) (#871-882)
decreaseAllowance(address,uint256) should be declared external:
- TOKEN.decreaseAllowance(address,uint256) (#884-898)
isExcludedFromReward(address) should be declared external:
- TOKEN.isExcludedFromReward(address) (#900-902)
totalFees() should be declared external:
- TOKEN.totalFees() (#904-906)
deliver(uint256) should be declared external:
- TOKEN.deliver(uint256) (#908-918)
reflectionFromToken(uint256,bool) should be declared external:
- TOKEN.reflectionFromToken(uint256,bool) (#920-933)
excludeFromReward(address) should be declared external:
- TOKEN.excludeFromReward(address) (#948-955)
excludeFromFee(address) should be declared external:
- TOKEN.excludeFromFee(address) (#994-996)
includeInFee(address) should be declared external:
- TOKEN.includeInFee(address) (#998-1000)
isExcludedFromFee(address) should be declared external:
- TOKEN.isExcludedFromFee(address) (#1261-1263)
Use the external attribute for functions never called from the contract.
Additional information: link
Contract has 10% buy tax and 14% sell tax.
Taxes are suspiciously high (over 10%) and contract ownership is not renounced. Token has a high risk of becoming a honeypot.
Average 30d PancakeSwap volume is less than $100. Token is either dead or inactive.
Average 30d number of PancakeSwap swaps is low.
Token is deployed only at one blockchain
Token has only one trading pair
Average 30d PancakeSwap liquidity is low.
Average PancakeSwap trading volume, liqudity, number of swaps are low. Token seems to be inactive.
Unable to find token on CoinGecko
Additional information: link
Unable to find token on CoinMarketCap
Additional information: link
Unable to find token contract audit
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
Unable to find code repository for the project
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Token is marked as risky (blacklisted creator, fake name, dead project, etc.)
Additional information: link
Young tokens have high risks of price dump / death
Young tokens have high risks of price dump / death
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