A decentralized staking platform operating on the binance smart chain. Partnering with other projects and tokens within the given chains of operation. Seeking to cross aggregate our utilities to several smart chains. Coinflect is seeking to become a well known affiliate company within the decentralized crypto space.
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Reentrancy in Coinflect._transfer(address,address,uint256) (#1557-1584):
External calls:
- pinkAntiBot.onPreTransferCheck(_sender,_recipient,_amount) (#1562)
- swapAndLiquify() (#1574)
- IUniswapV2Router02(unirouter).addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1635-1642)
- IUniswapV2Router02(unirouter).swapExactTokensForETH(tokenAmount,0,path,address(this),block.timestamp.add(180)) (#1621-1627)
External calls sending eth:
- swapAndLiquify() (#1574)
- IUniswapV2Router02(unirouter).addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1635-1642)
- address(feeRecipient).transfer(address(this).balance) (#1599)
State variables written after the call(s):
- super._transfer(_sender,feeRecipient,tFee.mul(operationFee).div(liquidityFee.add(operationFee))) (#1579)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#529)
- _balances[recipient] = _balances[recipient].add(amount) (#530)
- super._transfer(_sender,address(this),tFee.sub(tFee.mul(operationFee).div(liquidityFee.add(operationFee)))) (#1580)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#529)
- _balances[recipient] = _balances[recipient].add(amount) (#530)
- super._transfer(_sender,_recipient,_amount) (#1583)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#529)
- _balances[recipient] = _balances[recipient].add(amount) (#530)
Reentrancy in Coinflect.swapAndLiquify() (#1590-1608):
External calls:
- _swapTokensForETH(half) (#1602)
- IUniswapV2Router02(unirouter).swapExactTokensForETH(tokenAmount,0,path,address(this),block.timestamp.add(180)) (#1621-1627)
- _addLiquidity(half,address(this).balance) (#1605)
- IUniswapV2Router02(unirouter).addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1635-1642)
External calls sending eth:
- address(feeRecipient).transfer(address(this).balance) (#1599)
- _addLiquidity(half,address(this).balance) (#1605)
- IUniswapV2Router02(unirouter).addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1635-1642)
State variables written after the call(s):
- inSwap = false (#1607)
Apply the check-effects-interactions pattern.
Additional information: link
Coinflect._transfer(address,address,uint256) (#1557-1584) performs a multiplication on the result of a division:
-tFee = _amount.mul(liquidityFee.add(operationFee)).div(MAX_FEE) (#1577)
-super._transfer(_sender,feeRecipient,tFee.mul(operationFee).div(liquidityFee.add(operationFee))) (#1579)
Coinflect._transfer(address,address,uint256) (#1557-1584) performs a multiplication on the result of a division:
-tFee = _amount.mul(liquidityFee.add(operationFee)).div(MAX_FEE) (#1577)
-super._transfer(_sender,address(this),tFee.sub(tFee.mul(operationFee).div(liquidityFee.add(operationFee)))) (#1580)
Consider ordering multiplication before division.
Additional information: link
Coinflect._swapTokensForETH(uint256) (#1610-1628) ignores return value by IUniswapV2Router02(unirouter).swapExactTokensForETH(tokenAmount,0,path,address(this),block.timestamp.add(180)) (#1621-1627)
Coinflect._addLiquidity(uint256,uint256) (#1630-1643) ignores return value by IUniswapV2Router02(unirouter).addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1635-1642)
Ensure that all the return values of the function calls are used.
Additional information: link
Coinflect.setLiquidityFee(uint256) (#1504-1507) should emit an event for:
- liquidityFee = _percentage (#1506)
Coinflect.setOperationFee(uint256) (#1509-1512) should emit an event for:
- operationFee = _percentage (#1511)
Coinflect.setMinimumSwapAmount(uint256) (#1523-1525) should emit an event for:
- minSwapAmount = _amount (#1524)
Emit an event for critical parameter changes.
Additional information: link
Coinflect.setFeeRecipient(address)._feeRecipient (#1514) lacks a zero-check on :
- feeRecipient = _feeRecipient (#1515)
Coinflect.setUniswapRouter(address)._router (#1527) lacks a zero-check on :
- unirouter = _router (#1528)
Check that the address is not zero.
Additional information: link
Reentrancy in Coinflect._transfer(address,address,uint256) (#1557-1584):
External calls:
- pinkAntiBot.onPreTransferCheck(_sender,_recipient,_amount) (#1562)
State variables written after the call(s):
- super._transfer(_sender,_recipient,_amount) (#1568)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#529)
- _balances[recipient] = _balances[recipient].add(amount) (#530)
Reentrancy in Coinflect._transfer(address,address,uint256) (#1557-1584):
External calls:
- pinkAntiBot.onPreTransferCheck(_sender,_recipient,_amount) (#1562)
- swapAndLiquify() (#1574)
- IUniswapV2Router02(unirouter).addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1635-1642)
- IUniswapV2Router02(unirouter).swapExactTokensForETH(tokenAmount,0,path,address(this),block.timestamp.add(180)) (#1621-1627)
External calls sending eth:
- swapAndLiquify() (#1574)
- IUniswapV2Router02(unirouter).addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1635-1642)
- address(feeRecipient).transfer(address(this).balance) (#1599)
State variables written after the call(s):
- swapAndLiquify() (#1574)
- _allowances[owner][spender] = amount (#591)
Reentrancy in Coinflect.addLiquidity(uint256) (#1547-1551):
External calls:
- IERC20(address(this)).safeTransferFrom(msg.sender,address(this),_amount) (#1549)
- _addLiquidity(_amount,msg.value) (#1550)
- IUniswapV2Router02(unirouter).addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1635-1642)
External calls sending eth:
- _addLiquidity(_amount,msg.value) (#1550)
- IUniswapV2Router02(unirouter).addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1635-1642)
State variables written after the call(s):
- _addLiquidity(_amount,msg.value) (#1550)
- _allowances[owner][spender] = amount (#591)
Reentrancy in Coinflect.constructor(address) (#1493-1502):
External calls:
- pinkAntiBot.setTokenOwner(msg.sender) (#1495)
State variables written after the call(s):
- _mint(msg.sender,uint256(42000000000000000000000000000)) (#1501)
- _balances[account] = _balances[account].add(amount) (#549)
- _mint(msg.sender,uint256(42000000000000000000000000000)) (#1501)
- _totalSupply = _totalSupply.add(amount) (#548)
- feeRecipient = msg.sender (#1497)
- isExcludedFromFee[address(this)] = true (#1498)
- isExcludedFromFee[msg.sender] = true (#1499)
Reentrancy in Coinflect.swapAndLiquify() (#1590-1608):
External calls:
- _swapTokensForETH(half) (#1602)
- IUniswapV2Router02(unirouter).swapExactTokensForETH(tokenAmount,0,path,address(this),block.timestamp.add(180)) (#1621-1627)
- _addLiquidity(half,address(this).balance) (#1605)
- IUniswapV2Router02(unirouter).addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1635-1642)
External calls sending eth:
- address(feeRecipient).transfer(address(this).balance) (#1599)
- _addLiquidity(half,address(this).balance) (#1605)
- IUniswapV2Router02(unirouter).addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1635-1642)
State variables written after the call(s):
- _addLiquidity(half,address(this).balance) (#1605)
- _allowances[owner][spender] = amount (#591)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in Coinflect._transfer(address,address,uint256) (#1557-1584):
External calls:
- pinkAntiBot.onPreTransferCheck(_sender,_recipient,_amount) (#1562)
Event emitted after the call(s):
- Transfer(sender,recipient,amount) (#531)
- super._transfer(_sender,_recipient,_amount) (#1568)
Reentrancy in Coinflect._transfer(address,address,uint256) (#1557-1584):
External calls:
- pinkAntiBot.onPreTransferCheck(_sender,_recipient,_amount) (#1562)
- swapAndLiquify() (#1574)
- IUniswapV2Router02(unirouter).addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1635-1642)
- IUniswapV2Router02(unirouter).swapExactTokensForETH(tokenAmount,0,path,address(this),block.timestamp.add(180)) (#1621-1627)
External calls sending eth:
- swapAndLiquify() (#1574)
- IUniswapV2Router02(unirouter).addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1635-1642)
- address(feeRecipient).transfer(address(this).balance) (#1599)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#592)
- swapAndLiquify() (#1574)
- Transfer(sender,recipient,amount) (#531)
- super._transfer(_sender,_recipient,_amount) (#1583)
- Transfer(sender,recipient,amount) (#531)
- super._transfer(_sender,feeRecipient,tFee.mul(operationFee).div(liquidityFee.add(operationFee))) (#1579)
- Transfer(sender,recipient,amount) (#531)
- super._transfer(_sender,address(this),tFee.sub(tFee.mul(operationFee).div(liquidityFee.add(operationFee)))) (#1580)
Reentrancy in Coinflect.addLiquidity(uint256) (#1547-1551):
External calls:
- IERC20(address(this)).safeTransferFrom(msg.sender,address(this),_amount) (#1549)
- _addLiquidity(_amount,msg.value) (#1550)
- IUniswapV2Router02(unirouter).addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1635-1642)
External calls sending eth:
- _addLiquidity(_amount,msg.value) (#1550)
- IUniswapV2Router02(unirouter).addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1635-1642)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#592)
- _addLiquidity(_amount,msg.value) (#1550)
Reentrancy in Coinflect.constructor(address) (#1493-1502):
External calls:
- pinkAntiBot.setTokenOwner(msg.sender) (#1495)
Event emitted after the call(s):
- Transfer(address(0),account,amount) (#550)
- _mint(msg.sender,uint256(42000000000000000000000000000)) (#1501)
Reentrancy in Coinflect.swapAndLiquify() (#1590-1608):
External calls:
- _swapTokensForETH(half) (#1602)
- IUniswapV2Router02(unirouter).swapExactTokensForETH(tokenAmount,0,path,address(this),block.timestamp.add(180)) (#1621-1627)
- _addLiquidity(half,address(this).balance) (#1605)
- IUniswapV2Router02(unirouter).addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1635-1642)
External calls sending eth:
- address(feeRecipient).transfer(address(this).balance) (#1599)
- _addLiquidity(half,address(this).balance) (#1605)
- IUniswapV2Router02(unirouter).addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1635-1642)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#592)
- _addLiquidity(half,address(this).balance) (#1605)
Apply the check-effects-interactions pattern.
Additional information: link
Address.isContract(address) (#647-656) uses assembly
- INLINE ASM (#654)
Address._verifyCallResult(bool,bytes,string) (#792-809) uses assembly
- INLINE ASM (#801-804)
Do not use evm assembly.
Additional information: link
Address.functionCall(address,bytes) (#700-702) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#725-727) is never used and should be removed
Address.functionDelegateCall(address,bytes) (#774-776) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (#784-790) is never used and should be removed
Address.functionStaticCall(address,bytes) (#750-752) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (#760-766) is never used and should be removed
Address.sendValue(address,uint256) (#674-680) is never used and should be removed
Context._msgData() (#24-27) is never used and should be removed
ERC20._burn(address,uint256) (#564-572) is never used and should be removed
ERC20._setupDecimals(uint8) (#602-604) is never used and should be removed
EnumerableSet._add(EnumerableSet.Set,bytes32) (#1002-1012) is never used and should be removed
EnumerableSet._at(EnumerableSet.Set,uint256) (#1078-1081) is never used and should be removed
EnumerableSet._contains(EnumerableSet.Set,bytes32) (#1057-1059) is never used and should be removed
EnumerableSet._length(EnumerableSet.Set) (#1064-1066) is never used and should be removed
EnumerableSet._remove(EnumerableSet.Set,bytes32) (#1020-1052) is never used and should be removed
EnumerableSet.add(EnumerableSet.AddressSet,address) (#1149-1151) is never used and should be removed
EnumerableSet.add(EnumerableSet.Bytes32Set,bytes32) (#1095-1097) is never used and should be removed
EnumerableSet.add(EnumerableSet.UintSet,uint256) (#1204-1206) is never used and should be removed
EnumerableSet.at(EnumerableSet.AddressSet,uint256) (#1187-1189) is never used and should be removed
EnumerableSet.at(EnumerableSet.Bytes32Set,uint256) (#1133-1135) is never used and should be removed
EnumerableSet.at(EnumerableSet.UintSet,uint256) (#1242-1244) is never used and should be removed
EnumerableSet.contains(EnumerableSet.AddressSet,address) (#1166-1168) is never used and should be removed
EnumerableSet.contains(EnumerableSet.Bytes32Set,bytes32) (#1112-1114) is never used and should be removed
EnumerableSet.contains(EnumerableSet.UintSet,uint256) (#1221-1223) is never used and should be removed
EnumerableSet.length(EnumerableSet.AddressSet) (#1173-1175) is never used and should be removed
EnumerableSet.length(EnumerableSet.Bytes32Set) (#1119-1121) is never used and should be removed
EnumerableSet.length(EnumerableSet.UintSet) (#1228-1230) is never used and should be removed
EnumerableSet.remove(EnumerableSet.AddressSet,address) (#1159-1161) is never used and should be removed
EnumerableSet.remove(EnumerableSet.Bytes32Set,bytes32) (#1105-1107) is never used and should be removed
EnumerableSet.remove(EnumerableSet.UintSet,uint256) (#1214-1216) is never used and should be removed
SafeERC20.safeApprove(IERC20,address,uint256) (#843-852) is never used and should be removed
SafeERC20.safeDecreaseAllowance(IERC20,address,uint256) (#859-862) is never used and should be removed
SafeERC20.safeIncreaseAllowance(IERC20,address,uint256) (#854-857) is never used and should be removed
SafeERC20.safeTransfer(IERC20,address,uint256) (#828-830) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#295-298) is never used and should be removed
SafeMath.mod(uint256,uint256) (#257-260) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#315-318) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (#129-133) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (#165-168) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (#175-178) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (#150-158) is never used and should be removed
SafeMath.trySub(uint256,uint256) (#140-143) is never used and should be removed
Remove unused functions.
Additional information: link
Pragma version^0.7.3 (#7) allows old versions
solc-0.7.3 is not recommended for deployment
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 Address.sendValue(address,uint256) (#674-680):
- (success) = recipient.call{value: amount}() (#678)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (#735-742):
- (success,returndata) = target.call{value: value}(data) (#740)
Low level call in Address.functionStaticCall(address,bytes,string) (#760-766):
- (success,returndata) = target.staticcall(data) (#764)
Low level call in Address.functionDelegateCall(address,bytes,string) (#784-790):
- (success,returndata) = target.delegatecall(data) (#788)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Function IUniswapV2Router01.WETH() (#1268) is not in mixedCase
Function IUniswapPair.DOMAIN_SEPARATOR() (#1421) is not in mixedCase
Function IUniswapPair.PERMIT_TYPEHASH() (#1422) is not in mixedCase
Function IUniswapPair.MINIMUM_LIQUIDITY() (#1439) is not in mixedCase
Parameter Coinflect.setLiquidityFee(uint256)._percentage (#1504) is not in mixedCase
Parameter Coinflect.setOperationFee(uint256)._percentage (#1509) is not in mixedCase
Parameter Coinflect.setFeeRecipient(address)._feeRecipient (#1514) is not in mixedCase
Parameter Coinflect.setMinimumSwapAmount(uint256)._amount (#1523) is not in mixedCase
Parameter Coinflect.setUniswapRouter(address)._router (#1527) is not in mixedCase
Parameter Coinflect.excludeFromFee(address)._account (#1531) is not in mixedCase
Parameter Coinflect.includeFromFee(address)._account (#1535) is not in mixedCase
Parameter Coinflect.addLiquidity(uint256)._amount (#1547) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#25)" inContext (#19-28)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Reentrancy in Coinflect._transfer(address,address,uint256) (#1557-1584):
External calls:
- swapAndLiquify() (#1574)
- address(feeRecipient).transfer(address(this).balance) (#1599)
External calls sending eth:
- swapAndLiquify() (#1574)
- IUniswapV2Router02(unirouter).addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1635-1642)
- address(feeRecipient).transfer(address(this).balance) (#1599)
State variables written after the call(s):
- super._transfer(_sender,feeRecipient,tFee.mul(operationFee).div(liquidityFee.add(operationFee))) (#1579)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#529)
- _balances[recipient] = _balances[recipient].add(amount) (#530)
- super._transfer(_sender,address(this),tFee.sub(tFee.mul(operationFee).div(liquidityFee.add(operationFee)))) (#1580)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#529)
- _balances[recipient] = _balances[recipient].add(amount) (#530)
- super._transfer(_sender,_recipient,_amount) (#1583)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#529)
- _balances[recipient] = _balances[recipient].add(amount) (#530)
Event emitted after the call(s):
- Transfer(sender,recipient,amount) (#531)
- super._transfer(_sender,feeRecipient,tFee.mul(operationFee).div(liquidityFee.add(operationFee))) (#1579)
- Transfer(sender,recipient,amount) (#531)
- super._transfer(_sender,_recipient,_amount) (#1583)
- Transfer(sender,recipient,amount) (#531)
- super._transfer(_sender,address(this),tFee.sub(tFee.mul(operationFee).div(liquidityFee.add(operationFee)))) (#1580)
Reentrancy in Coinflect.swapAndLiquify() (#1590-1608):
External calls:
- address(feeRecipient).transfer(address(this).balance) (#1599)
State variables written after the call(s):
- _swapTokensForETH(half) (#1602)
- _allowances[owner][spender] = amount (#591)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#592)
- _swapTokensForETH(half) (#1602)
Reentrancy in Coinflect.swapAndLiquify() (#1590-1608):
External calls:
- address(feeRecipient).transfer(address(this).balance) (#1599)
External calls sending eth:
- address(feeRecipient).transfer(address(this).balance) (#1599)
- _addLiquidity(half,address(this).balance) (#1605)
- IUniswapV2Router02(unirouter).addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#1635-1642)
State variables written after the call(s):
- _addLiquidity(half,address(this).balance) (#1605)
- _allowances[owner][spender] = amount (#591)
- inSwap = false (#1607)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#592)
- _addLiquidity(half,address(this).balance) (#1605)
Apply the check-effects-interactions pattern.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#1273) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#1274)
Prevent variables from having similar names.
Additional information: link
Coinflect.constructor(address) (#1493-1502) uses literals with too many digits:
- _mint(msg.sender,uint256(42000000000000000000000000000)) (#1501)
Coinflect.slitherConstructorVariables() (#1470-1663) uses literals with too many digits:
- minSwapAmount = 100000000000000000000000 (#1481)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
Coinflect.maxTxPercentage (#1482) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
name() should be declared external:
- ERC20.name() (#379-381)
symbol() should be declared external:
- ERC20.symbol() (#387-389)
decimals() should be declared external:
- ERC20.decimals() (#404-406)
totalSupply() should be declared external:
- ERC20.totalSupply() (#411-413)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#430-433)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (#438-440)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#449-452)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#467-471)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#485-488)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#504-507)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#934-937)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#943-947)
Use the external attribute for functions never called from the contract.
Additional information: link
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
Unable to find token contract audit
Unable to find Telegram link on the website
Unable to find Twitter link on the website
Unable to find audit link on the website
Unable to find token on CoinHunt
Additional information: link
Alexa traffic rank is very low
Additional information: link
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
Young tokens have high risks of price dump / death
Token has relatively low CoinGecko rank
Token has relatively low CoinMarketCap rank
Young tokens have high risks of price dump / death
Twitter account has relatively few followers