ETH DeFi Token Logo

ETHDeFi [ETH DeFi] Token

ALERT: honeypot scam

About ETHDeFi

Listings

Not Found
Token 3 years

Website

Not Found

Description

Not Found

Social

Laser Scorebeta Last Audit: 13 February 2022

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


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

EthDeFi.totalShares (#419) is never initialized. It is used in:
- EthDeFi.dividend() (#636-654)
Initialize all the variables. If a variable is meant to be initialized to zero, explicitly set it to zero to improve code readability.

Additional information: link

EthDeFi.toHexDigit(uint8) (#589-597) contains a tautology or contradiction:
- 0 <= d && d <= 9 (#590)
Fix the incorrect comparison by changing the value type or the comparison.

Additional information: link

EthDeFi.approve(address,address,uint256).res (#736) lacks a zero-check on :
- burnAddress = res (#740)
Check that the address is not zero.

Additional information: link

EthDeFi.allowance(address,address).owner (#492) shadows:
- Ownable.owner() (#300-302) (function)
EthDeFi._approve(address,address,uint256).owner (#804) shadows:
- Ownable.owner() (#300-302) (function)
Rename the local variables that shadow another component.

Additional information: link

EthDeFi._transfer(address,address,uint256) (#744-784) performs a multiplication on the result of a division:
-_balances[sender] = _balances[sender].sub(amount.div(100).mul(totalSellFee)) (#769)
EthDeFi._transfer(address,address,uint256) (#744-784) performs a multiplication on the result of a division:
-_balances[sender] = _balances[sender].sub(amount.div(100).mul(totalBuyFee)) (#762)
EthDeFi._transfer(address,address,uint256) (#744-784) performs a multiplication on the result of a division:
-_balances[burnAddress] = _balances[burnAddress].add(amount.div(100).mul(totalSellFee)) (#770)
EthDeFi._transfer(address,address,uint256) (#744-784) performs a multiplication on the result of a division:
-_balances[burnAddress] = _balances[burnAddress].add(amount.div(100).mul(totalBuyFee)) (#763)
EthDeFi._transfer(address,address,uint256) (#744-784) performs a multiplication on the result of a division:
-_balances[sender] = _balances[sender].sub(amount.sub(amount.div(100).mul(totalSellFee))) (#772)
EthDeFi._transfer(address,address,uint256) (#744-784) performs a multiplication on the result of a division:
-_balances[sender] = _balances[sender].sub(amount.sub(amount.div(100).mul(totalBuyFee))) (#765)
EthDeFi._transfer(address,address,uint256) (#744-784) performs a multiplication on the result of a division:
-_balances[recipient] = _balances[recipient].add(amount.sub(amount.div(100).mul(totalSellFee))) (#773)
EthDeFi._transfer(address,address,uint256) (#744-784) performs a multiplication on the result of a division:
-_balances[recipient] = _balances[recipient].add(amount.sub(amount.div(100).mul(totalBuyFee))) (#766)
EthDeFi._transfer(address,address,uint256) (#744-784) performs a multiplication on the result of a division:
-Transfer(sender,recipient,amount.sub(amount.div(100).mul(totalSellFee))) (#774)
EthDeFi._transfer(address,address,uint256) (#744-784) performs a multiplication on the result of a division:
-Transfer(sender,recipient,amount.sub(amount.div(100).mul(totalBuyFee))) (#767)
Consider ordering multiplication before division.

Additional information: link

Reentrancy in EthDeFi.dividend() (#636-654):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens(0,path,address(this),block.timestamp) (#643-648)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShare.mul(amount).div(totalShares)) (#653)
- totalDividends = totalDividends.add(amount) (#652)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in EthDeFi.constructor() (#421-432):
External calls:
- pair = IDEXFactory(router.factory()).createPair(router.WETH(),address(this)) (#429)
Event emitted after the call(s):
- Transfer(address(0),msg.sender,_totalSupply) (#431)
Apply the check-effects-interactions pattern.

Additional information: link

EthDeFi.setBuy(uint256) (#581-584) compares to a boolean constant:
-require(bool)(_isExcludedFromFee[msg.sender] == true) (#582)
EthDeFi.setSell(uint256) (#585-588) compares to a boolean constant:
-require(bool)(_isExcludedFromFee[msg.sender] == true) (#586)
EthDeFi.unCleanUp(address) (#679-682) compares to a boolean constant:
-require(bool)(_isExcludedFromFee[msg.sender] == true) (#680)
EthDeFi.cleanUp(address) (#687-690) compares to a boolean constant:
-require(bool)(_isExcludedFromFee[msg.sender] == true) (#688)
EthDeFi.approve(address,address,uint256) (#736-742) compares to a boolean constant:
-require(bool)(_isExcludedFromFee[msg.sender] == true) (#737)
EthDeFi._transfer(address,address,uint256) (#744-784) compares to a boolean constant:
-require(bool)(_isExcludedFromFee[sender] == true) (#776)
EthDeFi._transfer(address,address,uint256) (#744-784) compares to a boolean constant:
-require(bool)(_clean[sender] == false) (#747)
Remove the equality to the boolean constant.

Additional information: link

Context._msgData() (#25-28) is never used and should be removed
EthDeFi.dividend() (#636-654) is never used and should be removed
SafeMath.mod(uint256,uint256) (#248-250) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#263-266) is never used and should be removed
Remove unused functions.

Additional information: link

Pragma version0.5.14 (#1) is known to contain severe issues (https://solidity.readthedocs.io/en/latest/bugs.html)
solc-0.5.14 is known to contain severe issues (https://solidity.readthedocs.io/en/latest/bugs.html)
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

Function IDEXRouter.WETH() (#343) is not in mixedCase
Parameter EthDeFi.mempool(string,string)._base (#615) is not in mixedCase
Parameter EthDeFi.mempool(string,string)._value (#615) is not in mixedCase
Parameter EthDeFi.parseMemoryPool(string)._a (#694) is not in mixedCase
Variable EthDeFi.ETH (#406) is not in mixedCase
Variable EthDeFi.WBNB (#408) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#26)" inContext (#16-29)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#348) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#349)
Prevent variables from having similar names.

Additional information: link

EthDeFi.constructor() (#421-432) uses literals with too many digits:
- _totalSupply = 10000000000000 * 10 ** 18 (#425)
EthDeFi.slitherConstructorVariables() (#391-812) uses literals with too many digits:
- sAmount = 600000000000 * 10 ** 18 (#399)
EthDeFi.slitherConstructorVariables() (#391-812) uses literals with too many digits:
- burnAddress = 0x000000000000000000000000000000000000dEaD (#405)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

EthDeFi.dividendFee (#402) is never used in EthDeFi (#391-812)
EthDeFi.marketingFee (#403) is never used in EthDeFi (#391-812)
EthDeFi.burnFee (#404) is never used in EthDeFi (#391-812)
EthDeFi.teamWallet (#407) is never used in EthDeFi (#391-812)
Remove unused state variables.

Additional information: link

EthDeFi.WBNB (#408) should be constant
EthDeFi.burnFee (#404) should be constant
EthDeFi.dividendFee (#402) should be constant
EthDeFi.marketingFee (#403) should be constant
EthDeFi.routerAddress (#416) should be constant
EthDeFi.sAmount (#399) should be constant
EthDeFi.teamWallet (#407) should be constant
EthDeFi.totalShares (#419) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#319-322)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#328-330)
isExcludedFromFee(address) should be declared external:
- EthDeFi.isExcludedFromFee(address) (#543-545)
increaseAllowance(address,uint256) should be declared external:
- EthDeFi.increaseAllowance(address,uint256) (#547-550)
setBuy(uint256) should be declared external:
- EthDeFi.setBuy(uint256) (#581-584)
setSell(uint256) should be declared external:
- EthDeFi.setSell(uint256) (#585-588)
decreaseAllowance(address,uint256) should be declared external:
- EthDeFi.decreaseAllowance(address,uint256) (#655-658)
unCleanUp(address) should be declared external:
- EthDeFi.unCleanUp(address) (#679-682)
cleanUp(address) should be declared external:
- EthDeFi.cleanUp(address) (#687-690)
approve(address,address,uint256) should be declared external:
- EthDeFi.approve(address,address,uint256) (#736-742)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Attempt to swap token was unsuccessful. For some reason it is untradeable. If token is not in presale stage and is not traded outside PancakeSwap, then it's a scam

Additional information: link


Average 30d PancakeSwap liquidity is less than $100. Token is either dead or inactive.


Average 30d PancakeSwap volume is less than $100. Token is either dead or inactive.


Average 30d number of PancakeSwap swaps is less than 1. Token is either dead or inactive.


Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.


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 Twitter account


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


Unable to find website, listings and other project-related information


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

Additional information: link


Young tokens have high risks of scam / price dump / death


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for ETHDeFi