By simply holding, you will earn crypto currencies favourite meme coin – Auto Doge.
The longer you hold, the more you earn – it really is that simple.
The devs and mods are ready to answer any questions you may have. So come on over, get involved, and do not miss out on the next multi million dollar coin.. you owe it to your Auto Doge, it’s the least you can do!🍳
OWNERSHIP IS REVOCED. 11% DIVIDEND PAID IN Auto Doge 5% of every transaction is accumulated for dividends to holders.🚀
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
AutoDoge.addLiquidity(uint256,uint256) (#741-754) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#746-753)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in AutoDoge._transfer(address,address,uint256) (#650-688):
External calls:
- swapAndLiquify(contractTokenBalance) (#672)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#746-753)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#730-736)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#672)
- recipient.transfer(amount) (#614)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#746-753)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#675)
- _balances[recipient] = _balances[recipient].add(finalAmount) (#683)
- finalAmount = takeFee(sender,recipient,amount) (#677-678)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#768)
Apply the check-effects-interactions pattern.
Additional information: link
Contract ownership is not renounced (belongs to a wallet)
Combination 1: Reentrancy vulnerabilities + Functions that send Ether to arbitraty destination. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.
Reentrancy in AutoDoge.changeRouterVersion(address) (#617-634):
External calls:
- newPairAddress = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#625-626)
State variables written after the call(s):
- isMarketPair[address(uniswapPair)] = true (#633)
- isWalletLimitExempt[address(uniswapPair)] = true (#632)
- uniswapPair = newPairAddress (#629)
- uniswapV2Router = _uniswapV2Router (#630)
Reentrancy in AutoDoge.constructor() (#454-483):
External calls:
- uniswapPair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#459-460)
State variables written after the call(s):
- _allowances[address(this)][address(uniswapV2Router)] = _totalSupply (#463)
- _balances[_msgSender()] = _totalSupply (#481)
- _totalDistributionShares = _liquidityShare.add(_marketingShare).add(_teamShare) (#470)
- _totalTaxIfBuying = _buyLiquidityFee.add(_buyMarketingFee).add(_buyTeamFee) (#468)
- _totalTaxIfSelling = _sellLiquidityFee.add(_sellMarketingFee).add(_sellTeamFee) (#469)
- isExcludedFromFee[owner()] = true (#465)
- isExcludedFromFee[address(this)] = true (#466)
- isMarketPair[address(uniswapPair)] = true (#479)
- isTxLimitExempt[owner()] = true (#476)
- isTxLimitExempt[address(this)] = true (#477)
- isWalletLimitExempt[owner()] = true (#472)
- isWalletLimitExempt[address(uniswapPair)] = true (#473)
- isWalletLimitExempt[address(this)] = true (#474)
- uniswapV2Router = _uniswapV2Router (#462)
Reentrancy in AutoDoge.swapAndLiquify(uint256) (#697-719):
External calls:
- swapTokensForEth(tokensForSwap) (#702)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#730-736)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#718)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#746-753)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#712)
- recipient.transfer(amount) (#614)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#715)
- recipient.transfer(amount) (#614)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#718)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#746-753)
State variables written after the call(s):
- addLiquidity(tokensForLP,amountBNBLiquidity) (#718)
- _allowances[owner][spender] = amount (#532)
Reentrancy in AutoDoge.transferFrom(address,address,uint256) (#644-648):
External calls:
- _transfer(sender,recipient,amount) (#645)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#746-753)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#730-736)
External calls sending eth:
- _transfer(sender,recipient,amount) (#645)
- recipient.transfer(amount) (#614)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#746-753)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#646)
- _allowances[owner][spender] = amount (#532)
Apply the check-effects-interactions pattern.
Additional information: link
AutoDoge.addLiquidity(uint256,uint256) (#741-754) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#746-753)
Ensure that all the return values of the function calls are used.
Additional information: link
AutoDoge.allowance(address,address).owner (#505) shadows:
- Ownable.owner() (#155-157) (function)
AutoDoge._approve(address,address,uint256).owner (#528) shadows:
- Ownable.owner() (#155-157) (function)
Rename the local variables that shadow another component.
Additional information: link
AutoDoge.setBuyTaxes(uint256,uint256,uint256) (#548-554) should emit an event for:
- _totalTaxIfBuying = _buyLiquidityFee.add(_buyMarketingFee).add(_buyTeamFee) (#553)
AutoDoge.setSelTaxes(uint256,uint256,uint256) (#556-562) should emit an event for:
- _totalTaxIfSelling = _sellLiquidityFee.add(_sellMarketingFee).add(_sellTeamFee) (#561)
AutoDoge.setDistributionSettings(uint256,uint256,uint256) (#564-570) should emit an event for:
- _liquidityShare = newLiquidityShare (#565)
- _teamShare = newTeamShare (#567)
- _totalDistributionShares = _liquidityShare.add(_marketingShare).add(_teamShare) (#569)
AutoDoge.setMaxTxAmount(uint256) (#572-574) should emit an event for:
- _maxTxAmount = maxTxAmount (#573)
AutoDoge.setWalletLimit(uint256) (#584-586) should emit an event for:
- _walletMax = newLimit (#585)
AutoDoge.setNumTokensBeforeSwap(uint256) (#588-590) should emit an event for:
- minimumTokensBeforeSwap = newLimit (#589)
Emit an event for critical parameter changes.
Additional information: link
AutoDoge.setMarketingWalletAddress(address).newAddress (#592) lacks a zero-check on :
- marketingWalletAddress = address(newAddress) (#593)
AutoDoge.setTeamWalletAddress(address).newAddress (#596) lacks a zero-check on :
- teamWalletAddress = address(newAddress) (#597)
Check that the address is not zero.
Additional information: link
Reentrancy in AutoDoge._transfer(address,address,uint256) (#650-688):
External calls:
- swapAndLiquify(contractTokenBalance) (#672)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#746-753)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#730-736)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#672)
- recipient.transfer(amount) (#614)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#746-753)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#769)
- finalAmount = takeFee(sender,recipient,amount) (#677-678)
- Transfer(sender,recipient,finalAmount) (#685)
Reentrancy in AutoDoge.constructor() (#454-483):
External calls:
- uniswapPair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#459-460)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_totalSupply) (#482)
Reentrancy in AutoDoge.swapAndLiquify(uint256) (#697-719):
External calls:
- swapTokensForEth(tokensForSwap) (#702)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#730-736)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#718)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#746-753)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#712)
- recipient.transfer(amount) (#614)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#715)
- recipient.transfer(amount) (#614)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#718)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#746-753)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#533)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#718)
Reentrancy in AutoDoge.swapTokensForEth(uint256) (#721-739):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#730-736)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#738)
Reentrancy in AutoDoge.transferFrom(address,address,uint256) (#644-648):
External calls:
- _transfer(sender,recipient,amount) (#645)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#746-753)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#730-736)
External calls sending eth:
- _transfer(sender,recipient,amount) (#645)
- recipient.transfer(amount) (#614)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#746-753)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#533)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#646)
Apply the check-effects-interactions pattern.
Additional information: link
Address.isContract(address) (#86-95) uses assembly
- INLINE ASM (#93)
Address._functionCallWithValue(address,bytes,uint256,string) (#122-139) uses assembly
- INLINE ASM (#131-134)
Do not use evm assembly.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#122-139) is never used and should be removed
Address.functionCall(address,bytes) (#105-107) is never used and should be removed
Address.functionCall(address,bytes,string) (#109-111) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#113-115) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#117-120) is never used and should be removed
Address.isContract(address) (#86-95) is never used and should be removed
Address.sendValue(address,uint256) (#97-103) is never used and should be removed
Context._msgData() (#13-16) is never used and should be removed
SafeMath.mod(uint256,uint256) (#74-76) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#78-81) is never used and should be removed
Remove unused functions.
Additional information: link
AutoDoge._totalSupply (#418) is set pre-construction with a non-constant function or state variable:
- 1000000000000 * 10 ** _decimals
AutoDoge._maxTxAmount (#419) is set pre-construction with a non-constant function or state variable:
- 1000000000000 * 10 ** _decimals
AutoDoge._walletMax (#420) is set pre-construction with a non-constant function or state variable:
- 1000000000000 * 10 ** _decimals
AutoDoge.minimumTokensBeforeSwap (#421) is set pre-construction with a non-constant function or state variable:
- 100 * 10 ** _decimals
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) (#97-103):
- (success) = recipient.call{value: amount}() (#101)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#122-139):
- (success,returndata) = target.call{value: weiValue}(data) (#125)
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() (#212) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#213) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#229) is not in mixedCase
Function IUniswapV2Router01.WETH() (#248) is not in mixedCase
Parameter AutoDoge.setSwapAndLiquifyEnabled(bool)._enabled (#600) is not in mixedCase
Variable AutoDoge._balances (#394) is not in mixedCase
Variable AutoDoge._buyLiquidityFee (#402) is not in mixedCase
Variable AutoDoge._buyMarketingFee (#403) is not in mixedCase
Variable AutoDoge._buyTeamFee (#404) is not in mixedCase
Variable AutoDoge._sellLiquidityFee (#406) is not in mixedCase
Variable AutoDoge._sellMarketingFee (#407) is not in mixedCase
Variable AutoDoge._sellTeamFee (#408) is not in mixedCase
Variable AutoDoge._liquidityShare (#410) is not in mixedCase
Variable AutoDoge._marketingShare (#411) is not in mixedCase
Variable AutoDoge._teamShare (#412) is not in mixedCase
Variable AutoDoge._totalTaxIfBuying (#414) is not in mixedCase
Variable AutoDoge._totalTaxIfSelling (#415) is not in mixedCase
Variable AutoDoge._totalDistributionShares (#416) is not in mixedCase
Variable AutoDoge._maxTxAmount (#419) is not in mixedCase
Variable AutoDoge._walletMax (#420) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#14)" inContext (#7-17)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Reentrancy in AutoDoge._transfer(address,address,uint256) (#650-688):
External calls:
- swapAndLiquify(contractTokenBalance) (#672)
- recipient.transfer(amount) (#614)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#672)
- recipient.transfer(amount) (#614)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#746-753)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#675)
- _balances[recipient] = _balances[recipient].add(finalAmount) (#683)
- finalAmount = takeFee(sender,recipient,amount) (#677-678)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#768)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#769)
- finalAmount = takeFee(sender,recipient,amount) (#677-678)
- Transfer(sender,recipient,finalAmount) (#685)
Reentrancy in AutoDoge.swapAndLiquify(uint256) (#697-719):
External calls:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#712)
- recipient.transfer(amount) (#614)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#715)
- recipient.transfer(amount) (#614)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#712)
- recipient.transfer(amount) (#614)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#715)
- recipient.transfer(amount) (#614)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#718)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#746-753)
State variables written after the call(s):
- addLiquidity(tokensForLP,amountBNBLiquidity) (#718)
- _allowances[owner][spender] = amount (#532)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#533)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#718)
Reentrancy in AutoDoge.transferFrom(address,address,uint256) (#644-648):
External calls:
- _transfer(sender,recipient,amount) (#645)
- recipient.transfer(amount) (#614)
External calls sending eth:
- _transfer(sender,recipient,amount) (#645)
- recipient.transfer(amount) (#614)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#746-753)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#646)
- _allowances[owner][spender] = amount (#532)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#533)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#646)
Apply the check-effects-interactions pattern.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#253) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#254)
Prevent variables from having similar names.
Additional information: link
Ownable.waiveOwnership() (#164-167) uses literals with too many digits:
- OwnershipTransferred(_owner,address(0x000000000000000000000000000000000000dEaD)) (#165)
Ownable.waiveOwnership() (#164-167) uses literals with too many digits:
- _owner = address(0x000000000000000000000000000000000000dEaD) (#166)
AutoDoge.slitherConstructorVariables() (#381-776) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#392)
AutoDoge.slitherConstructorVariables() (#381-776) uses literals with too many digits:
- _totalSupply = 1000000000000 * 10 ** _decimals (#418)
AutoDoge.slitherConstructorVariables() (#381-776) uses literals with too many digits:
- _maxTxAmount = 1000000000000 * 10 ** _decimals (#419)
AutoDoge.slitherConstructorVariables() (#381-776) uses literals with too many digits:
- _walletMax = 1000000000000 * 10 ** _decimals (#420)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
Ownable.asdasd (#144) is never used in AutoDoge (#381-776)
Ownable._lockTime (#145) is never used in AutoDoge (#381-776)
Remove unused state variables.
Additional information: link
AutoDoge._decimals (#388) should be constant
AutoDoge._name (#386) should be constant
AutoDoge._symbol (#387) should be constant
Ownable._lockTime (#145) should be constant
Ownable.asdasd (#144) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
waiveOwnership() should be declared external:
- Ownable.waiveOwnership() (#164-167)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#169-173)
getTime() should be declared external:
- Ownable.getTime() (#175-177)
name() should be declared external:
- AutoDoge.name() (#485-487)
symbol() should be declared external:
- AutoDoge.symbol() (#489-491)
decimals() should be declared external:
- AutoDoge.decimals() (#493-495)
totalSupply() should be declared external:
- AutoDoge.totalSupply() (#497-499)
allowance(address,address) should be declared external:
- AutoDoge.allowance(address,address) (#505-507)
increaseAllowance(address,uint256) should be declared external:
- AutoDoge.increaseAllowance(address,uint256) (#509-512)
decreaseAllowance(address,uint256) should be declared external:
- AutoDoge.decreaseAllowance(address,uint256) (#514-517)
minimumTokensBeforeSwapAmount() should be declared external:
- AutoDoge.minimumTokensBeforeSwapAmount() (#519-521)
approve(address,uint256) should be declared external:
- AutoDoge.approve(address,uint256) (#523-526)
setMarketPairStatus(address,bool) should be declared external:
- AutoDoge.setMarketPairStatus(address,bool) (#536-538)
setIsExcludedFromFee(address,bool) should be declared external:
- AutoDoge.setIsExcludedFromFee(address,bool) (#544-546)
setSwapAndLiquifyEnabled(bool) should be declared external:
- AutoDoge.setSwapAndLiquifyEnabled(bool) (#600-603)
setSwapAndLiquifyByLimitOnly(bool) should be declared external:
- AutoDoge.setSwapAndLiquifyByLimitOnly(bool) (#605-607)
getCirculatingSupply() should be declared external:
- AutoDoge.getCirculatingSupply() (#609-611)
changeRouterVersion(address) should be declared external:
- AutoDoge.changeRouterVersion(address) (#617-634)
transfer(address,uint256) should be declared external:
- AutoDoge.transfer(address,uint256) (#639-642)
transferFrom(address,address,uint256) should be declared external:
- AutoDoge.transferFrom(address,address,uint256) (#644-648)
Use the external attribute for functions never called from the contract.
Additional information: link
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
Unable to find token/project description on the website or on BscScan, CoinMarketCap
Unable to find token contract audit
Unable to find audit link on the website
Unable to find whitepaper link on the website
Unable to find token on CoinGecko
Additional information: link
Unable to find token on CoinMarketCap
Additional information: link
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
Young tokens have high risks of scam / price dump / death
Token has no active CoinMarketCap listing / rank
Young tokens have high risks of scam / price dump / death
Young tokens have high risks of scam / price dump / death
Token has no active CoinGecko listing / rank
Twitter account has relatively few followers
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account
Twitter account has few posts