Akado Inu is a community driven project launching soon on Binance Smart Chain.
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Reentrancy in AkadoInu._transfer(address,address,uint256) (#1026-1189):
External calls:
- swapBack() (#1145)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1264-1271)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1253-1259)
- (success) = address(marketingAddress).call{value: ethForMarketing}() (#1218-1220)
- (success,None) = address(devAddress).call{value: ethForDev}() (#1221)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1231-1233)
External calls sending eth:
- swapBack() (#1145)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1264-1271)
- (success) = address(marketingAddress).call{value: ethForMarketing}() (#1218-1220)
- (success,None) = address(devAddress).call{value: ethForDev}() (#1221)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1231-1233)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1188)
- _liquidityTokensToSwap += (tLiquidity * _buyLiquidityFee) / _liquidityFee (#1475-1477)
- _liquidityTokensToSwap += (tLiquidity * _sellLiquidityFee) / _liquidityFee (#1482-1484)
- _tokenTransfer(from,to,amount,takeFee) (#1188)
- _marketingTokensToSwap += (tLiquidity * _buyMarketingFee) / _liquidityFee (#1478-1480)
- _marketingTokensToSwap += (tLiquidity * _sellMarketingFee) / _liquidityFee (#1485-1487)
- _tokenTransfer(from,to,amount,takeFee) (#1188)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1328)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1308)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1309)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1350)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1371)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1330)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1351)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1373)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#1491)
- _tokenTransfer(from,to,amount,takeFee) (#1188)
- _rTotal = _rTotal.sub(rFee) (#1380)
- _tokenTransfer(from,to,amount,takeFee) (#1188)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1349)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1370)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1329)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1372)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#1493)
Apply the check-effects-interactions pattern.
Additional information: link
AkadoInu._transfer(address,address,uint256) (#1026-1189) uses a dangerous strict equality:
- from != owner() && to != uniswapV2Pair && block.number == tradingActiveBlock (#1063-1065)
Don't use strict equality to determine if an account has enough Ether or tokens.
Additional information: link
AkadoInu.swapBack().success (#1218) is written in both
(success) = address(marketingAddress).call{value: ethForMarketing}() (#1218-1220)
(success,None) = address(devAddress).call{value: ethForDev}() (#1221)
Fix or remove the writes.
Additional information: link
Pragma version0.8.10 (#18) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
solc-0.8.10 is not recommended for deployment
Deploy with any of the following Solidity versions: 0.5.16 - 0.5.17, 0.6.11 - 0.6.12, 0.7.5 - 0.7.6 Use a simple pragma version that allows any of these versions. Consider using the latest version of Solidity for testing.
Additional information: link
AkadoInu.constructor() (#742-767) performs a multiplication on the result of a division:
-_rOwned[owner()] = (_rTotal / 1000) * 500 (#743)
AkadoInu.constructor() (#742-767) performs a multiplication on the result of a division:
-_rOwned[address(this)] = (_rTotal / 1000) * 500 (#744)
AkadoInu.swapBack() (#1191-1235) performs a multiplication on the result of a division:
-ethForMarketing = ethBalance.mul(_marketingTokensToSwap).div(totalTokensToSwap) (#1206-1208)
-ethForDev = (ethForMarketing * 5) / 10 (#1212)
Consider ordering multiplication before division.
Additional information: link
Reentrancy in AkadoInu.swapBack() (#1191-1235):
External calls:
- swapTokensForETH(amountToSwapForETH) (#1202)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1253-1259)
State variables written after the call(s):
- _liquidityTokensToSwap = 0 (#1215)
- _marketingTokensToSwap = 0 (#1216)
Apply the check-effects-interactions pattern.
Additional information: link
AkadoInu._transfer(address,address,uint256) (#1026-1189) uses tx.origin for authorization: require(bool,string)(_holderLastTransferTimestamp[to] < block.number && _holderLastTransferTimestamp[tx.origin] < block.number,_transfer:: Transfer Delay enabled. Only one purchase per block allowed.) (#1086-1091)
Do not use tx.origin for authorization.
Additional information: link
AkadoInu.addLiquidity(uint256,uint256) (#1262-1272) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1264-1271)
Ensure that all the return values of the function calls are used.
Additional information: link
AkadoInu.allowance(address,address).owner (#799) shadows:
- Ownable.owner() (#239-241) (function)
AkadoInu._approve(address,address,uint256).owner (#1015) shadows:
- Ownable.owner() (#239-241) (function)
Rename the local variables that shadow another component.
Additional information: link
AkadoInu.setGasPriceLimit(uint256) (#955-958) should emit an event for:
- gasPriceLimit = gas * 1000000000 (#957)
AkadoInu.setBuyLimit(uint256) (#1611-1613) should emit an event for:
- maxAmountCanBuy = amount (#1612)
Emit an event for critical parameter changes.
Additional information: link
Reentrancy in AkadoInu._transfer(address,address,uint256) (#1026-1189):
External calls:
- swapBack() (#1145)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1264-1271)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1253-1259)
- (success) = address(marketingAddress).call{value: ethForMarketing}() (#1218-1220)
- (success,None) = address(devAddress).call{value: ethForDev}() (#1221)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1231-1233)
External calls sending eth:
- swapBack() (#1145)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1264-1271)
- (success) = address(marketingAddress).call{value: ethForMarketing}() (#1218-1220)
- (success,None) = address(devAddress).call{value: ethForDev}() (#1221)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1231-1233)
State variables written after the call(s):
- removeAllFee() (#1157)
- _liquidityFee = 0 (#1515)
- _liquidityFee = _buyLiquidityFee + _buyMarketingFee (#1159)
- removeAllFee() (#1164)
- _liquidityFee = 0 (#1515)
- _liquidityFee = _sellLiquidityFee + _sellMarketingFee (#1166)
- _liquidityFee = _liquidityFee * 5 (#1171)
- _liquidityFee = _liquidityFee * 2 (#1175)
- removeAllFee() (#1183)
- _liquidityFee = 0 (#1515)
- _tokenTransfer(from,to,amount,takeFee) (#1188)
- _liquidityFee = _previousLiquidityFee (#1520)
- _liquidityFee = 0 (#1515)
- removeAllFee() (#1157)
- _previousLiquidityFee = _liquidityFee (#1512)
- removeAllFee() (#1164)
- _previousLiquidityFee = _liquidityFee (#1512)
- removeAllFee() (#1183)
- _previousLiquidityFee = _liquidityFee (#1512)
- _tokenTransfer(from,to,amount,takeFee) (#1188)
- _previousLiquidityFee = _liquidityFee (#1512)
- removeAllFee() (#1157)
- _previousTaxFee = _taxFee (#1511)
- removeAllFee() (#1164)
- _previousTaxFee = _taxFee (#1511)
- removeAllFee() (#1183)
- _previousTaxFee = _taxFee (#1511)
- _tokenTransfer(from,to,amount,takeFee) (#1188)
- _previousTaxFee = _taxFee (#1511)
- _tokenTransfer(from,to,amount,takeFee) (#1188)
- _tFeeTotal = _tFeeTotal.add(tFee) (#1381)
- removeAllFee() (#1157)
- _taxFee = 0 (#1514)
- _taxFee = _buyTaxFee (#1158)
- removeAllFee() (#1164)
- _taxFee = 0 (#1514)
- _taxFee = _sellTaxFee (#1165)
- _taxFee = _taxFee * 5 (#1170)
- _taxFee = _taxFee * 2 (#1174)
- removeAllFee() (#1183)
- _taxFee = 0 (#1514)
- _tokenTransfer(from,to,amount,takeFee) (#1188)
- _taxFee = _previousTaxFee (#1519)
- _taxFee = 0 (#1514)
- buyOrSellSwitch = TRANSFER (#1153)
- buyOrSellSwitch = BUY (#1160)
- buyOrSellSwitch = SELL (#1167)
- buyOrSellSwitch = TRANSFER (#1184)
Reentrancy in AkadoInu.launch() (#905-926):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#915-916)
State variables written after the call(s):
- _setAutomatedMarketMakerPair(address(uniswapV2Pair),true) (#918)
- _excluded.push(account) (#998)
- _excluded[i] = _excluded[_excluded.length - 1] (#1005)
- _excluded.pop() (#1008)
- _setAutomatedMarketMakerPair(address(uniswapV2Pair),true) (#918)
- _isExcluded[account] = true (#997)
- _isExcluded[account] = false (#1007)
- excludeFromMaxTransaction(address(uniswapV2Pair),true) (#917)
- _isExcludedMaxTransactionAmount[updAds] = isEx (#893)
- _setAutomatedMarketMakerPair(address(uniswapV2Pair),true) (#918)
- _isExcludedMaxTransactionAmount[pair] = value (#946)
- _setAutomatedMarketMakerPair(address(uniswapV2Pair),true) (#918)
- _tOwned[account] = tokenFromReflection(_rOwned[account]) (#995)
- _tOwned[account] = 0 (#1006)
- _setAutomatedMarketMakerPair(address(uniswapV2Pair),true) (#918)
- automatedMarketMakerPairs[pair] = value (#945)
Reentrancy in AkadoInu.launch() (#905-926):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#915-916)
- addLiquidity(balanceOf(address(this)),address(this).balance) (#923)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1264-1271)
External calls sending eth:
- addLiquidity(balanceOf(address(this)),address(this).balance) (#923)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1264-1271)
State variables written after the call(s):
- addLiquidity(balanceOf(address(this)),address(this).balance) (#923)
- _allowances[owner][spender] = amount (#1022)
- launchTime = block.timestamp (#924)
Reentrancy in AkadoInu.swapBack() (#1191-1235):
External calls:
- swapTokensForETH(amountToSwapForETH) (#1202)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1253-1259)
- (success) = address(marketingAddress).call{value: ethForMarketing}() (#1218-1220)
- (success,None) = address(devAddress).call{value: ethForDev}() (#1221)
- addLiquidity(tokensForLiquidity,ethForLiquidity) (#1223)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1264-1271)
External calls sending eth:
- (success) = address(marketingAddress).call{value: ethForMarketing}() (#1218-1220)
- (success,None) = address(devAddress).call{value: ethForDev}() (#1221)
- addLiquidity(tokensForLiquidity,ethForLiquidity) (#1223)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1264-1271)
State variables written after the call(s):
- addLiquidity(tokensForLiquidity,ethForLiquidity) (#1223)
- _allowances[owner][spender] = amount (#1022)
Reentrancy in AkadoInu.transferFrom(address,address,uint256) (#817-832):
External calls:
- _transfer(sender,recipient,amount) (#822)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1264-1271)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1253-1259)
- (success) = address(marketingAddress).call{value: ethForMarketing}() (#1218-1220)
- (success,None) = address(devAddress).call{value: ethForDev}() (#1221)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1231-1233)
External calls sending eth:
- _transfer(sender,recipient,amount) (#822)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1264-1271)
- (success) = address(marketingAddress).call{value: ethForMarketing}() (#1218-1220)
- (success,None) = address(devAddress).call{value: ethForDev}() (#1221)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1231-1233)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#823-830)
- _allowances[owner][spender] = amount (#1022)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in AkadoInu._transfer(address,address,uint256) (#1026-1189):
External calls:
- swapBack() (#1145)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1264-1271)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1253-1259)
- (success) = address(marketingAddress).call{value: ethForMarketing}() (#1218-1220)
- (success,None) = address(devAddress).call{value: ethForDev}() (#1221)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1231-1233)
External calls sending eth:
- swapBack() (#1145)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1264-1271)
- (success) = address(marketingAddress).call{value: ethForMarketing}() (#1218-1220)
- (success,None) = address(devAddress).call{value: ethForDev}() (#1221)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1231-1233)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1312)
- _tokenTransfer(from,to,amount,takeFee) (#1188)
- Transfer(sender,recipient,tTransferAmount) (#1354)
- _tokenTransfer(from,to,amount,takeFee) (#1188)
- Transfer(sender,recipient,tTransferAmount) (#1333)
- _tokenTransfer(from,to,amount,takeFee) (#1188)
- Transfer(sender,recipient,tTransferAmount) (#1376)
- _tokenTransfer(from,to,amount,takeFee) (#1188)
Reentrancy in AkadoInu.forceSwapBack() (#1238-1246):
External calls:
- swapBack() (#1244)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1264-1271)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1253-1259)
- (success) = address(marketingAddress).call{value: ethForMarketing}() (#1218-1220)
- (success,None) = address(devAddress).call{value: ethForDev}() (#1221)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1231-1233)
External calls sending eth:
- swapBack() (#1244)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1264-1271)
- (success) = address(marketingAddress).call{value: ethForMarketing}() (#1218-1220)
- (success,None) = address(devAddress).call{value: ethForDev}() (#1221)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1231-1233)
Event emitted after the call(s):
- OwnerForcedSwapBack(block.timestamp) (#1245)
Reentrancy in AkadoInu.launch() (#905-926):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#915-916)
- addLiquidity(balanceOf(address(this)),address(this).balance) (#923)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1264-1271)
External calls sending eth:
- addLiquidity(balanceOf(address(this)),address(this).balance) (#923)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1264-1271)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1023)
- addLiquidity(balanceOf(address(this)),address(this).balance) (#923)
Reentrancy in AkadoInu.swapBack() (#1191-1235):
External calls:
- swapTokensForETH(amountToSwapForETH) (#1202)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1253-1259)
- (success) = address(marketingAddress).call{value: ethForMarketing}() (#1218-1220)
- (success,None) = address(devAddress).call{value: ethForDev}() (#1221)
- addLiquidity(tokensForLiquidity,ethForLiquidity) (#1223)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1264-1271)
External calls sending eth:
- (success) = address(marketingAddress).call{value: ethForMarketing}() (#1218-1220)
- (success,None) = address(devAddress).call{value: ethForDev}() (#1221)
- addLiquidity(tokensForLiquidity,ethForLiquidity) (#1223)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1264-1271)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1023)
- addLiquidity(tokensForLiquidity,ethForLiquidity) (#1223)
- SwapAndLiquify(amountToSwapForETH,ethForLiquidity,tokensForLiquidity) (#1224-1228)
Reentrancy in AkadoInu.transferForeignToken(address,address) (#1618-1628):
External calls:
- _sent = IERC20(_token).transfer(_to,_contractBalance) (#1626)
Event emitted after the call(s):
- TransferForeignToken(_token,_contractBalance) (#1627)
Reentrancy in AkadoInu.transferFrom(address,address,uint256) (#817-832):
External calls:
- _transfer(sender,recipient,amount) (#822)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1264-1271)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1253-1259)
- (success) = address(marketingAddress).call{value: ethForMarketing}() (#1218-1220)
- (success,None) = address(devAddress).call{value: ethForDev}() (#1221)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1231-1233)
External calls sending eth:
- _transfer(sender,recipient,amount) (#822)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#1264-1271)
- (success) = address(marketingAddress).call{value: ethForMarketing}() (#1218-1220)
- (success,None) = address(devAddress).call{value: ethForDev}() (#1221)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1231-1233)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1023)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#823-830)
Apply the check-effects-interactions pattern.
Additional information: link
AkadoInu._transfer(address,address,uint256) (#1026-1189) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > launchTime + 60 || amount <= maxAmountCanBuy,You can't buy large amount.) (#1041-1045)
- boughtEarly[from] && earlyBuyPenaltyEnd > block.timestamp (#1169)
- block.timestamp < launchTime + 43200 (#1173)
- require(bool,string)(! boughtEarly[from] || earlyBuyPenaltyEnd <= block.timestamp,Snipers can't transfer tokens to sell cheaper until penalty timeframe is over. DM a Mod.) (#1179-1182)
Avoid relying on block.timestamp.
Additional information: link
Address.isContract(address) (#128-139) uses assembly
- INLINE ASM (#135-137)
Address._functionCallWithValue(address,bytes,uint256,string) (#197-220) uses assembly
- INLINE ASM (#212-215)
Do not use evm assembly.
Additional information: link
AkadoInu.includeInReward(address) (#1001-1012) has costly operations inside a loop:
- _excluded.pop() (#1008)
Use a local variable to hold the loop computation result.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#197-220) is never used and should be removed
Address.functionCall(address,bytes) (#155-160) is never used and should be removed
Address.functionCall(address,bytes,string) (#162-168) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#170-182) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#184-195) is never used and should be removed
Address.isContract(address) (#128-139) is never used and should be removed
Address.sendValue(address,uint256) (#141-153) is never used and should be removed
Context._msgData() (#27-30) 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) (#117-124) is never used and should be removed
Remove unused functions.
Additional information: link
AkadoInu._previousTaxFee (#640) is set pre-construction with a non-constant function or state variable:
- _taxFee
AkadoInu._previousLiquidityFee (#645) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
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) (#141-153):
- (success) = recipient.call{value: amount}() (#148)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#197-220):
- (success,returndata) = target.call{value: weiValue}(data) (#205-207)
Low level call in AkadoInu.swapBack() (#1191-1235):
- (success) = address(marketingAddress).call{value: ethForMarketing}() (#1218-1220)
- (success,None) = address(devAddress).call{value: ethForDev}() (#1221)
- (success,None) = address(marketingAddress).call{value: address(this).balance}() (#1231-1233)
Low level call in AkadoInu.withdrawStuckETH() (#1631-1637):
- (success,None) = address(msg.sender).call{value: address(this).balance}() (#1634-1636)
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() (#326) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#328) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#358) is not in mixedCase
Function IUniswapV2Router01.WETH() (#402) is not in mixedCase
Parameter AkadoInu.calculateTaxFee(uint256)._amount (#1496) is not in mixedCase
Parameter AkadoInu.calculateLiquidityFee(uint256)._amount (#1500) is not in mixedCase
Parameter AkadoInu.setMarketingAddress(address)._marketingAddress (#1572) is not in mixedCase
Parameter AkadoInu.setLiquidityAddress(address)._liquidityAddress (#1583) is not in mixedCase
Parameter AkadoInu.setSwapAndLiquifyEnabled(bool)._enabled (#1593) is not in mixedCase
Parameter AkadoInu.transferForeignToken(address,address)._token (#1618) is not in mixedCase
Parameter AkadoInu.transferForeignToken(address,address)._to (#1618) is not in mixedCase
Constant AkadoInu._tTotal (#630) is not in UPPER_CASE_WITH_UNDERSCORES
Constant AkadoInu._name (#634) is not in UPPER_CASE_WITH_UNDERSCORES
Constant AkadoInu._symbol (#635) is not in UPPER_CASE_WITH_UNDERSCORES
Constant AkadoInu._decimals (#636) is not in UPPER_CASE_WITH_UNDERSCORES
Variable AkadoInu._buyTaxFee (#654) is not in mixedCase
Variable AkadoInu._buyLiquidityFee (#655) is not in mixedCase
Variable AkadoInu._buyMarketingFee (#656) is not in mixedCase
Variable AkadoInu._sellTaxFee (#658) is not in mixedCase
Variable AkadoInu._sellLiquidityFee (#659) is not in mixedCase
Variable AkadoInu._sellMarketingFee (#660) is not in mixedCase
Variable AkadoInu._liquidityTokensToSwap (#666) is not in mixedCase
Variable AkadoInu._marketingTokensToSwap (#667) is not in mixedCase
Variable AkadoInu._isExcludedMaxTransactionAmount (#671) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#28)" inContext (#22-31)
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 (#407) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#408)
Variable AkadoInu._transferFromExcluded(address,address,uint256).rTransferAmount (#1343) is too similar to AkadoInu._transferBothExcluded(address,address,uint256).tTransferAmount (#1366)
Variable AkadoInu._transferBothExcluded(address,address,uint256).rTransferAmount (#1364) is too similar to AkadoInu._transferBothExcluded(address,address,uint256).tTransferAmount (#1366)
Variable AkadoInu.reflectionFromToken(uint256,bool).rTransferAmount (#970) is too similar to AkadoInu._transferToExcluded(address,address,uint256).tTransferAmount (#1324)
Variable AkadoInu._transferFromExcluded(address,address,uint256).rTransferAmount (#1343) is too similar to AkadoInu._transferToExcluded(address,address,uint256).tTransferAmount (#1324)
Variable AkadoInu.reflectionFromToken(uint256,bool).rTransferAmount (#970) is too similar to AkadoInu._transferFromExcluded(address,address,uint256).tTransferAmount (#1345)
Variable AkadoInu._transferBothExcluded(address,address,uint256).rTransferAmount (#1364) is too similar to AkadoInu._transferToExcluded(address,address,uint256).tTransferAmount (#1324)
Variable AkadoInu._getValues(uint256).rTransferAmount (#1401) is too similar to AkadoInu._transferBothExcluded(address,address,uint256).tTransferAmount (#1366)
Variable AkadoInu._transferFromExcluded(address,address,uint256).rTransferAmount (#1343) is too similar to AkadoInu._transferFromExcluded(address,address,uint256).tTransferAmount (#1345)
Variable AkadoInu._transferBothExcluded(address,address,uint256).rTransferAmount (#1364) is too similar to AkadoInu._transferFromExcluded(address,address,uint256).tTransferAmount (#1345)
Variable AkadoInu._getValues(uint256).rTransferAmount (#1401) is too similar to AkadoInu._transferToExcluded(address,address,uint256).tTransferAmount (#1324)
Variable AkadoInu._getValues(uint256).rTransferAmount (#1401) is too similar to AkadoInu._transferFromExcluded(address,address,uint256).tTransferAmount (#1345)
Variable AkadoInu._transferToExcluded(address,address,uint256).rTransferAmount (#1322) is too similar to AkadoInu._transferToExcluded(address,address,uint256).tTransferAmount (#1324)
Variable AkadoInu._transferToExcluded(address,address,uint256).rTransferAmount (#1322) is too similar to AkadoInu._transferFromExcluded(address,address,uint256).tTransferAmount (#1345)
Variable AkadoInu._transferStandard(address,address,uint256).rTransferAmount (#1302) is too similar to AkadoInu._transferStandard(address,address,uint256).tTransferAmount (#1304)
Variable AkadoInu.reflectionFromToken(uint256,bool).rTransferAmount (#970) is too similar to AkadoInu._getValues(uint256).tTransferAmount (#1397)
Variable AkadoInu._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1449) is too similar to AkadoInu._transferBothExcluded(address,address,uint256).tTransferAmount (#1366)
Variable AkadoInu.reflectionFromToken(uint256,bool).rTransferAmount (#970) is too similar to AkadoInu._transferStandard(address,address,uint256).tTransferAmount (#1304)
Variable AkadoInu._transferStandard(address,address,uint256).rTransferAmount (#1302) is too similar to AkadoInu._transferBothExcluded(address,address,uint256).tTransferAmount (#1366)
Variable AkadoInu._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1449) is too similar to AkadoInu._transferToExcluded(address,address,uint256).tTransferAmount (#1324)
Variable AkadoInu._transferStandard(address,address,uint256).rTransferAmount (#1302) is too similar to AkadoInu._transferToExcluded(address,address,uint256).tTransferAmount (#1324)
Variable AkadoInu._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1449) is too similar to AkadoInu._transferFromExcluded(address,address,uint256).tTransferAmount (#1345)
Variable AkadoInu.reflectionFromToken(uint256,bool).rTransferAmount (#970) is too similar to AkadoInu._transferBothExcluded(address,address,uint256).tTransferAmount (#1366)
Variable AkadoInu._transferStandard(address,address,uint256).rTransferAmount (#1302) is too similar to AkadoInu._transferFromExcluded(address,address,uint256).tTransferAmount (#1345)
Variable AkadoInu._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1449) is too similar to AkadoInu._getValues(uint256).tTransferAmount (#1397)
Variable AkadoInu._transferToExcluded(address,address,uint256).rTransferAmount (#1322) is too similar to AkadoInu._getValues(uint256).tTransferAmount (#1397)
Variable AkadoInu._transferFromExcluded(address,address,uint256).rTransferAmount (#1343) is too similar to AkadoInu._getValues(uint256).tTransferAmount (#1397)
Variable AkadoInu._transferBothExcluded(address,address,uint256).rTransferAmount (#1364) is too similar to AkadoInu._transferStandard(address,address,uint256).tTransferAmount (#1304)
Variable AkadoInu._getValues(uint256).rTransferAmount (#1401) is too similar to AkadoInu._getValues(uint256).tTransferAmount (#1397)
Variable AkadoInu._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1449) is too similar to AkadoInu._transferStandard(address,address,uint256).tTransferAmount (#1304)
Variable AkadoInu._transferToExcluded(address,address,uint256).rTransferAmount (#1322) is too similar to AkadoInu._transferStandard(address,address,uint256).tTransferAmount (#1304)
Variable AkadoInu._transferStandard(address,address,uint256).rTransferAmount (#1302) is too similar to AkadoInu._getTValues(uint256).tTransferAmount (#1428)
Variable AkadoInu._transferFromExcluded(address,address,uint256).rTransferAmount (#1343) is too similar to AkadoInu._transferStandard(address,address,uint256).tTransferAmount (#1304)
Variable AkadoInu._getValues(uint256).rTransferAmount (#1401) is too similar to AkadoInu._transferStandard(address,address,uint256).tTransferAmount (#1304)
Variable AkadoInu._transferBothExcluded(address,address,uint256).rTransferAmount (#1364) is too similar to AkadoInu._getTValues(uint256).tTransferAmount (#1428)
Variable AkadoInu._transferToExcluded(address,address,uint256).rTransferAmount (#1322) is too similar to AkadoInu._transferBothExcluded(address,address,uint256).tTransferAmount (#1366)
Variable AkadoInu._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1449) is too similar to AkadoInu._getTValues(uint256).tTransferAmount (#1428)
Variable AkadoInu._transferToExcluded(address,address,uint256).rTransferAmount (#1322) is too similar to AkadoInu._getTValues(uint256).tTransferAmount (#1428)
Variable AkadoInu._transferFromExcluded(address,address,uint256).rTransferAmount (#1343) is too similar to AkadoInu._getTValues(uint256).tTransferAmount (#1428)
Variable AkadoInu._getValues(uint256).rTransferAmount (#1401) is too similar to AkadoInu._getTValues(uint256).tTransferAmount (#1428)
Variable AkadoInu.reflectionFromToken(uint256,bool).rTransferAmount (#970) is too similar to AkadoInu._getTValues(uint256).tTransferAmount (#1428)
Variable AkadoInu._transferStandard(address,address,uint256).rTransferAmount (#1302) is too similar to AkadoInu._getValues(uint256).tTransferAmount (#1397)
Variable AkadoInu._transferBothExcluded(address,address,uint256).rTransferAmount (#1364) is too similar to AkadoInu._getValues(uint256).tTransferAmount (#1397)
Prevent variables from having similar names.
Additional information: link
Ownable._previousOwner (#225) is never used in AkadoInu (#605-1639)
Ownable._lockTime (#226) is never used in AkadoInu (#605-1639)
AkadoInu._marketingFee (#642) is never used in AkadoInu (#605-1639)
Remove unused state variables.
Additional information: link
AkadoInu._marketingFee (#642) should be constant
Ownable._lockTime (#226) should be constant
Ownable._previousOwner (#225) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#248-251)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#253-260)
approve(address,uint256) should be declared external:
- AkadoInu.approve(address,uint256) (#808-815)
setAutomatedMarketMakerPair(address,bool) should be declared external:
- AkadoInu.setAutomatedMarketMakerPair(address,bool) (#932-942)
setLiquidityAddress(address) should be declared external:
- AkadoInu.setLiquidityAddress(address) (#1583-1591)
setSwapAndLiquifyEnabled(bool) should be declared external:
- AkadoInu.setSwapAndLiquifyEnabled(bool) (#1593-1596)
addOnBlackList(address) should be declared external:
- AkadoInu.addOnBlackList(address) (#1598-1601)
stopAddingOnBlacklist() should be declared external:
- AkadoInu.stopAddingOnBlacklist() (#1603-1605)
removeFromBlackList(address) should be declared external:
- AkadoInu.removeFromBlackList(address) (#1607-1609)
setBuyLimit(uint256) should be declared external:
- AkadoInu.setBuyLimit(uint256) (#1611-1613)
Use the external attribute for functions never called from the contract.
Additional information: link
Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.
Number of Binance Smart Chain (BSC) token holders is low.
Token is deployed only at one blockchain
Token has only one trading pair
Unable to find PancakeSwap trading pair to compute liquidity.
Unable to find PancakeSwap trading pair to compute volume.
Unable to find PancakeSwap trading pair to compute number of swaps.
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
Unable to find token on CoinGecko
Additional information: link
Unable to find token on CoinMarketCap
Additional information: link
Unable to find token/project description on the website or on BscScan, CoinMarketCap
Unable to find token contract audit
Unable to find audit link on the website
Unable to find whitepaper link on the website
Unable to find token on CoinHunt
Additional information: link
Unable to find code repository for the project
Young tokens have high risks of scam / price dump / death
Young tokens have high risks of scam / price dump / death
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Young tokens have high risks of price dump / death
Twitter account has less than 100 followers
Telegram account has relatively few subscribers
Last post in Twitter was more than 30 days ago
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account
Twitter account has few posts