🦆xQuackDoge is a new member from Quackinu family!!
We have a lot meme coin fans, QuackDoge will be the KING to lead the new trend on BSC!!
QuackSwap dapp is officially launched:
quackdoge.com/#swap
And we have QuackWallet APP in the future!!
😎We are so hype from Quackinu to QuackDoge, our Quack family will blow up in this market!!!💥
QuackDoge.addLiquidity(uint256,uint256) (#777-790) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#782-789)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in QuackDoge._transfer(address,address,uint256) (#675-724):
External calls:
- swapAndLiquify(contractTokenBalance) (#698)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#782-789)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#766-772)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#698)
- recipient.transfer(amount) (#623)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#782-789)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#701)
- finalAmount = takeFee(sender,recipient,amount) (#712)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#804)
- _balances[recipient] = _balances[recipient].add(finalAmount) (#718)
- addBot(recipient) (#709)
- _isAntiwhaleed[recipient] = true (#664)
Apply the check-effects-interactions pattern.
Additional information: link
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
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.
Contract ownership is not renounced (belongs to a wallet)
QuackDoge.addLiquidity(uint256,uint256) (#777-790) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#782-789)
Ensure that all the return values of the function calls are used.
Additional information: link
QuackDoge.allowance(address,address).owner (#508) shadows:
- Ownable.owner() (#153-155) (function)
QuackDoge._approve(address,address,uint256).owner (#531) shadows:
- Ownable.owner() (#153-155) (function)
Rename the local variables that shadow another component.
Additional information: link
QuackDoge.setBuyTaxes(uint256,uint256,uint256) (#556-562) should emit an event for:
- _totalTaxIfBuying = _buyLiquidityFee.add(_buyMarketingFee).add(_buyTeamFee) (#561)
QuackDoge.setSellTaxes(uint256,uint256,uint256) (#564-570) should emit an event for:
- _totalTaxIfSelling = _sellLiquidityFee.add(_sellMarketingFee).add(_sellTeamFee) (#569)
QuackDoge.setDistributionSettings(uint256,uint256,uint256) (#572-578) should emit an event for:
- _liquidityShare = newLiquidityShare (#573)
- _teamShare = newTeamShare (#575)
- _totalDistributionShares = _liquidityShare.add(_marketingShare).add(_teamShare) (#577)
QuackDoge.setMaxTxAmount(uint256) (#580-582) should emit an event for:
- _maxTxAmount = maxTxAmount (#581)
QuackDoge.setWalletLimit(uint256) (#592-594) should emit an event for:
- _walletMax = newLimit (#593)
QuackDoge.setNumTokensBeforeSwap(uint256) (#596-598) should emit an event for:
- minimumTokensBeforeSwap = newLimit (#597)
QuackDoge.setKillBlock(uint256) (#667-669) should emit an event for:
- killblock = num (#668)
Emit an event for critical parameter changes.
Additional information: link
QuackDoge.setMarketingWalletAddress(address).newAddress (#600) lacks a zero-check on :
- marketingWalletAddress = address(newAddress) (#601)
QuackDoge.setTeamWalletAddress(address).newAddress (#604) lacks a zero-check on :
- teamWalletAddress = address(newAddress) (#605)
Check that the address is not zero.
Additional information: link
Reentrancy in QuackDoge.changeRouterVersion(address) (#626-643):
External calls:
- newPairAddress = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#634-635)
State variables written after the call(s):
- isMarketPair[address(uniswapPair)] = true (#642)
- isWalletLimitExempt[address(uniswapPair)] = true (#641)
- uniswapPair = newPairAddress (#638)
- uniswapV2Router = _uniswapV2Router (#639)
Reentrancy in QuackDoge.constructor() (#455-486):
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 (#484)
- _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)
- marketingWalletAddress = address(owner()) (#482)
- teamWalletAddress = address(owner()) (#481)
- uniswapV2Router = _uniswapV2Router (#462)
Reentrancy in QuackDoge.swapAndLiquify(uint256) (#733-755):
External calls:
- swapTokensForEth(tokensForSwap) (#738)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#766-772)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#754)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#782-789)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#748)
- recipient.transfer(amount) (#623)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#751)
- recipient.transfer(amount) (#623)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#754)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#782-789)
State variables written after the call(s):
- addLiquidity(tokensForLP,amountBNBLiquidity) (#754)
- _allowances[owner][spender] = amount (#535)
Reentrancy in QuackDoge.transferFrom(address,address,uint256) (#653-657):
External calls:
- _transfer(sender,recipient,amount) (#654)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#782-789)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#766-772)
External calls sending eth:
- _transfer(sender,recipient,amount) (#654)
- recipient.transfer(amount) (#623)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#782-789)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#655)
- _allowances[owner][spender] = amount (#535)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in QuackDoge._transfer(address,address,uint256) (#675-724):
External calls:
- swapAndLiquify(contractTokenBalance) (#698)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#782-789)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#766-772)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#698)
- recipient.transfer(amount) (#623)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#782-789)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#805)
- finalAmount = takeFee(sender,recipient,amount) (#712)
- Transfer(sender,recipient,finalAmount) (#720)
Reentrancy in QuackDoge.constructor() (#455-486):
External calls:
- uniswapPair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#459-460)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_totalSupply) (#485)
Reentrancy in QuackDoge.swapAndLiquify(uint256) (#733-755):
External calls:
- swapTokensForEth(tokensForSwap) (#738)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#766-772)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#754)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#782-789)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#748)
- recipient.transfer(amount) (#623)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#751)
- recipient.transfer(amount) (#623)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#754)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#782-789)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#536)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#754)
Reentrancy in QuackDoge.swapTokensForEth(uint256) (#757-775):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#766-772)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#774)
Reentrancy in QuackDoge.transferFrom(address,address,uint256) (#653-657):
External calls:
- _transfer(sender,recipient,amount) (#654)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#782-789)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#766-772)
External calls sending eth:
- _transfer(sender,recipient,amount) (#654)
- recipient.transfer(amount) (#623)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#782-789)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#536)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#655)
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
QuackDoge._totalSupply (#419) is set pre-construction with a non-constant function or state variable:
- 100000000 * 10 ** 5 * 10 ** _decimals
QuackDoge._maxTxAmount (#420) is set pre-construction with a non-constant function or state variable:
- 100000000 * 10 ** 5 * 10 ** _decimals
QuackDoge._walletMax (#421) is set pre-construction with a non-constant function or state variable:
- 100000000 * 10 ** 5 * 10 ** _decimals
QuackDoge.minimumTokensBeforeSwap (#422) is set pre-construction with a non-constant function or state variable:
- 1000 * 10 ** 2 * 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() (#209) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#210) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#226) is not in mixedCase
Function IUniswapV2Router01.WETH() (#245) is not in mixedCase
Function QuackDoge.Launch() (#539-542) is not in mixedCase
Parameter QuackDoge.setSwapAndLiquifyEnabled(bool)._enabled (#608) is not in mixedCase
Variable QuackDoge._balances (#394) is not in mixedCase
Variable QuackDoge._buyLiquidityFee (#403) is not in mixedCase
Variable QuackDoge._buyMarketingFee (#404) is not in mixedCase
Variable QuackDoge._buyTeamFee (#405) is not in mixedCase
Variable QuackDoge._sellLiquidityFee (#407) is not in mixedCase
Variable QuackDoge._sellMarketingFee (#408) is not in mixedCase
Variable QuackDoge._sellTeamFee (#409) is not in mixedCase
Variable QuackDoge._liquidityShare (#411) is not in mixedCase
Variable QuackDoge._marketingShare (#412) is not in mixedCase
Variable QuackDoge._teamShare (#413) is not in mixedCase
Variable QuackDoge._totalTaxIfBuying (#415) is not in mixedCase
Variable QuackDoge._totalTaxIfSelling (#416) is not in mixedCase
Variable QuackDoge._totalDistributionShares (#417) is not in mixedCase
Variable QuackDoge._maxTxAmount (#420) is not in mixedCase
Variable QuackDoge._walletMax (#421) 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 QuackDoge._transfer(address,address,uint256) (#675-724):
External calls:
- swapAndLiquify(contractTokenBalance) (#698)
- recipient.transfer(amount) (#623)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#698)
- recipient.transfer(amount) (#623)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#782-789)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#701)
- finalAmount = takeFee(sender,recipient,amount) (#712)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#804)
- _balances[recipient] = _balances[recipient].add(finalAmount) (#718)
- addBot(recipient) (#709)
- _isAntiwhaleed[recipient] = true (#664)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#805)
- finalAmount = takeFee(sender,recipient,amount) (#712)
- Transfer(sender,recipient,finalAmount) (#720)
Reentrancy in QuackDoge.swapAndLiquify(uint256) (#733-755):
External calls:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#748)
- recipient.transfer(amount) (#623)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#751)
- recipient.transfer(amount) (#623)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#748)
- recipient.transfer(amount) (#623)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#751)
- recipient.transfer(amount) (#623)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#754)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#782-789)
State variables written after the call(s):
- addLiquidity(tokensForLP,amountBNBLiquidity) (#754)
- _allowances[owner][spender] = amount (#535)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#536)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#754)
Reentrancy in QuackDoge.transferFrom(address,address,uint256) (#653-657):
External calls:
- _transfer(sender,recipient,amount) (#654)
- recipient.transfer(amount) (#623)
External calls sending eth:
- _transfer(sender,recipient,amount) (#654)
- recipient.transfer(amount) (#623)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#782-789)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#655)
- _allowances[owner][spender] = amount (#535)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#536)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#655)
Apply the check-effects-interactions pattern.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#250) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#251)
Prevent variables from having similar names.
Additional information: link
Ownable.waiveOwnership() (#162-165) uses literals with too many digits:
- OwnershipTransferred(_owner,address(0x000000000000000000000000000000000000dEaD)) (#163)
Ownable.waiveOwnership() (#162-165) uses literals with too many digits:
- _owner = address(0x000000000000000000000000000000000000dEaD) (#164)
QuackDoge.slitherConstructorVariables() (#378-812) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#392)
QuackDoge.slitherConstructorVariables() (#378-812) uses literals with too many digits:
- _totalSupply = 100000000 * 10 ** 5 * 10 ** _decimals (#419)
QuackDoge.slitherConstructorVariables() (#378-812) uses literals with too many digits:
- _maxTxAmount = 100000000 * 10 ** 5 * 10 ** _decimals (#420)
QuackDoge.slitherConstructorVariables() (#378-812) uses literals with too many digits:
- _walletMax = 100000000 * 10 ** 5 * 10 ** _decimals (#421)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
QuackDoge._decimals (#385) should be constant
QuackDoge._name (#383) should be constant
QuackDoge._symbol (#384) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
waiveOwnership() should be declared external:
- Ownable.waiveOwnership() (#162-165)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#167-171)
getTime() should be declared external:
- Ownable.getTime() (#173-175)
name() should be declared external:
- QuackDoge.name() (#488-490)
symbol() should be declared external:
- QuackDoge.symbol() (#492-494)
decimals() should be declared external:
- QuackDoge.decimals() (#496-498)
totalSupply() should be declared external:
- QuackDoge.totalSupply() (#500-502)
allowance(address,address) should be declared external:
- QuackDoge.allowance(address,address) (#508-510)
increaseAllowance(address,uint256) should be declared external:
- QuackDoge.increaseAllowance(address,uint256) (#512-515)
decreaseAllowance(address,uint256) should be declared external:
- QuackDoge.decreaseAllowance(address,uint256) (#517-520)
minimumTokensBeforeSwapAmount() should be declared external:
- QuackDoge.minimumTokensBeforeSwapAmount() (#522-524)
approve(address,uint256) should be declared external:
- QuackDoge.approve(address,uint256) (#526-529)
Launch() should be declared external:
- QuackDoge.Launch() (#539-542)
setMarketPairStatus(address,bool) should be declared external:
- QuackDoge.setMarketPairStatus(address,bool) (#544-546)
setIsExcludedFromFee(address,bool) should be declared external:
- QuackDoge.setIsExcludedFromFee(address,bool) (#552-554)
setSwapAndLiquifyEnabled(bool) should be declared external:
- QuackDoge.setSwapAndLiquifyEnabled(bool) (#608-611)
setSwapAndLiquifyByLimitOnly(bool) should be declared external:
- QuackDoge.setSwapAndLiquifyByLimitOnly(bool) (#614-616)
getCirculatingSupply() should be declared external:
- QuackDoge.getCirculatingSupply() (#618-620)
changeRouterVersion(address) should be declared external:
- QuackDoge.changeRouterVersion(address) (#626-643)
transfer(address,uint256) should be declared external:
- QuackDoge.transfer(address,uint256) (#648-651)
transferFrom(address,address,uint256) should be declared external:
- QuackDoge.transferFrom(address,address,uint256) (#653-657)
isAntiwhale(address) should be declared external:
- QuackDoge.isAntiwhale(address) (#659-661)
setKillBlock(uint256) should be declared external:
- QuackDoge.setKillBlock(uint256) (#667-669)
writeAntiwhale(address,bool) should be declared external:
- QuackDoge.writeAntiwhale(address,bool) (#671-673)
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 contract audit
Unable to find KYC or doxxing proof
Unable to find audit 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
Young tokens have high risks of scam / price dump / death
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Young tokens have high risks of price dump / death
Telegram account link seems to be invalid
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account