TRAVEL is the first web 3.0 lifestyle app that implements the concept of "Travel to Earn". Users can make great earnings by traveling around the world! There are numerous POI (Points of Interest) in every city in the world. The more POI you visit and the farther the visited POI are from each other, the higher your "Travel Score" will be, so you will earn higher rewards. Our mobile app shows you all the POIs on the map and the rewards you get for visiting them.
Reentrancy in TRAVEL._transferFrom(address,address,uint256) (#448-472):
External calls:
- swapBack() (#456)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,liquidityReceiver,block.timestamp) (#513-520)
- router.addLiquidity(address(this),busdToken,tokenAmount,busdAmount,0,0,liquidityReceiver,block.timestamp) (#523-532)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,receiver,block.timestamp) (#540-546)
- router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,receiver,block.timestamp) (#554-560)
External calls sending eth:
- swapBack() (#456)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,liquidityReceiver,block.timestamp) (#513-520)
State variables written after the call(s):
- _gonBalances[sender] = _gonBalances[sender].sub(gonAmount) (#459)
Reentrancy in TRAVEL._transferFrom(address,address,uint256) (#448-472):
External calls:
- swapBack() (#456)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,liquidityReceiver,block.timestamp) (#513-520)
- router.addLiquidity(address(this),busdToken,tokenAmount,busdAmount,0,0,liquidityReceiver,block.timestamp) (#523-532)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,receiver,block.timestamp) (#540-546)
- router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,receiver,block.timestamp) (#554-560)
- gonAmountReceived = takeFee(sender,recipient,gonAmount) (#461)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,liquidityReceiver,block.timestamp) (#513-520)
- router.addLiquidity(address(this),busdToken,tokenAmount,busdAmount,0,0,liquidityReceiver,block.timestamp) (#523-532)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,receiver,block.timestamp) (#540-546)
- router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,receiver,block.timestamp) (#554-560)
External calls sending eth:
- swapBack() (#456)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,liquidityReceiver,block.timestamp) (#513-520)
- gonAmountReceived = takeFee(sender,recipient,gonAmount) (#461)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,liquidityReceiver,block.timestamp) (#513-520)
State variables written after the call(s):
- _gonBalances[recipient] = _gonBalances[recipient].add(gonAmountReceived) (#463)
- gonAmountReceived = takeFee(sender,recipient,gonAmount) (#461)
- _gonBalances[from] = _gonBalances[from].sub(gonAmount) (#440)
- _gonBalances[to] = _gonBalances[to].add(gonAmount) (#441)
- _gonBalances[address(this)] = _gonBalances[address(this)].add(feeAmount) (#594)
- _gonBalances[sender] = _gonBalances[sender].sub(gonAmount) (#459)
- _gonBalances[recipient] = _gonBalances[recipient].add(gonAmountReceived) (#463)
- gonAmountReceived = takeFee(sender,recipient,gonAmount) (#461)
- inSwap = true (#324)
- inSwap = false (#326)
Apply the check-effects-interactions pattern.
Additional information: link
Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains
Contract ownership is not renounced (belongs to a wallet)
TRAVEL.swapBack() (#563-586) performs a multiplication on the result of a division:
-contractTokenBalance = _gonBalances[address(this)].div(_gonsPerFragment) (#567)
-amountToLiquify = contractTokenBalance.mul(dynamicLiquidityFee.mul(2)).div(realTotalFee) (#569)
TRAVEL.swapBack() (#563-586) performs a multiplication on the result of a division:
-contractTokenBalance = _gonBalances[address(this)].div(_gonsPerFragment) (#567)
-amountToRFV = contractTokenBalance.mul(buyFeeRFV.mul(2).add(sellFeeRFVAdded)).div(realTotalFee) (#570)
TRAVEL.takeFee(address,address,uint256) (#588-601) performs a multiplication on the result of a division:
-_transferFrom(address(this),address(0x000000000000000000000000000000000000dEaD),(gonAmount.div(_gonsPerFragment)).mul(burnFee).div(100)) (#596)
TRAVEL.setSwapBackSettings(bool,uint256,uint256) (#669-672) performs a multiplication on the result of a division:
-gonSwapThreshold = TOTAL_GONS.div(_denom).mul(_num) (#671)
Consider ordering multiplication before division.
Additional information: link
Pragma version^0.7.4 (#3) allows old versions
solc-0.7.4 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
TRAVEL.DEAD (#297) should be constant
TRAVEL.ZERO (#298) should be constant
TRAVEL.burnFee (#310) should be constant
TRAVEL.busdToken (#303) should be constant
TRAVEL.buyFeeRFV (#311) should be constant
TRAVEL.feeDenominator (#316) should be constant
TRAVEL.liquidityFee (#308) should be constant
TRAVEL.rewardYield (#283) should be constant
TRAVEL.rewardYieldDenominator (#284) should be constant
TRAVEL.sellFeeRFVAdded (#313) should be constant
TRAVEL.sellFeeTreasuryAdded (#312) should be constant
TRAVEL.treasuryFee (#309) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
name() should be declared external:
- ERC20Detailed.name() (#155-157)
symbol() should be declared external:
- ERC20Detailed.symbol() (#159-161)
decimals() should be declared external:
- ERC20Detailed.decimals() (#163-165)
owner() should be declared external:
- Ownable.owner() (#250-252)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#259-262)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#264-266)
manualSync() should be declared external:
- TRAVEL.manualSync() (#427-431)
Use the external attribute for functions never called from the contract.
Additional information: link
Contract name (Travel-to-Earn) contains non-alphanumeric characters.
Not a direct threat, but may indicate unreliable intentions of developer. Non-alphanumeric chars (,.;!#*&") are extremely rare among low risk tokens.
Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#176) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#177)
Prevent variables from having similar names.
Additional information: link
TRAVEL.constructor() (#341-368) ignores return value by IERC20(busdToken).approve(address(router),uint256(- 1)) (#363)
TRAVEL.constructor() (#341-368) ignores return value by IERC20(busdToken).approve(address(pairBusd),uint256(- 1)) (#364)
TRAVEL.constructor() (#341-368) ignores return value by IERC20(busdToken).approve(address(this),uint256(- 1)) (#365)
TRAVEL.getLiquidityBacking(uint256) (#415-421) ignores return value by liquidityBalance.add(balanceOf(_markerPairs[i]).div(10 ** 9)) (#418)
TRAVEL._addLiquidity(uint256,uint256) (#512-521) ignores return value by router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,liquidityReceiver,block.timestamp) (#513-520)
TRAVEL._addLiquidityBusd(uint256,uint256) (#522-533) ignores return value by router.addLiquidity(address(this),busdToken,tokenAmount,busdAmount,0,0,liquidityReceiver,block.timestamp) (#523-532)
Ensure that all the return values of the function calls are used.
Additional information: link
TRAVEL.setTargetLiquidity(uint256,uint256) (#664-667) should emit an event for:
- targetLiquidity = target (#665)
- targetLiquidityDenominator = accuracy (#666)
TRAVEL.setSwapBackSettings(bool,uint256,uint256) (#669-672) should emit an event for:
- gonSwapThreshold = TOTAL_GONS.div(_denom).mul(_num) (#671)
Emit an event for critical parameter changes.
Additional information: link
TRAVEL.setFeeReceivers(address,address,address)._liquidityReceiver (#674) lacks a zero-check on :
- liquidityReceiver = _liquidityReceiver (#675)
TRAVEL.setFeeReceivers(address,address,address)._treasuryReceiver (#674) lacks a zero-check on :
- treasuryReceiver = _treasuryReceiver (#676)
TRAVEL.setFeeReceivers(address,address,address)._riskFreeValueReceiver (#674) lacks a zero-check on :
- riskFreeValueReceiver = _riskFreeValueReceiver (#677)
TRAVEL.clearStuckBalance(address)._receiver (#680) lacks a zero-check on :
- address(_receiver).transfer(balance) (#682)
Check that the address is not zero.
Additional information: link
TRAVEL.manualSync() (#427-431) has external calls inside a loop: InterfaceLP(_markerPairs[i]).sync() (#429)
Favor pull over push strategy for external calls.
Additional information: link
Reentrancy in TRAVEL.constructor() (#341-368):
External calls:
- pair = IDEXFactory(router.factory()).createPair(address(this),router.WETH()) (#343)
- pairBusd = IDEXFactory(router.factory()).createPair(address(this),busdToken) (#344)
State variables written after the call(s):
- _allowedFragments[address(this)][address(router)] = uint256(- 1) (#346)
- _allowedFragments[address(this)][pair] = uint256(- 1) (#347)
- _allowedFragments[address(this)][address(this)] = uint256(- 1) (#348)
- _allowedFragments[address(this)][pairBusd] = uint256(- 1) (#349)
- _gonBalances[msg.sender] = TOTAL_GONS (#355)
- _gonsPerFragment = TOTAL_GONS.div(_totalSupply) (#356)
- _isFeeExempt[treasuryReceiver] = true (#358)
- _isFeeExempt[riskFreeValueReceiver] = true (#359)
- _isFeeExempt[address(this)] = true (#360)
- _isFeeExempt[msg.sender] = true (#361)
- setAutomatedMarketMakerPair(pair,true) (#351)
- _markerPairs.push(_pair) (#644)
- _markerPairs[i] = _markerPairs[_markerPairs.length - 1] (#649)
- _markerPairs.pop() (#650)
- setAutomatedMarketMakerPair(pairBusd,true) (#352)
- _markerPairs.push(_pair) (#644)
- _markerPairs[i] = _markerPairs[_markerPairs.length - 1] (#649)
- _markerPairs.pop() (#650)
- _totalSupply = INITIAL_FRAGMENTS_SUPPLY (#354)
- setAutomatedMarketMakerPair(pair,true) (#351)
- automatedMarketMakerPairs[_pair] = _value (#641)
- setAutomatedMarketMakerPair(pairBusd,true) (#352)
- automatedMarketMakerPairs[_pair] = _value (#641)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in TRAVEL._swapAndLiquify(uint256) (#485-510):
External calls:
- _swapTokensForBNB(half,address(this)) (#492)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,receiver,block.timestamp) (#540-546)
- _addLiquidity(otherHalf,newBalance) (#496)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,liquidityReceiver,block.timestamp) (#513-520)
External calls sending eth:
- _addLiquidity(otherHalf,newBalance) (#496)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,liquidityReceiver,block.timestamp) (#513-520)
Event emitted after the call(s):
- SwapAndLiquify(half,newBalance,otherHalf) (#498)
Reentrancy in TRAVEL._swapAndLiquify(uint256) (#485-510):
External calls:
- _swapTokensForBusd(half,address(this)) (#502)
- router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,receiver,block.timestamp) (#554-560)
- _addLiquidityBusd(otherHalf,newBalance_scope_1) (#506)
- router.addLiquidity(address(this),busdToken,tokenAmount,busdAmount,0,0,liquidityReceiver,block.timestamp) (#523-532)
Event emitted after the call(s):
- SwapAndLiquifyBusd(half,newBalance_scope_1,otherHalf) (#508)
Reentrancy in TRAVEL._transferFrom(address,address,uint256) (#448-472):
External calls:
- swapBack() (#456)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,liquidityReceiver,block.timestamp) (#513-520)
- router.addLiquidity(address(this),busdToken,tokenAmount,busdAmount,0,0,liquidityReceiver,block.timestamp) (#523-532)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,receiver,block.timestamp) (#540-546)
- router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,receiver,block.timestamp) (#554-560)
- gonAmountReceived = takeFee(sender,recipient,gonAmount) (#461)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,liquidityReceiver,block.timestamp) (#513-520)
- router.addLiquidity(address(this),busdToken,tokenAmount,busdAmount,0,0,liquidityReceiver,block.timestamp) (#523-532)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,receiver,block.timestamp) (#540-546)
- router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,receiver,block.timestamp) (#554-560)
External calls sending eth:
- swapBack() (#456)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,liquidityReceiver,block.timestamp) (#513-520)
- gonAmountReceived = takeFee(sender,recipient,gonAmount) (#461)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,liquidityReceiver,block.timestamp) (#513-520)
Event emitted after the call(s):
- SwapAndLiquify(half,newBalance,otherHalf) (#498)
- gonAmountReceived = takeFee(sender,recipient,gonAmount) (#461)
- SwapAndLiquifyBusd(half,newBalance_scope_1,otherHalf) (#508)
- gonAmountReceived = takeFee(sender,recipient,gonAmount) (#461)
- SwapBack(contractTokenBalance,amountToLiquify,amountToRFV,amountToTreasury) (#585)
- gonAmountReceived = takeFee(sender,recipient,gonAmount) (#461)
- Transfer(from,to,amount) (#443)
- gonAmountReceived = takeFee(sender,recipient,gonAmount) (#461)
- Transfer(sender,address(this),feeAmount.div(_gonsPerFragment)) (#598)
- gonAmountReceived = takeFee(sender,recipient,gonAmount) (#461)
- Transfer(sender,recipient,gonAmountReceived.div(_gonsPerFragment)) (#465-469)
- Transfer(sender,recipient,gonAmountReceived.div(_gonsPerFragment)) (#465-469)
- gonAmountReceived = takeFee(sender,recipient,gonAmount) (#461)
Reentrancy in TRAVEL.constructor() (#341-368):
External calls:
- pair = IDEXFactory(router.factory()).createPair(address(this),router.WETH()) (#343)
- pairBusd = IDEXFactory(router.factory()).createPair(address(this),busdToken) (#344)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(_pair,_value) (#656)
- setAutomatedMarketMakerPair(pairBusd,true) (#352)
- SetAutomatedMarketMakerPair(_pair,_value) (#656)
- setAutomatedMarketMakerPair(pair,true) (#351)
Reentrancy in TRAVEL.constructor() (#341-368):
External calls:
- pair = IDEXFactory(router.factory()).createPair(address(this),router.WETH()) (#343)
- pairBusd = IDEXFactory(router.factory()).createPair(address(this),busdToken) (#344)
- IERC20(busdToken).approve(address(router),uint256(- 1)) (#363)
- IERC20(busdToken).approve(address(pairBusd),uint256(- 1)) (#364)
- IERC20(busdToken).approve(address(this),uint256(- 1)) (#365)
Event emitted after the call(s):
- Transfer(address(0x0),msg.sender,_totalSupply) (#367)
Reentrancy in TRAVEL.swapBack() (#563-586):
External calls:
- _swapAndLiquify(amountToLiquify) (#574)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,liquidityReceiver,block.timestamp) (#513-520)
- router.addLiquidity(address(this),busdToken,tokenAmount,busdAmount,0,0,liquidityReceiver,block.timestamp) (#523-532)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,receiver,block.timestamp) (#540-546)
- router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,receiver,block.timestamp) (#554-560)
- _swapTokensForBusd(amountToRFV,riskFreeValueReceiver) (#578)
- router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,receiver,block.timestamp) (#554-560)
- _swapTokensForBNB(amountToTreasury,treasuryReceiver) (#582)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,receiver,block.timestamp) (#540-546)
External calls sending eth:
- _swapAndLiquify(amountToLiquify) (#574)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,liquidityReceiver,block.timestamp) (#513-520)
Event emitted after the call(s):
- SwapBack(contractTokenBalance,amountToLiquify,amountToRFV,amountToTreasury) (#585)
Reentrancy in TRAVEL.takeFee(address,address,uint256) (#588-601):
External calls:
- _transferFrom(address(this),address(0x000000000000000000000000000000000000dEaD),(gonAmount.div(_gonsPerFragment)).mul(burnFee).div(100)) (#596)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,liquidityReceiver,block.timestamp) (#513-520)
- router.addLiquidity(address(this),busdToken,tokenAmount,busdAmount,0,0,liquidityReceiver,block.timestamp) (#523-532)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,receiver,block.timestamp) (#540-546)
- router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,receiver,block.timestamp) (#554-560)
External calls sending eth:
- _transferFrom(address(this),address(0x000000000000000000000000000000000000dEaD),(gonAmount.div(_gonsPerFragment)).mul(burnFee).div(100)) (#596)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,liquidityReceiver,block.timestamp) (#513-520)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount.div(_gonsPerFragment)) (#598)
Apply the check-effects-interactions pattern.
Additional information: link
TRAVEL.setAutomatedMarketMakerPair(address,bool) (#638-657) has costly operations inside a loop:
- _markerPairs.pop() (#650)
Use a local variable to hold the loop computation result.
Additional information: link
Roles.add(Roles.Role,address) (#124-127) is never used and should be removed
Roles.has(Roles.Role,address) (#134-137) is never used and should be removed
Roles.remove(Roles.Role,address) (#129-132) is never used and should be removed
SafeMath.mod(uint256,uint256) (#109-112) is never used and should be removed
SafeMathInt.abs(int256) (#35-38) is never used and should be removed
SafeMathInt.add(int256,int256) (#29-33) is never used and should be removed
SafeMathInt.div(int256,int256) (#17-21) is never used and should be removed
SafeMathInt.mul(int256,int256) (#9-15) is never used and should be removed
SafeMathInt.sub(int256,int256) (#23-27) is never used and should be removed
Remove unused functions.
Additional information: link
TRAVEL.totalBuyFee (#314) is set pre-construction with a non-constant function or state variable:
- liquidityFee.add(treasuryFee).add(buyFeeRFV).add(burnFee)
TRAVEL.totalSellFee (#315) is set pre-construction with a non-constant function or state variable:
- totalBuyFee.add(sellFeeTreasuryAdded).add(sellFeeRFVAdded)
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
Function IDEXRouter.WETH() (#171) is not in mixedCase
Parameter TRAVEL.checkFeeExempt(address)._addr (#384) is not in mixedCase
Parameter TRAVEL.setAutomatedMarketMakerPair(address,bool)._pair (#638) is not in mixedCase
Parameter TRAVEL.setAutomatedMarketMakerPair(address,bool)._value (#638) is not in mixedCase
Parameter TRAVEL.setFeeExempt(address,bool)._addr (#659) is not in mixedCase
Parameter TRAVEL.setFeeExempt(address,bool)._value (#659) is not in mixedCase
Parameter TRAVEL.setSwapBackSettings(bool,uint256,uint256)._enabled (#669) is not in mixedCase
Parameter TRAVEL.setSwapBackSettings(bool,uint256,uint256)._num (#669) is not in mixedCase
Parameter TRAVEL.setSwapBackSettings(bool,uint256,uint256)._denom (#669) is not in mixedCase
Parameter TRAVEL.setFeeReceivers(address,address,address)._liquidityReceiver (#674) is not in mixedCase
Parameter TRAVEL.setFeeReceivers(address,address,address)._treasuryReceiver (#674) is not in mixedCase
Parameter TRAVEL.setFeeReceivers(address,address,address)._riskFreeValueReceiver (#674) is not in mixedCase
Parameter TRAVEL.clearStuckBalance(address)._receiver (#680) is not in mixedCase
Parameter TRAVEL.setFeesOnNormalTransfers(bool)._enabled (#689) is not in mixedCase
Parameter TRAVEL.setIsLiquidityInBnb(bool)._value (#694) is not in mixedCase
Variable TRAVEL._isFeeExempt (#286) is not in mixedCase
Variable TRAVEL._markerPairs (#287) is not in mixedCase
Variable TRAVEL.DEAD (#297) is not in mixedCase
Variable TRAVEL.ZERO (#298) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
TRAVEL.takeFee(address,address,uint256) (#588-601) uses literals with too many digits:
- _transferFrom(address(this),address(0x000000000000000000000000000000000000dEaD),(gonAmount.div(_gonsPerFragment)).mul(burnFee).div(100)) (#596)
TRAVEL.slitherConstructorVariables() (#275-704) uses literals with too many digits:
- rewardYieldDenominator = 10000000000 (#284)
TRAVEL.slitherConstructorVariables() (#275-704) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#297)
TRAVEL.slitherConstructorVariables() (#275-704) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#298)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
SafeMathInt.MAX_INT256 (#7) is never used in SafeMathInt (#5-39)
TRAVEL.MAX_SUPPLY (#295) is never used in TRAVEL (#275-704)
Remove unused state variables.
Additional information: link
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
Unable to verify that token and website are owned by the same team (no listings + unable to find contract on website)
Unable to verify token contract address on the website
Unable to find audit link on the website
Unable to find token on CoinGecko
Additional information: link
Unable to find token on CoinMarketCap
Additional information: link
Unable to find token on CoinHunt
Additional information: link
Unable to find code repository for the project
Young tokens have high risks of scam / price dump / death
Young tokens have high risks of scam / price dump / death
Young tokens have high risks of scam / price dump / death
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Telegram account link seems to be invalid
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account
Twitter account has few posts