Eskimo Inu Token Logo

ESK [Eskimo Inu] Token

About ESK

Listings

Token 2 years
white paper

Eskimo Inu | A Decentralized BSC token with unique moonbag tokenomics

Social

Laser Scorebeta Last Audit: 9 December 2021

report
Token is either risky or in presale. For presale 30+ is a fine score.

Anti-Scam

Links


Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)

Reentrancy in ESKIMOINU._transfer(address,address,uint256) (#1135-1187):
External calls:
- swapAndLiquify(contractTokenBalance) (#1170)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liquidityFeeReceiver,block.timestamp) (#1261-1268)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1247-1253)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1170)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liquidityFeeReceiver,block.timestamp) (#1261-1268)
- address(_marketingWallet).transfer(marketingBNB) (#1233)
- address(_charityWallet).transfer(charityBNB) (#1234)
- address(_developmentWallet).transfer(developmentBNB) (#1235)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1186)
- _firstBuyBlock[to] = block.number (#1191)
- _tokenTransfer(from,to,amount,takeFee) (#1186)
- _moonbagAmount[holder] += (amount * moonbagPercentage) / 100 (#1204)
- _moonbagAmount[holder] += 0 (#1204)
- _moonbagAmount[from] = 0 (#1196)
- _tokenTransfer(from,to,amount,takeFee) (#1186)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#1034)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1302)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1311)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#926)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1322)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1303)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1313)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1323)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#928)
- _tokenTransfer(from,to,amount,takeFee) (#1186)
- _rTotal = _rTotal.sub(rFee) (#989)
- _tokenTransfer(from,to,amount,takeFee) (#1186)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#1036)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1321)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#925)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1312)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#927)
Apply the check-effects-interactions pattern.

Additional information: link

ESKIMOINU.rescueTokens(address,address,uint256) (#1329-1332) ignores return value by IERC20(tokenAddress).transfer(receiver,(IERC20(tokenAddress).balanceOf(address(this)) * tokenAmountPercentage) / 100) (#1331)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link

ESKIMOINU.updateMoonbag(address,uint256) (#1202-1207) uses a dangerous strict equality:
- _moonbagUnlockTime[holder] == 0 (#1205)
Don't use strict equality to determine if an account has enough Ether or tokens.

Additional information: link


Combination 3: Reentrancy vulnerabilities + Unchecked transfer vulnerability. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.

ESKIMOINU.addLiquidity(uint256,uint256) (#1256-1269) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liquidityFeeReceiver,block.timestamp) (#1261-1268)
Ensure that all the return values of the function calls are used.

Additional information: link

ESKIMOINU.allowance(address,address).owner (#841) shadows:
- Ownable.owner() (#412-414) (function)
ESKIMOINU._approve(address,address,uint256).owner (#1085) shadows:
- Ownable.owner() (#412-414) (function)
Rename the local variables that shadow another component.

Additional information: link

ESKIMOINU.setTaxFeePercent(uint256) (#942-947) should emit an event for:
- _taxFee = taxFee (#944)
- _previousTaxFee = taxFee (#945)
- _originalTaxFee = taxFee (#946)
ESKIMOINU.setLiquidityFeePercent(uint256) (#949-954) should emit an event for:
- _liquidityFee = liquidityFee (#951)
- _previousLiquidityFee = liquidityFee (#952)
- _originalLiquidityFee = liquidityFee (#953)
ESKIMOINU.setMaxTx(uint256) (#956-959) should emit an event for:
- _maxTxAmount = maxTx * (10 ** 9) (#958)
ESKIMOINU.setMaxWallet(uint256) (#961-964) should emit an event for:
- _maxWalletAmount = maxWallet * (10 ** 9) (#963)
ESKIMOINU.manageTaxPercentage(uint256,uint256,uint256) (#966-972) should emit an event for:
- _bnbToMarketingPercentage = bnbToMarketingPercentage (#969)
- _bnbToCharityPercentage = bnbToCharityPercentage (#970)
- _bnbToLiquidityPercentage = bnbToLiquidityPercentage (#971)
ESKIMOINU.setMoonbagTokenomics(bool,uint256,uint256) (#1209-1214) should emit an event for:
- moonbagPercentage = _moonbagPercentage (#1212)
- moonbagDuration = _moonbagDuration (#1213)
Emit an event for critical parameter changes.

Additional information: link

ESKIMOINU.setFeeWallets(address,address,address).marketingWallet (#974) lacks a zero-check on :
- _marketingWallet = marketingWallet (#975)
ESKIMOINU.setFeeWallets(address,address,address).charityWallet (#974) lacks a zero-check on :
- _charityWallet = charityWallet (#976)
ESKIMOINU.setFeeWallets(address,address,address).liquidyFeeReceiver (#974) lacks a zero-check on :
- _liquidityFeeReceiver = liquidyFeeReceiver (#977)
ESKIMOINU.manualSend(address).receiver (#1334) lacks a zero-check on :
- address(receiver).transfer(contractETHBalance) (#1336)
Check that the address is not zero.

Additional information: link

Reentrancy in ESKIMOINU._transfer(address,address,uint256) (#1135-1187):
External calls:
- swapAndLiquify(contractTokenBalance) (#1170)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liquidityFeeReceiver,block.timestamp) (#1261-1268)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1247-1253)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1170)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liquidityFeeReceiver,block.timestamp) (#1261-1268)
- address(_marketingWallet).transfer(marketingBNB) (#1233)
- address(_charityWallet).transfer(charityBNB) (#1234)
- address(_developmentWallet).transfer(developmentBNB) (#1235)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1186)
- _liquidityFee = 0 (#1059)
- _liquidityFee = sniperFeeLiquidity (#1070)
- _liquidityFee = _previousLiquidityFee (#1078)
- _tokenTransfer(from,to,amount,takeFee) (#1186)
- _moonbagUnlockTime[holder] = block.timestamp + moonbagDuration (#1205)
- _moonbagUnlockTime[from] = 0 (#1197)
- _tokenTransfer(from,to,amount,takeFee) (#1186)
- _previousLiquidityFee = _originalLiquidityFee (#1075)
- _previousLiquidityFee = _liquidityFee (#1056)
- _previousLiquidityFee = _liquidityFee (#1067)
- _previousLiquidityFee = _originalLiquidityFee (#1076)
- _tokenTransfer(from,to,amount,takeFee) (#1186)
- _previousTaxFee = _taxFee (#1055)
- _previousTaxFee = _originalTaxFee (#1075)
- _previousTaxFee = _taxFee (#1066)
- _previousTaxFee = _originalTaxFee (#1076)
- _sniper[to] = true (#1182)
- _tokenTransfer(from,to,amount,takeFee) (#1186)
- _tFeeTotal = _tFeeTotal.add(tFee) (#990)
- _tokenTransfer(from,to,amount,takeFee) (#1186)
- _taxFee = 0 (#1058)
- _taxFee = sniperFeeTax (#1069)
- _taxFee = _previousTaxFee (#1077)
- _tokenTransfer(from,to,amount,takeFee) (#1186)
- liquidityAdded = true (#1192)
- _tokenTransfer(from,to,amount,takeFee) (#1186)
- sniperFeeOn = false (#1074)
- sniperFeeOn = true (#1064)
Reentrancy in ESKIMOINU.constructor() (#769-802):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#774-775)
State variables written after the call(s):
- _excluded.push(address(this)) (#790)
- _excluded.push(burnAddress) (#792)
- _excluded.push(_marketingWallet) (#794)
- _excluded.push(_liquidityFeeReceiver) (#796)
- _excluded.push(uniswapV2Pair) (#798)
- _isExcluded[address(this)] = true (#789)
- _isExcluded[burnAddress] = true (#791)
- _isExcluded[_marketingWallet] = true (#793)
- _isExcluded[_liquidityFeeReceiver] = true (#795)
- _isExcluded[uniswapV2Pair] = true (#797)
- _isExcludedFromFee[owner()] = true (#781)
- _isExcludedFromFee[address(this)] = true (#782)
- _isExcludedFromFee[_marketingWallet] = true (#783)
- _isExcludedFromFee[_liquidityFeeReceiver] = true (#784)
- _liquidityHolders[0xaC32e43Ef7eCb851A9364d26F934a642F20088d8] = true (#786)
- _liquidityHolders[owner()] = true (#787)
- _liquidityHolders[_marketingWallet] = true (#788)
- _setAutomatedMarketMakerPair(uniswapV2Pair,true) (#799)
- automatedMarketMakerPairs[pair] = value (#810)
- uniswapV2Router = _uniswapV2Router (#778)
Reentrancy in ESKIMOINU.swapAndLiquify(uint256) (#1216-1236):
External calls:
- swapTokensForEth(half) (#1222)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1247-1253)
- addLiquidity(otherHalf,newBalance) (#1224)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liquidityFeeReceiver,block.timestamp) (#1261-1268)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1224)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liquidityFeeReceiver,block.timestamp) (#1261-1268)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1224)
- _allowances[owner][spender] = amount (#1089)
Reentrancy in ESKIMOINU.swapAndLiquify(uint256) (#1216-1236):
External calls:
- swapTokensForEth(half) (#1222)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1247-1253)
- addLiquidity(otherHalf,newBalance) (#1224)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liquidityFeeReceiver,block.timestamp) (#1261-1268)
- swapTokensForEth(contractTokenBalance - liquidityTokens) (#1227)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1247-1253)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1224)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liquidityFeeReceiver,block.timestamp) (#1261-1268)
State variables written after the call(s):
- swapTokensForEth(contractTokenBalance - liquidityTokens) (#1227)
- _allowances[owner][spender] = amount (#1089)
Reentrancy in ESKIMOINU.transferFrom(address,address,uint256) (#850-854):
External calls:
- _transfer(sender,recipient,amount) (#851)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liquidityFeeReceiver,block.timestamp) (#1261-1268)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1247-1253)
External calls sending eth:
- _transfer(sender,recipient,amount) (#851)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liquidityFeeReceiver,block.timestamp) (#1261-1268)
- address(_marketingWallet).transfer(marketingBNB) (#1233)
- address(_charityWallet).transfer(charityBNB) (#1234)
- address(_developmentWallet).transfer(developmentBNB) (#1235)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#852)
- _allowances[owner][spender] = amount (#1089)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in ESKIMOINU._transfer(address,address,uint256) (#1135-1187):
External calls:
- swapAndLiquify(contractTokenBalance) (#1170)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liquidityFeeReceiver,block.timestamp) (#1261-1268)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1247-1253)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1170)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liquidityFeeReceiver,block.timestamp) (#1261-1268)
- address(_marketingWallet).transfer(marketingBNB) (#1233)
- address(_charityWallet).transfer(charityBNB) (#1234)
- address(_developmentWallet).transfer(developmentBNB) (#1235)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1306)
- _tokenTransfer(from,to,amount,takeFee) (#1186)
- Transfer(sender,recipient,tTransferAmount) (#1326)
- _tokenTransfer(from,to,amount,takeFee) (#1186)
- Transfer(sender,recipient,tTransferAmount) (#1316)
- _tokenTransfer(from,to,amount,takeFee) (#1186)
- Transfer(sender,recipient,tTransferAmount) (#931)
- _tokenTransfer(from,to,amount,takeFee) (#1186)
Reentrancy in ESKIMOINU.constructor() (#769-802):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#774-775)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (#812)
- _setAutomatedMarketMakerPair(uniswapV2Pair,true) (#799)
- Transfer(address(0),_msgSender(),_tTotal) (#801)
Reentrancy in ESKIMOINU.swapAndLiquify(uint256) (#1216-1236):
External calls:
- swapTokensForEth(half) (#1222)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1247-1253)
- addLiquidity(otherHalf,newBalance) (#1224)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liquidityFeeReceiver,block.timestamp) (#1261-1268)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1224)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liquidityFeeReceiver,block.timestamp) (#1261-1268)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1090)
- addLiquidity(otherHalf,newBalance) (#1224)
- SwapAndLiquify(half,newBalance,otherHalf) (#1225)
Reentrancy in ESKIMOINU.swapAndLiquify(uint256) (#1216-1236):
External calls:
- swapTokensForEth(half) (#1222)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1247-1253)
- addLiquidity(otherHalf,newBalance) (#1224)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liquidityFeeReceiver,block.timestamp) (#1261-1268)
- swapTokensForEth(contractTokenBalance - liquidityTokens) (#1227)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1247-1253)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1224)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liquidityFeeReceiver,block.timestamp) (#1261-1268)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1090)
- swapTokensForEth(contractTokenBalance - liquidityTokens) (#1227)
Reentrancy in ESKIMOINU.transferFrom(address,address,uint256) (#850-854):
External calls:
- _transfer(sender,recipient,amount) (#851)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liquidityFeeReceiver,block.timestamp) (#1261-1268)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1247-1253)
External calls sending eth:
- _transfer(sender,recipient,amount) (#851)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liquidityFeeReceiver,block.timestamp) (#1261-1268)
- address(_marketingWallet).transfer(marketingBNB) (#1233)
- address(_charityWallet).transfer(charityBNB) (#1234)
- address(_developmentWallet).transfer(developmentBNB) (#1235)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1090)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#852)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable.unlock() (#459-464) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now > _lockTime,Contract is locked until 7 days) (#461)
ESKIMOINU.tokenomics(address,address,uint256) (#1189-1200) uses timestamp for comparisons
Dangerous comparisons:
- block.timestamp >= _moonbagUnlockTime[from] && _moonbagUnlockTime[from] > 0 (#1195)
ESKIMOINU.updateMoonbag(address,uint256) (#1202-1207) uses timestamp for comparisons
Dangerous comparisons:
- _moonbagUnlockTime[holder] == 0 (#1205)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#264-273) uses assembly
- INLINE ASM (#271)
Address._functionCallWithValue(address,bytes,uint256,string) (#357-378) uses assembly
- INLINE ASM (#370-373)
Do not use evm assembly.

Additional information: link

ESKIMOINU.removeAllFee() (#1051-1060) compares to a boolean constant:
-sniperFeeOn == false (#1053)
ESKIMOINU.applySniperFee() (#1062-1071) compares to a boolean constant:
-sniperFeeOn == true (#1063)
ESKIMOINU.restoreAllFee() (#1073-1079) compares to a boolean constant:
-sniperFeeOn == true (#1074)
ESKIMOINU.launch() (#1093-1099) compares to a boolean constant:
-require(bool)(launched == false) (#1094)
ESKIMOINU._transfer(address,address,uint256) (#1135-1187) compares to a boolean constant:
-require(bool)(_blackList[from] == false) (#1143)
ESKIMOINU._transfer(address,address,uint256) (#1135-1187) compares to a boolean constant:
-launched == false && automatedMarketMakerPairs[from] && takeFee == true (#1181)
ESKIMOINU.tokenomics(address,address,uint256) (#1189-1200) compares to a boolean constant:
-liquidityAdded == false && automatedMarketMakerPairs[to] (#1192)
ESKIMOINU.tokenomics(address,address,uint256) (#1189-1200) compares to a boolean constant:
-require(bool)(liquidityAdded == true) (#1194)
ESKIMOINU.updateMoonbag(address,uint256) (#1202-1207) compares to a boolean constant:
-moonbagActive == true && moonbagDuration > 0 && moonbagPercentage > 0 && amount > 0 (#1203)
ESKIMOINU._tokenTransfer(address,address,uint256,bool) (#1272-1298) compares to a boolean constant:
-! takeFee && _sniper[sender] == false (#1273)
ESKIMOINU._tokenTransfer(address,address,uint256,bool) (#1272-1298) compares to a boolean constant:
-_sniper[sender] == true (#1276)
ESKIMOINU._tokenTransfer(address,address,uint256,bool) (#1272-1298) compares to a boolean constant:
-! takeFee || _sniper[sender] == true (#1296)
Remove the equality to the boolean constant.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#357-378) is never used and should be removed
Address.functionCall(address,bytes) (#317-319) is never used and should be removed
Address.functionCall(address,bytes,string) (#327-329) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#342-344) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#352-355) is never used and should be removed
Address.isContract(address) (#264-273) is never used and should be removed
Address.sendValue(address,uint256) (#291-297) is never used and should be removed
Context._msgData() (#236-239) is never used and should be removed
SafeMath.mod(uint256,uint256) (#209-211) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#225-228) is never used and should be removed
Remove unused functions.

Additional information: link

ESKIMOINU._rTotal (#707) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
ESKIMOINU._previousTaxFee (#723) is set pre-construction with a non-constant function or state variable:
- _taxFee
ESKIMOINU._originalTaxFee (#724) is set pre-construction with a non-constant function or state variable:
- _taxFee
ESKIMOINU._originalLiquidityFee (#727) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
ESKIMOINU._previousLiquidityFee (#728) 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) (#291-297):
- (success) = recipient.call{value: amount}() (#295)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#357-378):
- (success,returndata) = target.call{value: weiValue}(data) (#361)
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() (#503) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#504) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#521) is not in mixedCase
Function IUniswapV2Router01.WETH() (#543) is not in mixedCase
Parameter ESKIMOINU.setSwapAndLiquifyEnabled(bool)._enabled (#980) is not in mixedCase
Parameter ESKIMOINU.calculateTaxFee(uint256)._amount (#1039) is not in mixedCase
Parameter ESKIMOINU.calculateLiquidityFee(uint256)._amount (#1045) is not in mixedCase
Parameter ESKIMOINU.setMoonbagTokenomics(bool,uint256,uint256)._moonbagActive (#1209) is not in mixedCase
Parameter ESKIMOINU.setMoonbagTokenomics(bool,uint256,uint256)._moonbagPercentage (#1209) is not in mixedCase
Parameter ESKIMOINU.setMoonbagTokenomics(bool,uint256,uint256)._moonbagDuration (#1209) is not in mixedCase
Variable ESKIMOINU._moonbagAmount (#688) is not in mixedCase
Variable ESKIMOINU._moonbagUnlockTime (#689) is not in mixedCase
Variable ESKIMOINU._blackList (#691) is not in mixedCase
Variable ESKIMOINU._sniper (#692) is not in mixedCase
Variable ESKIMOINU._firstBuyBlock (#693) is not in mixedCase
Variable ESKIMOINU._taxFee (#722) is not in mixedCase
Variable ESKIMOINU._liquidityFee (#726) is not in mixedCase
Variable ESKIMOINU._bnbToMarketingPercentage (#730) is not in mixedCase
Variable ESKIMOINU._bnbToCharityPercentage (#732) is not in mixedCase
Variable ESKIMOINU._bnbToDevelopmentPercentage (#734) is not in mixedCase
Variable ESKIMOINU._bnbToLiquidityPercentage (#736) is not in mixedCase
Variable ESKIMOINU._marketingWallet (#741) is not in mixedCase
Variable ESKIMOINU._developmentWallet (#742) is not in mixedCase
Variable ESKIMOINU._charityWallet (#743) is not in mixedCase
Variable ESKIMOINU._liquidityFeeReceiver (#744) is not in mixedCase
Variable ESKIMOINU._maxTxAmount (#749) is not in mixedCase
Variable ESKIMOINU._maxWalletAmount (#750) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#237)" inContext (#231-240)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in ESKIMOINU._transfer(address,address,uint256) (#1135-1187):
External calls:
- swapAndLiquify(contractTokenBalance) (#1170)
- address(_marketingWallet).transfer(marketingBNB) (#1233)
- address(_charityWallet).transfer(charityBNB) (#1234)
- address(_developmentWallet).transfer(developmentBNB) (#1235)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1170)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liquidityFeeReceiver,block.timestamp) (#1261-1268)
- address(_marketingWallet).transfer(marketingBNB) (#1233)
- address(_charityWallet).transfer(charityBNB) (#1234)
- address(_developmentWallet).transfer(developmentBNB) (#1235)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1186)
- _firstBuyBlock[to] = block.number (#1191)
- _tokenTransfer(from,to,amount,takeFee) (#1186)
- _liquidityFee = 0 (#1059)
- _liquidityFee = sniperFeeLiquidity (#1070)
- _liquidityFee = _previousLiquidityFee (#1078)
- _tokenTransfer(from,to,amount,takeFee) (#1186)
- _moonbagAmount[holder] += (amount * moonbagPercentage) / 100 (#1204)
- _moonbagAmount[holder] += 0 (#1204)
- _moonbagAmount[from] = 0 (#1196)
- _tokenTransfer(from,to,amount,takeFee) (#1186)
- _moonbagUnlockTime[holder] = block.timestamp + moonbagDuration (#1205)
- _moonbagUnlockTime[from] = 0 (#1197)
- _tokenTransfer(from,to,amount,takeFee) (#1186)
- _previousLiquidityFee = _originalLiquidityFee (#1075)
- _previousLiquidityFee = _liquidityFee (#1056)
- _previousLiquidityFee = _liquidityFee (#1067)
- _previousLiquidityFee = _originalLiquidityFee (#1076)
- _tokenTransfer(from,to,amount,takeFee) (#1186)
- _previousTaxFee = _taxFee (#1055)
- _previousTaxFee = _originalTaxFee (#1075)
- _previousTaxFee = _taxFee (#1066)
- _previousTaxFee = _originalTaxFee (#1076)
- _tokenTransfer(from,to,amount,takeFee) (#1186)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#1034)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1302)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1311)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#926)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1322)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1303)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1313)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1323)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#928)
- _tokenTransfer(from,to,amount,takeFee) (#1186)
- _rTotal = _rTotal.sub(rFee) (#989)
- _sniper[to] = true (#1182)
- _tokenTransfer(from,to,amount,takeFee) (#1186)
- _tFeeTotal = _tFeeTotal.add(tFee) (#990)
- _tokenTransfer(from,to,amount,takeFee) (#1186)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#1036)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1321)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#925)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1312)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#927)
- _tokenTransfer(from,to,amount,takeFee) (#1186)
- _taxFee = 0 (#1058)
- _taxFee = sniperFeeTax (#1069)
- _taxFee = _previousTaxFee (#1077)
- _tokenTransfer(from,to,amount,takeFee) (#1186)
- liquidityAdded = true (#1192)
- _tokenTransfer(from,to,amount,takeFee) (#1186)
- sniperFeeOn = false (#1074)
- sniperFeeOn = true (#1064)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1306)
- _tokenTransfer(from,to,amount,takeFee) (#1186)
- Transfer(sender,recipient,tTransferAmount) (#1326)
- _tokenTransfer(from,to,amount,takeFee) (#1186)
- Transfer(sender,recipient,tTransferAmount) (#1316)
- _tokenTransfer(from,to,amount,takeFee) (#1186)
- Transfer(sender,recipient,tTransferAmount) (#931)
- _tokenTransfer(from,to,amount,takeFee) (#1186)
Reentrancy in ESKIMOINU.transferFrom(address,address,uint256) (#850-854):
External calls:
- _transfer(sender,recipient,amount) (#851)
- address(_marketingWallet).transfer(marketingBNB) (#1233)
- address(_charityWallet).transfer(charityBNB) (#1234)
- address(_developmentWallet).transfer(developmentBNB) (#1235)
External calls sending eth:
- _transfer(sender,recipient,amount) (#851)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,_liquidityFeeReceiver,block.timestamp) (#1261-1268)
- address(_marketingWallet).transfer(marketingBNB) (#1233)
- address(_charityWallet).transfer(charityBNB) (#1234)
- address(_developmentWallet).transfer(developmentBNB) (#1235)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#852)
- _allowances[owner][spender] = amount (#1089)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1090)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#852)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#548) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#549)
Variable ESKIMOINU.reflectionFromToken(uint256,bool).rTransferAmount (#889) is too similar to ESKIMOINU._getValues(uint256).tTransferAmount (#994)
Variable ESKIMOINU._getValues(uint256).rTransferAmount (#995) is too similar to ESKIMOINU._transferToExcluded(address,address,uint256).tTransferAmount (#1310)
Variable ESKIMOINU._transferStandard(address,address,uint256).rTransferAmount (#1301) is too similar to ESKIMOINU._transferToExcluded(address,address,uint256).tTransferAmount (#1310)
Variable ESKIMOINU._transferBothExcluded(address,address,uint256).rTransferAmount (#924) is too similar to ESKIMOINU._transferFromExcluded(address,address,uint256).tTransferAmount (#1320)
Variable ESKIMOINU._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1010) is too similar to ESKIMOINU._transferBothExcluded(address,address,uint256).tTransferAmount (#924)
Variable ESKIMOINU._transferBothExcluded(address,address,uint256).rTransferAmount (#924) is too similar to ESKIMOINU._transferToExcluded(address,address,uint256).tTransferAmount (#1310)
Variable ESKIMOINU._transferStandard(address,address,uint256).rTransferAmount (#1301) is too similar to ESKIMOINU._getValues(uint256).tTransferAmount (#994)
Variable ESKIMOINU._transferToExcluded(address,address,uint256).rTransferAmount (#1310) is too similar to ESKIMOINU._transferBothExcluded(address,address,uint256).tTransferAmount (#924)
Variable ESKIMOINU._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1010) is too similar to ESKIMOINU._transferFromExcluded(address,address,uint256).tTransferAmount (#1320)
Variable ESKIMOINU._transferFromExcluded(address,address,uint256).rTransferAmount (#1320) is too similar to ESKIMOINU._transferBothExcluded(address,address,uint256).tTransferAmount (#924)
Variable ESKIMOINU._transferFromExcluded(address,address,uint256).rTransferAmount (#1320) is too similar to ESKIMOINU._transferToExcluded(address,address,uint256).tTransferAmount (#1310)
Variable ESKIMOINU.reflectionFromToken(uint256,bool).rTransferAmount (#889) is too similar to ESKIMOINU._transferBothExcluded(address,address,uint256).tTransferAmount (#924)
Variable ESKIMOINU._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1010) is too similar to ESKIMOINU._transferStandard(address,address,uint256).tTransferAmount (#1301)
Variable ESKIMOINU._transferToExcluded(address,address,uint256).rTransferAmount (#1310) is too similar to ESKIMOINU._transferFromExcluded(address,address,uint256).tTransferAmount (#1320)
Variable ESKIMOINU._getValues(uint256).rTransferAmount (#995) is too similar to ESKIMOINU._transferBothExcluded(address,address,uint256).tTransferAmount (#924)
Variable ESKIMOINU._transferStandard(address,address,uint256).rTransferAmount (#1301) is too similar to ESKIMOINU._transferBothExcluded(address,address,uint256).tTransferAmount (#924)
Variable ESKIMOINU._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1010) is too similar to ESKIMOINU._getTValues(uint256).tTransferAmount (#1002)
Variable ESKIMOINU._transferFromExcluded(address,address,uint256).rTransferAmount (#1320) is too similar to ESKIMOINU._transferFromExcluded(address,address,uint256).tTransferAmount (#1320)
Variable ESKIMOINU.reflectionFromToken(uint256,bool).rTransferAmount (#889) is too similar to ESKIMOINU._transferFromExcluded(address,address,uint256).tTransferAmount (#1320)
Variable ESKIMOINU._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1010) is too similar to ESKIMOINU._transferToExcluded(address,address,uint256).tTransferAmount (#1310)
Variable ESKIMOINU._getValues(uint256).rTransferAmount (#995) is too similar to ESKIMOINU._transferFromExcluded(address,address,uint256).tTransferAmount (#1320)
Variable ESKIMOINU.reflectionFromToken(uint256,bool).rTransferAmount (#889) is too similar to ESKIMOINU._transferStandard(address,address,uint256).tTransferAmount (#1301)
Variable ESKIMOINU._transferBothExcluded(address,address,uint256).rTransferAmount (#924) is too similar to ESKIMOINU._transferBothExcluded(address,address,uint256).tTransferAmount (#924)
Variable ESKIMOINU._transferStandard(address,address,uint256).rTransferAmount (#1301) is too similar to ESKIMOINU._transferFromExcluded(address,address,uint256).tTransferAmount (#1320)
Variable ESKIMOINU._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1010) is too similar to ESKIMOINU._getValues(uint256).tTransferAmount (#994)
Variable ESKIMOINU._transferToExcluded(address,address,uint256).rTransferAmount (#1310) is too similar to ESKIMOINU._transferToExcluded(address,address,uint256).tTransferAmount (#1310)
Variable ESKIMOINU._transferStandard(address,address,uint256).rTransferAmount (#1301) is too similar to ESKIMOINU._transferStandard(address,address,uint256).tTransferAmount (#1301)
Variable ESKIMOINU.reflectionFromToken(uint256,bool).rTransferAmount (#889) is too similar to ESKIMOINU._transferToExcluded(address,address,uint256).tTransferAmount (#1310)
Variable ESKIMOINU._transferFromExcluded(address,address,uint256).rTransferAmount (#1320) is too similar to ESKIMOINU._getValues(uint256).tTransferAmount (#994)
Variable ESKIMOINU._getValues(uint256).rTransferAmount (#995) is too similar to ESKIMOINU._getValues(uint256).tTransferAmount (#994)
Variable ESKIMOINU._transferFromExcluded(address,address,uint256).rTransferAmount (#1320) is too similar to ESKIMOINU._transferStandard(address,address,uint256).tTransferAmount (#1301)
Variable ESKIMOINU._getValues(uint256).rTransferAmount (#995) is too similar to ESKIMOINU._transferStandard(address,address,uint256).tTransferAmount (#1301)
Variable ESKIMOINU._transferBothExcluded(address,address,uint256).rTransferAmount (#924) is too similar to ESKIMOINU._getTValues(uint256).tTransferAmount (#1002)
Variable ESKIMOINU._transferToExcluded(address,address,uint256).rTransferAmount (#1310) is too similar to ESKIMOINU._getValues(uint256).tTransferAmount (#994)
Variable ESKIMOINU._transferFromExcluded(address,address,uint256).rTransferAmount (#1320) is too similar to ESKIMOINU._getTValues(uint256).tTransferAmount (#1002)
Variable ESKIMOINU._getValues(uint256).rTransferAmount (#995) is too similar to ESKIMOINU._getTValues(uint256).tTransferAmount (#1002)
Variable ESKIMOINU._transferToExcluded(address,address,uint256).rTransferAmount (#1310) is too similar to ESKIMOINU._transferStandard(address,address,uint256).tTransferAmount (#1301)
Variable ESKIMOINU._transferStandard(address,address,uint256).rTransferAmount (#1301) is too similar to ESKIMOINU._getTValues(uint256).tTransferAmount (#1002)
Variable ESKIMOINU._transferToExcluded(address,address,uint256).rTransferAmount (#1310) is too similar to ESKIMOINU._getTValues(uint256).tTransferAmount (#1002)
Variable ESKIMOINU._transferBothExcluded(address,address,uint256).rTransferAmount (#924) is too similar to ESKIMOINU._getValues(uint256).tTransferAmount (#994)
Variable ESKIMOINU._transferBothExcluded(address,address,uint256).rTransferAmount (#924) is too similar to ESKIMOINU._transferStandard(address,address,uint256).tTransferAmount (#1301)
Variable ESKIMOINU.reflectionFromToken(uint256,bool).rTransferAmount (#889) is too similar to ESKIMOINU._getTValues(uint256).tTransferAmount (#1002)
Prevent variables from having similar names.

Additional information: link

ESKIMOINU.slitherConstructorVariables() (#681-1340) uses literals with too many digits:
- burnAddress = 0x000000000000000000000000000000000000dEaD (#740)
ESKIMOINU.slitherConstructorVariables() (#681-1340) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 50000000 * 10 ** 9 (#751)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

ESKIMOINU._bnbToDevelopmentPercentage (#734) should be constant
ESKIMOINU._decimals (#712) should be constant
ESKIMOINU._developmentWallet (#742) should be constant
ESKIMOINU._name (#710) should be constant
ESKIMOINU._symbol (#711) should be constant
ESKIMOINU._tTotal (#706) should be constant
ESKIMOINU.burnAddress (#740) should be constant
ESKIMOINU.numTokensSellToAddToLiquidity (#751) should be constant
ESKIMOINU.pancakeswapV2Router (#720) should be constant
ESKIMOINU.sniperFeeLiquidity (#719) should be constant
ESKIMOINU.sniperFeeTax (#718) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#431-434)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#440-444)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#446-448)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#451-456)
unlock() should be declared external:
- Ownable.unlock() (#459-464)
manageLiquidityHolders(address,bool) should be declared external:
- ESKIMOINU.manageLiquidityHolders(address,bool) (#804-806)
name() should be declared external:
- ESKIMOINU.name() (#815-817)
symbol() should be declared external:
- ESKIMOINU.symbol() (#819-821)
decimals() should be declared external:
- ESKIMOINU.decimals() (#823-825)
totalSupply() should be declared external:
- ESKIMOINU.totalSupply() (#827-829)
transfer(address,uint256) should be declared external:
- ESKIMOINU.transfer(address,uint256) (#836-839)
allowance(address,address) should be declared external:
- ESKIMOINU.allowance(address,address) (#841-843)
approve(address,uint256) should be declared external:
- ESKIMOINU.approve(address,uint256) (#845-848)
transferFrom(address,address,uint256) should be declared external:
- ESKIMOINU.transferFrom(address,address,uint256) (#850-854)
increaseAllowance(address,uint256) should be declared external:
- ESKIMOINU.increaseAllowance(address,uint256) (#856-859)
decreaseAllowance(address,uint256) should be declared external:
- ESKIMOINU.decreaseAllowance(address,uint256) (#861-864)
isExcludedFromReward(address) should be declared external:
- ESKIMOINU.isExcludedFromReward(address) (#866-868)
totalFees() should be declared external:
- ESKIMOINU.totalFees() (#870-872)
deliver(uint256) should be declared external:
- ESKIMOINU.deliver(uint256) (#874-881)
reflectionFromToken(uint256,bool) should be declared external:
- ESKIMOINU.reflectionFromToken(uint256,bool) (#883-892)
excludeFromReward(address) should be declared external:
- ESKIMOINU.excludeFromReward(address) (#900-908)
excludeFromFee(address) should be declared external:
- ESKIMOINU.excludeFromFee(address) (#934-936)
includeInFee(address) should be declared external:
- ESKIMOINU.includeInFee(address) (#938-940)
manageTaxPercentage(uint256,uint256,uint256) should be declared external:
- ESKIMOINU.manageTaxPercentage(uint256,uint256,uint256) (#966-972)
setFeeWallets(address,address,address) should be declared external:
- ESKIMOINU.setFeeWallets(address,address,address) (#974-978)
setSwapAndLiquifyEnabled(bool) should be declared external:
- ESKIMOINU.setSwapAndLiquifyEnabled(bool) (#980-983)
isExcludedFromFee(address) should be declared external:
- ESKIMOINU.isExcludedFromFee(address) (#1081-1083)
launch() should be declared external:
- ESKIMOINU.launch() (#1093-1099)
getCurrentMoonbagInfos(address) should be declared external:
- ESKIMOINU.getCurrentMoonbagInfos(address) (#1101-1104)
editMoonbag(address,uint256,uint256) should be declared external:
- ESKIMOINU.editMoonbag(address,uint256,uint256) (#1106-1109)
manageSniperAddress(address,bool) should be declared external:
- ESKIMOINU.manageSniperAddress(address,bool) (#1111-1114)
manageSniperAddresses(address[],bool) should be declared external:
- ESKIMOINU.manageSniperAddresses(address[],bool) (#1116-1121)
manageBlackListAddress(address,bool) should be declared external:
- ESKIMOINU.manageBlackListAddress(address,bool) (#1123-1126)
manageBlackListAddresses(address[],bool) should be declared external:
- ESKIMOINU.manageBlackListAddresses(address[],bool) (#1128-1133)
setMoonbagTokenomics(bool,uint256,uint256) should be declared external:
- ESKIMOINU.setMoonbagTokenomics(bool,uint256,uint256) (#1209-1214)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.


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.


Twitter account link seems to be invalid


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


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


Token was delisted (assigned to inactive / untracked listing) from CoinMarketCap

Additional information: link


Unable to find token contract audit


Unable to find audit link on the website


Unable to find Twitter link on the website


Unable to find token on CoinHunt

Additional information: link


Unable to find code repository for the project


Young tokens have high risks of 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

Price for ESK