The Sun Rises Token Logo

SUNRISE [The Sun Rises] Token

ALERT: dead

About SUNRISE

Listings

Token 2 years
CoinMarketCap 2 years

SUNRISE is a token so mundane and so true that everyone can own and count on the fact that it will always rise. The project team wants you to participate in a token that will give you peace of mind and capital appreciation as long as you hold. Our code design includes an hourly deflation mechanism and an ever-increasing liquidity pool that will keep the SUNRISE everyday, no doubt.

Social

Laser Scorebeta Last Audit: 2 March 2022

report
Token seems to be unmaintained (no trading, inactive website, inactive socials, etc.).

Anti-Scam

Links


Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)

SUNRISE.swapETHForTokens(uint256) (#960-973) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens.value(amount)(0,path,deadAddress,block.timestamp.add(300)) (#967-972)
SUNRISE.addLiquidity(uint256,uint256) (#976-990) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH.value(ethAmount)(address(this),tokenAmount,0,0,address(this),block.timestamp.add(300)) (#982-989)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in SUNRISE._transfer(address,address,uint256) (#818-853):
External calls:
- swapAndLiquify(numTokensSell) (#840)
- uniswapV2Router.addLiquidityETH.value(ethAmount)(address(this),tokenAmount,0,0,address(this),block.timestamp.add(300)) (#982-989)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp.add(300)) (#950-956)
- buyBackTokens(buybackLimit.div(buybackDivisor)) (#846)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens.value(amount)(0,path,deadAddress,block.timestamp.add(300)) (#967-972)
External calls sending eth:
- swapAndLiquify(numTokensSell) (#840)
- recipient.transfer(amount) (#936)
- uniswapV2Router.addLiquidityETH.value(ethAmount)(address(this),tokenAmount,0,0,address(this),block.timestamp.add(300)) (#982-989)
- buyBackTokens(buybackLimit.div(buybackDivisor)) (#846)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens.value(amount)(0,path,deadAddress,block.timestamp.add(300)) (#967-972)
State variables written after the call(s):
- _tokenTransfer(from,to,value) (#850)
- _gonBalances[address(this)] = _gonBalances[address(this)].add(rFee) (#895)
- _gonBalances[sender] = _gonBalances[sender].sub(gonValue) (#876)
- _gonBalances[recipient] = _gonBalances[recipient].add(gonValue) (#877)
- _gonBalances[sender] = _gonBalances[sender].sub(gonDeduct) (#868)
- _gonBalances[recipient] = _gonBalances[recipient].add(gonValue) (#869)
- buyBackTokens(buybackLimit.div(buybackDivisor)) (#846)
- inSwapAndLiquify = true (#637)
- inSwapAndLiquify = false (#639)
Apply the check-effects-interactions pattern.

Additional information: link

SUNRISE.burnAutoLP() (#1097-1103) ignores return value by uniswapV2Pair.transfer(address(deadBurn),balance) (#1102)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link

Ownable._lockTime (#269) is never initialized. It is used in:
- Ownable.getUnlockTime() (#320-322)
- Ownable.unlock() (#333-338)
Initialize all the variables. If a variable is meant to be initialized to zero, explicitly set it to zero to improve code readability.

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.


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.


Not a direct threat, but may indicate unreliable intentions of developer. Widespread names (e.g. Elon, King, Moon, Doge) are common among meme-tokens and scams. The allow to gain free hype and attract unexperienced investors.

SUNRISE.addLiquidity(uint256,uint256) (#976-990) ignores return value by uniswapV2Router.addLiquidityETH.value(ethAmount)(address(this),tokenAmount,0,0,address(this),block.timestamp.add(300)) (#982-989)
Ensure that all the return values of the function calls are used.

Additional information: link

ERC20Detailed.constructor(string,string,uint8).name (#517) shadows:
- ERC20Detailed.name() (#526-528) (function)
ERC20Detailed.constructor(string,string,uint8).symbol (#517) shadows:
- ERC20Detailed.symbol() (#534-536) (function)
ERC20Detailed.constructor(string,string,uint8).decimals (#517) shadows:
- ERC20Detailed.decimals() (#550-552) (function)
SUNRISE._approve(address,address,uint256).owner (#1011) shadows:
- Ownable.owner() (#290-292) (function)
Rename the local variables that shadow another component.

Additional information: link

SUNRISE.setMaster(address) (#729-735) should emit an event for:
- master = _master (#734)
SUNRISE.setdeadBurn(address) (#737-742) should emit an event for:
- deadBurn = _deadBurn (#741)
Emit an event for critical parameter changes.

Additional information: link

SUNRISE.settransactionTax(uint256) (#1130-1132) should emit an event for:
- transactionTax = _transactionTax (#1131)
Emit an event for critical parameter changes.

Additional information: link

SUNRISE.constructor(address,address,address)._deadBurn (#658) lacks a zero-check on :
- deadBurn = _deadBurn (#663)
SUNRISE.constructor(address,address,address)._marketingAddress (#658) lacks a zero-check on :
- marketingAddress = _marketingAddress (#665)
SUNRISE.setMaster(address)._master (#729) lacks a zero-check on :
- master = _master (#734)
SUNRISE.setdeadBurn(address)._deadBurn (#737) lacks a zero-check on :
- deadBurn = _deadBurn (#741)
SUNRISE.setmarketingAddress(address)._marketingAddress (#743) lacks a zero-check on :
- marketingAddress = _marketingAddress (#747)
SUNRISE.setLP(address)._lp (#753) lacks a zero-check on :
- lp = _lp (#758)
Check that the address is not zero.

Additional information: link

Reentrancy in SUNRISE.constructor(address,address,address) (#658-691):
External calls:
- uniswapV2PairAddress = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#669-670)
State variables written after the call(s):
- _gonBalances[msg.sender] = TOTAL_GONS (#681)
- _gonsPerFragment = TOTAL_GONS.div(_totalSupply) (#682)
- _isExcluded[owner()] = true (#687)
- _isExcluded[address(this)] = true (#688)
- _totalSupply = INITIAL_FRAGMENTS_SUPPLY (#680)
- initialDistributionFinished = false (#684)
- setLP(uniswapV2PairAddress) (#674)
- lp = _lp (#758)
- setLP(uniswapV2PairAddress) (#674)
- lpContract = ILP(_lp) (#759)
- uniswapV2Pair = _uniswapV2Pair (#678)
- uniswapV2Router = _uniswapV2Router (#672)
Reentrancy in SUNRISE.swapAndLiquify(uint256) (#899-926):
External calls:
- swapTokensForEth(threequarters) (#911)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp.add(300)) (#950-956)
- addLiquidity(onequarter,sharedETH) (#919)
- uniswapV2Router.addLiquidityETH.value(ethAmount)(address(this),tokenAmount,0,0,address(this),block.timestamp.add(300)) (#982-989)
External calls sending eth:
- addLiquidity(onequarter,sharedETH) (#919)
- uniswapV2Router.addLiquidityETH.value(ethAmount)(address(this),tokenAmount,0,0,address(this),block.timestamp.add(300)) (#982-989)
State variables written after the call(s):
- addLiquidity(onequarter,sharedETH) (#919)
- _allowedFragments[owner][spender] = value (#1015)
Reentrancy in SUNRISE.transferFrom(address,address,uint256) (#802-810):
External calls:
- _transfer(sender,recipient,amount) (#807)
- uniswapV2Router.addLiquidityETH.value(ethAmount)(address(this),tokenAmount,0,0,address(this),block.timestamp.add(300)) (#982-989)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens.value(amount)(0,path,deadAddress,block.timestamp.add(300)) (#967-972)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp.add(300)) (#950-956)
External calls sending eth:
- _transfer(sender,recipient,amount) (#807)
- recipient.transfer(amount) (#936)
- uniswapV2Router.addLiquidityETH.value(ethAmount)(address(this),tokenAmount,0,0,address(this),block.timestamp.add(300)) (#982-989)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens.value(amount)(0,path,deadAddress,block.timestamp.add(300)) (#967-972)
State variables written after the call(s):
- _approve(sender,msg.sender,_allowedFragments[sender][msg.sender].sub(amount)) (#808)
- _allowedFragments[owner][spender] = value (#1015)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in SUNRISE._transfer(address,address,uint256) (#818-853):
External calls:
- swapAndLiquify(numTokensSell) (#840)
- uniswapV2Router.addLiquidityETH.value(ethAmount)(address(this),tokenAmount,0,0,address(this),block.timestamp.add(300)) (#982-989)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp.add(300)) (#950-956)
- buyBackTokens(buybackLimit.div(buybackDivisor)) (#846)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens.value(amount)(0,path,deadAddress,block.timestamp.add(300)) (#967-972)
External calls sending eth:
- swapAndLiquify(numTokensSell) (#840)
- recipient.transfer(amount) (#936)
- uniswapV2Router.addLiquidityETH.value(ethAmount)(address(this),tokenAmount,0,0,address(this),block.timestamp.add(300)) (#982-989)
- buyBackTokens(buybackLimit.div(buybackDivisor)) (#846)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens.value(amount)(0,path,deadAddress,block.timestamp.add(300)) (#967-972)
Event emitted after the call(s):
- Transfer(sender,recipient,amount) (#878)
- _tokenTransfer(from,to,value) (#850)
- Transfer(sender,recipient,amount) (#871)
- _tokenTransfer(from,to,value) (#850)
Reentrancy in SUNRISE.constructor(address,address,address) (#658-691):
External calls:
- uniswapV2PairAddress = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#669-670)
Event emitted after the call(s):
- Transfer(address(0x0),msg.sender,_totalSupply) (#690)
Reentrancy in SUNRISE.rebase(uint256,int256) (#698-723):
External calls:
- lpContract.sync() (#719)
Event emitted after the call(s):
- LogRebase(epoch,_totalSupply) (#721)
Reentrancy in SUNRISE.swapAndLiquify(uint256) (#899-926):
External calls:
- swapTokensForEth(threequarters) (#911)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp.add(300)) (#950-956)
- addLiquidity(onequarter,sharedETH) (#919)
- uniswapV2Router.addLiquidityETH.value(ethAmount)(address(this),tokenAmount,0,0,address(this),block.timestamp.add(300)) (#982-989)
External calls sending eth:
- addLiquidity(onequarter,sharedETH) (#919)
- uniswapV2Router.addLiquidityETH.value(ethAmount)(address(this),tokenAmount,0,0,address(this),block.timestamp.add(300)) (#982-989)
Event emitted after the call(s):
- Approval(owner,spender,value) (#1016)
- addLiquidity(onequarter,sharedETH) (#919)
Reentrancy in SUNRISE.swapAndLiquify(uint256) (#899-926):
External calls:
- swapTokensForEth(threequarters) (#911)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp.add(300)) (#950-956)
- addLiquidity(onequarter,sharedETH) (#919)
- uniswapV2Router.addLiquidityETH.value(ethAmount)(address(this),tokenAmount,0,0,address(this),block.timestamp.add(300)) (#982-989)
External calls sending eth:
- addLiquidity(onequarter,sharedETH) (#919)
- uniswapV2Router.addLiquidityETH.value(ethAmount)(address(this),tokenAmount,0,0,address(this),block.timestamp.add(300)) (#982-989)
- transferToAddressETH(marketingAddress,sharedETH) (#922)
- recipient.transfer(amount) (#936)
Event emitted after the call(s):
- SwapAndLiquify(threequarters,sharedETH,onequarter) (#924)
Reentrancy in SUNRISE.transferFrom(address,address,uint256) (#802-810):
External calls:
- _transfer(sender,recipient,amount) (#807)
- uniswapV2Router.addLiquidityETH.value(ethAmount)(address(this),tokenAmount,0,0,address(this),block.timestamp.add(300)) (#982-989)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens.value(amount)(0,path,deadAddress,block.timestamp.add(300)) (#967-972)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp.add(300)) (#950-956)
External calls sending eth:
- _transfer(sender,recipient,amount) (#807)
- recipient.transfer(amount) (#936)
- uniswapV2Router.addLiquidityETH.value(ethAmount)(address(this),tokenAmount,0,0,address(this),block.timestamp.add(300)) (#982-989)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens.value(amount)(0,path,deadAddress,block.timestamp.add(300)) (#967-972)
Event emitted after the call(s):
- Approval(owner,spender,value) (#1016)
- _approve(sender,msg.sender,_allowedFragments[sender][msg.sender].sub(amount)) (#808)
Apply the check-effects-interactions pattern.

Additional information: link

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

Additional information: link

SafeMath.mod(uint256,uint256) (#419-422) is never used and should be removed
SafeMathInt.abs(int256) (#495-502) is never used and should be removed
SafeMathInt.add(int256,int256) (#482-490) is never used and should be removed
SafeMathInt.div(int256,int256) (#454-464) is never used and should be removed
SafeMathInt.mul(int256,int256) (#438-449) is never used and should be removed
SafeMathInt.sub(int256,int256) (#469-477) is never used and should be removed
Remove unused functions.

Additional information: link

Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#87) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#88) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#105) is not in mixedCase
Function IUniswapV2Router02.WETH() (#128) is not in mixedCase
Parameter SUNRISE.setMaster(address)._master (#729) is not in mixedCase
Parameter SUNRISE.setdeadBurn(address)._deadBurn (#737) is not in mixedCase
Parameter SUNRISE.setmarketingAddress(address)._marketingAddress (#743) is not in mixedCase
Parameter SUNRISE.setLP(address)._lp (#753) is not in mixedCase
Parameter SUNRISE.setSwapAndLiquifyEnabled(bool)._enabled (#773) is not in mixedCase
Parameter SUNRISE.calculateFee(uint256)._amount (#889) is not in mixedCase
Parameter SUNRISE.enableTransfer(address)._addr (#1083) is not in mixedCase
Parameter SUNRISE.excludeAddress(address)._addr (#1090) is not in mixedCase
Parameter SUNRISE.setBuyBackEnabled(bool)._enabled (#1114) is not in mixedCase
Parameter SUNRISE.setBuyBackLimit(uint256)._buybackLimit (#1118) is not in mixedCase
Parameter SUNRISE.setBuyBackDivisor(uint256)._buybackDivisor (#1121) is not in mixedCase
Parameter SUNRISE.setnumTokensSellDivisor(uint256)._numTokensSellDivisor (#1124) is not in mixedCase
Parameter SUNRISE.setmaxAmount(uint256)._maxAmount (#1127) is not in mixedCase
Parameter SUNRISE.settransactionTax(uint256)._transactionTax (#1130) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Reentrancy in SUNRISE._transfer(address,address,uint256) (#818-853):
External calls:
- swapAndLiquify(numTokensSell) (#840)
- recipient.transfer(amount) (#936)
External calls sending eth:
- swapAndLiquify(numTokensSell) (#840)
- recipient.transfer(amount) (#936)
- uniswapV2Router.addLiquidityETH.value(ethAmount)(address(this),tokenAmount,0,0,address(this),block.timestamp.add(300)) (#982-989)
- buyBackTokens(buybackLimit.div(buybackDivisor)) (#846)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens.value(amount)(0,path,deadAddress,block.timestamp.add(300)) (#967-972)
State variables written after the call(s):
- _tokenTransfer(from,to,value) (#850)
- _gonBalances[address(this)] = _gonBalances[address(this)].add(rFee) (#895)
- _gonBalances[sender] = _gonBalances[sender].sub(gonValue) (#876)
- _gonBalances[recipient] = _gonBalances[recipient].add(gonValue) (#877)
- _gonBalances[sender] = _gonBalances[sender].sub(gonDeduct) (#868)
- _gonBalances[recipient] = _gonBalances[recipient].add(gonValue) (#869)
- buyBackTokens(buybackLimit.div(buybackDivisor)) (#846)
- inSwapAndLiquify = true (#637)
- inSwapAndLiquify = false (#639)
Event emitted after the call(s):
- Transfer(sender,recipient,amount) (#878)
- _tokenTransfer(from,to,value) (#850)
- Transfer(sender,recipient,amount) (#871)
- _tokenTransfer(from,to,value) (#850)
Reentrancy in SUNRISE.swapAndLiquify(uint256) (#899-926):
External calls:
- transferToAddressETH(marketingAddress,sharedETH) (#922)
- recipient.transfer(amount) (#936)
External calls sending eth:
- addLiquidity(onequarter,sharedETH) (#919)
- uniswapV2Router.addLiquidityETH.value(ethAmount)(address(this),tokenAmount,0,0,address(this),block.timestamp.add(300)) (#982-989)
- transferToAddressETH(marketingAddress,sharedETH) (#922)
- recipient.transfer(amount) (#936)
Event emitted after the call(s):
- SwapAndLiquify(threequarters,sharedETH,onequarter) (#924)
Reentrancy in SUNRISE.transferFrom(address,address,uint256) (#802-810):
External calls:
- _transfer(sender,recipient,amount) (#807)
- recipient.transfer(amount) (#936)
External calls sending eth:
- _transfer(sender,recipient,amount) (#807)
- recipient.transfer(amount) (#936)
- uniswapV2Router.addLiquidityETH.value(ethAmount)(address(this),tokenAmount,0,0,address(this),block.timestamp.add(300)) (#982-989)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens.value(amount)(0,path,deadAddress,block.timestamp.add(300)) (#967-972)
State variables written after the call(s):
- _approve(sender,msg.sender,_allowedFragments[sender][msg.sender].sub(amount)) (#808)
- _allowedFragments[owner][spender] = value (#1015)
Event emitted after the call(s):
- Approval(owner,spender,value) (#1016)
- _approve(sender,msg.sender,_allowedFragments[sender][msg.sender].sub(amount)) (#808)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router02.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#133) is too similar to IUniswapV2Router02.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#134)
Prevent variables from having similar names.

Additional information: link

SUNRISE.slitherConstructorVariables() (#560-1139) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#624)
SUNRISE.slitherConstructorConstantVariables() (#560-1139) uses literals with too many digits:
- INITIAL_FRAGMENTS_SUPPLY = 21000000 * 10 ** DECIMALS (#613)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SafeMathInt.MAX_INT256 (#433) is never used in SafeMathInt (#431-503)
SUNRISE.privateSaleDropCompleted (#634) is never used in SUNRISE (#560-1139)
Remove unused state variables.

Additional information: link

Ownable._lockTime (#269) should be constant
SUNRISE.deadAddress (#624) should be constant
SUNRISE.privateSaleDropCompleted (#634) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#315-318)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#320-322)
lock() should be declared external:
- Ownable.lock() (#326-331)
unlock() should be declared external:
- Ownable.unlock() (#333-338)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#344-346)
name() should be declared external:
- ERC20Detailed.name() (#526-528)
symbol() should be declared external:
- ERC20Detailed.symbol() (#534-536)
decimals() should be declared external:
- ERC20Detailed.decimals() (#550-552)
setSwapAndLiquifyEnabled(bool) should be declared external:
- SUNRISE.setSwapAndLiquifyEnabled(bool) (#773-776)
increaseAllowance(address,uint256) should be declared external:
- SUNRISE.increaseAllowance(address,uint256) (#1001-1008)
approve(address,uint256) should be declared external:
- SUNRISE.approve(address,uint256) (#1031-1038)
allowance(address,address) should be declared external:
- SUNRISE.allowance(address,address) (#1047-1053)
setBuyBackEnabled(bool) should be declared external:
- SUNRISE.setBuyBackEnabled(bool) (#1114-1116)
setBuyBackLimit(uint256) should be declared external:
- SUNRISE.setBuyBackLimit(uint256) (#1118-1119)
setBuyBackDivisor(uint256) should be declared external:
- SUNRISE.setBuyBackDivisor(uint256) (#1121-1122)
setnumTokensSellDivisor(uint256) should be declared external:
- SUNRISE.setnumTokensSellDivisor(uint256) (#1124-1125)
setmaxAmount(uint256) should be declared external:
- SUNRISE.setmaxAmount(uint256) (#1127-1128)
settransactionTax(uint256) should be declared external:
- SUNRISE.settransactionTax(uint256) (#1130-1132)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Average 30d PancakeSwap volume is less than $100. Token is either dead or inactive.


Average 30d number of PancakeSwap swaps is less than 1. Token is either dead or inactive.


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

Contract has 12% buy tax and 12% sell tax.
Taxes are high (over 10%) but contract ownership is renounced.


Average 30d PancakeSwap liquidity is low.


Number of Binance Smart Chain (BSC) token holders is low.


Token is deployed only at one blockchain


Token has only one trading pair


Telegram account has relatively few subscribers


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


Twitter account has few posts


BscScan page for the token does not contain additional info: website, socials, description, etc.

Additional information: link


Token was delisted (assigned to inactive / untracked listing) from CoinMarketCap

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 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 Twitter link on the website


Unable to find token on CoinHunt

Additional information: link


Young tokens have high risks of price dump / death


Young tokens have high risks of scam / price dump / death


Token has no active CoinMarketCap listing / rank


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death


Token has relatively low CoinGecko rank

Price for SUNRISE

News for SUNRISE