🥏 @Caesars_Calls & @venomcalls calls #DiscDoge. 🥏Crypto dumping, DiscDoge Pumping 100x. 🥏DiscDoge will encourage people to get outdoors and be active through the social app and promote a thriving Flying Disc community and conversation through the distribution of DiscDoge tokens. 🥏DiscDoge will promote Flying Disc at the les Jeux de la XXXIIIe Olympiade, Aichi-Nagoya 2026 Asian Games and World Championships, and seek strategic partnerships.
DiscDoge.addLiquidity(uint256,uint256) (#1142-1155) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1147-1154)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in DiscDoge._transfer(address,address,uint256) (#996-1096):
External calls:
- swapAndLiquify(tokenAmountLP + tokenAmountBurn) (#1064)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1147-1154)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1109-1115)
- swapTokensForEth(tokenAmountForUseful) (#1067)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1109-1115)
External calls sending eth:
- swapAndLiquify(tokenAmountLP + tokenAmountBurn) (#1064)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1147-1154)
- address(_AppWalletAddress).transfer(BNBAmountForDev) (#1074)
- address(_MktWalletAddress).transfer(BNBAmountForMkt) (#1075)
State variables written after the call(s):
- super._transfer(from,address(this),fees_scope_0) (#1091)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#456)
- _balances[recipient] = _balances[recipient].add(amount) (#457)
- super._transfer(from,to,amount) (#1095)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#456)
- _balances[recipient] = _balances[recipient].add(amount) (#457)
- swapping = false (#1077)
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.
DiscDoge.addLiquidity(uint256,uint256) (#1142-1155) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1147-1154)
Ensure that all the return values of the function calls are used.
Additional information: link
Redundant expression "this (#92)" inContext (#86-95)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Reentrancy in DiscDoge._transfer(address,address,uint256) (#996-1096):
External calls:
- address(_AppWalletAddress).transfer(BNBAmountForDev) (#1074)
- address(_MktWalletAddress).transfer(BNBAmountForMkt) (#1075)
External calls sending eth:
- swapAndLiquify(tokenAmountLP + tokenAmountBurn) (#1064)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1147-1154)
- address(_AppWalletAddress).transfer(BNBAmountForDev) (#1074)
- address(_MktWalletAddress).transfer(BNBAmountForMkt) (#1075)
State variables written after the call(s):
- super._transfer(from,address(this),fees_scope_0) (#1091)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#456)
- _balances[recipient] = _balances[recipient].add(amount) (#457)
- super._transfer(from,to,amount) (#1095)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#456)
- _balances[recipient] = _balances[recipient].add(amount) (#457)
- swapping = false (#1077)
Event emitted after the call(s):
- Transfer(sender,recipient,amount) (#458)
- super._transfer(from,to,amount) (#1095)
- Transfer(sender,recipient,amount) (#458)
- super._transfer(from,address(this),fees_scope_0) (#1091)
Apply the check-effects-interactions pattern.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#612) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#613)
Variable ERC20._totalSupply (#276) is too similar to DiscDoge.totalSupply_ (#814)
Prevent variables from having similar names.
Additional information: link
DiscDoge.deadWallet (#810) should be constant
DiscDoge.totalSupply_ (#814) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
DiscDoge.setFee(uint256,uint256,uint256,uint256,uint256,uint256) (#930-948) should emit an event for:
- UsefulShare = _UsefulShare (#943)
- AllFee = MktFee.add(DevFee).add(LpFee).add(BurnFee) (#946)
- AllShare = UsefulShare.add(OtherShare) (#947)
DiscDoge.setSnipeBlocks(uint8) (#991-994) should emit an event for:
- snipeBlocks = _blocks (#993)
Emit an event for critical parameter changes.
Additional information: link
DiscDoge.updateUniswapV2Router(address)._uniswapV2Pair (#897-898) lacks a zero-check on :
- uniswapV2Pair = _uniswapV2Pair (#899)
DiscDoge.setDevWallet(address).wallet (#917) lacks a zero-check on :
- _AppWalletAddress = wallet (#918)
DiscDoge.setPresaleContract(address).wallet (#921) lacks a zero-check on :
- _PresaleAddress = wallet (#922)
DiscDoge.setFoudWalletAddress(address).wallet (#926) lacks a zero-check on :
- _MktWalletAddress = wallet (#927)
DiscDoge.rescueBNB(address)._recipient (#976) lacks a zero-check on :
- _recipient.transfer(address(this).balance) (#977)
Check that the address is not zero.
Additional information: link
Reentrancy in DiscDoge._transfer(address,address,uint256) (#996-1096):
External calls:
- swapAndLiquify(tokenAmountLP + tokenAmountBurn) (#1064)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1147-1154)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1109-1115)
- swapTokensForEth(tokenAmountForUseful) (#1067)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1109-1115)
External calls sending eth:
- swapAndLiquify(tokenAmountLP + tokenAmountBurn) (#1064)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1147-1154)
State variables written after the call(s):
- swapTokensForEth(tokenAmountForUseful) (#1067)
- _allowances[owner][spender] = amount (#522)
Reentrancy in DiscDoge.constructor() (#861-889):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#865-866)
State variables written after the call(s):
- AllFee = MktFee.add(DevFee).add(LpFee).add(BurnFee) (#875)
- AllShare = UsefulShare.add(OtherShare) (#876)
- _mint(owner(),totalSupply_) (#888)
- _balances[account] = _balances[account].add(amount) (#476)
- excludeFromFees(owner(),true) (#879)
- _isExcludedFromFees[account] = excluded (#904)
- excludeFromFees(_AppWalletAddress,true) (#880)
- _isExcludedFromFees[account] = excluded (#904)
- excludeFromFees(_MktWalletAddress,true) (#881)
- _isExcludedFromFees[account] = excluded (#904)
- excludeFromFees(address(this),true) (#882)
- _isExcludedFromFees[account] = excluded (#904)
- _mint(owner(),totalSupply_) (#888)
- _totalSupply = _totalSupply.add(amount) (#475)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#871)
- automatedMarketMakerPairs[pair] = value (#983)
- swapTokensAtAmount = totalSupply_.mul(4).div(10 ** 6) (#873)
- uniswapV2Pair = _uniswapV2Pair (#869)
- uniswapV2Router = _uniswapV2Router (#868)
Reentrancy in DiscDoge.swapAndLiquify(uint256) (#1119-1140):
External calls:
- swapTokensForEth(half) (#1131)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1109-1115)
- addLiquidity(otherHalf,newBalance) (#1137)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1147-1154)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1137)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1147-1154)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1137)
- _allowances[owner][spender] = amount (#522)
Reentrancy in DiscDoge.updateUniswapV2Router(address) (#893-900):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (#897-898)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (#899)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in DiscDoge._transfer(address,address,uint256) (#996-1096):
External calls:
- swapAndLiquify(tokenAmountLP + tokenAmountBurn) (#1064)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1147-1154)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1109-1115)
- swapTokensForEth(tokenAmountForUseful) (#1067)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1109-1115)
External calls sending eth:
- swapAndLiquify(tokenAmountLP + tokenAmountBurn) (#1064)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1147-1154)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#523)
- swapTokensForEth(tokenAmountForUseful) (#1067)
Reentrancy in DiscDoge._transfer(address,address,uint256) (#996-1096):
External calls:
- swapAndLiquify(tokenAmountLP + tokenAmountBurn) (#1064)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1147-1154)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1109-1115)
- swapTokensForEth(tokenAmountForUseful) (#1067)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1109-1115)
External calls sending eth:
- swapAndLiquify(tokenAmountLP + tokenAmountBurn) (#1064)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1147-1154)
- address(_AppWalletAddress).transfer(BNBAmountForDev) (#1074)
- address(_MktWalletAddress).transfer(BNBAmountForMkt) (#1075)
Event emitted after the call(s):
- Transfer(sender,recipient,amount) (#458)
- super._transfer(from,to,amount) (#1095)
- Transfer(sender,recipient,amount) (#458)
- super._transfer(from,address(this),fees_scope_0) (#1091)
Reentrancy in DiscDoge.constructor() (#861-889):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#865-866)
Event emitted after the call(s):
- ExcludeFromFees(account,excluded) (#906)
- excludeFromFees(owner(),true) (#879)
- ExcludeFromFees(account,excluded) (#906)
- excludeFromFees(address(this),true) (#882)
- ExcludeFromFees(account,excluded) (#906)
- excludeFromFees(_MktWalletAddress,true) (#881)
- ExcludeFromFees(account,excluded) (#906)
- excludeFromFees(_AppWalletAddress,true) (#880)
- SetAutomatedMarketMakerPair(pair,value) (#984)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#871)
- Transfer(address(0),account,amount) (#477)
- _mint(owner(),totalSupply_) (#888)
Reentrancy in DiscDoge.swapAndLiquify(uint256) (#1119-1140):
External calls:
- swapTokensForEth(half) (#1131)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1109-1115)
- addLiquidity(otherHalf,newBalance) (#1137)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1147-1154)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1137)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#1147-1154)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#523)
- addLiquidity(otherHalf,newBalance) (#1137)
- SwapAndLiquify(half,newBalance,otherHalf) (#1139)
Apply the check-effects-interactions pattern.
Additional information: link
Context._msgData() (#91-94) is never used and should be removed
ERC20._burn(address,uint256) (#491-499) is never used and should be removed
SafeMath.mod(uint256,uint256) (#243-245) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#259-262) is never used and should be removed
Remove unused functions.
Additional information: link
Function IUniswapV2Router01.WETH() (#607) is not in mixedCase
Parameter DiscDoge.setFee(uint256,uint256,uint256,uint256,uint256,uint256)._MktFee (#931) is not in mixedCase
Parameter DiscDoge.setFee(uint256,uint256,uint256,uint256,uint256,uint256)._DevFee (#932) is not in mixedCase
Parameter DiscDoge.setFee(uint256,uint256,uint256,uint256,uint256,uint256)._LpFee (#933) is not in mixedCase
Parameter DiscDoge.setFee(uint256,uint256,uint256,uint256,uint256,uint256)._BurnFee (#934) is not in mixedCase
Parameter DiscDoge.setFee(uint256,uint256,uint256,uint256,uint256,uint256)._UsefulShare (#935) is not in mixedCase
Parameter DiscDoge.setFee(uint256,uint256,uint256,uint256,uint256,uint256)._OtherShare (#936) is not in mixedCase
Parameter DiscDoge.rescueBNB(address)._recipient (#976) is not in mixedCase
Parameter DiscDoge.setSnipeBlocks(uint8)._blocks (#991) is not in mixedCase
Variable DiscDoge._AppWalletAddress (#811) is not in mixedCase
Variable DiscDoge._MktWalletAddress (#812) is not in mixedCase
Variable DiscDoge._isBlacklisted (#818) is not in mixedCase
Variable DiscDoge.AllFee (#820) is not in mixedCase
Variable DiscDoge.MktFee (#821) is not in mixedCase
Variable DiscDoge.DevFee (#822) is not in mixedCase
Variable DiscDoge.LpFee (#823) is not in mixedCase
Variable DiscDoge.BurnFee (#824) is not in mixedCase
Variable DiscDoge.AllShare (#826) is not in mixedCase
Variable DiscDoge.UsefulShare (#827) is not in mixedCase
Variable DiscDoge.OtherShare (#828) is not in mixedCase
Variable DiscDoge._PresaleAddress (#831) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
DiscDoge.slitherConstructorVariables() (#802-1158) uses literals with too many digits:
- deadWallet = 0x000000000000000000000000000000000000dEaD (#810)
DiscDoge.slitherConstructorVariables() (#802-1158) uses literals with too many digits:
- _PresaleAddress = 0x000000000000000000000000000000000000dEaD (#831)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
name() should be declared external:
- ERC20.name() (#298-300)
symbol() should be declared external:
- ERC20.symbol() (#306-308)
decimals() should be declared external:
- ERC20.decimals() (#323-325)
totalSupply() should be declared external:
- ERC20.totalSupply() (#330-332)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#349-352)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (#357-359)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#368-371)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#386-394)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#408-411)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#427-430)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#586-589)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#595-599)
updateUniswapV2Router(address) should be declared external:
- DiscDoge.updateUniswapV2Router(address) (#893-900)
excludeMultipleAccountsFromFees(address[],bool) should be declared external:
- DiscDoge.excludeMultipleAccountsFromFees(address[],bool) (#909-915)
setFee(uint256,uint256,uint256,uint256,uint256,uint256) should be declared external:
- DiscDoge.setFee(uint256,uint256,uint256,uint256,uint256,uint256) (#930-948)
setAutomatedMarketMakerPair(address,bool) should be declared external:
- DiscDoge.setAutomatedMarketMakerPair(address,bool) (#950-954)
rescueToken(address,uint256) should be declared external:
- DiscDoge.rescueToken(address,uint256) (#968-974)
rescueBNB(address) should be declared external:
- DiscDoge.rescueBNB(address) (#976-978)
isExcludedFromFees(address) should be declared external:
- DiscDoge.isExcludedFromFees(address) (#987-989)
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 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
Token is relatively young, but twitter if very old (probably it's fake).
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account