Please be aware that SCIENTIA Token is an elastic supply token with negative rebase. During the negative rebase phase the amount of tokens in your wallet decrease while the price increases to the target price. Please educate yourself about this mechanism, for example in our Telegram group, and only buy SCIENTIA Token if you fully understand it and want to support the idea of SCIENTIA and be part of the community. Do not speculate with SCIENTIA as this is absolutely not its intention.
A problem is faced today. Science funding is organized nationally, slow, and bureaucratic. Furthermore, it is usually controlled by government or large corporations and not the Community. SCIENTIA aims to provide a solution. It bridges blockchain technology, science funding and venture capital. SCIENTIA is a token that aims to support Science and return the rewards to the SCIENTIA Community. SCIENTIA’s ultimate goal is to establish a trust owned by the SCIENTIA Community that will improve Science, its funding and the way the economy interacts with it.
To attract as much funding as possible for its endeavors, SCIENTIA utilized a negative rebasing mechanism, whereby supply is adjusted as such that the price of the token rises by a minimum of 3.14% every 8 hours. This might change over time an will be announced in the Telegram group and on other channels. This will continue until the price of one SCIENTIA token has reached 314,159 $, which is estimated to happen in 314 days or less depending on market conditions. Accordingly, the project consists of two phases. Phase I lasts for the first 314 days after launch and will utilize the negative rebasing mechanism to attract holders. Holders of the Scientia Token will get the opportunity to participate in Phase II, the Trust Phase. Here, the SCIENTIA Trust will be formed which will grant funding for scientific research and fund technology startups. If these are successful, the returns in the form of profit shares or license return will be shared by the SCIENTIA Trust and thus by the Trust holders.
The Tokenomics include a tax on all transactions of 9.42%. 3.14% of that are allocated to a marketing budget, 3.14% are used to buy back SCIENTIA token to support its price with regular burns and 3.14% are added as additional liquidity to stabilize SCIENTIA’s price. SCIENTIA Token was first deployed on the Binance Smart Chain on 07 Oct 2021. A Pre-Sale was held from 05 Nov 2021 until 09 Nov 2021. After it sold out, the SCIENTIA Token launched on Pancakeswap on 10 Nov 2021, where it can currently be traded. The main developer of SCIENTIA is an active researcher in the biotechnology field and a physician. He is supported by a marketing team. The Team is currently anonymous, but it is planned that they will reveal their identity before the launch of Phase II of the SCIENTIA project, the Trust phase. At this point there will also be an outreach to the Science community, to introduce new funding mechanisms SCIENTIA could provide.
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
SCIE.swapETHForTokens(uint256) (#942-955) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens.value(amount)(0,path,deadAddress,block.timestamp.add(300)) (#949-954)
SCIE.addLiquidity(uint256,uint256) (#958-972) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH.value(ethAmount)(address(this),tokenAmount,0,0,address(this),block.timestamp.add(300)) (#964-971)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in SCIE._transfer(address,address,uint256) (#800-835):
External calls:
- swapAndLiquify(numTokensSell) (#822)
- uniswapV2Router.addLiquidityETH.value(ethAmount)(address(this),tokenAmount,0,0,address(this),block.timestamp.add(300)) (#964-971)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp.add(300)) (#932-938)
- buyBackTokens(buybackLimit.div(buybackDivisor)) (#828)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens.value(amount)(0,path,deadAddress,block.timestamp.add(300)) (#949-954)
External calls sending eth:
- swapAndLiquify(numTokensSell) (#822)
- recipient.transfer(amount) (#918)
- uniswapV2Router.addLiquidityETH.value(ethAmount)(address(this),tokenAmount,0,0,address(this),block.timestamp.add(300)) (#964-971)
- buyBackTokens(buybackLimit.div(buybackDivisor)) (#828)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens.value(amount)(0,path,deadAddress,block.timestamp.add(300)) (#949-954)
State variables written after the call(s):
- _tokenTransfer(from,to,value) (#832)
- _gonBalances[sender] = _gonBalances[sender].sub(gonValue) (#858)
- _gonBalances[address(this)] = _gonBalances[address(this)].add(rFee) (#877)
- _gonBalances[recipient] = _gonBalances[recipient].add(gonValue) (#859)
- _gonBalances[sender] = _gonBalances[sender].sub(gonDeduct) (#850)
- _gonBalances[recipient] = _gonBalances[recipient].add(gonValue) (#851)
- buyBackTokens(buybackLimit.div(buybackDivisor)) (#828)
- inSwapAndLiquify = true (#633)
- inSwapAndLiquify = false (#635)
Apply the check-effects-interactions pattern.
Additional information: link
SCIE.burnAutoLP() (#1079-1085) ignores return value by uniswapV2Pair.transfer(owner(),balance) (#1084)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.
Additional information: link
Ownable._lockTime (#270) is never initialized. It is used in:
- Ownable.getUnlockTime() (#321-323)
- Ownable.unlock() (#334-339)
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.
SCIE.addLiquidity(uint256,uint256) (#958-972) ignores return value by uniswapV2Router.addLiquidityETH.value(ethAmount)(address(this),tokenAmount,0,0,address(this),block.timestamp.add(300)) (#964-971)
Ensure that all the return values of the function calls are used.
Additional information: link
ERC20Detailed.constructor(string,string,uint8).name (#518) shadows:
- ERC20Detailed.name() (#527-529) (function)
ERC20Detailed.constructor(string,string,uint8).symbol (#518) shadows:
- ERC20Detailed.symbol() (#535-537) (function)
ERC20Detailed.constructor(string,string,uint8).decimals (#518) shadows:
- ERC20Detailed.decimals() (#551-553) (function)
SCIE._approve(address,address,uint256).owner (#993) shadows:
- Ownable.owner() (#291-293) (function)
Rename the local variables that shadow another component.
Additional information: link
SCIE.setMaster(address) (#723-729) should emit an event for:
- master = _master (#728)
Emit an event for critical parameter changes.
Additional information: link
SCIE.constructor(address,address)._marketingAddress (#654) lacks a zero-check on :
- marketingAddress = _marketingAddress (#659)
SCIE.setMaster(address)._master (#723) lacks a zero-check on :
- master = _master (#728)
SCIE.setLP(address)._lp (#734) lacks a zero-check on :
- lp = _lp (#739)
SCIE.burnBNB(address).burnAddress (#1109) lacks a zero-check on :
- burnAddress.transfer(address(this).balance) (#1110)
Check that the address is not zero.
Additional information: link
Reentrancy in SCIE.constructor(address,address) (#654-685):
External calls:
- uniswapV2PairAddress = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#663-664)
State variables written after the call(s):
- _gonBalances[msg.sender] = TOTAL_GONS (#675)
- _gonsPerFragment = TOTAL_GONS.div(_totalSupply) (#676)
- _isExcluded[owner()] = true (#681)
- _isExcluded[address(this)] = true (#682)
- _totalSupply = INITIAL_FRAGMENTS_SUPPLY (#674)
- initialDistributionFinished = false (#678)
- setLP(uniswapV2PairAddress) (#668)
- lp = _lp (#739)
- setLP(uniswapV2PairAddress) (#668)
- lpContract = ILP(_lp) (#740)
- uniswapV2Pair = _uniswapV2Pair (#672)
- uniswapV2Router = _uniswapV2Router (#666)
Reentrancy in SCIE.swapAndLiquify(uint256) (#881-908):
External calls:
- swapTokensForEth(threequarters) (#893)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp.add(300)) (#932-938)
- addLiquidity(onequarter,sharedETH) (#901)
- uniswapV2Router.addLiquidityETH.value(ethAmount)(address(this),tokenAmount,0,0,address(this),block.timestamp.add(300)) (#964-971)
External calls sending eth:
- addLiquidity(onequarter,sharedETH) (#901)
- uniswapV2Router.addLiquidityETH.value(ethAmount)(address(this),tokenAmount,0,0,address(this),block.timestamp.add(300)) (#964-971)
State variables written after the call(s):
- addLiquidity(onequarter,sharedETH) (#901)
- _allowedFragments[owner][spender] = value (#997)
Reentrancy in SCIE.transferFrom(address,address,uint256) (#783-791):
External calls:
- _transfer(sender,recipient,amount) (#788)
- uniswapV2Router.addLiquidityETH.value(ethAmount)(address(this),tokenAmount,0,0,address(this),block.timestamp.add(300)) (#964-971)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens.value(amount)(0,path,deadAddress,block.timestamp.add(300)) (#949-954)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp.add(300)) (#932-938)
External calls sending eth:
- _transfer(sender,recipient,amount) (#788)
- recipient.transfer(amount) (#918)
- uniswapV2Router.addLiquidityETH.value(ethAmount)(address(this),tokenAmount,0,0,address(this),block.timestamp.add(300)) (#964-971)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens.value(amount)(0,path,deadAddress,block.timestamp.add(300)) (#949-954)
State variables written after the call(s):
- _approve(sender,msg.sender,_allowedFragments[sender][msg.sender].sub(amount)) (#789)
- _allowedFragments[owner][spender] = value (#997)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in SCIE._transfer(address,address,uint256) (#800-835):
External calls:
- swapAndLiquify(numTokensSell) (#822)
- uniswapV2Router.addLiquidityETH.value(ethAmount)(address(this),tokenAmount,0,0,address(this),block.timestamp.add(300)) (#964-971)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp.add(300)) (#932-938)
- buyBackTokens(buybackLimit.div(buybackDivisor)) (#828)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens.value(amount)(0,path,deadAddress,block.timestamp.add(300)) (#949-954)
External calls sending eth:
- swapAndLiquify(numTokensSell) (#822)
- recipient.transfer(amount) (#918)
- uniswapV2Router.addLiquidityETH.value(ethAmount)(address(this),tokenAmount,0,0,address(this),block.timestamp.add(300)) (#964-971)
- buyBackTokens(buybackLimit.div(buybackDivisor)) (#828)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens.value(amount)(0,path,deadAddress,block.timestamp.add(300)) (#949-954)
Event emitted after the call(s):
- Transfer(sender,recipient,amount) (#860)
- _tokenTransfer(from,to,value) (#832)
- Transfer(sender,recipient,amount) (#853)
- _tokenTransfer(from,to,value) (#832)
Reentrancy in SCIE.constructor(address,address) (#654-685):
External calls:
- uniswapV2PairAddress = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#663-664)
Event emitted after the call(s):
- Transfer(address(0x0),msg.sender,_totalSupply) (#684)
Reentrancy in SCIE.rebase(uint256,int256) (#692-717):
External calls:
- lpContract.sync() (#713)
Event emitted after the call(s):
- LogRebase(epoch,_totalSupply) (#715)
Reentrancy in SCIE.swapAndLiquify(uint256) (#881-908):
External calls:
- swapTokensForEth(threequarters) (#893)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp.add(300)) (#932-938)
- addLiquidity(onequarter,sharedETH) (#901)
- uniswapV2Router.addLiquidityETH.value(ethAmount)(address(this),tokenAmount,0,0,address(this),block.timestamp.add(300)) (#964-971)
External calls sending eth:
- addLiquidity(onequarter,sharedETH) (#901)
- uniswapV2Router.addLiquidityETH.value(ethAmount)(address(this),tokenAmount,0,0,address(this),block.timestamp.add(300)) (#964-971)
Event emitted after the call(s):
- Approval(owner,spender,value) (#998)
- addLiquidity(onequarter,sharedETH) (#901)
Reentrancy in SCIE.swapAndLiquify(uint256) (#881-908):
External calls:
- swapTokensForEth(threequarters) (#893)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp.add(300)) (#932-938)
- addLiquidity(onequarter,sharedETH) (#901)
- uniswapV2Router.addLiquidityETH.value(ethAmount)(address(this),tokenAmount,0,0,address(this),block.timestamp.add(300)) (#964-971)
External calls sending eth:
- addLiquidity(onequarter,sharedETH) (#901)
- uniswapV2Router.addLiquidityETH.value(ethAmount)(address(this),tokenAmount,0,0,address(this),block.timestamp.add(300)) (#964-971)
- transferToAddressETH(marketingAddress,sharedETH) (#904)
- recipient.transfer(amount) (#918)
Event emitted after the call(s):
- SwapAndLiquify(threequarters,sharedETH,onequarter) (#906)
Reentrancy in SCIE.transferFrom(address,address,uint256) (#783-791):
External calls:
- _transfer(sender,recipient,amount) (#788)
- uniswapV2Router.addLiquidityETH.value(ethAmount)(address(this),tokenAmount,0,0,address(this),block.timestamp.add(300)) (#964-971)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens.value(amount)(0,path,deadAddress,block.timestamp.add(300)) (#949-954)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp.add(300)) (#932-938)
External calls sending eth:
- _transfer(sender,recipient,amount) (#788)
- recipient.transfer(amount) (#918)
- uniswapV2Router.addLiquidityETH.value(ethAmount)(address(this),tokenAmount,0,0,address(this),block.timestamp.add(300)) (#964-971)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens.value(amount)(0,path,deadAddress,block.timestamp.add(300)) (#949-954)
Event emitted after the call(s):
- Approval(owner,spender,value) (#998)
- _approve(sender,msg.sender,_allowedFragments[sender][msg.sender].sub(amount)) (#789)
Apply the check-effects-interactions pattern.
Additional information: link
Ownable.unlock() (#334-339) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now > _lockTime,Contract is locked until 7 days) (#336)
Avoid relying on block.timestamp.
Additional information: link
SafeMath.mod(uint256,uint256) (#420-423) is never used and should be removed
SafeMathInt.abs(int256) (#496-503) is never used and should be removed
SafeMathInt.add(int256,int256) (#483-491) is never used and should be removed
SafeMathInt.div(int256,int256) (#455-465) is never used and should be removed
SafeMathInt.mul(int256,int256) (#439-450) is never used and should be removed
SafeMathInt.sub(int256,int256) (#470-478) is never used and should be removed
Remove unused functions.
Additional information: link
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#88) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#89) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#106) is not in mixedCase
Function IUniswapV2Router02.WETH() (#129) is not in mixedCase
Parameter SCIE.setMaster(address)._master (#723) is not in mixedCase
Parameter SCIE.setLP(address)._lp (#734) is not in mixedCase
Parameter SCIE.setSwapAndLiquifyEnabled(bool)._enabled (#754) is not in mixedCase
Parameter SCIE.calculateFee(uint256)._amount (#871) is not in mixedCase
Parameter SCIE.enableTransfer(address)._addr (#1065) is not in mixedCase
Parameter SCIE.excludeAddress(address)._addr (#1072) is not in mixedCase
Parameter SCIE.setBuyBackEnabled(bool)._enabled (#1096) is not in mixedCase
Parameter SCIE.setBuyBackLimit(uint256)._buybackLimit (#1100) is not in mixedCase
Parameter SCIE.setBuyBackDivisor(uint256)._buybackDivisor (#1103) is not in mixedCase
Parameter SCIE.setnumTokensSellDivisor(uint256)._numTokensSellDivisor (#1106) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Reentrancy in SCIE._transfer(address,address,uint256) (#800-835):
External calls:
- swapAndLiquify(numTokensSell) (#822)
- recipient.transfer(amount) (#918)
External calls sending eth:
- swapAndLiquify(numTokensSell) (#822)
- recipient.transfer(amount) (#918)
- uniswapV2Router.addLiquidityETH.value(ethAmount)(address(this),tokenAmount,0,0,address(this),block.timestamp.add(300)) (#964-971)
- buyBackTokens(buybackLimit.div(buybackDivisor)) (#828)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens.value(amount)(0,path,deadAddress,block.timestamp.add(300)) (#949-954)
State variables written after the call(s):
- _tokenTransfer(from,to,value) (#832)
- _gonBalances[sender] = _gonBalances[sender].sub(gonValue) (#858)
- _gonBalances[address(this)] = _gonBalances[address(this)].add(rFee) (#877)
- _gonBalances[recipient] = _gonBalances[recipient].add(gonValue) (#859)
- _gonBalances[sender] = _gonBalances[sender].sub(gonDeduct) (#850)
- _gonBalances[recipient] = _gonBalances[recipient].add(gonValue) (#851)
- buyBackTokens(buybackLimit.div(buybackDivisor)) (#828)
- inSwapAndLiquify = true (#633)
- inSwapAndLiquify = false (#635)
Event emitted after the call(s):
- Transfer(sender,recipient,amount) (#860)
- _tokenTransfer(from,to,value) (#832)
- Transfer(sender,recipient,amount) (#853)
- _tokenTransfer(from,to,value) (#832)
Reentrancy in SCIE.swapAndLiquify(uint256) (#881-908):
External calls:
- transferToAddressETH(marketingAddress,sharedETH) (#904)
- recipient.transfer(amount) (#918)
External calls sending eth:
- addLiquidity(onequarter,sharedETH) (#901)
- uniswapV2Router.addLiquidityETH.value(ethAmount)(address(this),tokenAmount,0,0,address(this),block.timestamp.add(300)) (#964-971)
- transferToAddressETH(marketingAddress,sharedETH) (#904)
- recipient.transfer(amount) (#918)
Event emitted after the call(s):
- SwapAndLiquify(threequarters,sharedETH,onequarter) (#906)
Reentrancy in SCIE.transferFrom(address,address,uint256) (#783-791):
External calls:
- _transfer(sender,recipient,amount) (#788)
- recipient.transfer(amount) (#918)
External calls sending eth:
- _transfer(sender,recipient,amount) (#788)
- recipient.transfer(amount) (#918)
- uniswapV2Router.addLiquidityETH.value(ethAmount)(address(this),tokenAmount,0,0,address(this),block.timestamp.add(300)) (#964-971)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens.value(amount)(0,path,deadAddress,block.timestamp.add(300)) (#949-954)
State variables written after the call(s):
- _approve(sender,msg.sender,_allowedFragments[sender][msg.sender].sub(amount)) (#789)
- _allowedFragments[owner][spender] = value (#997)
Event emitted after the call(s):
- Approval(owner,spender,value) (#998)
- _approve(sender,msg.sender,_allowedFragments[sender][msg.sender].sub(amount)) (#789)
Apply the check-effects-interactions pattern.
Additional information: link
Variable IUniswapV2Router02.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#134) is too similar to IUniswapV2Router02.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#135)
Prevent variables from having similar names.
Additional information: link
SCIE.slitherConstructorVariables() (#563-1114) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#621)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
SafeMathInt.MAX_INT256 (#434) is never used in SafeMathInt (#432-504)
SCIE.privateSaleDropCompleted (#630) is never used in SCIE (#563-1114)
Remove unused state variables.
Additional information: link
Ownable._lockTime (#270) should be constant
SCIE.deadAddress (#621) should be constant
SCIE.privateSaleDropCompleted (#630) should be constant
SCIE.transactionTax (#613) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#316-319)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#321-323)
lock() should be declared external:
- Ownable.lock() (#327-332)
unlock() should be declared external:
- Ownable.unlock() (#334-339)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#345-347)
name() should be declared external:
- ERC20Detailed.name() (#527-529)
symbol() should be declared external:
- ERC20Detailed.symbol() (#535-537)
decimals() should be declared external:
- ERC20Detailed.decimals() (#551-553)
setSwapAndLiquifyEnabled(bool) should be declared external:
- SCIE.setSwapAndLiquifyEnabled(bool) (#754-757)
increaseAllowance(address,uint256) should be declared external:
- SCIE.increaseAllowance(address,uint256) (#983-990)
approve(address,uint256) should be declared external:
- SCIE.approve(address,uint256) (#1013-1020)
allowance(address,address) should be declared external:
- SCIE.allowance(address,address) (#1029-1035)
setBuyBackEnabled(bool) should be declared external:
- SCIE.setBuyBackEnabled(bool) (#1096-1098)
setBuyBackLimit(uint256) should be declared external:
- SCIE.setBuyBackLimit(uint256) (#1100-1101)
setBuyBackDivisor(uint256) should be declared external:
- SCIE.setBuyBackDivisor(uint256) (#1103-1104)
setnumTokensSellDivisor(uint256) should be declared external:
- SCIE.setnumTokensSellDivisor(uint256) (#1106-1107)
Use the external attribute for functions never called from the contract.
Additional information: link
Average 30d PancakeSwap volume is less than $100. Token is either dead or inactive.
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 number of swaps.
Unable to find token contract audit
Unable to find audit link on the website
Unable to find whitepaper link on the website
Young tokens have high risks of price dump / death
Young tokens have high risks of scam / price dump / death
Young tokens have high risks of price dump / death
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
Last post in Twitter was more than 30 days ago
Unable to find Discord account