A meme token that allows passive income automatically sent to your wallet by simply holding. The goal and mission of the token is for the coin to be mentioned and also for the community to shill the project to reach far.
ShitDoge.addLiquidity(uint256,uint256) (#821-834) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#826-833)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in ShitDoge._transfer(address,address,uint256) (#719-768):
External calls:
- swapAndLiquify(contractTokenBalance) (#742)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#826-833)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#810-816)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#742)
- recipient.transfer(amount) (#650)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#826-833)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#745)
- finalAmount = takeFee(sender,recipient,amount) (#756)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#848)
- _balances[recipient] = _balances[recipient].add(finalAmount) (#762)
- addBot(recipient) (#753)
- _isAntiwhaleed[recipient] = true (#695)
Apply the check-effects-interactions pattern.
Additional information: link
ShitDoge.transferITokens(address,address,uint256) (#599-601) ignores return value by IERC20(_tokenAddr).transfer(_to,_amount) (#600)
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...)
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.
Combination 2: Unchecked transfer + 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.
Combination 3: Reentrancy vulnerabilities + Unchecked transfer vulnerability. 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)
ShitDoge.addLiquidity(uint256,uint256) (#821-834) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#826-833)
Ensure that all the return values of the function calls are used.
Additional information: link
ShitDoge.allowance(address,address).owner (#523) shadows:
- Ownable.owner() (#158-160) (function)
ShitDoge._approve(address,address,uint256).owner (#546) shadows:
- Ownable.owner() (#158-160) (function)
Rename the local variables that shadow another component.
Additional information: link
ShitDoge.setDev(address) (#653-655) should emit an event for:
- dev = _dev (#654)
Emit an event for critical parameter changes.
Additional information: link
ShitDoge.setBuyTaxes(uint256,uint256,uint256) (#575-581) should emit an event for:
- _totalTaxIfBuying = _buyLiquidityFee.add(_buyMarketingFee).add(_buyTeamFee) (#580)
ShitDoge.setSellTaxes(uint256,uint256,uint256) (#583-589) should emit an event for:
- _totalTaxIfSelling = _sellLiquidityFee.add(_sellMarketingFee).add(_sellTeamFee) (#588)
ShitDoge.setDistributionSettings(uint256,uint256,uint256) (#591-597) should emit an event for:
- _liquidityShare = newLiquidityShare (#592)
- _teamShare = newTeamShare (#594)
- _totalDistributionShares = _liquidityShare.add(_marketingShare).add(_teamShare) (#596)
ShitDoge.setMaxTxAmount(uint256) (#603-605) should emit an event for:
- _maxTxAmount = maxTxAmount (#604)
ShitDoge.setWalletLimit(uint256) (#615-617) should emit an event for:
- _walletMax = newLimit (#616)
ShitDoge.setNumTokensBeforeSwap(uint256) (#619-621) should emit an event for:
- minimumTokensBeforeSwap = newLimit (#620)
ShitDoge.setKillBlock(uint256) (#698-700) should emit an event for:
- killblock = num (#699)
Emit an event for critical parameter changes.
Additional information: link
ShitDoge.transferETH(address)._recipient (#571) lacks a zero-check on :
- _recipient.transfer(address(this).balance) (#572)
ShitDoge.setMarketingWalletAddress(address).newAddress (#623) lacks a zero-check on :
- marketingWalletAddress = address(newAddress) (#624)
ShitDoge.setTeamWalletAddress(address).newAddress (#627) lacks a zero-check on :
- teamWalletAddress = address(newAddress) (#628)
ShitDoge.setDev(address)._dev (#653) lacks a zero-check on :
- dev = _dev (#654)
Check that the address is not zero.
Additional information: link
ShitDoge.swapTokensForEth(uint256) (#801-819) has external calls inside a loop: path[1] = uniswapV2Router.WETH() (#805)
ShitDoge.swapTokensForEth(uint256) (#801-819) has external calls inside a loop: uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#810-816)
ShitDoge.transferToAddressETH(address,uint256) (#649-651) has external calls inside a loop: recipient.transfer(amount) (#650)
ShitDoge.addLiquidity(uint256,uint256) (#821-834) has external calls inside a loop: uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#826-833)
Favor pull over push strategy for external calls.
Additional information: link
Reentrancy in ShitDoge.changeRouterVersion(address) (#657-674):
External calls:
- newPairAddress = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#665-666)
State variables written after the call(s):
- isMarketPair[address(uniswapPair)] = true (#673)
- isWalletLimitExempt[address(uniswapPair)] = true (#672)
- uniswapPair = newPairAddress (#669)
- uniswapV2Router = _uniswapV2Router (#670)
Reentrancy in ShitDoge.constructor() (#470-501):
External calls:
- uniswapPair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#474-475)
State variables written after the call(s):
- _allowances[address(this)][address(uniswapV2Router)] = _totalSupply (#478)
- _balances[_msgSender()] = _totalSupply (#499)
- _totalDistributionShares = _liquidityShare.add(_marketingShare).add(_teamShare) (#485)
- _totalTaxIfBuying = _buyLiquidityFee.add(_buyMarketingFee).add(_buyTeamFee) (#483)
- _totalTaxIfSelling = _sellLiquidityFee.add(_sellMarketingFee).add(_sellTeamFee) (#484)
- isExcludedFromFee[owner()] = true (#480)
- isExcludedFromFee[address(this)] = true (#481)
- isMarketPair[address(uniswapPair)] = true (#494)
- isTxLimitExempt[owner()] = true (#491)
- isTxLimitExempt[address(this)] = true (#492)
- isWalletLimitExempt[owner()] = true (#487)
- isWalletLimitExempt[address(uniswapPair)] = true (#488)
- isWalletLimitExempt[address(this)] = true (#489)
- marketingWalletAddress = address(owner()) (#497)
- teamWalletAddress = address(owner()) (#496)
- uniswapV2Router = _uniswapV2Router (#477)
Reentrancy in ShitDoge.swapAndLiquify(uint256) (#777-799):
External calls:
- swapTokensForEth(tokensForSwap) (#782)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#810-816)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#798)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#826-833)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#792)
- recipient.transfer(amount) (#650)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#795)
- recipient.transfer(amount) (#650)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#798)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#826-833)
State variables written after the call(s):
- addLiquidity(tokensForLP,amountBNBLiquidity) (#798)
- _allowances[owner][spender] = amount (#550)
Reentrancy in ShitDoge.transferFrom(address,address,uint256) (#684-688):
External calls:
- _transfer(sender,recipient,amount) (#685)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#826-833)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#810-816)
External calls sending eth:
- _transfer(sender,recipient,amount) (#685)
- recipient.transfer(amount) (#650)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#826-833)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#686)
- _allowances[owner][spender] = amount (#550)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in ShitDoge._transfer(address,address,uint256) (#719-768):
External calls:
- swapAndLiquify(contractTokenBalance) (#742)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#826-833)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#810-816)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#742)
- recipient.transfer(amount) (#650)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#826-833)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#849)
- finalAmount = takeFee(sender,recipient,amount) (#756)
- Transfer(sender,recipient,finalAmount) (#764)
Reentrancy in ShitDoge.constructor() (#470-501):
External calls:
- uniswapPair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#474-475)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_totalSupply) (#500)
Reentrancy in ShitDoge.swapAndLiquify(uint256) (#777-799):
External calls:
- swapTokensForEth(tokensForSwap) (#782)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#810-816)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#798)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#826-833)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#792)
- recipient.transfer(amount) (#650)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#795)
- recipient.transfer(amount) (#650)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#798)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#826-833)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#551)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#798)
Reentrancy in ShitDoge.swapTokensForEth(uint256) (#801-819):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#810-816)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#818)
Reentrancy in ShitDoge.transferFrom(address,address,uint256) (#684-688):
External calls:
- _transfer(sender,recipient,amount) (#685)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#826-833)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#810-816)
External calls sending eth:
- _transfer(sender,recipient,amount) (#685)
- recipient.transfer(amount) (#650)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#826-833)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#551)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#686)
Apply the check-effects-interactions pattern.
Additional information: link
Address.isContract(address) (#91-100) uses assembly
- INLINE ASM (#98)
Address._functionCallWithValue(address,bytes,uint256,string) (#127-144) uses assembly
- INLINE ASM (#136-139)
Do not use evm assembly.
Additional information: link
ShitDoge.lockTheSwap() (#464-468) has costly operations inside a loop:
- inSwapAndLiquify = true (#465)
ShitDoge.lockTheSwap() (#464-468) has costly operations inside a loop:
- inSwapAndLiquify = false (#467)
Use a local variable to hold the loop computation result.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#127-144) is never used and should be removed
Address.functionCall(address,bytes) (#110-112) is never used and should be removed
Address.functionCall(address,bytes,string) (#114-116) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#118-120) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#122-125) is never used and should be removed
Address.isContract(address) (#91-100) is never used and should be removed
Address.sendValue(address,uint256) (#102-108) is never used and should be removed
Context._msgData() (#18-21) is never used and should be removed
SafeMath.mod(uint256,uint256) (#79-81) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#83-86) is never used and should be removed
Remove unused functions.
Additional information: link
ShitDoge._totalSupply (#428) is set pre-construction with a non-constant function or state variable:
- 100000000 * 10 ** 7 * 10 ** _decimals
ShitDoge._maxTxAmount (#429) is set pre-construction with a non-constant function or state variable:
- 100000000 * 10 ** 7 * 10 ** _decimals
ShitDoge._walletMax (#430) is set pre-construction with a non-constant function or state variable:
- 100000000 * 10 ** 7 * 10 ** _decimals
ShitDoge.minimumTokensBeforeSwap (#431) is set pre-construction with a non-constant function or state variable:
- 100000 * 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) (#102-108):
- (success) = recipient.call{value: amount}() (#106)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#127-144):
- (success,returndata) = target.call{value: weiValue}(data) (#130)
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() (#218) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#219) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#235) is not in mixedCase
Function IUniswapV2Router01.WETH() (#254) is not in mixedCase
Function ShitDoge.Launch() (#554-557) is not in mixedCase
Parameter ShitDoge.transferETH(address)._recipient (#571) is not in mixedCase
Parameter ShitDoge.transferITokens(address,address,uint256)._tokenAddr (#599) is not in mixedCase
Parameter ShitDoge.transferITokens(address,address,uint256)._to (#599) is not in mixedCase
Parameter ShitDoge.transferITokens(address,address,uint256)._amount (#599) is not in mixedCase
Parameter ShitDoge.setSwapAndLiquifyEnabled(bool)._enabled (#631) is not in mixedCase
Parameter ShitDoge.tradingStatus(bool)._status (#636) is not in mixedCase
Parameter ShitDoge.setDev(address)._dev (#653) is not in mixedCase
Variable ShitDoge._balances (#403) is not in mixedCase
Variable ShitDoge._buyLiquidityFee (#412) is not in mixedCase
Variable ShitDoge._buyMarketingFee (#413) is not in mixedCase
Variable ShitDoge._sellLiquidityFee (#416) is not in mixedCase
Variable ShitDoge._sellMarketingFee (#417) is not in mixedCase
Variable ShitDoge._liquidityShare (#420) is not in mixedCase
Variable ShitDoge._marketingShare (#421) is not in mixedCase
Variable ShitDoge._teamShare (#422) is not in mixedCase
Variable ShitDoge._totalTaxIfBuying (#424) is not in mixedCase
Variable ShitDoge._totalTaxIfSelling (#425) is not in mixedCase
Variable ShitDoge._totalDistributionShares (#426) is not in mixedCase
Variable ShitDoge._maxTxAmount (#429) is not in mixedCase
Variable ShitDoge._walletMax (#430) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#19)" inContext (#12-22)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Reentrancy in ShitDoge._transfer(address,address,uint256) (#719-768):
External calls:
- swapAndLiquify(contractTokenBalance) (#742)
- recipient.transfer(amount) (#650)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#742)
- recipient.transfer(amount) (#650)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#826-833)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#745)
- finalAmount = takeFee(sender,recipient,amount) (#756)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#848)
- _balances[recipient] = _balances[recipient].add(finalAmount) (#762)
- addBot(recipient) (#753)
- _isAntiwhaleed[recipient] = true (#695)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#849)
- finalAmount = takeFee(sender,recipient,amount) (#756)
- Transfer(sender,recipient,finalAmount) (#764)
Reentrancy in ShitDoge.swapAndLiquify(uint256) (#777-799):
External calls:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#792)
- recipient.transfer(amount) (#650)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#795)
- recipient.transfer(amount) (#650)
External calls sending eth:
- transferToAddressETH(marketingWalletAddress,amountBNBMarketing) (#792)
- recipient.transfer(amount) (#650)
- transferToAddressETH(teamWalletAddress,amountBNBTeam) (#795)
- recipient.transfer(amount) (#650)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#798)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#826-833)
State variables written after the call(s):
- addLiquidity(tokensForLP,amountBNBLiquidity) (#798)
- _allowances[owner][spender] = amount (#550)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#551)
- addLiquidity(tokensForLP,amountBNBLiquidity) (#798)
Reentrancy in ShitDoge.transferFrom(address,address,uint256) (#684-688):
External calls:
- _transfer(sender,recipient,amount) (#685)
- recipient.transfer(amount) (#650)
External calls sending eth:
- _transfer(sender,recipient,amount) (#685)
- recipient.transfer(amount) (#650)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,teamWalletAddress,block.timestamp) (#826-833)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#686)
- _allowances[owner][spender] = amount (#550)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#551)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#686)
Apply the check-effects-interactions pattern.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#259) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#260)
Prevent variables from having similar names.
Additional information: link
Ownable.waiveOwnership() (#171-174) uses literals with too many digits:
- OwnershipTransferred(_owner,address(0x000000000000000000000000000000000000dEaD)) (#172)
Ownable.waiveOwnership() (#171-174) uses literals with too many digits:
- _owner = address(0x000000000000000000000000000000000000dEaD) (#173)
ShitDoge.slitherConstructorVariables() (#387-856) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#401)
ShitDoge.slitherConstructorVariables() (#387-856) uses literals with too many digits:
- _totalSupply = 100000000 * 10 ** 7 * 10 ** _decimals (#428)
ShitDoge.slitherConstructorVariables() (#387-856) uses literals with too many digits:
- _maxTxAmount = 100000000 * 10 ** 7 * 10 ** _decimals (#429)
ShitDoge.slitherConstructorVariables() (#387-856) uses literals with too many digits:
- _walletMax = 100000000 * 10 ** 7 * 10 ** _decimals (#430)
ShitDoge.slitherConstructorVariables() (#387-856) uses literals with too many digits:
- minimumTokensBeforeSwap = 100000 * 10 ** 2 * 10 ** _decimals (#431)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
ShitDoge._decimals (#394) should be constant
ShitDoge._name (#392) should be constant
ShitDoge._symbol (#393) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
waiveOwnership() should be declared external:
- Ownable.waiveOwnership() (#171-174)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#176-180)
getTime() should be declared external:
- Ownable.getTime() (#182-184)
name() should be declared external:
- ShitDoge.name() (#503-505)
symbol() should be declared external:
- ShitDoge.symbol() (#507-509)
decimals() should be declared external:
- ShitDoge.decimals() (#511-513)
totalSupply() should be declared external:
- ShitDoge.totalSupply() (#515-517)
allowance(address,address) should be declared external:
- ShitDoge.allowance(address,address) (#523-525)
increaseAllowance(address,uint256) should be declared external:
- ShitDoge.increaseAllowance(address,uint256) (#527-530)
decreaseAllowance(address,uint256) should be declared external:
- ShitDoge.decreaseAllowance(address,uint256) (#532-535)
minimumTokensBeforeSwapAmount() should be declared external:
- ShitDoge.minimumTokensBeforeSwapAmount() (#537-539)
approve(address,uint256) should be declared external:
- ShitDoge.approve(address,uint256) (#541-544)
Launch() should be declared external:
- ShitDoge.Launch() (#554-557)
setMarketPairStatus(address,bool) should be declared external:
- ShitDoge.setMarketPairStatus(address,bool) (#559-561)
setIsExcludedFromFee(address,bool) should be declared external:
- ShitDoge.setIsExcludedFromFee(address,bool) (#567-569)
transferETH(address) should be declared external:
- ShitDoge.transferETH(address) (#571-573)
transferITokens(address,address,uint256) should be declared external:
- ShitDoge.transferITokens(address,address,uint256) (#599-601)
setSwapAndLiquifyEnabled(bool) should be declared external:
- ShitDoge.setSwapAndLiquifyEnabled(bool) (#631-634)
tradingStatus(bool) should be declared external:
- ShitDoge.tradingStatus(bool) (#636-639)
setSwapAndLiquifyByLimitOnly(bool) should be declared external:
- ShitDoge.setSwapAndLiquifyByLimitOnly(bool) (#641-643)
getCirculatingSupply() should be declared external:
- ShitDoge.getCirculatingSupply() (#645-647)
changeRouterVersion(address) should be declared external:
- ShitDoge.changeRouterVersion(address) (#657-674)
transfer(address,uint256) should be declared external:
- ShitDoge.transfer(address,uint256) (#679-682)
transferFrom(address,address,uint256) should be declared external:
- ShitDoge.transferFrom(address,address,uint256) (#684-688)
isAntiwhale(address) should be declared external:
- ShitDoge.isAntiwhale(address) (#690-692)
setKillBlock(uint256) should be declared external:
- ShitDoge.setKillBlock(uint256) (#698-700)
writeAntiwhale(address,bool) should be declared external:
- ShitDoge.writeAntiwhale(address,bool) (#715-717)
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 verify that token and website are owned by the same team (no listings + unable to find contract on website)
Unable to verify token contract address on the website
Unable to find audit link on the website
Unable to find whitepaper link on the website
Unable to find Telegram 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
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account