What is DogeUp?
DogeUp is a token with community involvement at the forefront of what we do. We intend to keep investors included in the decision-making process throughout the life of the token and will take further suggestions for future growth, charity partnerships, brand ambassadorships and more from our holders. We at DogeUp aim to use our reach to change animal welfare around the globe and to have fun while doing so. We've developed this token to truly allow our investors to shape its future.
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
DogeUp.addLiquidity(uint256,uint256) (#1046-1059) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1051-1058)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in DogeUp._transfer(address,address,uint256) (#976-1003):
External calls:
- swapAndLiquify(contractTokenBalance) (#998)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1051-1058)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1037-1043)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#998)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1051-1058)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#1002)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#926)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1111)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1102)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1103)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1122)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#867)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1113)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1123)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#869)
- _tokenTransfer(from,to,amount) (#1002)
- _rTotal = _rTotal.sub(rFee) (#881)
- _tokenTransfer(from,to,amount) (#1002)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#928)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#866)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1121)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1112)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#868)
Apply the check-effects-interactions pattern.
Additional information: link
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.
DogeUp.addLiquidity(uint256,uint256) (#1046-1059) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1051-1058)
Ensure that all the return values of the function calls are used.
Additional information: link
DogeUp.allowance(address,address).owner (#782) shadows:
- Ownable.owner() (#413-415) (function)
DogeUp._approve(address,address,uint256).owner (#968) shadows:
- Ownable.owner() (#413-415) (function)
Rename the local variables that shadow another component.
Additional information: link
DogeUp.setTaxFeePercent(uint256) (#1141-1143) should emit an event for:
- _taxFee = taxFee (#1142)
DogeUp.setLiquidityFeePercent(uint256) (#1145-1147) should emit an event for:
- _liquidityFee = liquidityFee (#1146)
DogeUp.setChartityFeePercent(uint256) (#1149-1151) should emit an event for:
- _bleebFee = bleebFee (#1150)
DogeUp.setBurnFeePercent(uint256) (#1153-1155) should emit an event for:
- _burnFee = burnFee (#1154)
Emit an event for critical parameter changes.
Additional information: link
DogeUp.setcharityWallet(address).newWallet (#1137) lacks a zero-check on :
- bleebWallet = newWallet (#1138)
Check that the address is not zero.
Additional information: link
Reentrancy in DogeUp._transfer(address,address,uint256) (#976-1003):
External calls:
- swapAndLiquify(contractTokenBalance) (#998)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1051-1058)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1037-1043)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#998)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1051-1058)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#1002)
- _bleebFee = _previousbleebFee (#961)
- _bleebFee = 0 (#953)
- _tokenTransfer(from,to,amount) (#1002)
- _burnFee = _previousBurnFee (#960)
- _burnFee = 0 (#954)
- _tokenTransfer(from,to,amount) (#1002)
- _liquidityFee = _previousLiquidityFee (#959)
- _liquidityFee = 0 (#952)
- _liquidityFee = 0 (#1085)
- _liquidityFee = _previousLiquidityFee (#1093)
- _tokenTransfer(from,to,amount) (#1002)
- _previousBurnFee = _burnFee (#948)
- _tokenTransfer(from,to,amount) (#1002)
- _previousLiquidityFee = _liquidityFee (#947)
- _tokenTransfer(from,to,amount) (#1002)
- _previousTaxFee = _taxFee (#946)
- _tokenTransfer(from,to,amount) (#1002)
- _previousbleebFee = _bleebFee (#949)
- _tokenTransfer(from,to,amount) (#1002)
- _tFeeTotal = _tFeeTotal.add(tFee) (#882)
- _tokenTransfer(from,to,amount) (#1002)
- _taxFee = _previousTaxFee (#958)
- _taxFee = 0 (#951)
- _taxFee = 0 (#1084)
- _taxFee = _previousTaxFee (#1092)
Reentrancy in DogeUp.constructor() (#738-754):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#743-744)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#750)
- _isExcludedFromFee[address(this)] = true (#751)
- uniswapV2Router = _uniswapV2Router (#747)
Reentrancy in DogeUp.setRouterAddress(address) (#1159-1164):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_newPancakeRouter.factory()).createPair(address(this),_newPancakeRouter.WETH()) (#1162)
State variables written after the call(s):
- uniswapV2Router = _newPancakeRouter (#1163)
Reentrancy in DogeUp.swapAndLiquify(uint256) (#1005-1026):
External calls:
- swapTokensForEth(half) (#1017)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1037-1043)
- addLiquidity(otherHalf,newBalance) (#1023)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1051-1058)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1023)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1051-1058)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1023)
- _allowances[owner][spender] = amount (#972)
Reentrancy in DogeUp.transferFrom(address,address,uint256) (#791-795):
External calls:
- _transfer(sender,recipient,amount) (#792)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1051-1058)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1037-1043)
External calls sending eth:
- _transfer(sender,recipient,amount) (#792)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1051-1058)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#793)
- _allowances[owner][spender] = amount (#972)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in DogeUp._transfer(address,address,uint256) (#976-1003):
External calls:
- swapAndLiquify(contractTokenBalance) (#998)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1051-1058)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1037-1043)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#998)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1051-1058)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1106)
- _tokenTransfer(from,to,amount) (#1002)
- Transfer(sender,recipient,tTransferAmount) (#1116)
- _tokenTransfer(from,to,amount) (#1002)
- Transfer(sender,recipient,tTransferAmount) (#1126)
- _tokenTransfer(from,to,amount) (#1002)
- Transfer(sender,recipient,tTransferAmount) (#872)
- _tokenTransfer(from,to,amount) (#1002)
Reentrancy in DogeUp.constructor() (#738-754):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#743-744)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#753)
Reentrancy in DogeUp.swapAndLiquify(uint256) (#1005-1026):
External calls:
- swapTokensForEth(half) (#1017)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1037-1043)
- addLiquidity(otherHalf,newBalance) (#1023)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1051-1058)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1023)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1051-1058)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#973)
- addLiquidity(otherHalf,newBalance) (#1023)
- SwapAndLiquify(half,newBalance,otherHalf) (#1025)
Reentrancy in DogeUp.transferFrom(address,address,uint256) (#791-795):
External calls:
- _transfer(sender,recipient,amount) (#792)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1051-1058)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1037-1043)
External calls sending eth:
- _transfer(sender,recipient,amount) (#792)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1051-1058)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#973)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#793)
Apply the check-effects-interactions pattern.
Additional information: link
Ownable.unlock() (#460-465) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now > _lockTime,Contract is locked until 7 days) (#462)
Avoid relying on block.timestamp.
Additional information: link
Address.isContract(address) (#265-274) uses assembly
- INLINE ASM (#272)
Address._functionCallWithValue(address,bytes,uint256,string) (#358-379) uses assembly
- INLINE ASM (#371-374)
Do not use evm assembly.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#358-379) is never used and should be removed
Address.functionCall(address,bytes) (#318-320) is never used and should be removed
Address.functionCall(address,bytes,string) (#328-330) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#343-345) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#353-356) is never used and should be removed
Address.isContract(address) (#265-274) is never used and should be removed
Address.sendValue(address,uint256) (#292-298) is never used and should be removed
Context._msgData() (#237-240) is never used and should be removed
SafeMath.mod(uint256,uint256) (#210-212) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#226-229) is never used and should be removed
Remove unused functions.
Additional information: link
DogeUp._rTotal (#695) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
DogeUp._previousTaxFee (#703) is set pre-construction with a non-constant function or state variable:
- _taxFee
DogeUp._previousLiquidityFee (#706) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
DogeUp._previousBurnFee (#709) is set pre-construction with a non-constant function or state variable:
- _burnFee
DogeUp._previousbleebFee (#713) is set pre-construction with a non-constant function or state variable:
- _bleebFee
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) (#292-298):
- (success) = recipient.call{value: amount}() (#296)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#358-379):
- (success,returndata) = target.call{value: weiValue}(data) (#362)
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() (#504) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#505) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#521) is not in mixedCase
Function IUniswapV2Router01.WETH() (#542) is not in mixedCase
Parameter DogeUp.calculateTaxFee(uint256)._amount (#931) is not in mixedCase
Parameter DogeUp.calculateLiquidityFee(uint256)._amount (#937) is not in mixedCase
Parameter DogeUp.setSwapAndLiquifyEnabled(bool)._enabled (#1166) is not in mixedCase
Variable DogeUp._taxFee (#702) is not in mixedCase
Variable DogeUp._liquidityFee (#705) is not in mixedCase
Variable DogeUp._burnFee (#708) is not in mixedCase
Variable DogeUp._bleebFee (#711) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#238)" inContext (#232-241)
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 (#547) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#548)
Variable DogeUp.reflectionFromToken(uint256,bool).rTransferAmount (#830) is too similar to DogeUp._transferToExcluded(address,address,uint256).tTransferAmount (#1110)
Variable DogeUp._transferBothExcluded(address,address,uint256).rTransferAmount (#865) is too similar to DogeUp._transferToExcluded(address,address,uint256).tTransferAmount (#1110)
Variable DogeUp._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#902) is too similar to DogeUp._transferFromExcluded(address,address,uint256).tTransferAmount (#1120)
Variable DogeUp.reflectionFromToken(uint256,bool).rTransferAmount (#830) is too similar to DogeUp._transferStandard(address,address,uint256).tTransferAmount (#1101)
Variable DogeUp._transferBothExcluded(address,address,uint256).rTransferAmount (#865) is too similar to DogeUp._getTValues(uint256).tTransferAmount (#894)
Variable DogeUp._transferFromExcluded(address,address,uint256).rTransferAmount (#1120) is too similar to DogeUp._transferBothExcluded(address,address,uint256).tTransferAmount (#865)
Variable DogeUp._transferBothExcluded(address,address,uint256).rTransferAmount (#865) is too similar to DogeUp._transferStandard(address,address,uint256).tTransferAmount (#1101)
Variable DogeUp._getValues(uint256).rTransferAmount (#887) is too similar to DogeUp._transferFromExcluded(address,address,uint256).tTransferAmount (#1120)
Variable DogeUp.reflectionFromToken(uint256,bool).rTransferAmount (#830) is too similar to DogeUp._transferBothExcluded(address,address,uint256).tTransferAmount (#865)
Variable DogeUp._transferBothExcluded(address,address,uint256).rTransferAmount (#865) is too similar to DogeUp._transferBothExcluded(address,address,uint256).tTransferAmount (#865)
Variable DogeUp._transferFromExcluded(address,address,uint256).rTransferAmount (#1120) is too similar to DogeUp._transferFromExcluded(address,address,uint256).tTransferAmount (#1120)
Variable DogeUp._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#902) is too similar to DogeUp._getTValues(uint256).tTransferAmount (#894)
Variable DogeUp._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#902) is too similar to DogeUp._transferToExcluded(address,address,uint256).tTransferAmount (#1110)
Variable DogeUp.reflectionFromToken(uint256,bool).rTransferAmount (#830) is too similar to DogeUp._transferFromExcluded(address,address,uint256).tTransferAmount (#1120)
Variable DogeUp._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#902) is too similar to DogeUp._transferStandard(address,address,uint256).tTransferAmount (#1101)
Variable DogeUp._getValues(uint256).rTransferAmount (#887) is too similar to DogeUp._transferToExcluded(address,address,uint256).tTransferAmount (#1110)
Variable DogeUp._transferToExcluded(address,address,uint256).rTransferAmount (#1110) is too similar to DogeUp._transferToExcluded(address,address,uint256).tTransferAmount (#1110)
Variable DogeUp._getValues(uint256).rTransferAmount (#887) is too similar to DogeUp._getTValues(uint256).tTransferAmount (#894)
Variable DogeUp._transferToExcluded(address,address,uint256).rTransferAmount (#1110) is too similar to DogeUp._getTValues(uint256).tTransferAmount (#894)
Variable DogeUp._getValues(uint256).rTransferAmount (#887) is too similar to DogeUp._transferStandard(address,address,uint256).tTransferAmount (#1101)
Variable DogeUp._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#902) is too similar to DogeUp._transferBothExcluded(address,address,uint256).tTransferAmount (#865)
Variable DogeUp._transferFromExcluded(address,address,uint256).rTransferAmount (#1120) is too similar to DogeUp._getTValues(uint256).tTransferAmount (#894)
Variable DogeUp._transferFromExcluded(address,address,uint256).rTransferAmount (#1120) is too similar to DogeUp._transferToExcluded(address,address,uint256).tTransferAmount (#1110)
Variable DogeUp._transferFromExcluded(address,address,uint256).rTransferAmount (#1120) is too similar to DogeUp._transferStandard(address,address,uint256).tTransferAmount (#1101)
Variable DogeUp._getValues(uint256).rTransferAmount (#887) is too similar to DogeUp._transferBothExcluded(address,address,uint256).tTransferAmount (#865)
Variable DogeUp.reflectionFromToken(uint256,bool).rTransferAmount (#830) is too similar to DogeUp._getTValues(uint256).tTransferAmount (#894)
Variable DogeUp._transferBothExcluded(address,address,uint256).rTransferAmount (#865) is too similar to DogeUp._getValues(uint256).tTransferAmount (#886)
Variable DogeUp._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#902) is too similar to DogeUp._getValues(uint256).tTransferAmount (#886)
Variable DogeUp._transferToExcluded(address,address,uint256).rTransferAmount (#1110) is too similar to DogeUp._transferFromExcluded(address,address,uint256).tTransferAmount (#1120)
Variable DogeUp._transferToExcluded(address,address,uint256).rTransferAmount (#1110) is too similar to DogeUp._transferStandard(address,address,uint256).tTransferAmount (#1101)
Variable DogeUp._transferStandard(address,address,uint256).rTransferAmount (#1101) is too similar to DogeUp._transferFromExcluded(address,address,uint256).tTransferAmount (#1120)
Variable DogeUp._transferToExcluded(address,address,uint256).rTransferAmount (#1110) is too similar to DogeUp._transferBothExcluded(address,address,uint256).tTransferAmount (#865)
Variable DogeUp._transferStandard(address,address,uint256).rTransferAmount (#1101) is too similar to DogeUp._transferStandard(address,address,uint256).tTransferAmount (#1101)
Variable DogeUp._transferStandard(address,address,uint256).rTransferAmount (#1101) is too similar to DogeUp._transferBothExcluded(address,address,uint256).tTransferAmount (#865)
Variable DogeUp._transferStandard(address,address,uint256).rTransferAmount (#1101) is too similar to DogeUp._getTValues(uint256).tTransferAmount (#894)
Variable DogeUp._transferFromExcluded(address,address,uint256).rTransferAmount (#1120) is too similar to DogeUp._getValues(uint256).tTransferAmount (#886)
Variable DogeUp._transferBothExcluded(address,address,uint256).rTransferAmount (#865) is too similar to DogeUp._transferFromExcluded(address,address,uint256).tTransferAmount (#1120)
Variable DogeUp.reflectionFromToken(uint256,bool).rTransferAmount (#830) is too similar to DogeUp._getValues(uint256).tTransferAmount (#886)
Variable DogeUp._transferToExcluded(address,address,uint256).rTransferAmount (#1110) is too similar to DogeUp._getValues(uint256).tTransferAmount (#886)
Variable DogeUp._transferStandard(address,address,uint256).rTransferAmount (#1101) is too similar to DogeUp._getValues(uint256).tTransferAmount (#886)
Variable DogeUp._getValues(uint256).rTransferAmount (#887) is too similar to DogeUp._getValues(uint256).tTransferAmount (#886)
Variable DogeUp._transferStandard(address,address,uint256).rTransferAmount (#1101) is too similar to DogeUp._transferToExcluded(address,address,uint256).tTransferAmount (#1110)
Prevent variables from having similar names.
Additional information: link
DogeUp.slitherConstructorVariables() (#680-1172) uses literals with too many digits:
- _tTotal = 100000000000000 * 10 ** 18 (#694)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
DogeUp._decimals (#700) should be constant
DogeUp._name (#698) should be constant
DogeUp._symbol (#699) should be constant
DogeUp._tTotal (#694) should be constant
DogeUp.numTokensSellToAddToLiquidity (#722) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#432-435)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#441-445)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#447-449)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#452-457)
unlock() should be declared external:
- Ownable.unlock() (#460-465)
name() should be declared external:
- DogeUp.name() (#756-758)
symbol() should be declared external:
- DogeUp.symbol() (#760-762)
decimals() should be declared external:
- DogeUp.decimals() (#764-766)
totalSupply() should be declared external:
- DogeUp.totalSupply() (#768-770)
transfer(address,uint256) should be declared external:
- DogeUp.transfer(address,uint256) (#777-780)
allowance(address,address) should be declared external:
- DogeUp.allowance(address,address) (#782-784)
approve(address,uint256) should be declared external:
- DogeUp.approve(address,uint256) (#786-789)
transferFrom(address,address,uint256) should be declared external:
- DogeUp.transferFrom(address,address,uint256) (#791-795)
increaseAllowance(address,uint256) should be declared external:
- DogeUp.increaseAllowance(address,uint256) (#797-800)
decreaseAllowance(address,uint256) should be declared external:
- DogeUp.decreaseAllowance(address,uint256) (#802-805)
isExcludedFromReward(address) should be declared external:
- DogeUp.isExcludedFromReward(address) (#807-809)
totalFees() should be declared external:
- DogeUp.totalFees() (#811-813)
deliver(uint256) should be declared external:
- DogeUp.deliver(uint256) (#815-822)
reflectionFromToken(uint256,bool) should be declared external:
- DogeUp.reflectionFromToken(uint256,bool) (#824-833)
excludeFromReward(address) should be declared external:
- DogeUp.excludeFromReward(address) (#841-849)
isExcludedFromFee(address) should be declared external:
- DogeUp.isExcludedFromFee(address) (#964-966)
excludeFromFee(address) should be declared external:
- DogeUp.excludeFromFee(address) (#1129-1131)
includeInFee(address) should be declared external:
- DogeUp.includeInFee(address) (#1133-1135)
setRouterAddress(address) should be declared external:
- DogeUp.setRouterAddress(address) (#1159-1164)
setSwapAndLiquifyEnabled(bool) should be declared external:
- DogeUp.setSwapAndLiquifyEnabled(bool) (#1166-1169)
Use the external attribute for functions never called from the contract.
Additional information: link
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.
Token is deployed only at one blockchain
Token has only one trading pair
Unable to find PancakeSwap trading pair to compute liquidity.
Unable to find PancakeSwap trading pair to compute volume.
Unable to find PancakeSwap trading pair to compute number of swaps.
Unable to find website, listings and other project-related information
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Young tokens have high risks of price dump / death
Twitter account link seems to be invalid
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account