Doge Rise Up Token Logo

DOGERISEUP [Doge Rise Up] Token

ALERT: unclassified scam

About DOGERISEUP

Listings

Token 2 years
CoinGecko 2 years
CoinMarketCap 2 years
white paper

A new Binance Smart Chain project that combines the Metaverse with Doge, alongside cool designs and non-fungible tokens.

Social

Laser Scorebeta Last Audit: 1 September 2022

report
Token seems to be a scam (type: unclassified scam).

Reentrancy in DOGERISEUP._transfer(address,address,uint256) (#642-680):
External calls:
- swapTokens(contractTokenBalance) (#660)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#709-715)
- buyBackTokens(balance.div(100)) (#668)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#727-732)
External calls sending eth:
- swapTokens(contractTokenBalance) (#660)
- recipient.transfer(amount) (#953)
- buyBackTokens(balance.div(100)) (#668)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#727-732)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#679)
- _liquidityFee = _previousLiquidityFee (#885)
- _liquidityFee = 0 (#880)
- _tokenTransfer(from,to,amount,takeFee) (#679)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#856)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#772)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#781)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#792)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#802)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#773)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#783)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#793)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#804)
- _tokenTransfer(from,to,amount,takeFee) (#679)
- _rTotal = _rTotal.sub(rFee) (#811)
- _tokenTransfer(from,to,amount,takeFee) (#679)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#858)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#791)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#801)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#782)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#803)
- buyBackTokens(balance.div(100)) (#668)
- inSwapAndLiquify = true (#496)
- inSwapAndLiquify = false (#498)
Apply the check-effects-interactions pattern.

Additional information: link


Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains

DOGERISEUP.swapTokens(uint256) (#682-691) performs a multiplication on the result of a division:
-transferToAddressETH(marketingAddress,transferredBalance.div(_liquidityFee).mul(marketingDivisor)) (#689)
Consider ordering multiplication before division.

Additional information: link

DOGERISEUP.addLiquidity(uint256,uint256) (#737-750) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#742-749)
Ensure that all the return values of the function calls are used.

Additional information: link

DOGERISEUP._decimals (#453) should be constant
DOGERISEUP._name (#451) should be constant
DOGERISEUP._symbol (#452) should be constant
DOGERISEUP._tTotal (#447) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

Redundant expression "this (#31)" inContext (#25-34)
Remove redundant statements if they congest code but offer no value.

Additional information: link

DOGERISEUP.allowance(address,address).owner (#543) shadows:
- Ownable.owner() (#177-179) (function)
DOGERISEUP._approve(address,address,uint256).owner (#634) shadows:
- Ownable.owner() (#177-179) (function)
Rename the local variables that shadow another component.

Additional information: link

DOGERISEUP.prepareForPreSale() (#938-943) uses literals with too many digits:
- _maxTxAmount = 1000000000 * 10 ** 6 * 10 ** 9 (#942)
DOGERISEUP.afterPreSale() (#945-950) uses literals with too many digits:
- _maxTxAmount = 3000000 * 10 ** 6 * 10 ** 9 (#949)
DOGERISEUP.slitherConstructorVariables() (#431-959) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#436)
DOGERISEUP.slitherConstructorVariables() (#431-959) uses literals with too many digits:
- _tTotal = 1000000000 * 10 ** 6 * 10 ** 9 (#447)
DOGERISEUP.slitherConstructorVariables() (#431-959) uses literals with too many digits:
- _maxTxAmount = 3000000 * 10 ** 6 * 10 ** 9 (#464)
DOGERISEUP.slitherConstructorVariables() (#431-959) uses literals with too many digits:
- minimumTokensBeforeSwap = 200000 * 10 ** 6 * 10 ** 9 (#465)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#186-189)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#191-195)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#197-199)
getTime() should be declared external:
- Ownable.getTime() (#201-203)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#205-210)
unlock() should be declared external:
- Ownable.unlock() (#212-217)
name() should be declared external:
- DOGERISEUP.name() (#517-519)
symbol() should be declared external:
- DOGERISEUP.symbol() (#521-523)
decimals() should be declared external:
- DOGERISEUP.decimals() (#525-527)
totalSupply() should be declared external:
- DOGERISEUP.totalSupply() (#529-531)
transfer(address,uint256) should be declared external:
- DOGERISEUP.transfer(address,uint256) (#538-541)
allowance(address,address) should be declared external:
- DOGERISEUP.allowance(address,address) (#543-545)
approve(address,uint256) should be declared external:
- DOGERISEUP.approve(address,uint256) (#547-550)
transferFrom(address,address,uint256) should be declared external:
- DOGERISEUP.transferFrom(address,address,uint256) (#552-556)
increaseAllowance(address,uint256) should be declared external:
- DOGERISEUP.increaseAllowance(address,uint256) (#558-561)
decreaseAllowance(address,uint256) should be declared external:
- DOGERISEUP.decreaseAllowance(address,uint256) (#563-566)
isExcludedFromReward(address) should be declared external:
- DOGERISEUP.isExcludedFromReward(address) (#568-570)
totalFees() should be declared external:
- DOGERISEUP.totalFees() (#572-574)
minimumTokensBeforeSwapAmount() should be declared external:
- DOGERISEUP.minimumTokensBeforeSwapAmount() (#576-578)
buyBackUpperLimitAmount() should be declared external:
- DOGERISEUP.buyBackUpperLimitAmount() (#580-582)
deliver(uint256) should be declared external:
- DOGERISEUP.deliver(uint256) (#584-591)
reflectionFromToken(uint256,bool) should be declared external:
- DOGERISEUP.reflectionFromToken(uint256,bool) (#594-603)
excludeFromReward(address) should be declared external:
- DOGERISEUP.excludeFromReward(address) (#611-619)
isExcludedFromFee(address) should be declared external:
- DOGERISEUP.isExcludedFromFee(address) (#888-890)
excludeFromFee(address) should be declared external:
- DOGERISEUP.excludeFromFee(address) (#892-894)
includeInFee(address) should be declared external:
- DOGERISEUP.includeInFee(address) (#896-898)
setBuyBackEnabled(bool) should be declared external:
- DOGERISEUP.setBuyBackEnabled(bool) (#933-936)
Use the external attribute for functions never called from the contract.

Additional information: link

DOGERISEUP.includeInReward(address) (#621-632) has costly operations inside a loop:
- _excluded.pop() (#628)
Use a local variable to hold the loop computation result.

Additional information: link

DOGERISEUP.setTaxFeePercent(uint256) (#900-902) should emit an event for:
- _taxFee = taxFee (#901)
DOGERISEUP.setLiquidityFeePercent(uint256) (#904-906) should emit an event for:
- _liquidityFee = liquidityFee (#905)
DOGERISEUP.setMaxTxAmount(uint256) (#908-910) should emit an event for:
- _maxTxAmount = maxTxAmount (#909)
DOGERISEUP.setMarketingDivisor(uint256) (#912-914) should emit an event for:
- marketingDivisor = divisor (#913)
DOGERISEUP.setNumTokensSellToAddToLiquidity(uint256) (#916-918) should emit an event for:
- minimumTokensBeforeSwap = _minimumTokensBeforeSwap (#917)
DOGERISEUP.setBuybackUpperLimit(uint256) (#920-922) should emit an event for:
- buyBackUpperLimit = buyBackLimit * 10 ** 18 (#921)
Emit an event for critical parameter changes.

Additional information: link

DOGERISEUP.setMarketingAddress(address)._marketingAddress (#924) lacks a zero-check on :
- marketingAddress = address(_marketingAddress) (#925)
Check that the address is not zero.

Additional information: link

Reentrancy in DOGERISEUP._transfer(address,address,uint256) (#642-680):
External calls:
- swapTokens(contractTokenBalance) (#660)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#709-715)
- buyBackTokens(balance.div(100)) (#668)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#727-732)
External calls sending eth:
- swapTokens(contractTokenBalance) (#660)
- recipient.transfer(amount) (#953)
- buyBackTokens(balance.div(100)) (#668)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#727-732)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#679)
- _previousLiquidityFee = _liquidityFee (#877)
- _tokenTransfer(from,to,amount,takeFee) (#679)
- _previousTaxFee = _taxFee (#876)
- _tokenTransfer(from,to,amount,takeFee) (#679)
- _tFeeTotal = _tFeeTotal.add(tFee) (#812)
- _tokenTransfer(from,to,amount,takeFee) (#679)
- _taxFee = _previousTaxFee (#884)
- _taxFee = 0 (#879)
Reentrancy in DOGERISEUP.constructor() (#501-515):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#505-506)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#511)
- _isExcludedFromFee[address(this)] = true (#512)
- uniswapV2Router = _uniswapV2Router (#508)
Reentrancy in DOGERISEUP.transferFrom(address,address,uint256) (#552-556):
External calls:
- _transfer(sender,recipient,amount) (#553)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#727-732)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#709-715)
External calls sending eth:
- _transfer(sender,recipient,amount) (#553)
- recipient.transfer(amount) (#953)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#727-732)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#554)
- _allowances[owner][spender] = amount (#638)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in DOGERISEUP._transfer(address,address,uint256) (#642-680):
External calls:
- swapTokens(contractTokenBalance) (#660)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#709-715)
- buyBackTokens(balance.div(100)) (#668)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#727-732)
External calls sending eth:
- swapTokens(contractTokenBalance) (#660)
- recipient.transfer(amount) (#953)
- buyBackTokens(balance.div(100)) (#668)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#727-732)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#734)
- buyBackTokens(balance.div(100)) (#668)
- Transfer(sender,recipient,tTransferAmount) (#776)
- _tokenTransfer(from,to,amount,takeFee) (#679)
- Transfer(sender,recipient,tTransferAmount) (#786)
- _tokenTransfer(from,to,amount,takeFee) (#679)
- Transfer(sender,recipient,tTransferAmount) (#796)
- _tokenTransfer(from,to,amount,takeFee) (#679)
- Transfer(sender,recipient,tTransferAmount) (#807)
- _tokenTransfer(from,to,amount,takeFee) (#679)
Reentrancy in DOGERISEUP.constructor() (#501-515):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#505-506)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#514)
Reentrancy in DOGERISEUP.swapETHForTokens(uint256) (#720-735):
External calls:
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#727-732)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#734)
Reentrancy in DOGERISEUP.swapTokensForEth(uint256) (#700-718):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#709-715)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#717)
Reentrancy in DOGERISEUP.transferFrom(address,address,uint256) (#552-556):
External calls:
- _transfer(sender,recipient,amount) (#553)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#727-732)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#709-715)
External calls sending eth:
- _transfer(sender,recipient,amount) (#553)
- recipient.transfer(amount) (#953)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#727-732)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#639)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#554)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable.unlock() (#212-217) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked until 7 days) (#214)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#107-116) uses assembly
- INLINE ASM (#114)
Address._functionCallWithValue(address,bytes,uint256,string) (#144-161) uses assembly
- INLINE ASM (#153-156)
Do not use evm assembly.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#144-161) is never used and should be removed
Address.functionCall(address,bytes) (#127-129) is never used and should be removed
Address.functionCall(address,bytes,string) (#131-133) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#135-137) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#139-142) is never used and should be removed
Address.isContract(address) (#107-116) is never used and should be removed
Address.sendValue(address,uint256) (#118-124) is never used and should be removed
Context._msgData() (#30-33) is never used and should be removed
DOGERISEUP.addLiquidity(uint256,uint256) (#737-750) is never used and should be removed
SafeMath.mod(uint256,uint256) (#95-97) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#99-102) is never used and should be removed
Remove unused functions.

Additional information: link

DOGERISEUP._rTotal (#448) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
DOGERISEUP._previousTaxFee (#457) is set pre-construction with a non-constant function or state variable:
- _taxFee
DOGERISEUP._previousLiquidityFee (#460) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
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) (#118-124):
- (success) = recipient.call{value: amount}() (#122)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#144-161):
- (success,returndata) = target.call{value: weiValue}(data) (#147)
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() (#256) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#257) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#273) is not in mixedCase
Function IUniswapV2Router01.WETH() (#294) is not in mixedCase
Parameter DOGERISEUP.calculateTaxFee(uint256)._amount (#861) is not in mixedCase
Parameter DOGERISEUP.calculateLiquidityFee(uint256)._amount (#867) is not in mixedCase
Parameter DOGERISEUP.setNumTokensSellToAddToLiquidity(uint256)._minimumTokensBeforeSwap (#916) is not in mixedCase
Parameter DOGERISEUP.setMarketingAddress(address)._marketingAddress (#924) is not in mixedCase
Parameter DOGERISEUP.setSwapAndLiquifyEnabled(bool)._enabled (#928) is not in mixedCase
Parameter DOGERISEUP.setBuyBackEnabled(bool)._enabled (#933) is not in mixedCase
Variable DOGERISEUP._taxFee (#456) is not in mixedCase
Variable DOGERISEUP._liquidityFee (#459) is not in mixedCase
Variable DOGERISEUP._maxTxAmount (#464) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Reentrancy in DOGERISEUP._transfer(address,address,uint256) (#642-680):
External calls:
- swapTokens(contractTokenBalance) (#660)
- recipient.transfer(amount) (#953)
External calls sending eth:
- swapTokens(contractTokenBalance) (#660)
- recipient.transfer(amount) (#953)
- buyBackTokens(balance.div(100)) (#668)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#727-732)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#679)
- _liquidityFee = _previousLiquidityFee (#885)
- _liquidityFee = 0 (#880)
- _tokenTransfer(from,to,amount,takeFee) (#679)
- _previousLiquidityFee = _liquidityFee (#877)
- _tokenTransfer(from,to,amount,takeFee) (#679)
- _previousTaxFee = _taxFee (#876)
- _tokenTransfer(from,to,amount,takeFee) (#679)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#856)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#772)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#781)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#792)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#802)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#773)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#783)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#793)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#804)
- _tokenTransfer(from,to,amount,takeFee) (#679)
- _rTotal = _rTotal.sub(rFee) (#811)
- _tokenTransfer(from,to,amount,takeFee) (#679)
- _tFeeTotal = _tFeeTotal.add(tFee) (#812)
- _tokenTransfer(from,to,amount,takeFee) (#679)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#858)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#791)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#801)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#782)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#803)
- _tokenTransfer(from,to,amount,takeFee) (#679)
- _taxFee = _previousTaxFee (#884)
- _taxFee = 0 (#879)
- buyBackTokens(balance.div(100)) (#668)
- inSwapAndLiquify = true (#496)
- inSwapAndLiquify = false (#498)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#734)
- buyBackTokens(balance.div(100)) (#668)
- Transfer(sender,recipient,tTransferAmount) (#776)
- _tokenTransfer(from,to,amount,takeFee) (#679)
- Transfer(sender,recipient,tTransferAmount) (#796)
- _tokenTransfer(from,to,amount,takeFee) (#679)
- Transfer(sender,recipient,tTransferAmount) (#786)
- _tokenTransfer(from,to,amount,takeFee) (#679)
- Transfer(sender,recipient,tTransferAmount) (#807)
- _tokenTransfer(from,to,amount,takeFee) (#679)
Reentrancy in DOGERISEUP.transferFrom(address,address,uint256) (#552-556):
External calls:
- _transfer(sender,recipient,amount) (#553)
- recipient.transfer(amount) (#953)
External calls sending eth:
- _transfer(sender,recipient,amount) (#553)
- recipient.transfer(amount) (#953)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#727-732)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#554)
- _allowances[owner][spender] = amount (#638)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#639)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#554)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#299) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#300)
Variable DOGERISEUP._transferFromExcluded(address,address,uint256).rTransferAmount (#790) is too similar to DOGERISEUP._transferToExcluded(address,address,uint256).tTransferAmount (#780)
Variable DOGERISEUP._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#832) is too similar to DOGERISEUP._getValues(uint256).tTransferAmount (#816)
Variable DOGERISEUP._transferBothExcluded(address,address,uint256).rTransferAmount (#800) is too similar to DOGERISEUP._getTValues(uint256).tTransferAmount (#824)
Variable DOGERISEUP._transferFromExcluded(address,address,uint256).rTransferAmount (#790) is too similar to DOGERISEUP._getValues(uint256).tTransferAmount (#816)
Variable DOGERISEUP._transferToExcluded(address,address,uint256).rTransferAmount (#780) is too similar to DOGERISEUP._transferToExcluded(address,address,uint256).tTransferAmount (#780)
Variable DOGERISEUP._transferToExcluded(address,address,uint256).rTransferAmount (#780) is too similar to DOGERISEUP._getValues(uint256).tTransferAmount (#816)
Variable DOGERISEUP._transferBothExcluded(address,address,uint256).rTransferAmount (#800) is too similar to DOGERISEUP._transferStandard(address,address,uint256).tTransferAmount (#771)
Variable DOGERISEUP._transferBothExcluded(address,address,uint256).rTransferAmount (#800) is too similar to DOGERISEUP._transferFromExcluded(address,address,uint256).tTransferAmount (#790)
Variable DOGERISEUP.reflectionFromToken(uint256,bool).rTransferAmount (#600) is too similar to DOGERISEUP._getValues(uint256).tTransferAmount (#816)
Variable DOGERISEUP._transferBothExcluded(address,address,uint256).rTransferAmount (#800) is too similar to DOGERISEUP._transferBothExcluded(address,address,uint256).tTransferAmount (#800)
Variable DOGERISEUP._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#832) is too similar to DOGERISEUP._getTValues(uint256).tTransferAmount (#824)
Variable DOGERISEUP._transferFromExcluded(address,address,uint256).rTransferAmount (#790) is too similar to DOGERISEUP._getTValues(uint256).tTransferAmount (#824)
Variable DOGERISEUP._transferToExcluded(address,address,uint256).rTransferAmount (#780) is too similar to DOGERISEUP._getTValues(uint256).tTransferAmount (#824)
Variable DOGERISEUP._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#832) is too similar to DOGERISEUP._transferStandard(address,address,uint256).tTransferAmount (#771)
Variable DOGERISEUP._transferFromExcluded(address,address,uint256).rTransferAmount (#790) is too similar to DOGERISEUP._transferStandard(address,address,uint256).tTransferAmount (#771)
Variable DOGERISEUP._transferBothExcluded(address,address,uint256).rTransferAmount (#800) is too similar to DOGERISEUP._transferToExcluded(address,address,uint256).tTransferAmount (#780)
Variable DOGERISEUP._transferFromExcluded(address,address,uint256).rTransferAmount (#790) is too similar to DOGERISEUP._transferFromExcluded(address,address,uint256).tTransferAmount (#790)
Variable DOGERISEUP._transferToExcluded(address,address,uint256).rTransferAmount (#780) is too similar to DOGERISEUP._transferStandard(address,address,uint256).tTransferAmount (#771)
Variable DOGERISEUP._transferBothExcluded(address,address,uint256).rTransferAmount (#800) is too similar to DOGERISEUP._getValues(uint256).tTransferAmount (#816)
Variable DOGERISEUP._transferFromExcluded(address,address,uint256).rTransferAmount (#790) is too similar to DOGERISEUP._transferBothExcluded(address,address,uint256).tTransferAmount (#800)
Variable DOGERISEUP._transferToExcluded(address,address,uint256).rTransferAmount (#780) is too similar to DOGERISEUP._transferFromExcluded(address,address,uint256).tTransferAmount (#790)
Variable DOGERISEUP.reflectionFromToken(uint256,bool).rTransferAmount (#600) is too similar to DOGERISEUP._transferStandard(address,address,uint256).tTransferAmount (#771)
Variable DOGERISEUP._transferStandard(address,address,uint256).rTransferAmount (#771) is too similar to DOGERISEUP._transferStandard(address,address,uint256).tTransferAmount (#771)
Variable DOGERISEUP._getValues(uint256).rTransferAmount (#817) is too similar to DOGERISEUP._transferToExcluded(address,address,uint256).tTransferAmount (#780)
Variable DOGERISEUP.reflectionFromToken(uint256,bool).rTransferAmount (#600) is too similar to DOGERISEUP._getTValues(uint256).tTransferAmount (#824)
Variable DOGERISEUP._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#832) is too similar to DOGERISEUP._transferFromExcluded(address,address,uint256).tTransferAmount (#790)
Variable DOGERISEUP._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#832) is too similar to DOGERISEUP._transferToExcluded(address,address,uint256).tTransferAmount (#780)
Variable DOGERISEUP.reflectionFromToken(uint256,bool).rTransferAmount (#600) is too similar to DOGERISEUP._transferFromExcluded(address,address,uint256).tTransferAmount (#790)
Variable DOGERISEUP.reflectionFromToken(uint256,bool).rTransferAmount (#600) is too similar to DOGERISEUP._transferToExcluded(address,address,uint256).tTransferAmount (#780)
Variable DOGERISEUP._getValues(uint256).rTransferAmount (#817) is too similar to DOGERISEUP._transferStandard(address,address,uint256).tTransferAmount (#771)
Variable DOGERISEUP._transferStandard(address,address,uint256).rTransferAmount (#771) is too similar to DOGERISEUP._getValues(uint256).tTransferAmount (#816)
Variable DOGERISEUP._getValues(uint256).rTransferAmount (#817) is too similar to DOGERISEUP._getValues(uint256).tTransferAmount (#816)
Variable DOGERISEUP._transferStandard(address,address,uint256).rTransferAmount (#771) is too similar to DOGERISEUP._transferBothExcluded(address,address,uint256).tTransferAmount (#800)
Variable DOGERISEUP._getValues(uint256).rTransferAmount (#817) is too similar to DOGERISEUP._transferBothExcluded(address,address,uint256).tTransferAmount (#800)
Variable DOGERISEUP._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#832) is too similar to DOGERISEUP._transferBothExcluded(address,address,uint256).tTransferAmount (#800)
Variable DOGERISEUP._transferStandard(address,address,uint256).rTransferAmount (#771) is too similar to DOGERISEUP._getTValues(uint256).tTransferAmount (#824)
Variable DOGERISEUP.reflectionFromToken(uint256,bool).rTransferAmount (#600) is too similar to DOGERISEUP._transferBothExcluded(address,address,uint256).tTransferAmount (#800)
Variable DOGERISEUP._getValues(uint256).rTransferAmount (#817) is too similar to DOGERISEUP._getTValues(uint256).tTransferAmount (#824)
Variable DOGERISEUP._transferStandard(address,address,uint256).rTransferAmount (#771) is too similar to DOGERISEUP._transferFromExcluded(address,address,uint256).tTransferAmount (#790)
Variable DOGERISEUP._transferToExcluded(address,address,uint256).rTransferAmount (#780) is too similar to DOGERISEUP._transferBothExcluded(address,address,uint256).tTransferAmount (#800)
Variable DOGERISEUP._getValues(uint256).rTransferAmount (#817) is too similar to DOGERISEUP._transferFromExcluded(address,address,uint256).tTransferAmount (#790)
Variable DOGERISEUP._transferStandard(address,address,uint256).rTransferAmount (#771) is too similar to DOGERISEUP._transferToExcluded(address,address,uint256).tTransferAmount (#780)
Prevent variables from having similar names.

Additional information: link

Holders:


Average 30d PancakeSwap volume is low.


Average PancakeSwap trading volume, liqudity, number of swaps are low. Token seems to be inactive.


Token is deployed only at one blockchain


Average 30d number of PancakeSwap swaps is low.

Contract has 9% buy tax and 9% sell tax.
Taxes are low and contract ownership is renounced.


Twitter account has relatively few followers


Last post in Twitter was more than 30 days ago


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


Unable to find whitepaper link on the website


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


Token is marked as scam (rug pull, honeypot, phishing, etc.)

Additional information: link


Token has a considerable age, but social accounts / website are missing or have few users


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death


Token has relatively low CoinGecko rank


Token has relatively low CoinMarketCap rank

Price for DOGERISEUP

News for DOGERISEUP