No more empty promises! No more scams, rug pulls and honeypots! Welcome to SquidWorld.io portal! Our plan is to bring you (our valued investor) a one-stop portal full of latest utilities. Swap with Tokens staking and LP farming at Launch! SquidGame theme P2E Game, NFT Collection, Minting, Staking & Marketplace and many more!. Visit our website @ www.squidworld.io for more details or join our Telegram Group. Are you ready for this exciting ride!
Reentrancy in SquidWorld._transfer(address,address,uint256) (#1511-1572):
External calls:
- swapAndLiquify(contractTokenBalance) (#1543)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1620-1627)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1606-1612)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1543)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1620-1627)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#1571)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#1280)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1799)
- _rOwned[MarketingWallet] = _rOwned[MarketingWallet].add(rMarketing) (#1763)
- _rOwned[DeadWallet] = _rOwned[DeadWallet].add(rburn) (#1727)
- _rOwned[PrizeWallet] = _rOwned[PrizeWallet].add(rPrize) (#1781)
- _rOwned[TeamWallet] = _rOwned[TeamWallet].add(rteam) (#1745)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1172)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1821)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1801)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1822)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1174)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1707)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1708)
- _tokenTransfer(from,to,amount) (#1571)
- _rTotal = _rTotal.sub(rFee) (#1184)
- _tokenTransfer(from,to,amount) (#1571)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#1282)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1171)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1820)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1800)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1173)
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)
SquidWorld.takeburn(address,uint256,uint256,uint256) (#1714-1730) performs a multiplication on the result of a division:
-tburn = tAmount.mul(_burnFee).div(feeDenominator) (#1723)
-rburn = tburn.mul(_getRate()) (#1724)
SquidWorld.takeTeam(address,uint256,uint256,uint256) (#1732-1748) performs a multiplication on the result of a division:
-tteam = tAmount.mul(_teamFee).div(feeDenominator) (#1741)
-rteam = tteam.mul(_getRate()) (#1742)
SquidWorld.takePrize(address,uint256,uint256,uint256) (#1768-1784) performs a multiplication on the result of a division:
-tPrize = tAmount.mul(_PrizeFee).div(feeDenominator) (#1777)
-rPrize = tPrize.mul(_getRate()) (#1778)
SquidWorld.takeMarketing(address,uint256,uint256,uint256) (#1750-1766) performs a multiplication on the result of a division:
-tMarketing = tAmount.mul(_MarketingFee).div(feeDenominator) (#1759)
-rMarketing = tMarketing.mul(_getRate()) (#1760)
Consider ordering multiplication before division.
Additional information: link
SquidWorld.addLiquidity(uint256,uint256) (#1615-1628) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1620-1627)
Ensure that all the return values of the function calls are used.
Additional information: link
SquidWorld.allowance(address,address).owner (#1024) shadows:
- Ownable.owner() (#484-486) (function)
SquidWorld._approve(address,address,uint256).owner (#1500) shadows:
- Ownable.owner() (#484-486) (function)
Rename the local variables that shadow another component.
Additional information: link
SquidWorld.UpdateSwapThresholdValue(uint256) (#1485-1490) should emit an event for:
- numTokensSellToAddToLiquidity = thresholdValue * 10 ** 9 (#1489)
Emit an event for critical parameter changes.
Additional information: link
SquidWorld.swapTokensForEth(uint256) (#1597-1613) has external calls inside a loop: uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1606-1612)
SquidWorld.addLiquidity(uint256,uint256) (#1615-1628) has external calls inside a loop: uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1620-1627)
SquidWorld.swapTokensForEth(uint256) (#1597-1613) has external calls inside a loop: path[1] = uniswapV2Router.WETH() (#1601)
Favor pull over push strategy for external calls.
Additional information: link
Reentrancy in SquidWorld.transferFrom(address,address,uint256) (#1042-1057):
External calls:
- _transfer(sender,recipient,amount) (#1047)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1620-1627)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1606-1612)
External calls sending eth:
- _transfer(sender,recipient,amount) (#1047)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1620-1627)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,BEP20: transfer amount exceeds allowance)) (#1048-1055)
- _allowances[owner][spender] = amount (#1507)
Reentrancy in SquidWorld.swapAndLiquify(uint256) (#1574-1595):
External calls:
- swapTokensForEth(half) (#1586)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1606-1612)
- addLiquidity(otherHalf,newBalance) (#1592)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1620-1627)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1592)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1620-1627)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1592)
- _allowances[owner][spender] = amount (#1507)
Reentrancy in SquidWorld._transfer(address,address,uint256) (#1511-1572):
External calls:
- swapAndLiquify(contractTokenBalance) (#1543)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1620-1627)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1606-1612)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1543)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1620-1627)
State variables written after the call(s):
- _MarketingFee = _internalMarketingFee (#1548)
- _MarketingFee = _buyMarketingFee (#1556)
- _MarketingFee = _sellMarketingFee (#1564)
- _tokenTransfer(from,to,amount) (#1571)
- _MarketingFee = _previousMarketingFee (#1326)
- _MarketingFee = 0 (#1316)
- _PrizeFee = _internalPrizeFee (#1550)
- _PrizeFee = _buyPrizeFee (#1558)
- _PrizeFee = _sellPrizeFee (#1566)
- _tokenTransfer(from,to,amount) (#1571)
- _PrizeFee = _previousPrizeFee (#1327)
- _PrizeFee = 0 (#1318)
- _burnFee = _internalBurnFee (#1549)
- _burnFee = _buyBurnFee (#1557)
- _burnFee = _sellBurnFee (#1565)
- _tokenTransfer(from,to,amount) (#1571)
- _burnFee = _previousburnFee (#1325)
- _burnFee = 0 (#1317)
- _liquidityFee = _internalLiquidityFee (#1547)
- _liquidityFee = _buyLiquidityFee (#1555)
- _liquidityFee = _sellLiquidityFee (#1563)
- _tokenTransfer(from,to,amount) (#1571)
- _liquidityFee = _previousLiquidityFee (#1324)
- _liquidityFee = 0 (#1315)
- _tokenTransfer(from,to,amount) (#1571)
- _previousLiquidityFee = _liquidityFee (#1308)
- _tokenTransfer(from,to,amount) (#1571)
- _previousMarketingFee = _MarketingFee (#1310)
- _tokenTransfer(from,to,amount) (#1571)
- _previousPrizeFee = _PrizeFee (#1311)
- _tokenTransfer(from,to,amount) (#1571)
- _previousTaxFee = _taxFee (#1307)
- _tokenTransfer(from,to,amount) (#1571)
- _previousburnFee = _burnFee (#1309)
- _tokenTransfer(from,to,amount) (#1571)
- _previousteamFee = _teamFee (#1312)
- _tokenTransfer(from,to,amount) (#1571)
- _tFeeTotal = _tFeeTotal.add(tFee) (#1185)
- _taxFee = _internalTaxFee (#1546)
- _taxFee = _buyTaxFee (#1554)
- _taxFee = _sellTaxFee (#1562)
- _tokenTransfer(from,to,amount) (#1571)
- _taxFee = _previousTaxFee (#1323)
- _taxFee = 0 (#1314)
- _teamFee = _internalTeamFee (#1551)
- _teamFee = _buyTeamFee (#1559)
- _teamFee = _sellTeamFee (#1567)
- _tokenTransfer(from,to,amount) (#1571)
- _teamFee = _previousteamFee (#1328)
- _teamFee = 0 (#1319)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in SquidWorld._transfer(address,address,uint256) (#1511-1572):
External calls:
- swapAndLiquify(contractTokenBalance) (#1543)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1620-1627)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1606-1612)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1543)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1620-1627)
Event emitted after the call(s):
- Transfer(sender,MarketingWallet,tMarketing) (#1764)
- _tokenTransfer(from,to,amount) (#1571)
- Transfer(sender,DeadWallet,tburn) (#1728)
- _tokenTransfer(from,to,amount) (#1571)
- Transfer(sender,PrizeWallet,tPrize) (#1782)
- _tokenTransfer(from,to,amount) (#1571)
- Transfer(sender,TeamWallet,tteam) (#1746)
- _tokenTransfer(from,to,amount) (#1571)
- Transfer(sender,recipient,tTransferAmount) (#1804)
- _tokenTransfer(from,to,amount) (#1571)
- Transfer(sender,recipient,tTransferAmount) (#1825)
- _tokenTransfer(from,to,amount) (#1571)
- Transfer(sender,recipient,tTransferAmount) (#1177)
- _tokenTransfer(from,to,amount) (#1571)
- Transfer(sender,recipient,tTransferAmount) (#1711)
- _tokenTransfer(from,to,amount) (#1571)
Reentrancy in SquidWorld.swapAndLiquify(uint256) (#1574-1595):
External calls:
- swapTokensForEth(half) (#1586)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1606-1612)
- addLiquidity(otherHalf,newBalance) (#1592)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1620-1627)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1592)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1620-1627)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1508)
- addLiquidity(otherHalf,newBalance) (#1592)
- SwapAndLiquify(half,newBalance,otherHalf) (#1594)
Reentrancy in SquidWorld.transferFrom(address,address,uint256) (#1042-1057):
External calls:
- _transfer(sender,recipient,amount) (#1047)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1620-1627)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1606-1612)
External calls sending eth:
- _transfer(sender,recipient,amount) (#1047)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1620-1627)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1508)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,BEP20: transfer amount exceeds allowance)) (#1048-1055)
Apply the check-effects-interactions pattern.
Additional information: link
Address.isContract(address) (#296-307) uses assembly
- INLINE ASM (#303-305)
Address._functionCallWithValue(address,bytes,uint256,string) (#422-450) uses assembly
- INLINE ASM (#442-445)
Do not use evm assembly.
Additional information: link
SquidWorld.removeAllFee() (#1297-1320) has costly operations inside a loop:
- _burnFee = 0 (#1317)
SquidWorld._reflectFee(uint256,uint256) (#1183-1186) has costly operations inside a loop:
- _tFeeTotal = _tFeeTotal.add(tFee) (#1185)
SquidWorld.restoreAllFee() (#1322-1329) has costly operations inside a loop:
- _MarketingFee = _previousMarketingFee (#1326)
SquidWorld._transfer(address,address,uint256) (#1511-1572) has costly operations inside a loop:
- _liquidityFee = _sellLiquidityFee (#1563)
SquidWorld.restoreAllFee() (#1322-1329) has costly operations inside a loop:
- _burnFee = _previousburnFee (#1325)
SquidWorld.restoreAllFee() (#1322-1329) has costly operations inside a loop:
- _liquidityFee = _previousLiquidityFee (#1324)
SquidWorld.removeAllFee() (#1297-1320) has costly operations inside a loop:
- _liquidityFee = 0 (#1315)
SquidWorld._transfer(address,address,uint256) (#1511-1572) has costly operations inside a loop:
- _burnFee = _internalBurnFee (#1549)
SquidWorld.removeAllFee() (#1297-1320) has costly operations inside a loop:
- _previousMarketingFee = _MarketingFee (#1310)
SquidWorld._transfer(address,address,uint256) (#1511-1572) has costly operations inside a loop:
- _teamFee = _sellTeamFee (#1567)
SquidWorld._transfer(address,address,uint256) (#1511-1572) has costly operations inside a loop:
- _taxFee = _sellTaxFee (#1562)
SquidWorld._transfer(address,address,uint256) (#1511-1572) has costly operations inside a loop:
- _burnFee = _sellBurnFee (#1565)
SquidWorld.restoreAllFee() (#1322-1329) has costly operations inside a loop:
- _PrizeFee = _previousPrizeFee (#1327)
SquidWorld.lockTheSwap() (#956-960) has costly operations inside a loop:
- inSwapAndLiquify = false (#959)
SquidWorld.removeAllFee() (#1297-1320) has costly operations inside a loop:
- _previousburnFee = _burnFee (#1309)
SquidWorld._transfer(address,address,uint256) (#1511-1572) has costly operations inside a loop:
- _liquidityFee = _buyLiquidityFee (#1555)
SquidWorld._transfer(address,address,uint256) (#1511-1572) has costly operations inside a loop:
- _liquidityFee = _internalLiquidityFee (#1547)
SquidWorld.removeAllFee() (#1297-1320) has costly operations inside a loop:
- _previousLiquidityFee = _liquidityFee (#1308)
SquidWorld.removeAllFee() (#1297-1320) has costly operations inside a loop:
- _MarketingFee = 0 (#1316)
SquidWorld.removeAllFee() (#1297-1320) has costly operations inside a loop:
- _previousTaxFee = _taxFee (#1307)
SquidWorld.lockTheSwap() (#956-960) has costly operations inside a loop:
- inSwapAndLiquify = true (#957)
SquidWorld.removeAllFee() (#1297-1320) has costly operations inside a loop:
- _previousteamFee = _teamFee (#1312)
SquidWorld._transfer(address,address,uint256) (#1511-1572) has costly operations inside a loop:
- _PrizeFee = _buyPrizeFee (#1558)
SquidWorld.removeAllFee() (#1297-1320) has costly operations inside a loop:
- _previousPrizeFee = _PrizeFee (#1311)
SquidWorld._transfer(address,address,uint256) (#1511-1572) has costly operations inside a loop:
- _burnFee = _buyBurnFee (#1557)
SquidWorld._transfer(address,address,uint256) (#1511-1572) has costly operations inside a loop:
- _burnFee = 0 (#1526)
SquidWorld.restoreAllFee() (#1322-1329) has costly operations inside a loop:
- _teamFee = _previousteamFee (#1328)
SquidWorld.removeAllFee() (#1297-1320) has costly operations inside a loop:
- _PrizeFee = 0 (#1318)
SquidWorld._transfer(address,address,uint256) (#1511-1572) has costly operations inside a loop:
- _MarketingFee = _buyMarketingFee (#1556)
SquidWorld.includeInReward(address) (#1145-1156) has costly operations inside a loop:
- _excluded.pop() (#1152)
SquidWorld._transfer(address,address,uint256) (#1511-1572) has costly operations inside a loop:
- _teamFee = _buyTeamFee (#1559)
SquidWorld._transfer(address,address,uint256) (#1511-1572) has costly operations inside a loop:
- _taxFee = _buyTaxFee (#1554)
SquidWorld._reflectFee(uint256,uint256) (#1183-1186) has costly operations inside a loop:
- _rTotal = _rTotal.sub(rFee) (#1184)
SquidWorld.restoreAllFee() (#1322-1329) has costly operations inside a loop:
- _taxFee = _previousTaxFee (#1323)
SquidWorld._transfer(address,address,uint256) (#1511-1572) has costly operations inside a loop:
- _PrizeFee = _sellPrizeFee (#1566)
SquidWorld._transfer(address,address,uint256) (#1511-1572) has costly operations inside a loop:
- _MarketingFee = _internalMarketingFee (#1548)
SquidWorld.removeAllFee() (#1297-1320) has costly operations inside a loop:
- _teamFee = 0 (#1319)
SquidWorld._transfer(address,address,uint256) (#1511-1572) has costly operations inside a loop:
- _MarketingFee = _sellMarketingFee (#1564)
SquidWorld._transfer(address,address,uint256) (#1511-1572) has costly operations inside a loop:
- _taxFee = _internalTaxFee (#1546)
SquidWorld._transfer(address,address,uint256) (#1511-1572) has costly operations inside a loop:
- _PrizeFee = _internalPrizeFee (#1550)
SquidWorld._transfer(address,address,uint256) (#1511-1572) has costly operations inside a loop:
- _teamFee = _internalTeamFee (#1551)
SquidWorld.removeAllFee() (#1297-1320) has costly operations inside a loop:
- _taxFee = 0 (#1314)
Use a local variable to hold the loop computation result.
Additional information: link
Address.sendValue(address,uint256) (#325-337) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#389-401) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#254-261) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#409-420) is never used and should be removed
Context._msgData() (#269-272) is never used and should be removed
SafeMath.mod(uint256,uint256) (#238-240) is never used and should be removed
Address._functionCallWithValue(address,bytes,uint256,string) (#422-450) is never used and should be removed
Address.isContract(address) (#296-307) is never used and should be removed
Address.functionCall(address,bytes,string) (#370-376) is never used and should be removed
Address.functionCall(address,bytes) (#357-362) is never used and should be removed
Remove unused functions.
Additional information: link
SquidWorld._previousPrizeFee (#902) is set pre-construction with a non-constant function or state variable:
- _PrizeFee
SquidWorld._previousLiquidityFee (#896) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
SquidWorld._previousteamFee (#905) is set pre-construction with a non-constant function or state variable:
- _teamFee
SquidWorld._previousburnFee (#908) is set pre-construction with a non-constant function or state variable:
- _burnFee
SquidWorld._previousMarketingFee (#899) is set pre-construction with a non-constant function or state variable:
- _MarketingFee
SquidWorld._previousTaxFee (#893) is set pre-construction with a non-constant function or state variable:
- _taxFee
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<0.9.0 (#2) is too complex
solc-0.8.15 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 Address._functionCallWithValue(address,bytes,uint256,string) (#422-450):
- (success,returndata) = target.call{value: weiValue}(data) (#431-433)
Low level call in Address.sendValue(address,uint256) (#325-337):
- (success) = recipient.call{value: amount}() (#332)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Variable SquidWorld._buyMarketingFee (#912) is not in mixedCase
Variable SquidWorld._internalTaxFee (#924) is not in mixedCase
Function SquidWorld.multiTransfer_AirDrop(address[],uint256[]) (#1849-1874) is not in mixedCase
Parameter SquidWorld.UpdateBuyTaxFeePercentage(uint256,uint256,uint256,uint256,uint256,uint256).TeamFee (#1382) is not in mixedCase
Variable SquidWorld._sellMarketingFee (#919) is not in mixedCase
Function SquidWorld.UpdateAutomaticMarketMaker(address,bool) (#1492-1497) is not in mixedCase
Parameter SquidWorld.UpdateInternalTaxFeePercentage(uint256,uint256,uint256,uint256,uint256,uint256).TeamFee (#1446) is not in mixedCase
Parameter SquidWorld.UpdateBuyTaxFeePercentage(uint256,uint256,uint256,uint256,uint256,uint256).PrizeFee (#1381) is not in mixedCase
Variable SquidWorld._internalLiquidityFee (#925) is not in mixedCase
Parameter SquidWorld.UpdateSellTaxFeePercentage(uint256,uint256,uint256,uint256,uint256,uint256).TeamFee (#1419) is not in mixedCase
Function SquidWorld.UpdateSwapThresholdValue(uint256) (#1485-1490) is not in mixedCase
Function SquidWorld.multiTransfer_fixed_AirDrop(address[],uint256) (#1829-1846) is not in mixedCase
Variable SquidWorld.DeadWallet (#880-881) is not in mixedCase
Variable SquidWorld.PrizeWallet (#878) is not in mixedCase
Variable SquidWorld._maxTxAmount (#940) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#587) is not in mixedCase
Constant SquidWorld._tTotal (#884) is not in UPPER_CASE_WITH_UNDERSCORES
Variable SquidWorld._sellBurnFee (#922) is not in mixedCase
Parameter SquidWorld.calculateTaxFee(uint256)._amount (#1285) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#617) is not in mixedCase
Parameter SquidWorld.UpdateInternalTaxFeePercentage(uint256,uint256,uint256,uint256,uint256,uint256).MarketingFee (#1444) is not in mixedCase
Variable SquidWorld._internalTeamFee (#929) is not in mixedCase
Variable SquidWorld._sellTeamFee (#921) is not in mixedCase
Parameter SquidWorld.IsAutomaticMarketMaker(address).AMM (#1347) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#585) is not in mixedCase
Parameter SquidWorld.setSwapAndLiquifyEnabled(bool)._enabled (#1355) is not in mixedCase
Function IUniswapV2Pair.Prize1CumulativeLast() (#636) is not in mixedCase
Variable SquidWorld._buyTeamFee (#914) is not in mixedCase
Variable SquidWorld._sellTaxFee (#917) is not in mixedCase
Function SquidWorld.UpdateInternalTaxFeePercentage(uint256,uint256,uint256,uint256,uint256,uint256) (#1440-1462) is not in mixedCase
Variable SquidWorld._buyLiquidityFee (#911) is not in mixedCase
Function SquidWorld.UpdateMaxWalletHoldingPercentage(uint256) (#1473-1483) is not in mixedCase
Variable SquidWorld._MarketingFee (#898) is not in mixedCase
Variable SquidWorld._buyBurnFee (#915) is not in mixedCase
Function SquidWorld.UpdateBuyTaxFeePercentage(uint256,uint256,uint256,uint256,uint256,uint256) (#1376-1411) is not in mixedCase
Variable SquidWorld._maxWalletHoldingLimit (#941) is not in mixedCase
Variable SquidWorld.TeamWallet (#879) is not in mixedCase
Function IUniswapV2Pair._burn(address) (#640-642) is not in mixedCase
Function SquidWorld.UpdateSellTaxFeePercentage(uint256,uint256,uint256,uint256,uint256,uint256) (#1413-1438) is not in mixedCase
Function SquidWorld.IsAutomaticMarketMaker(address) (#1347-1349) is not in mixedCase
Parameter SquidWorld.UpdateSellTaxFeePercentage(uint256,uint256,uint256,uint256,uint256,uint256).MarketingFee (#1417) is not in mixedCase
Event IUniswapV2Pairburn(address,uint256,uint256,address) (#601-606) is not in CapWords
Parameter SquidWorld.UpdateBuyTaxFeePercentage(uint256,uint256,uint256,uint256,uint256,uint256).MarketingFee (#1380) is not in mixedCase
Function IUniswapV2Pair.Prize0CumulativeLast() (#634) is not in mixedCase
Variable SquidWorld._internalPrizeFee (#927) is not in mixedCase
Variable SquidWorld._PrizeFee (#901) is not in mixedCase
Constant SquidWorld._name (#888) is not in UPPER_CASE_WITH_UNDERSCORES
Function SquidWorld.UpdateWallets(address,address,address) (#1360-1374) is not in mixedCase
Variable SquidWorld._buyPrizeFee (#913) is not in mixedCase
Constant SquidWorld._decimals (#890) is not in UPPER_CASE_WITH_UNDERSCORES
Variable SquidWorld._sellPrizeFee (#920) is not in mixedCase
Parameter SquidWorld.UpdateInternalTaxFeePercentage(uint256,uint256,uint256,uint256,uint256,uint256).PrizeFee (#1445) is not in mixedCase
Variable SquidWorld._sellLiquidityFee (#918) is not in mixedCase
Function IUniswapV2Router01.WETH() (#661) is not in mixedCase
Variable SquidWorld._internalMarketingFee (#926) is not in mixedCase
Parameter SquidWorld.calculateLiquidityFee(uint256)._amount (#1289) is not in mixedCase
Constant SquidWorld._symbol (#889) is not in UPPER_CASE_WITH_UNDERSCORES
Parameter SquidWorld.isExcludedFromWalletLimit(address).WalletAddress (#1339) is not in mixedCase
Function SquidWorld.UpdateMaxTxPercentage(uint256) (#1464-1471) is not in mixedCase
Variable SquidWorld._internalBurnFee (#928) is not in mixedCase
Parameter SquidWorld.UpdateSellTaxFeePercentage(uint256,uint256,uint256,uint256,uint256,uint256).PrizeFee (#1418) is not in mixedCase
Variable SquidWorld._buyTaxFee (#910) is not in mixedCase
Variable SquidWorld.MarketingWallet (#877) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#270)" inContext (#264-273)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Variable SquidWorld.takeTeam(address,uint256,uint256,uint256).rTransferAmount (#1735) is too similar to SquidWorld.takeTeam(address,uint256,uint256,uint256).tTransferAmount (#1734)
Variable SquidWorld.takeburn(address,uint256,uint256,uint256).rTransferAmount (#1717) is too similar to SquidWorld.takeTeam(address,uint256,uint256,uint256).tTransferAmount (#1734)
Variable SquidWorld.reflectionFromToken(uint256,bool).rTransferAmount (#1118) is too similar to SquidWorld._transferStandard(address,address,uint256).tTransferAmount (#1677)
Variable SquidWorld.takePrize(address,uint256,uint256,uint256).rTransferAmount (#1771) is too similar to SquidWorld.takeburn(address,uint256,uint256,uint256).tTransferAmount (#1716)
Variable SquidWorld.takePrize(address,uint256,uint256,uint256).rTransferAmount (#1771) is too similar to SquidWorld._transferStandard(address,address,uint256).tTransferAmount (#1677)
Variable SquidWorld._transferBothExcluded(address,address,uint256).rTransferAmount (#1165) is too similar to SquidWorld.takeburn(address,uint256,uint256,uint256).tTransferAmount (#1716)
Variable SquidWorld._getValues(uint256).rTransferAmount (#1205) is too similar to SquidWorld.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1752)
Variable SquidWorld._getValues(uint256).rTransferAmount (#1205) is too similar to SquidWorld.takeTeam(address,uint256,uint256,uint256).tTransferAmount (#1734)
Variable SquidWorld._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1253) is too similar to SquidWorld.takeTeam(address,uint256,uint256,uint256).tTransferAmount (#1734)
Variable SquidWorld._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1253) is too similar to SquidWorld.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1752)
Variable SquidWorld.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1753) is too similar to SquidWorld._getValues(uint256).tTransferAmount (#1201)
Variable SquidWorld._transferFromExcluded(address,address,uint256).rTransferAmount (#1814) is too similar to SquidWorld._getValues(uint256).tTransferAmount (#1201)
Variable SquidWorld.takeTeam(address,uint256,uint256,uint256).rTransferAmount (#1735) is too similar to SquidWorld._getValues(uint256).tTransferAmount (#1201)
Variable SquidWorld.reflectionFromToken(uint256,bool).rTransferAmount (#1118) is too similar to SquidWorld._transferBothExcluded(address,address,uint256).tTransferAmount (#1167)
Variable SquidWorld.reflectionFromToken(uint256,bool).rTransferAmount (#1118) is too similar to SquidWorld.takeTeam(address,uint256,uint256,uint256).tTransferAmount (#1734)
Variable SquidWorld._transferBothExcluded(address,address,uint256).rTransferAmount (#1165) is too similar to SquidWorld._transferStandard(address,address,uint256).tTransferAmount (#1677)
Variable SquidWorld.takeburn(address,uint256,uint256,uint256).rTransferAmount (#1717) is too similar to SquidWorld.takePrize(address,uint256,uint256,uint256).tTransferAmount (#1770)
Variable SquidWorld._transferBothExcluded(address,address,uint256).rTransferAmount (#1165) is too similar to SquidWorld.takeTeam(address,uint256,uint256,uint256).tTransferAmount (#1734)
Variable SquidWorld._transferToExcluded(address,address,uint256).rTransferAmount (#1793) is too similar to SquidWorld.takePrize(address,uint256,uint256,uint256).tTransferAmount (#1770)
Variable SquidWorld.takeburn(address,uint256,uint256,uint256).rTransferAmount (#1717) is too similar to SquidWorld._transferBothExcluded(address,address,uint256).tTransferAmount (#1167)
Variable SquidWorld._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1253) is too similar to SquidWorld._getTValues(uint256).tTransferAmount (#1232)
Variable SquidWorld.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1753) is too similar to SquidWorld._transferToExcluded(address,address,uint256).tTransferAmount (#1795)
Variable SquidWorld.takeTeam(address,uint256,uint256,uint256).rTransferAmount (#1735) is too similar to SquidWorld.takePrize(address,uint256,uint256,uint256).tTransferAmount (#1770)
Variable SquidWorld._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1253) is too similar to SquidWorld._transferBothExcluded(address,address,uint256).tTransferAmount (#1167)
Variable SquidWorld.reflectionFromToken(uint256,bool).rTransferAmount (#1118) is too similar to SquidWorld.takeburn(address,uint256,uint256,uint256).tTransferAmount (#1716)
Variable SquidWorld._getValues(uint256).rTransferAmount (#1205) is too similar to SquidWorld._transferBothExcluded(address,address,uint256).tTransferAmount (#1167)
Variable SquidWorld.takePrize(address,uint256,uint256,uint256).rTransferAmount (#1771) is too similar to SquidWorld._transferBothExcluded(address,address,uint256).tTransferAmount (#1167)
Variable SquidWorld._transferStandard(address,address,uint256).rTransferAmount (#1675) is too similar to SquidWorld._transferBothExcluded(address,address,uint256).tTransferAmount (#1167)
Variable SquidWorld.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1753) is too similar to SquidWorld.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1752)
Variable SquidWorld.takeburn(address,uint256,uint256,uint256).rTransferAmount (#1717) is too similar to SquidWorld._transferFromExcluded(address,address,uint256).tTransferAmount (#1816)
Variable SquidWorld.takeburn(address,uint256,uint256,uint256).rTransferAmount (#1717) is too similar to SquidWorld._getTValues(uint256).tTransferAmount (#1232)
Variable SquidWorld._transferToExcluded(address,address,uint256).rTransferAmount (#1793) is too similar to SquidWorld.takeTeam(address,uint256,uint256,uint256).tTransferAmount (#1734)
Variable SquidWorld._transferToExcluded(address,address,uint256).rTransferAmount (#1793) is too similar to SquidWorld.takeburn(address,uint256,uint256,uint256).tTransferAmount (#1716)
Variable SquidWorld._transferFromExcluded(address,address,uint256).rTransferAmount (#1814) is too similar to SquidWorld._transferBothExcluded(address,address,uint256).tTransferAmount (#1167)
Variable SquidWorld._transferFromExcluded(address,address,uint256).rTransferAmount (#1814) is too similar to SquidWorld.takePrize(address,uint256,uint256,uint256).tTransferAmount (#1770)
Variable SquidWorld._transferStandard(address,address,uint256).rTransferAmount (#1675) is too similar to SquidWorld._getTValues(uint256).tTransferAmount (#1232)
Variable SquidWorld.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1753) is too similar to SquidWorld._transferStandard(address,address,uint256).tTransferAmount (#1677)
Variable SquidWorld.reflectionFromToken(uint256,bool).rTransferAmount (#1118) is too similar to SquidWorld.takePrize(address,uint256,uint256,uint256).tTransferAmount (#1770)
Variable SquidWorld.reflectionFromToken(uint256,bool).rTransferAmount (#1118) is too similar to SquidWorld.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1752)
Variable SquidWorld.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1753) is too similar to SquidWorld._transferBothExcluded(address,address,uint256).tTransferAmount (#1167)
Variable SquidWorld.takePrize(address,uint256,uint256,uint256).rTransferAmount (#1771) is too similar to SquidWorld.takeTeam(address,uint256,uint256,uint256).tTransferAmount (#1734)
Variable SquidWorld.takeTeam(address,uint256,uint256,uint256).rTransferAmount (#1735) is too similar to SquidWorld._transferStandard(address,address,uint256).tTransferAmount (#1677)
Variable SquidWorld.reflectionFromToken(uint256,bool).rTransferAmount (#1118) is too similar to SquidWorld._transferFromExcluded(address,address,uint256).tTransferAmount (#1816)
Variable SquidWorld.takeTeam(address,uint256,uint256,uint256).rTransferAmount (#1735) is too similar to SquidWorld.takeburn(address,uint256,uint256,uint256).tTransferAmount (#1716)
Variable SquidWorld.takePrize(address,uint256,uint256,uint256).rTransferAmount (#1771) is too similar to SquidWorld._getTValues(uint256).tTransferAmount (#1232)
Variable SquidWorld.takeburn(address,uint256,uint256,uint256).rTransferAmount (#1717) is too similar to SquidWorld.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1752)
Variable SquidWorld.takeTeam(address,uint256,uint256,uint256).rTransferAmount (#1735) is too similar to SquidWorld._transferFromExcluded(address,address,uint256).tTransferAmount (#1816)
Variable SquidWorld.takeTeam(address,uint256,uint256,uint256).rTransferAmount (#1735) is too similar to SquidWorld._transferToExcluded(address,address,uint256).tTransferAmount (#1795)
Variable SquidWorld._transferBothExcluded(address,address,uint256).rTransferAmount (#1165) is too similar to SquidWorld.takePrize(address,uint256,uint256,uint256).tTransferAmount (#1770)
Variable SquidWorld._transferFromExcluded(address,address,uint256).rTransferAmount (#1814) is too similar to SquidWorld._transferStandard(address,address,uint256).tTransferAmount (#1677)
Variable SquidWorld._transferToExcluded(address,address,uint256).rTransferAmount (#1793) is too similar to SquidWorld._transferStandard(address,address,uint256).tTransferAmount (#1677)
Variable SquidWorld._transferBothExcluded(address,address,uint256).rTransferAmount (#1165) is too similar to SquidWorld.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1752)
Variable SquidWorld._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1253) is too similar to SquidWorld._getValues(uint256).tTransferAmount (#1201)
Variable SquidWorld.takePrize(address,uint256,uint256,uint256).rTransferAmount (#1771) is too similar to SquidWorld._getValues(uint256).tTransferAmount (#1201)
Variable SquidWorld.takeTeam(address,uint256,uint256,uint256).rTransferAmount (#1735) is too similar to SquidWorld.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1752)
Variable SquidWorld._transferToExcluded(address,address,uint256).rTransferAmount (#1793) is too similar to SquidWorld.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1752)
Variable SquidWorld.reflectionFromToken(uint256,bool).rTransferAmount (#1118) is too similar to SquidWorld._getValues(uint256).tTransferAmount (#1201)
Variable SquidWorld._transferFromExcluded(address,address,uint256).rTransferAmount (#1814) is too similar to SquidWorld.takeTeam(address,uint256,uint256,uint256).tTransferAmount (#1734)
Variable SquidWorld._transferToExcluded(address,address,uint256).rTransferAmount (#1793) is too similar to SquidWorld._transferBothExcluded(address,address,uint256).tTransferAmount (#1167)
Variable SquidWorld.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1753) is too similar to SquidWorld.takePrize(address,uint256,uint256,uint256).tTransferAmount (#1770)
Variable SquidWorld._transferFromExcluded(address,address,uint256).rTransferAmount (#1814) is too similar to SquidWorld._getTValues(uint256).tTransferAmount (#1232)
Variable SquidWorld._getValues(uint256).rTransferAmount (#1205) is too similar to SquidWorld._getValues(uint256).tTransferAmount (#1201)
Variable SquidWorld._getValues(uint256).rTransferAmount (#1205) is too similar to SquidWorld._transferToExcluded(address,address,uint256).tTransferAmount (#1795)
Variable SquidWorld._transferToExcluded(address,address,uint256).rTransferAmount (#1793) is too similar to SquidWorld._transferToExcluded(address,address,uint256).tTransferAmount (#1795)
Variable SquidWorld.reflectionFromToken(uint256,bool).rTransferAmount (#1118) is too similar to SquidWorld._getTValues(uint256).tTransferAmount (#1232)
Variable SquidWorld._getValues(uint256).rTransferAmount (#1205) is too similar to SquidWorld._transferFromExcluded(address,address,uint256).tTransferAmount (#1816)
Variable SquidWorld.takeburn(address,uint256,uint256,uint256).rTransferAmount (#1717) is too similar to SquidWorld._transferToExcluded(address,address,uint256).tTransferAmount (#1795)
Variable SquidWorld._transferStandard(address,address,uint256).rTransferAmount (#1675) is too similar to SquidWorld.takePrize(address,uint256,uint256,uint256).tTransferAmount (#1770)
Variable SquidWorld.takePrize(address,uint256,uint256,uint256).rTransferAmount (#1771) is too similar to SquidWorld._transferToExcluded(address,address,uint256).tTransferAmount (#1795)
Variable SquidWorld._transferBothExcluded(address,address,uint256).rTransferAmount (#1165) is too similar to SquidWorld._transferBothExcluded(address,address,uint256).tTransferAmount (#1167)
Variable SquidWorld._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1253) is too similar to SquidWorld._transferToExcluded(address,address,uint256).tTransferAmount (#1795)
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#666) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#667)
Variable SquidWorld._transferToExcluded(address,address,uint256).rTransferAmount (#1793) is too similar to SquidWorld._transferFromExcluded(address,address,uint256).tTransferAmount (#1816)
Variable SquidWorld.takeburn(address,uint256,uint256,uint256).rTransferAmount (#1717) is too similar to SquidWorld._getValues(uint256).tTransferAmount (#1201)
Variable SquidWorld._getValues(uint256).rTransferAmount (#1205) is too similar to SquidWorld.takePrize(address,uint256,uint256,uint256).tTransferAmount (#1770)
Variable SquidWorld.takePrize(address,uint256,uint256,uint256).rTransferAmount (#1771) is too similar to SquidWorld.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1752)
Variable SquidWorld._transferStandard(address,address,uint256).rTransferAmount (#1675) is too similar to SquidWorld._getValues(uint256).tTransferAmount (#1201)
Variable SquidWorld._getValues(uint256).rTransferAmount (#1205) is too similar to SquidWorld._getTValues(uint256).tTransferAmount (#1232)
Variable SquidWorld._transferBothExcluded(address,address,uint256).rTransferAmount (#1165) is too similar to SquidWorld._getTValues(uint256).tTransferAmount (#1232)
Variable SquidWorld._getValues(uint256).rTransferAmount (#1205) is too similar to SquidWorld.takeburn(address,uint256,uint256,uint256).tTransferAmount (#1716)
Variable SquidWorld._transferFromExcluded(address,address,uint256).rTransferAmount (#1814) is too similar to SquidWorld._transferToExcluded(address,address,uint256).tTransferAmount (#1795)
Variable SquidWorld.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1753) is too similar to SquidWorld.takeTeam(address,uint256,uint256,uint256).tTransferAmount (#1734)
Variable SquidWorld._transferFromExcluded(address,address,uint256).rTransferAmount (#1814) is too similar to SquidWorld._transferFromExcluded(address,address,uint256).tTransferAmount (#1816)
Variable SquidWorld._transferStandard(address,address,uint256).rTransferAmount (#1675) is too similar to SquidWorld._transferStandard(address,address,uint256).tTransferAmount (#1677)
Variable SquidWorld._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1253) is too similar to SquidWorld._transferStandard(address,address,uint256).tTransferAmount (#1677)
Variable SquidWorld._transferToExcluded(address,address,uint256).rTransferAmount (#1793) is too similar to SquidWorld._getValues(uint256).tTransferAmount (#1201)
Variable SquidWorld._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1253) is too similar to SquidWorld.takePrize(address,uint256,uint256,uint256).tTransferAmount (#1770)
Variable SquidWorld._transferStandard(address,address,uint256).rTransferAmount (#1675) is too similar to SquidWorld.takeburn(address,uint256,uint256,uint256).tTransferAmount (#1716)
Variable SquidWorld._transferFromExcluded(address,address,uint256).rTransferAmount (#1814) is too similar to SquidWorld.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1752)
Variable SquidWorld._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1253) is too similar to SquidWorld._transferFromExcluded(address,address,uint256).tTransferAmount (#1816)
Variable SquidWorld.takeburn(address,uint256,uint256,uint256).rTransferAmount (#1717) is too similar to SquidWorld._transferStandard(address,address,uint256).tTransferAmount (#1677)
Variable SquidWorld._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1253) is too similar to SquidWorld.takeburn(address,uint256,uint256,uint256).tTransferAmount (#1716)
Variable SquidWorld._getValues(uint256).rTransferAmount (#1205) is too similar to SquidWorld._transferStandard(address,address,uint256).tTransferAmount (#1677)
Variable SquidWorld.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1753) is too similar to SquidWorld._getTValues(uint256).tTransferAmount (#1232)
Variable SquidWorld.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1753) is too similar to SquidWorld._transferFromExcluded(address,address,uint256).tTransferAmount (#1816)
Variable SquidWorld._transferBothExcluded(address,address,uint256).rTransferAmount (#1165) is too similar to SquidWorld._getValues(uint256).tTransferAmount (#1201)
Variable SquidWorld.takePrize(address,uint256,uint256,uint256).rTransferAmount (#1771) is too similar to SquidWorld._transferFromExcluded(address,address,uint256).tTransferAmount (#1816)
Variable SquidWorld._transferFromExcluded(address,address,uint256).rTransferAmount (#1814) is too similar to SquidWorld.takeburn(address,uint256,uint256,uint256).tTransferAmount (#1716)
Variable SquidWorld._transferToExcluded(address,address,uint256).rTransferAmount (#1793) is too similar to SquidWorld._getTValues(uint256).tTransferAmount (#1232)
Variable SquidWorld._transferStandard(address,address,uint256).rTransferAmount (#1675) is too similar to SquidWorld._transferFromExcluded(address,address,uint256).tTransferAmount (#1816)
Variable SquidWorld._transferStandard(address,address,uint256).rTransferAmount (#1675) is too similar to SquidWorld.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1752)
Variable SquidWorld._transferStandard(address,address,uint256).rTransferAmount (#1675) is too similar to SquidWorld._transferToExcluded(address,address,uint256).tTransferAmount (#1795)
Variable SquidWorld._transferBothExcluded(address,address,uint256).rTransferAmount (#1165) is too similar to SquidWorld._transferFromExcluded(address,address,uint256).tTransferAmount (#1816)
Variable SquidWorld.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1753) is too similar to SquidWorld.takeburn(address,uint256,uint256,uint256).tTransferAmount (#1716)
Variable SquidWorld.takeTeam(address,uint256,uint256,uint256).rTransferAmount (#1735) is too similar to SquidWorld._transferBothExcluded(address,address,uint256).tTransferAmount (#1167)
Variable SquidWorld.takeburn(address,uint256,uint256,uint256).rTransferAmount (#1717) is too similar to SquidWorld.takeburn(address,uint256,uint256,uint256).tTransferAmount (#1716)
Variable SquidWorld._transferBothExcluded(address,address,uint256).rTransferAmount (#1165) is too similar to SquidWorld._transferToExcluded(address,address,uint256).tTransferAmount (#1795)
Variable SquidWorld.takePrize(address,uint256,uint256,uint256).rTransferAmount (#1771) is too similar to SquidWorld.takePrize(address,uint256,uint256,uint256).tTransferAmount (#1770)
Variable SquidWorld.takeTeam(address,uint256,uint256,uint256).rTransferAmount (#1735) is too similar to SquidWorld._getTValues(uint256).tTransferAmount (#1232)
Variable SquidWorld.reflectionFromToken(uint256,bool).rTransferAmount (#1118) is too similar to SquidWorld._transferToExcluded(address,address,uint256).tTransferAmount (#1795)
Variable SquidWorld._transferStandard(address,address,uint256).rTransferAmount (#1675) is too similar to SquidWorld.takeTeam(address,uint256,uint256,uint256).tTransferAmount (#1734)
Prevent variables from having similar names.
Additional information: link
SquidWorld.slitherConstructorVariables() (#864-1876) uses literals with too many digits:
- DeadWallet = 0x000000000000000000000000000000000000dEaD (#880-881)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
SquidWorld.feeDenominator (#931) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
transferFrom(address,address,uint256) should be declared external:
- SquidWorld.transferFrom(address,address,uint256) (#1042-1057)
symbol() should be declared external:
- SquidWorld.symbol() (#998-1000)
decreaseAllowance(address,uint256) should be declared external:
- SquidWorld.decreaseAllowance(address,uint256) (#1072-1086)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#503-506)
totalFees() should be declared external:
- SquidWorld.totalFees() (#1092-1094)
reflectionFromToken(uint256,bool) should be declared external:
- SquidWorld.reflectionFromToken(uint256,bool) (#1108-1121)
approve(address,uint256) should be declared external:
- SquidWorld.approve(address,uint256) (#1033-1040)
allowance(address,address) should be declared external:
- SquidWorld.allowance(address,address) (#1024-1031)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#512-519)
totalSupply() should be declared external:
- SquidWorld.totalSupply() (#1006-1008)
isExcludedFromReward(address) should be declared external:
- SquidWorld.isExcludedFromReward(address) (#1088-1090)
name() should be declared external:
- SquidWorld.name() (#994-996)
deliver(uint256) should be declared external:
- SquidWorld.deliver(uint256) (#1096-1106)
decimals() should be declared external:
- SquidWorld.decimals() (#1002-1004)
increaseAllowance(address,uint256) should be declared external:
- SquidWorld.increaseAllowance(address,uint256) (#1059-1070)
transfer(address,uint256) should be declared external:
- SquidWorld.transfer(address,uint256) (#1015-1022)
Use the external attribute for functions never called from the contract.
Additional information: link
Contract has 10% buy tax and 19% 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 liquidity is low.
Average 30d PancakeSwap volume is low.
Average 30d number of PancakeSwap swaps is low.
Number of Binance Smart Chain (BSC) token holders is low.
Average PancakeSwap trading volume, liqudity, number of swaps are low. Token seems to be inactive.
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 token on CoinGecko
Additional information: link
Unable to find token on CoinMarketCap
Additional information: link
Unable to find Telegram 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
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Token is relatively young, but twitter if very old (probably it's fake).
Unable to find Blog account (Reddit or Medium)
Unable to find Discord account