ElonBabyDoge is meme token proposes an innovative feature. Deflationary token with anti-whale tier system. $EBD ecosystem is the combination of auto burn and auto reward mechanism. Ecosystem will be the combination of #EBDSwap, Defi, and NFTs !
ElonBabyDoge.withdraw() (#614-618) ignores return value by IERC20(address(this)).transfer(msg.sender,balance) (#616)
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...)
Contract ownership is not renounced (belongs to a wallet)
ElonBabyDoge.allowance(address,address).owner (#625) shadows:
- Ownable.owner() (#196-198) (function)
ElonBabyDoge._approve(address,address,uint256).owner (#841) shadows:
- Ownable.owner() (#196-198) (function)
Rename the local variables that shadow another component.
Additional information: link
ElonBabyDoge.setRewardFeePercent(uint256) (#722-724) should emit an event for:
- _rewardFee = rewardFee (#723)
ElonBabyDoge.setBurnFeePercent(uint256) (#726-728) should emit an event for:
- _burnFee = burnFee (#727)
ElonBabyDoge.setMaxWalletPercentThousandths(uint256) (#730-732) should emit an event for:
- _maxWalletSize = _tTotal.mul(maxWalletPercent).div(10 ** 3) (#731)
ElonBabyDoge.setMaxTxPercent(uint256) (#734-736) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (#735)
Emit an event for critical parameter changes.
Additional information: link
Reentrancy in ElonBabyDoge.constructor() (#582-591):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#585)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#587)
- _isExcludedFromFee[BURN_ADDRESS] = true (#588)
- _isExcludedFromReward[BURN_ADDRESS] = true (#589)
- uniswapV2Router = _uniswapV2Router (#586)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in ElonBabyDoge.constructor() (#582-591):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#585)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#590)
Apply the check-effects-interactions pattern.
Additional information: link
Ownable.unlock() (#227-232) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked until 7 days) (#229)
Avoid relying on block.timestamp.
Additional information: link
Address.isContract(address) (#112-120) uses assembly
- INLINE ASM (#116-118)
Address._functionCallWithValue(address,bytes,uint256,string) (#159-181) uses assembly
- INLINE ASM (#173-176)
Do not use evm assembly.
Additional information: link
ElonBabyDoge.includeInReward(address) (#701-712) has costly operations inside a loop:
- _excludedFromReward.pop() (#708)
Use a local variable to hold the loop computation result.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#159-181) is never used and should be removed
Address.functionCall(address,bytes) (#129-131) is never used and should be removed
Address.functionCall(address,bytes,string) (#133-139) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#141-147) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#149-157) is never used and should be removed
Address.isContract(address) (#112-120) is never used and should be removed
Address.sendValue(address,uint256) (#122-127) is never used and should be removed
Context._msgData() (#105-108) is never used and should be removed
SafeMath.mod(uint256,uint256) (#86-88) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#90-97) is never used and should be removed
Remove unused functions.
Additional information: link
ElonBabyDoge._rTotal (#559) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
ElonBabyDoge._previousRewardFee (#567) is set pre-construction with a non-constant function or state variable:
- _rewardFee
ElonBabyDoge._previousliquidityfee (#570) is set pre-construction with a non-constant function or state variable:
- _liquidityfee
ElonBabyDoge._previousBurnFee (#573) is set pre-construction with a non-constant function or state variable:
- _burnFee
Remove any initialization of state variables via non-constant state variables or function calls. If variables must be set upon contract deployment, locate initialization in the constructor instead.
Additional information: link
Pragma version^0.8.0 (#2) allows old versions
solc-0.8.0 is not recommended for deployment
Deploy with any of the following Solidity versions: 0.5.16 - 0.5.17, 0.6.11 - 0.6.12, 0.7.5 - 0.7.6 Use a simple pragma version that allows any of these versions. Consider using the latest version of Solidity for testing.
Additional information: link
Low level call in Address.sendValue(address,uint256) (#122-127):
- (success) = recipient.call{value: amount}() (#125)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#159-181):
- (success,returndata) = target.call{value: weiValue}(data) (#167)
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() (#281) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#283) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#302) is not in mixedCase
Function IUniswapV2Router01.WETH() (#346) is not in mixedCase
Function ElonBabyDoge._HODLrFee(uint256,uint256) (#740-743) is not in mixedCase
Parameter ElonBabyDoge.calculateRewardFee(uint256)._amount (#815) is not in mixedCase
Parameter ElonBabyDoge.calculateBurnFee(uint256)._amount (#819) is not in mixedCase
Variable ElonBabyDoge.BURN_ADDRESS (#555) is not in mixedCase
Variable ElonBabyDoge._rewardFee (#566) is not in mixedCase
Variable ElonBabyDoge._liquidityfee (#569) is not in mixedCase
Variable ElonBabyDoge._previousliquidityfee (#570) is not in mixedCase
Variable ElonBabyDoge._burnFee (#572) is not in mixedCase
Variable ElonBabyDoge._maxTxAmount (#577) is not in mixedCase
Variable ElonBabyDoge._maxWalletSize (#578) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#106)" inContext (#100-109)
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 (#351) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#352)
Variable ElonBabyDoge._transferFromExcluded(address,address,uint256).rTransferAmount (#905) is too similar to ElonBabyDoge._getTValues(uint256).tTransferAmount (#773)
Variable ElonBabyDoge._transferBothExcluded(address,address,uint256).rTransferAmount (#952) is too similar to ElonBabyDoge._getTValues(uint256).tTransferAmount (#773)
Variable ElonBabyDoge._transferStandard(address,address,uint256).rTransferAmount (#937) is too similar to ElonBabyDoge._transferToExcluded(address,address,uint256).tTransferAmount (#921)
Variable ElonBabyDoge._transferToExcluded(address,address,uint256).rTransferAmount (#921) is too similar to ElonBabyDoge._getValues(uint256).tTransferAmount (#757)
Variable ElonBabyDoge._getValues(uint256).rTransferAmount (#758) is too similar to ElonBabyDoge._getValues(uint256).tTransferAmount (#757)
Variable ElonBabyDoge._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#794) is too similar to ElonBabyDoge._transferStandard(address,address,uint256).tTransferAmount (#937)
Variable ElonBabyDoge._transferToExcluded(address,address,uint256).rTransferAmount (#921) is too similar to ElonBabyDoge._transferStandard(address,address,uint256).tTransferAmount (#937)
Variable ElonBabyDoge._transferFromExcluded(address,address,uint256).rTransferAmount (#905) is too similar to ElonBabyDoge._getValues(uint256).tTransferAmount (#757)
Variable ElonBabyDoge._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#794) is too similar to ElonBabyDoge._transferToExcluded(address,address,uint256).tTransferAmount (#921)
Variable ElonBabyDoge._getValues(uint256).rTransferAmount (#758) is too similar to ElonBabyDoge._transferStandard(address,address,uint256).tTransferAmount (#937)
Variable ElonBabyDoge._transferFromExcluded(address,address,uint256).rTransferAmount (#905) is too similar to ElonBabyDoge._transferFromExcluded(address,address,uint256).tTransferAmount (#905)
Variable ElonBabyDoge.reflectionFromToken(uint256,bool).rTransferAmount (#677) is too similar to ElonBabyDoge._getValues(uint256).tTransferAmount (#757)
Variable ElonBabyDoge._transferBothExcluded(address,address,uint256).rTransferAmount (#952) is too similar to ElonBabyDoge._getValues(uint256).tTransferAmount (#757)
Variable ElonBabyDoge._transferBothExcluded(address,address,uint256).rTransferAmount (#952) is too similar to ElonBabyDoge._transferFromExcluded(address,address,uint256).tTransferAmount (#905)
Variable ElonBabyDoge._transferFromExcluded(address,address,uint256).rTransferAmount (#905) is too similar to ElonBabyDoge._transferBothExcluded(address,address,uint256).tTransferAmount (#952)
Variable ElonBabyDoge._transferToExcluded(address,address,uint256).rTransferAmount (#921) is too similar to ElonBabyDoge._transferToExcluded(address,address,uint256).tTransferAmount (#921)
Variable ElonBabyDoge._transferBothExcluded(address,address,uint256).rTransferAmount (#952) is too similar to ElonBabyDoge._transferBothExcluded(address,address,uint256).tTransferAmount (#952)
Variable ElonBabyDoge._getValues(uint256).rTransferAmount (#758) is too similar to ElonBabyDoge._transferToExcluded(address,address,uint256).tTransferAmount (#921)
Variable ElonBabyDoge._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#794) is too similar to ElonBabyDoge._getTValues(uint256).tTransferAmount (#773)
Variable ElonBabyDoge._transferFromExcluded(address,address,uint256).rTransferAmount (#905) is too similar to ElonBabyDoge._transferStandard(address,address,uint256).tTransferAmount (#937)
Variable ElonBabyDoge.reflectionFromToken(uint256,bool).rTransferAmount (#677) is too similar to ElonBabyDoge._transferStandard(address,address,uint256).tTransferAmount (#937)
Variable ElonBabyDoge._transferStandard(address,address,uint256).rTransferAmount (#937) is too similar to ElonBabyDoge._getValues(uint256).tTransferAmount (#757)
Variable ElonBabyDoge._transferBothExcluded(address,address,uint256).rTransferAmount (#952) is too similar to ElonBabyDoge._transferStandard(address,address,uint256).tTransferAmount (#937)
Variable ElonBabyDoge._transferFromExcluded(address,address,uint256).rTransferAmount (#905) is too similar to ElonBabyDoge._transferToExcluded(address,address,uint256).tTransferAmount (#921)
Variable ElonBabyDoge.reflectionFromToken(uint256,bool).rTransferAmount (#677) is too similar to ElonBabyDoge._transferToExcluded(address,address,uint256).tTransferAmount (#921)
Variable ElonBabyDoge._getValues(uint256).rTransferAmount (#758) is too similar to ElonBabyDoge._getTValues(uint256).tTransferAmount (#773)
Variable ElonBabyDoge._transferBothExcluded(address,address,uint256).rTransferAmount (#952) is too similar to ElonBabyDoge._transferToExcluded(address,address,uint256).tTransferAmount (#921)
Variable ElonBabyDoge._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#794) is too similar to ElonBabyDoge._getValues(uint256).tTransferAmount (#757)
Variable ElonBabyDoge._transferStandard(address,address,uint256).rTransferAmount (#937) is too similar to ElonBabyDoge._transferStandard(address,address,uint256).tTransferAmount (#937)
Variable ElonBabyDoge.reflectionFromToken(uint256,bool).rTransferAmount (#677) is too similar to ElonBabyDoge._getTValues(uint256).tTransferAmount (#773)
Variable ElonBabyDoge._transferToExcluded(address,address,uint256).rTransferAmount (#921) is too similar to ElonBabyDoge._transferBothExcluded(address,address,uint256).tTransferAmount (#952)
Variable ElonBabyDoge.reflectionFromToken(uint256,bool).rTransferAmount (#677) is too similar to ElonBabyDoge._transferFromExcluded(address,address,uint256).tTransferAmount (#905)
Variable ElonBabyDoge._getValues(uint256).rTransferAmount (#758) is too similar to ElonBabyDoge._transferFromExcluded(address,address,uint256).tTransferAmount (#905)
Variable ElonBabyDoge._transferStandard(address,address,uint256).rTransferAmount (#937) is too similar to ElonBabyDoge._getTValues(uint256).tTransferAmount (#773)
Variable ElonBabyDoge._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#794) is too similar to ElonBabyDoge._transferFromExcluded(address,address,uint256).tTransferAmount (#905)
Variable ElonBabyDoge._transferToExcluded(address,address,uint256).rTransferAmount (#921) is too similar to ElonBabyDoge._getTValues(uint256).tTransferAmount (#773)
Variable ElonBabyDoge.reflectionFromToken(uint256,bool).rTransferAmount (#677) is too similar to ElonBabyDoge._transferBothExcluded(address,address,uint256).tTransferAmount (#952)
Variable ElonBabyDoge._getValues(uint256).rTransferAmount (#758) is too similar to ElonBabyDoge._transferBothExcluded(address,address,uint256).tTransferAmount (#952)
Variable ElonBabyDoge._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#794) is too similar to ElonBabyDoge._transferBothExcluded(address,address,uint256).tTransferAmount (#952)
Variable ElonBabyDoge._transferStandard(address,address,uint256).rTransferAmount (#937) is too similar to ElonBabyDoge._transferFromExcluded(address,address,uint256).tTransferAmount (#905)
Variable ElonBabyDoge._transferToExcluded(address,address,uint256).rTransferAmount (#921) is too similar to ElonBabyDoge._transferFromExcluded(address,address,uint256).tTransferAmount (#905)
Variable ElonBabyDoge._transferStandard(address,address,uint256).rTransferAmount (#937) is too similar to ElonBabyDoge._transferBothExcluded(address,address,uint256).tTransferAmount (#952)
Prevent variables from having similar names.
Additional information: link
ElonBabyDoge.slitherConstructorVariables() (#543-964) uses literals with too many digits:
- BURN_ADDRESS = 0x000000000000000000000000000000000000dEaD (#555)
ElonBabyDoge.slitherConstructorVariables() (#543-964) uses literals with too many digits:
- _tTotal = 1000000000000 * 10 ** 9 (#558)
ElonBabyDoge.slitherConstructorVariables() (#543-964) uses literals with too many digits:
- _maxTxAmount = 5000000000 * 10 ** 9 (#577)
ElonBabyDoge.slitherConstructorVariables() (#543-964) uses literals with too many digits:
- _maxWalletSize = 5000000000 * 10 ** 9 (#578)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
ElonBabyDoge.BURN_ADDRESS (#555) should be constant
ElonBabyDoge._decimals (#564) should be constant
ElonBabyDoge._liquidityfee (#569) should be constant
ElonBabyDoge._name (#562) should be constant
ElonBabyDoge._symbol (#563) should be constant
ElonBabyDoge._tTotal (#558) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#205-208)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#210-214)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#216-218)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#220-225)
unlock() should be declared external:
- Ownable.unlock() (#227-232)
name() should be declared external:
- ElonBabyDoge.name() (#593-595)
symbol() should be declared external:
- ElonBabyDoge.symbol() (#597-599)
decimals() should be declared external:
- ElonBabyDoge.decimals() (#601-603)
totalSupply() should be declared external:
- ElonBabyDoge.totalSupply() (#605-607)
transfer(address,uint256) should be declared external:
- ElonBabyDoge.transfer(address,uint256) (#620-623)
allowance(address,address) should be declared external:
- ElonBabyDoge.allowance(address,address) (#625-627)
approve(address,uint256) should be declared external:
- ElonBabyDoge.approve(address,uint256) (#629-632)
transferFrom(address,address,uint256) should be declared external:
- ElonBabyDoge.transferFrom(address,address,uint256) (#634-642)
increaseAllowance(address,uint256) should be declared external:
- ElonBabyDoge.increaseAllowance(address,uint256) (#644-647)
decreaseAllowance(address,uint256) should be declared external:
- ElonBabyDoge.decreaseAllowance(address,uint256) (#649-652)
totalHODLrRewards() should be declared external:
- ElonBabyDoge.totalHODLrRewards() (#654-656)
totalBurned() should be declared external:
- ElonBabyDoge.totalBurned() (#658-660)
deliver(uint256) should be declared external:
- ElonBabyDoge.deliver(uint256) (#662-669)
reflectionFromToken(uint256,bool) should be declared external:
- ElonBabyDoge.reflectionFromToken(uint256,bool) (#671-680)
isExcludedFromReward(address) should be declared external:
- ElonBabyDoge.isExcludedFromReward(address) (#688-690)
excludeFromReward(address) should be declared external:
- ElonBabyDoge.excludeFromReward(address) (#692-699)
excludeFromFee(address) should be declared external:
- ElonBabyDoge.excludeFromFee(address) (#714-716)
includeInFee(address) should be declared external:
- ElonBabyDoge.includeInFee(address) (#718-720)
isExcludedFromFee(address) should be declared external:
- ElonBabyDoge.isExcludedFromFee(address) (#836-838)
Use the external attribute for functions never called from the contract.
Additional information: link
Not a direct threat, but may indicate unreliable intentions of developer. Widespread names (e.g. Elon, King, Moon, Doge) are common among meme-tokens and scams. The allow to gain free hype and attract unexperienced investors.
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.
Contract has 4% buy tax and 2% sell tax.
Taxes are low but contract ownership is not renounced. Token has a high risk of becoming a honeypot.
Token is deployed only at one blockchain
Token has only one trading pair
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
Unable to find token on CoinGecko
Additional information: link
Unable to find token on CoinMarketCap
Additional information: link
Unable to find 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
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
Token has no active CoinMarketCap listing / rank
Token has a considerable age, but social accounts / website are missing or have few users
Token has a considerable age, but average PancakeSwap 30d trading volume is low
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
Last post in Twitter was more than 180 days ago
Telegram account has relatively few subscribers
Twitter account has relatively few followers
Unable to find Youtube account
Unable to find Discord account