Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
SuperSaiyan.swapBack() (#609-658) sends eth to arbitrary user
Dangerous calls:
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 300000,value: amountBNBMarketing}() (#640)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 300000,value: amountBNBTeam}() (#641)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in SuperSaiyan._transferFrom(address,address,uint256) (#488-543):
External calls:
- swapBack() (#522)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#621-627)
- distributor.deposit{value: amountBNBReflection}() (#639)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 300000,value: amountBNBMarketing}() (#640)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 300000,value: amountBNBTeam}() (#641)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#648-655)
External calls sending eth:
- swapBack() (#522)
- distributor.deposit{value: amountBNBReflection}() (#639)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 300000,value: amountBNBMarketing}() (#640)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 300000,value: amountBNBTeam}() (#641)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#648-655)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#525)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#528)
- amountReceived = takeFee(sender,amount,(recipient == pair)) (#527)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#567)
Apply the check-effects-interactions pattern.
Additional information: link
DividendDistributor.distributeDividend(address) (#314-325) ignores return value by RWRD.transfer(shareholder,amount) (#320)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.
Additional information: link
Too many vulnerabilities (Unchecked transfer, Reentrancy vulnerability, etc.). High risk of a scam. DYOR & manual audit are advised.
SuperSaiyan.swapBack().tmpSuccess (#640) is written in both
(tmpSuccess) = address(marketingFeeReceiver).call{gas: 300000,value: amountBNBMarketing}() (#640)
(tmpSuccess,None) = address(teamFeeReceiver).call{gas: 300000,value: amountBNBTeam}() (#641)
SuperSaiyan.swapBack().tmpSuccess (#640) is written in both
(tmpSuccess,None) = address(teamFeeReceiver).call{gas: 300000,value: amountBNBTeam}() (#641)
tmpSuccess = false (#645)
Fix or remove the writes.
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.
SuperSaiyan.takeFee(address,uint256,bool) (#560-571) performs a multiplication on the result of a division:
-feeAmount = amount.div(100).mul(99) (#564)
Consider ordering multiplication before division.
Additional information: link
Reentrancy in DividendDistributor.distributeDividend(address) (#314-325):
External calls:
- RWRD.transfer(shareholder,amount) (#320)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#322)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#323)
Reentrancy in DividendDistributor.process(uint256) (#283-307):
External calls:
- distributeDividend(shareholders[currentIndex]) (#299)
- RWRD.transfer(shareholder,amount) (#320)
State variables written after the call(s):
- currentIndex ++ (#304)
Reentrancy in DividendDistributor.setShare(address,uint256) (#247-261):
External calls:
- distributeDividend(shareholder) (#249)
- RWRD.transfer(shareholder,amount) (#320)
State variables written after the call(s):
- shares[shareholder].amount = amount (#259)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#260)
Apply the check-effects-interactions pattern.
Additional information: link
SuperSaiyan.manage_blacklist(address[],bool).i (#744) is a local variable never initialized
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
SuperSaiyan.swapBack() (#609-658) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#648-655)
Ensure that all the return values of the function calls are used.
Additional information: link
DividendDistributor.setDistributionCriteria(uint256,uint256) (#242-245) should emit an event for:
- minPeriod = _minPeriod (#243)
- minDistribution = _minDistribution (#244)
SuperSaiyan.launchStatus(uint256) (#585-587) should emit an event for:
- launchedAt = _launchblock (#586)
SuperSaiyan.tradingStatus(bool,uint256) (#594-600) should emit an event for:
- deadBlocks = _deadBlocks (#598)
SuperSaiyan.setTxLimit(uint256) (#661-663) should emit an event for:
- _maxTxAmount = amount (#662)
SuperSaiyan.setFees(uint256,uint256,uint256,uint256,uint256) (#687-695) should emit an event for:
- liquidityFee = _liquidityFee (#688)
- reflectionFee = _reflectionFee (#689)
- marketingFee = _marketingFee (#690)
- teamFee = _teamFee (#691)
- totalFee = _liquidityFee.add(_reflectionFee).add(_marketingFee).add(_teamFee) (#692)
- feeDenominator = _feeDenominator (#693)
SuperSaiyan.setSwapBackSettings(bool,uint256) (#712-715) should emit an event for:
- swapThreshold = _amount (#714)
SuperSaiyan.setTargetLiquidity(uint256,uint256) (#717-720) should emit an event for:
- targetLiquidity = _target (#718)
- targetLiquidityDenominator = _denominator (#719)
Emit an event for critical parameter changes.
Additional information: link
Auth.constructor(address)._owner (#75) lacks a zero-check on :
- owner = _owner (#76)
Auth.transferOwnership(address).adr (#124) lacks a zero-check on :
- owner = adr (#125)
SuperSaiyan.setFeeReceivers(address,address,address)._autoLiquidityReceiver (#697) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#698)
SuperSaiyan.setFeeReceivers(address,address,address)._marketingFeeReceiver (#697) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#699)
SuperSaiyan.setFeeReceivers(address,address,address)._teamFeeReceiver (#697) lacks a zero-check on :
- teamFeeReceiver = _teamFeeReceiver (#700)
SuperSaiyan.setNewRewardTokenAddress(address)._newTokenAddress (#703) lacks a zero-check on :
- RWRD = _newTokenAddress (#704)
Check that the address is not zero.
Additional information: link
DividendDistributor.distributeDividend(address) (#314-325) has external calls inside a loop: RWRD.transfer(shareholder,amount) (#320)
SuperSaiyan.airdrop(address,address[],uint256[]) (#756-779) has external calls inside a loop: distributor.setShare(addresses[i_scope_0],_balances[addresses[i_scope_0]]) (#771)
Favor pull over push strategy for external calls.
Additional information: link
Reentrancy in SuperSaiyan.constructor() (#424-450):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#426)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = uint256(- 1) (#427)
- _balances[msg.sender] = _totalSupply (#448)
- autoLiquidityReceiver = msg.sender (#444)
- distributor = new DividendDistributor(address(router)) (#429)
- isDividendExempt[pair] = true (#439)
- isDividendExempt[address(this)] = true (#440)
- isDividendExempt[DEAD] = true (#441)
- isFeeExempt[msg.sender] = true (#431)
- isTimelockExempt[msg.sender] = true (#435)
- isTimelockExempt[DEAD] = true (#436)
- isTimelockExempt[address(this)] = true (#437)
- isTxLimitExempt[msg.sender] = true (#432)
- marketingFeeReceiver = msg.sender (#445)
- teamFeeReceiver = msg.sender (#446)
Reentrancy in DividendDistributor.deposit() (#263-281):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#270-275)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#280)
- totalDividends = totalDividends.add(amount) (#279)
Reentrancy in DividendDistributor.distributeDividend(address) (#314-325):
External calls:
- RWRD.transfer(shareholder,amount) (#320)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#321)
Reentrancy in DividendDistributor.setShare(address,uint256) (#247-261):
External calls:
- distributeDividend(shareholder) (#249)
- RWRD.transfer(shareholder,amount) (#320)
State variables written after the call(s):
- addShareholder(shareholder) (#253)
- shareholderIndexes[shareholder] = shareholders.length (#347)
- removeShareholder(shareholder) (#255)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#353)
- addShareholder(shareholder) (#253)
- shareholders.push(shareholder) (#348)
- removeShareholder(shareholder) (#255)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#352)
- shareholders.pop() (#354)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#258)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in SuperSaiyan._transferFrom(address,address,uint256) (#488-543):
External calls:
- swapBack() (#522)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#621-627)
- distributor.deposit{value: amountBNBReflection}() (#639)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 300000,value: amountBNBMarketing}() (#640)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 300000,value: amountBNBTeam}() (#641)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#648-655)
- distributor.setShare(sender,_balances[sender]) (#532)
- distributor.setShare(recipient,_balances[recipient]) (#536)
- distributor.process(distributorGas) (#539)
External calls sending eth:
- swapBack() (#522)
- distributor.deposit{value: amountBNBReflection}() (#639)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 300000,value: amountBNBMarketing}() (#640)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 300000,value: amountBNBTeam}() (#641)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#648-655)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived) (#541)
Reentrancy in SuperSaiyan._transferFrom(address,address,uint256) (#488-543):
External calls:
- swapBack() (#522)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#621-627)
- distributor.deposit{value: amountBNBReflection}() (#639)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 300000,value: amountBNBMarketing}() (#640)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 300000,value: amountBNBTeam}() (#641)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#648-655)
External calls sending eth:
- swapBack() (#522)
- distributor.deposit{value: amountBNBReflection}() (#639)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 300000,value: amountBNBMarketing}() (#640)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 300000,value: amountBNBTeam}() (#641)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#648-655)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#568)
- amountReceived = takeFee(sender,amount,(recipient == pair)) (#527)
Reentrancy in SuperSaiyan.constructor() (#424-450):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#426)
Event emitted after the call(s):
- Transfer(address(0),msg.sender,_totalSupply) (#449)
Reentrancy in SuperSaiyan.swapBack() (#609-658):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#621-627)
- distributor.deposit{value: amountBNBReflection}() (#639)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 300000,value: amountBNBMarketing}() (#640)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 300000,value: amountBNBTeam}() (#641)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#648-655)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#639)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 300000,value: amountBNBMarketing}() (#640)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 300000,value: amountBNBTeam}() (#641)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#648-655)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#656)
Apply the check-effects-interactions pattern.
Additional information: link
DividendDistributor.shouldDistribute(address) (#309-312) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#310-311)
SuperSaiyan._transferFrom(address,address,uint256) (#488-543) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(cooldownTimer[recipient] < block.timestamp,Please wait for 1min between two buys) (#514)
Avoid relying on block.timestamp.
Additional information: link
DividendDistributor.process(uint256) (#283-307) has costly operations inside a loop:
- currentIndex = 0 (#295)
DividendDistributor.distributeDividend(address) (#314-325) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#319)
DividendDistributor.process(uint256) (#283-307) has costly operations inside a loop:
- currentIndex ++ (#304)
Use a local variable to hold the loop computation result.
Additional information: link
SuperSaiyan._maxWalletToken (#382) is set pre-construction with a non-constant function or state variable:
- (_totalSupply * 2) / 1000
SuperSaiyan.totalFee (#396) is set pre-construction with a non-constant function or state variable:
- liquidityFee + reflectionFee + marketingFee + teamFee
SuperSaiyan.swapThreshold (#420) is set pre-construction with a non-constant function or state variable:
- _totalSupply * 10 / 100000
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
Pragma version^0.7.4 (#8) allows old versions
Deploy with any of the following Solidity versions: 0.5.16 - 0.5.17, 0.6.11 - 0.6.12, 0.7.5 - 0.7.6 Use a simple pragma version that allows any of these versions. Consider using the latest version of Solidity for testing.
Additional information: link
Low level call in SuperSaiyan.swapBack() (#609-658):
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 300000,value: amountBNBMarketing}() (#640)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 300000,value: amountBNBTeam}() (#641)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Function IDEXRouter.WETH() (#139) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minPeriod (#242) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minDistribution (#242) is not in mixedCase
Variable DividendDistributor._token (#195) is not in mixedCase
Variable DividendDistributor.RWRD (#203) is not in mixedCase
Variable DividendDistributor.WBNB (#204) is not in mixedCase
Parameter SuperSaiyan.launchStatus(uint256)._launchblock (#585) is not in mixedCase
Parameter SuperSaiyan.setDeadBotStatus(bool)._status (#589) is not in mixedCase
Parameter SuperSaiyan.tradingStatus(bool,uint256)._status (#594) is not in mixedCase
Parameter SuperSaiyan.tradingStatus(bool,uint256)._deadBlocks (#594) is not in mixedCase
Parameter SuperSaiyan.cooldownEnabled(bool,uint8)._status (#603) is not in mixedCase
Parameter SuperSaiyan.cooldownEnabled(bool,uint8)._interval (#603) is not in mixedCase
Parameter SuperSaiyan.setFees(uint256,uint256,uint256,uint256,uint256)._liquidityFee (#687) is not in mixedCase
Parameter SuperSaiyan.setFees(uint256,uint256,uint256,uint256,uint256)._reflectionFee (#687) is not in mixedCase
Parameter SuperSaiyan.setFees(uint256,uint256,uint256,uint256,uint256)._marketingFee (#687) is not in mixedCase
Parameter SuperSaiyan.setFees(uint256,uint256,uint256,uint256,uint256)._teamFee (#687) is not in mixedCase
Parameter SuperSaiyan.setFees(uint256,uint256,uint256,uint256,uint256)._feeDenominator (#687) is not in mixedCase
Parameter SuperSaiyan.setFeeReceivers(address,address,address)._autoLiquidityReceiver (#697) is not in mixedCase
Parameter SuperSaiyan.setFeeReceivers(address,address,address)._marketingFeeReceiver (#697) is not in mixedCase
Parameter SuperSaiyan.setFeeReceivers(address,address,address)._teamFeeReceiver (#697) is not in mixedCase
Parameter SuperSaiyan.setNewRewardTokenAddress(address)._newTokenAddress (#703) is not in mixedCase
Parameter SuperSaiyan.changeTokenName(string,string)._newName (#707) is not in mixedCase
Parameter SuperSaiyan.changeTokenName(string,string)._newSymbol (#707) is not in mixedCase
Parameter SuperSaiyan.setSwapBackSettings(bool,uint256)._enabled (#712) is not in mixedCase
Parameter SuperSaiyan.setSwapBackSettings(bool,uint256)._amount (#712) is not in mixedCase
Parameter SuperSaiyan.setTargetLiquidity(uint256,uint256)._target (#717) is not in mixedCase
Parameter SuperSaiyan.setTargetLiquidity(uint256,uint256)._denominator (#717) is not in mixedCase
Parameter SuperSaiyan.setDistributionCriteria(uint256,uint256)._minPeriod (#722) is not in mixedCase
Parameter SuperSaiyan.setDistributionCriteria(uint256,uint256)._minDistribution (#722) is not in mixedCase
Function SuperSaiyan.manage_blacklist(address[],bool) (#743-747) is not in mixedCase
Function SuperSaiyan.enable_blacklist(bool) (#749-751) is not in mixedCase
Parameter SuperSaiyan.enable_blacklist(bool)._status (#749) is not in mixedCase
Variable SuperSaiyan.RWRD (#361) is not in mixedCase
Variable SuperSaiyan.WBNB (#362) is not in mixedCase
Variable SuperSaiyan.DEAD (#363) is not in mixedCase
Variable SuperSaiyan.ZERO (#364) is not in mixedCase
Variable SuperSaiyan._name (#366) is not in mixedCase
Variable SuperSaiyan._symbol (#367) is not in mixedCase
Constant SuperSaiyan._decimals (#368) is not in UPPER_CASE_WITH_UNDERSCORES
Variable SuperSaiyan._totalSupply (#378) is not in mixedCase
Variable SuperSaiyan._maxTxAmount (#379) is not in mixedCase
Variable SuperSaiyan._maxWalletToken (#382) is not in mixedCase
Variable SuperSaiyan._balances (#384) is not in mixedCase
Variable SuperSaiyan._allowances (#385) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#144) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#145)
Prevent variables from having similar names.
Additional information: link
SuperSaiyan.swapBack() (#609-658) uses literals with too many digits:
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 300000,value: amountBNBMarketing}() (#640)
SuperSaiyan.swapBack() (#609-658) uses literals with too many digits:
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 300000,value: amountBNBTeam}() (#641)
SuperSaiyan.slitherConstructorVariables() (#358-784) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#363)
SuperSaiyan.slitherConstructorVariables() (#358-784) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#364)
SuperSaiyan.slitherConstructorVariables() (#358-784) uses literals with too many digits:
- distributorGas = 500000 (#412)
SuperSaiyan.slitherConstructorVariables() (#358-784) uses literals with too many digits:
- swapThreshold = _totalSupply * 10 / 100000 (#420)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
DividendDistributor.WBNB (#204) should be constant
DividendDistributor.dividendsPerShareAccuracyFactor (#217) should be constant
SuperSaiyan.DEAD (#363) should be constant
SuperSaiyan.WBNB (#362) should be constant
SuperSaiyan.ZERO (#364) should be constant
SuperSaiyan._totalSupply (#378) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
authorize(address) should be declared external:
- Auth.authorize(address) (#96-98)
unauthorize(address) should be declared external:
- Auth.unauthorize(address) (#103-105)
transferOwnership(address) should be declared external:
- Auth.transferOwnership(address) (#124-128)
launchStatus(uint256) should be declared external:
- SuperSaiyan.launchStatus(uint256) (#585-587)
setDeadBotStatus(bool) should be declared external:
- SuperSaiyan.setDeadBotStatus(bool) (#589-591)
tradingStatus(bool,uint256) should be declared external:
- SuperSaiyan.tradingStatus(bool,uint256) (#594-600)
cooldownEnabled(bool,uint8) should be declared external:
- SuperSaiyan.cooldownEnabled(bool,uint8) (#603-606)
manage_blacklist(address[],bool) should be declared external:
- SuperSaiyan.manage_blacklist(address[],bool) (#743-747)
enable_blacklist(bool) should be declared external:
- SuperSaiyan.enable_blacklist(bool) (#749-751)
Use the external attribute for functions never called from the contract.
Additional information: link
Unable to find website, listings and other project-related information
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 Telegram and Twitter accounts