ethcoin Token Logo

ethcoin Token

ALERT: unclassified scam

About ethcoin

Listings

Token 3 years
CoinMarketCap 3 years

Description

Social

Laser Scorebeta Last Audit: 2 August 2022

report
Token seems to be a scam (type: unclassified scam).

Anti-Scam

Links

EthcoinToken.distributeDividend(address,uint256) (#620-622) ignores return value by IERC20(ethAddress).transfer(shareholder,amount) (#621)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link


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

Reentrancy in EthcoinToken._transfer(address,address,uint256) (#517-590):
External calls:
- swapAndLiquify(contractTokenBalance) (#559)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,recipientLpAddress,block.timestamp) (#705-712)
- uniswapV2Router.swapExactETHForTokens{value: ethAmount}(0,path,address(this),block.timestamp) (#774-779)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#673-679)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#559)
- recipient.transfer(amount) (#500)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,recipientLpAddress,block.timestamp) (#705-712)
- uniswapV2Router.swapExactETHForTokens{value: ethAmount}(0,path,address(this),block.timestamp) (#774-779)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#563)
- _balances[recipient] = _balances[recipient].add(finalAmount) (#568)
- _basicTransfer(recipient,deadAddress,finalAmount) (#574)
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#626)
- _balances[recipient] = _balances[recipient].add(amount) (#627)
- finalAmount = takeFee(sender,recipient,amount) (#565-566)
- _balances[recipient] = _balances[recipient].add(tAmount) (#764)
Reentrancy in EthcoinToken._transfer(address,address,uint256) (#517-590):
External calls:
- swapAndLiquify(contractTokenBalance) (#559)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,recipientLpAddress,block.timestamp) (#705-712)
- uniswapV2Router.swapExactETHForTokens{value: ethAmount}(0,path,address(this),block.timestamp) (#774-779)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#673-679)
- process(distributorGas) (#585)
- IERC20(ethAddress).transfer(shareholder,amount) (#621)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#559)
- recipient.transfer(amount) (#500)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,recipientLpAddress,block.timestamp) (#705-712)
- uniswapV2Router.swapExactETHForTokens{value: ethAmount}(0,path,address(this),block.timestamp) (#774-779)
State variables written after the call(s):
- LPFeefenhongTime = block.timestamp (#586)
Apply the check-effects-interactions pattern.

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.

Redundant expression "this (#11)" inContext (#4-14)
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 (#206) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#207)
Variable EthcoinToken.swapAndLiquify(uint256).markentBNB1 (#645) is too similar to EthcoinToken.swapAndLiquify(uint256).markentBNB2 (#646)
Prevent variables from having similar names.

Additional information: link

EthcoinToken.slitherConstructorVariables() (#300-820) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#308)
EthcoinToken.slitherConstructorVariables() (#300-820) uses literals with too many digits:
- _totalSupply = 10000000 * 10 ** 8 * 10 ** _decimals (#330)
EthcoinToken.slitherConstructorVariables() (#300-820) uses literals with too many digits:
- distributorGas = 500000 (#360)
EthcoinToken.slitherConstructorVariables() (#300-820) uses literals with too many digits:
- minEthVal = 1000000 (#367)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

EthcoinToken.process(uint256) (#591-617) performs a multiplication on the result of a division:
-divper = nowbananceEth.mul(magnitude).div(totalSupply()) (#598)
-amount = balanceOf(shareholders[currentIndex]).mul(divper).div(magnitude) (#603)
EthcoinToken.swapAndLiquify(uint256) (#632-664) performs a multiplication on the result of a division:
-markentBNB = amountBNB.mul(2857).div(10000) (#642)
-markentBNB1 = markentBNB.mul(2).div(3) (#645)
Consider ordering multiplication before division.

Additional information: link

Reentrancy in EthcoinToken.process(uint256) (#591-617):
External calls:
- distributeDividend(shareholders[currentIndex],amount) (#611)
- IERC20(ethAddress).transfer(shareholder,amount) (#621)
State variables written after the call(s):
- currentIndex ++ (#614)
Apply the check-effects-interactions pattern.

Additional information: link

EthcoinToken.addLiquidity(uint256,uint256) (#701-713) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,recipientLpAddress,block.timestamp) (#705-712)
EthcoinToken.swapEthForToken(uint256) (#767-781) ignores return value by uniswapV2Router.swapExactETHForTokens{value: ethAmount}(0,path,address(this),block.timestamp) (#774-779)
Ensure that all the return values of the function calls are used.

Additional information: link

EthcoinToken.allowance(address,address).owner (#451) shadows:
- Ownable.owner() (#115-117) (function)
EthcoinToken._approve(address,address,uint256).owner (#474) shadows:
- Ownable.owner() (#115-117) (function)
Rename the local variables that shadow another component.

Additional information: link

Reentrancy in EthcoinToken._transfer(address,address,uint256) (#517-590):
External calls:
- swapAndLiquify(contractTokenBalance) (#559)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,recipientLpAddress,block.timestamp) (#705-712)
- uniswapV2Router.swapExactETHForTokens{value: ethAmount}(0,path,address(this),block.timestamp) (#774-779)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#673-679)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#559)
- recipient.transfer(amount) (#500)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,recipientLpAddress,block.timestamp) (#705-712)
- uniswapV2Router.swapExactETHForTokens{value: ethAmount}(0,path,address(this),block.timestamp) (#774-779)
State variables written after the call(s):
- setShare(fromAddress) (#579)
- _updated[shareholder] = false (#812)
- _updated[shareholder] = true (#803)
- setShare(toAddress) (#580)
- _updated[shareholder] = false (#812)
- _updated[shareholder] = true (#803)
- fromAddress = sender (#577)
- fromAddress = sender (#582)
- setShare(fromAddress) (#579)
- shareholderIndexes[shareholder] = shareholders.length (#807)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#816)
- setShare(toAddress) (#580)
- shareholderIndexes[shareholder] = shareholders.length (#807)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#816)
- setShare(fromAddress) (#579)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#815)
- shareholders.push(shareholder) (#808)
- shareholders.pop() (#817)
- setShare(toAddress) (#580)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#815)
- shareholders.push(shareholder) (#808)
- shareholders.pop() (#817)
- toAddress = recipient (#578)
- toAddress = recipient (#583)
Reentrancy in EthcoinToken.constructor() (#401-429):
External calls:
- uniswapPair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#405-406)
State variables written after the call(s):
- _allowances[address(this)][address(uniswapV2Router)] = _totalSupply (#409)
- _balances[_msgSender()] = _totalSupply (#427)
- isDividendExempt[address(uniswapPair)] = true (#411)
- isDividendExempt[address(this)] = true (#412)
- isDividendExempt[address(deadAddress)] = true (#413)
- isExcludedFromFee[owner()] = true (#415)
- isExcludedFromFee[address(this)] = true (#416)
- isMarketPair[address(uniswapPair)] = true (#425)
- isTxLimitExempt[owner()] = true (#422)
- isTxLimitExempt[address(this)] = true (#423)
- isWalletLimitExempt[owner()] = true (#418)
- isWalletLimitExempt[address(uniswapPair)] = true (#419)
- isWalletLimitExempt[address(this)] = true (#420)
- uniswapV2Router = _uniswapV2Router (#408)
Reentrancy in EthcoinToken.swapAndLiquify(uint256) (#632-664):
External calls:
- swapTokensForEth(tAmount.sub(letfBackLpToken)) (#639)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#673-679)
- addLiquidity(letfBackLpToken,lpBNB) (#657)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,recipientLpAddress,block.timestamp) (#705-712)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,markentBNB1) (#649)
- recipient.transfer(amount) (#500)
- transferToAddressETH(marketingAddress2,markentBNB2) (#653)
- recipient.transfer(amount) (#500)
- addLiquidity(letfBackLpToken,lpBNB) (#657)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,recipientLpAddress,block.timestamp) (#705-712)
State variables written after the call(s):
- addLiquidity(letfBackLpToken,lpBNB) (#657)
- _allowances[owner][spender] = amount (#478)
Reentrancy in EthcoinToken.transferFrom(address,address,uint256) (#511-515):
External calls:
- _transfer(sender,recipient,amount) (#512)
- IERC20(ethAddress).transfer(shareholder,amount) (#621)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,recipientLpAddress,block.timestamp) (#705-712)
- uniswapV2Router.swapExactETHForTokens{value: ethAmount}(0,path,address(this),block.timestamp) (#774-779)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#673-679)
External calls sending eth:
- _transfer(sender,recipient,amount) (#512)
- recipient.transfer(amount) (#500)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,recipientLpAddress,block.timestamp) (#705-712)
- uniswapV2Router.swapExactETHForTokens{value: ethAmount}(0,path,address(this),block.timestamp) (#774-779)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#513)
- _allowances[owner][spender] = amount (#478)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in EthcoinToken._transfer(address,address,uint256) (#517-590):
External calls:
- swapAndLiquify(contractTokenBalance) (#559)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,recipientLpAddress,block.timestamp) (#705-712)
- uniswapV2Router.swapExactETHForTokens{value: ethAmount}(0,path,address(this),block.timestamp) (#774-779)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#673-679)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#559)
- recipient.transfer(amount) (#500)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,recipientLpAddress,block.timestamp) (#705-712)
- uniswapV2Router.swapExactETHForTokens{value: ethAmount}(0,path,address(this),block.timestamp) (#774-779)
Event emitted after the call(s):
- Transfer(sender,recipient,amount) (#628)
- _basicTransfer(recipient,deadAddress,finalAmount) (#574)
- Transfer(sender,recipient,tAmount) (#765)
- finalAmount = takeFee(sender,recipient,amount) (#565-566)
- Transfer(sender,recipient,finalAmount) (#571)
Reentrancy in EthcoinToken.constructor() (#401-429):
External calls:
- uniswapPair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#405-406)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_totalSupply) (#428)
Reentrancy in EthcoinToken.swapAndLiquify(uint256) (#632-664):
External calls:
- swapTokensForEth(tAmount.sub(letfBackLpToken)) (#639)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#673-679)
- addLiquidity(letfBackLpToken,lpBNB) (#657)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,recipientLpAddress,block.timestamp) (#705-712)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,markentBNB1) (#649)
- recipient.transfer(amount) (#500)
- transferToAddressETH(marketingAddress2,markentBNB2) (#653)
- recipient.transfer(amount) (#500)
- addLiquidity(letfBackLpToken,lpBNB) (#657)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,recipientLpAddress,block.timestamp) (#705-712)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#479)
- addLiquidity(letfBackLpToken,lpBNB) (#657)
Reentrancy in EthcoinToken.swapTokensForEth(uint256) (#666-681):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#673-679)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#680)
Reentrancy in EthcoinToken.swapTokensForEth2(uint256,address) (#683-698):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,recipient,block.timestamp + 15) (#690-696)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#697)
Reentrancy in EthcoinToken.transferFrom(address,address,uint256) (#511-515):
External calls:
- _transfer(sender,recipient,amount) (#512)
- IERC20(ethAddress).transfer(shareholder,amount) (#621)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,recipientLpAddress,block.timestamp) (#705-712)
- uniswapV2Router.swapExactETHForTokens{value: ethAmount}(0,path,address(this),block.timestamp) (#774-779)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#673-679)
External calls sending eth:
- _transfer(sender,recipient,amount) (#512)
- recipient.transfer(amount) (#500)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,recipientLpAddress,block.timestamp) (#705-712)
- uniswapV2Router.swapExactETHForTokens{value: ethAmount}(0,path,address(this),block.timestamp) (#774-779)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#479)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#513)
Apply the check-effects-interactions pattern.

Additional information: link

EthcoinToken._transfer(address,address,uint256) (#517-590) uses timestamp for comparisons
Dangerous comparisons:
- IERC20(ethAddress).balanceOf(address(this)) >= minEthVal && LPFeefenhongTime.add(minPeriod) <= block.timestamp (#584)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#85-91) uses assembly
- INLINE ASM (#89)
Do not use evm assembly.

Additional information: link

Address.isContract(address) (#85-91) is never used and should be removed
Address.sendValue(address,uint256) (#93-99) is never used and should be removed
Context._msgData() (#10-13) is never used and should be removed
EthcoinToken.swapTokensForCake(uint256) (#714-728) is never used and should be removed
EthcoinToken.swapTokensForEth2(uint256,address) (#683-698) is never used and should be removed
SafeMath.mod(uint256,uint256) (#73-75) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#77-80) is never used and should be removed
Remove unused functions.

Additional information: link

EthcoinToken.minimumTokensBeforeSwap (#327) is set pre-construction with a non-constant function or state variable:
- 2000 * 10 ** 8 * 10 ** _decimals
EthcoinToken._totalSupply (#330) is set pre-construction with a non-constant function or state variable:
- 10000000 * 10 ** 8 * 10 ** _decimals
EthcoinToken._buyTotalFee (#344) is set pre-construction with a non-constant function or state variable:
- _buyDestoryFee.add(_buyBackLpFee).add(_buyLpFenhongFee).add(_buyMarketingFee)
EthcoinToken._sellTotalFee (#350) is set pre-construction with a non-constant function or state variable:
- _sellDestoryFee.add(_sellBackLpFee).add(_sellLpFenhongFee).add(_sellMarketingFee)
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) (#93-99):
- (success) = recipient.call{value: amount}() (#97)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IUniswapV2Router01.WETH() (#201) is not in mixedCase
Variable EthcoinToken._saleKeepFee (#328) is not in mixedCase
Variable EthcoinToken._balances (#332) is not in mixedCase
Variable EthcoinToken._buyDestoryFee (#340) is not in mixedCase
Variable EthcoinToken._buyBackLpFee (#341) is not in mixedCase
Variable EthcoinToken._buyLpFenhongFee (#342) is not in mixedCase
Variable EthcoinToken._buyMarketingFee (#343) is not in mixedCase
Variable EthcoinToken._buyTotalFee (#344) is not in mixedCase
Variable EthcoinToken._sellDestoryFee (#346) is not in mixedCase
Variable EthcoinToken._sellBackLpFee (#347) is not in mixedCase
Variable EthcoinToken._sellLpFenhongFee (#348) is not in mixedCase
Variable EthcoinToken._sellMarketingFee (#349) is not in mixedCase
Variable EthcoinToken._sellTotalFee (#350) is not in mixedCase
Variable EthcoinToken.LPFeefenhongTime (#357) is not in mixedCase
Constant EthcoinToken.magnitude (#370) is not in UPPER_CASE_WITH_UNDERSCORES
Follow the Solidity naming convention.

Additional information: link

Reentrancy in EthcoinToken._transfer(address,address,uint256) (#517-590):
External calls:
- swapAndLiquify(contractTokenBalance) (#559)
- recipient.transfer(amount) (#500)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#559)
- recipient.transfer(amount) (#500)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,recipientLpAddress,block.timestamp) (#705-712)
- uniswapV2Router.swapExactETHForTokens{value: ethAmount}(0,path,address(this),block.timestamp) (#774-779)
State variables written after the call(s):
- LPFeefenhongTime = block.timestamp (#586)
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#563)
- _balances[recipient] = _balances[recipient].add(finalAmount) (#568)
- _basicTransfer(recipient,deadAddress,finalAmount) (#574)
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#626)
- _balances[recipient] = _balances[recipient].add(amount) (#627)
- finalAmount = takeFee(sender,recipient,amount) (#565-566)
- _balances[recipient] = _balances[recipient].add(tAmount) (#764)
- setShare(fromAddress) (#579)
- _updated[shareholder] = false (#812)
- _updated[shareholder] = true (#803)
- setShare(toAddress) (#580)
- _updated[shareholder] = false (#812)
- _updated[shareholder] = true (#803)
- process(distributorGas) (#585)
- currentIndex = 0 (#601)
- currentIndex ++ (#606)
- currentIndex ++ (#614)
- fromAddress = sender (#577)
- fromAddress = sender (#582)
- setShare(fromAddress) (#579)
- shareholderIndexes[shareholder] = shareholders.length (#807)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#816)
- setShare(toAddress) (#580)
- shareholderIndexes[shareholder] = shareholders.length (#807)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#816)
- setShare(fromAddress) (#579)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#815)
- shareholders.push(shareholder) (#808)
- shareholders.pop() (#817)
- setShare(toAddress) (#580)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#815)
- shareholders.push(shareholder) (#808)
- shareholders.pop() (#817)
- toAddress = recipient (#578)
- toAddress = recipient (#583)
Event emitted after the call(s):
- Transfer(sender,recipient,amount) (#628)
- _basicTransfer(recipient,deadAddress,finalAmount) (#574)
- Transfer(sender,recipient,tAmount) (#765)
- finalAmount = takeFee(sender,recipient,amount) (#565-566)
- Transfer(sender,recipient,finalAmount) (#571)
Reentrancy in EthcoinToken.swapAndLiquify(uint256) (#632-664):
External calls:
- transferToAddressETH(marketingWalletAddress,markentBNB1) (#649)
- recipient.transfer(amount) (#500)
- transferToAddressETH(marketingAddress2,markentBNB2) (#653)
- recipient.transfer(amount) (#500)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,markentBNB1) (#649)
- recipient.transfer(amount) (#500)
- transferToAddressETH(marketingAddress2,markentBNB2) (#653)
- recipient.transfer(amount) (#500)
- addLiquidity(letfBackLpToken,lpBNB) (#657)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,recipientLpAddress,block.timestamp) (#705-712)
State variables written after the call(s):
- addLiquidity(letfBackLpToken,lpBNB) (#657)
- _allowances[owner][spender] = amount (#478)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#479)
- addLiquidity(letfBackLpToken,lpBNB) (#657)
Reentrancy in EthcoinToken.transferFrom(address,address,uint256) (#511-515):
External calls:
- _transfer(sender,recipient,amount) (#512)
- recipient.transfer(amount) (#500)
External calls sending eth:
- _transfer(sender,recipient,amount) (#512)
- recipient.transfer(amount) (#500)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,recipientLpAddress,block.timestamp) (#705-712)
- uniswapV2Router.swapExactETHForTokens{value: ethAmount}(0,path,address(this),block.timestamp) (#774-779)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#513)
- _allowances[owner][spender] = amount (#478)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#479)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#513)
Apply the check-effects-interactions pattern.

Additional information: link

EthcoinToken._buyBackLpFee (#341) should be constant
EthcoinToken._buyDestoryFee (#340) should be constant
EthcoinToken._buyLpFenhongFee (#342) should be constant
EthcoinToken._buyMarketingFee (#343) should be constant
EthcoinToken._decimals (#307) should be constant
EthcoinToken._limitBuy (#322) should be constant
EthcoinToken._limitBuyBlock (#323) should be constant
EthcoinToken._name (#305) should be constant
EthcoinToken._saleKeepFee (#328) should be constant
EthcoinToken._sellBackLpFee (#347) should be constant
EthcoinToken._sellDestoryFee (#346) should be constant
EthcoinToken._sellLpFenhongFee (#348) should be constant
EthcoinToken._sellMarketingFee (#349) should be constant
EthcoinToken._symbol (#306) should be constant
EthcoinToken.coolBlock (#320) should be constant
EthcoinToken.deadAddress (#308) should be constant
EthcoinToken.distributorGas (#360) should be constant
EthcoinToken.ethAddress (#315) should be constant
EthcoinToken.marketingAddress2 (#310) should be constant
EthcoinToken.marketingWalletAddress (#309) should be constant
EthcoinToken.minEthVal (#367) should be constant
EthcoinToken.minPeriod (#358) should be constant
EthcoinToken.recipientLpAddress (#312) should be constant
EthcoinToken.wapV2RouterAddress (#317) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#124-127)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#129-133)
name() should be declared external:
- EthcoinToken.name() (#431-433)
symbol() should be declared external:
- EthcoinToken.symbol() (#435-437)
decimals() should be declared external:
- EthcoinToken.decimals() (#439-441)
allowance(address,address) should be declared external:
- EthcoinToken.allowance(address,address) (#451-453)
increaseAllowance(address,uint256) should be declared external:
- EthcoinToken.increaseAllowance(address,uint256) (#455-458)
decreaseAllowance(address,uint256) should be declared external:
- EthcoinToken.decreaseAllowance(address,uint256) (#460-463)
minimumTokensBeforeSwapAmount() should be declared external:
- EthcoinToken.minimumTokensBeforeSwapAmount() (#465-467)
approve(address,uint256) should be declared external:
- EthcoinToken.approve(address,uint256) (#469-472)
setMarketPairStatus(address,bool) should be declared external:
- EthcoinToken.setMarketPairStatus(address,bool) (#482-484)
setIsExcludedFromFee(address,bool) should be declared external:
- EthcoinToken.setIsExcludedFromFee(address,bool) (#490-492)
getCirculatingSupply() should be declared external:
- EthcoinToken.getCirculatingSupply() (#495-497)
transfer(address,uint256) should be declared external:
- EthcoinToken.transfer(address,uint256) (#506-509)
transferFrom(address,address,uint256) should be declared external:
- EthcoinToken.transferFrom(address,address,uint256) (#511-515)
unLockLimit(address,uint256) should be declared external:
- EthcoinToken.unLockLimit(address,uint256) (#783-786)
unLockLimitByArray(address[],uint256) should be declared external:
- EthcoinToken.unLockLimitByArray(address[],uint256) (#788-794)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Token is deployed only at one blockchain

Contract has 13% buy tax and 13% sell tax.
Taxes are high (over 10%) but contract ownership is renounced.


Swap operations require suspiciously high gas. Contract logic is complex and may disguise some form of scam.


Average 30d PancakeSwap volume is low.


Average 30d number of PancakeSwap swaps is low.


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


Telegram account link seems to be invalid


Twitter account seems to be suspended

Additional information: link


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


Unable to find token contract audit


Unable to find KYC or doxxing proof


Unable to verify token contract address on the website


Unable to find audit link on the website


Token is not listed at Mobula.Finance

Additional information: link


Unable to find token on CoinHunt

Additional information: link


Unable to find code repository for the project


Token is marked as scam (rug pull, honeypot, phishing, etc.)

Additional information: link


Token has no active CoinGecko listing / rank


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death


Token has relatively low CoinMarketCap rank

Price for ethcoin