TravGoPV Token Logo

TPV [TravGoPV] Token

About TPV

Listings

Token 2 years
CoinMarketCap 2 years
white paper

TravGoPV aims to be the world's first and biggest Premium Transportation platform by combining Blockchain technology.

It is our goal to properly function our platform for our customers to help them make it easier for booking premium transportations that they desire.

Social

Laser Scorebeta Last Audit: 17 December 2021

report
Token is either risky or in presale. For presale 30+ is a fine score.

Anti-Scam

Links


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

TravGoPV.sendETHToFee(uint256) (#429-432) sends eth to arbitrary user
Dangerous calls:
- _marketingAddress.transfer(amount.mul(_marketingPercent).div(100)) (#430)
- _liquidityAddress.transfer(amount.mul(_liquidityPercent).div(100)) (#431)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in TravGoPV._transfer(address,address,uint256) (#364-415):
External calls:
- swapTokensForEth(contractTokenBalance) (#392)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#426)
External calls sending eth:
- sendETHToFee(address(this).balance) (#397)
- _marketingAddress.transfer(amount.mul(_marketingPercent).div(100)) (#430)
- _liquidityAddress.transfer(amount.mul(_liquidityPercent).div(100)) (#431)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#413)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#499)
- _rOwned[address(this)] = _rOwned[address(this)].add(rMarketing) (#505)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#477)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#486)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#478)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#487)
- _tokenTransfer(from,to,amount,takeFee) (#413)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#489)
Apply the check-effects-interactions pattern.

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.

TravGoPV._getValuesBuy(uint256).buyFees (#535) is a local variable never initialized
TravGoPV._getValuesSell(uint256).sellFees (#512) 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

TravGoPV.constructor() (#255-268) ignores return value by IERC20(uniswapV2Pair).approve(address(uniswapV2Router),type()(uint256).max) (#260)
Ensure that all the return values of the function calls are used.

Additional information: link

TravGoPV.allowance(address,address).owner (#299) shadows:
- Ownable.owner() (#69-71) (function)
TravGoPV._approve(address,address,uint256).owner (#357) shadows:
- Ownable.owner() (#69-71) (function)
Rename the local variables that shadow another component.

Additional information: link

TravGoPV.setSCount(uint256) (#270-272) should emit an event for:
- setCount = val (#271)
TravGoPV.setFeeRate(uint256) (#417-419) should emit an event for:
- _feeRate = maxFee (#418)
Emit an event for critical parameter changes.

Additional information: link

Ownable.trfOwner(address).Addr (#83) lacks a zero-check on :
- _owner = Addr (#85)
TravGoPV.setMarketingAddress(address).marketingAddress (#675) lacks a zero-check on :
- _marketingAddress = address(marketingAddress) (#676)
TravGoPV.setLiquidityAddress(address).Address (#679) lacks a zero-check on :
- _liquidityAddress = address(Address) (#680)
Check that the address is not zero.

Additional information: link

Reentrancy in TravGoPV._transfer(address,address,uint256) (#364-415):
External calls:
- swapTokensForEth(contractTokenBalance) (#392)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#426)
External calls sending eth:
- sendETHToFee(address(this).balance) (#397)
- _marketingAddress.transfer(amount.mul(_marketingPercent).div(100)) (#430)
- _liquidityAddress.transfer(amount.mul(_liquidityPercent).div(100)) (#431)
State variables written after the call(s):
- setBotFee() (#409)
- _buyLiquidityFee = 0 (#343)
- _tokenTransfer(from,to,amount,takeFee) (#413)
- _buyLiquidityFee = _previousBuyLiquidityFee (#351)
- _buyLiquidityFee = 0 (#329)
- restoreAllFee() (#414)
- _buyLiquidityFee = _previousBuyLiquidityFee (#351)
- setBotFee() (#409)
- _buyMarketingFee = 9 (#342)
- _tokenTransfer(from,to,amount,takeFee) (#413)
- _buyMarketingFee = _previousBuyMarketingFee (#350)
- _buyMarketingFee = 0 (#328)
- restoreAllFee() (#414)
- _buyMarketingFee = _previousBuyMarketingFee (#350)
- setBotFee() (#409)
- _previousBuyLiquidityFee = _buyLiquidityFee (#337)
- _tokenTransfer(from,to,amount,takeFee) (#413)
- _previousBuyLiquidityFee = _buyLiquidityFee (#323)
- setBotFee() (#409)
- _previousBuyMarketingFee = _buyMarketingFee (#336)
- _tokenTransfer(from,to,amount,takeFee) (#413)
- _previousBuyMarketingFee = _buyMarketingFee (#322)
- setBotFee() (#409)
- _previousSellLiquidityFee = _sellLiquidityFee (#340)
- _tokenTransfer(from,to,amount,takeFee) (#413)
- _previousSellLiquidityFee = _sellLiquidityFee (#326)
- setBotFee() (#409)
- _previousSellMarketingFee = _sellMarketingFee (#339)
- _tokenTransfer(from,to,amount,takeFee) (#413)
- _previousSellMarketingFee = _sellMarketingFee (#325)
- setBotFee() (#409)
- _sellLiquidityFee = 0 (#346)
- _tokenTransfer(from,to,amount,takeFee) (#413)
- _sellLiquidityFee = _previousSellLiquidityFee (#354)
- _sellLiquidityFee = 0 (#332)
- restoreAllFee() (#414)
- _sellLiquidityFee = _previousSellLiquidityFee (#354)
- setBotFee() (#409)
- _sellMarketingFee = 9 (#345)
- _tokenTransfer(from,to,amount,takeFee) (#413)
- _sellMarketingFee = _previousSellMarketingFee (#353)
- _sellMarketingFee = 0 (#331)
- restoreAllFee() (#414)
- _sellMarketingFee = _previousSellMarketingFee (#353)
Reentrancy in TravGoPV.constructor() (#255-268):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#259)
- IERC20(uniswapV2Pair).approve(address(uniswapV2Router),type()(uint256).max) (#260)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#262)
- _isExcludedFromFee[address(this)] = true (#263)
- _isExcludedFromFee[_marketingAddress] = true (#264)
- _isExcludedFromFee[_liquidityAddress] = true (#265)
- _rOwned[_msgSender()] = _rTotal (#261)
Reentrancy in TravGoPV.transferFrom(address,address,uint256) (#308-312):
External calls:
- _transfer(sender,recipient,amount) (#309)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#426)
External calls sending eth:
- _transfer(sender,recipient,amount) (#309)
- _marketingAddress.transfer(amount.mul(_marketingPercent).div(100)) (#430)
- _liquidityAddress.transfer(amount.mul(_liquidityPercent).div(100)) (#431)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#310)
- _allowances[owner][spender] = amount (#360)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in TravGoPV._transfer(address,address,uint256) (#364-415):
External calls:
- swapTokensForEth(contractTokenBalance) (#392)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#426)
External calls sending eth:
- sendETHToFee(address(this).balance) (#397)
- _marketingAddress.transfer(amount.mul(_marketingPercent).div(100)) (#430)
- _liquidityAddress.transfer(amount.mul(_liquidityPercent).div(100)) (#431)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#481)
- _tokenTransfer(from,to,amount,takeFee) (#413)
- Transfer(sender,recipient,tTransferAmount) (#493)
- _tokenTransfer(from,to,amount,takeFee) (#413)
Reentrancy in TravGoPV.constructor() (#255-268):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#259)
- IERC20(uniswapV2Pair).approve(address(uniswapV2Router),type()(uint256).max) (#260)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#266)
Reentrancy in TravGoPV.transferFrom(address,address,uint256) (#308-312):
External calls:
- _transfer(sender,recipient,amount) (#309)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#426)
External calls sending eth:
- _transfer(sender,recipient,amount) (#309)
- _marketingAddress.transfer(amount.mul(_marketingPercent).div(100)) (#430)
- _liquidityAddress.transfer(amount.mul(_liquidityPercent).div(100)) (#431)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#361)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#310)
Apply the check-effects-interactions pattern.

Additional information: link

TravGoPV._transfer(address,address,uint256) (#364-415) uses timestamp for comparisons
Dangerous comparisons:
- block.timestamp <= _firstBlock.add(_botBlocks) (#373)
Avoid relying on block.timestamp.

Additional information: link

TravGoPV.disableAutoSwap() (#642-646) compares to a boolean constant:
-require(bool,string)(autoSwap == true,autoSwap already disabled) (#643)
TravGoPV.enableAutoSwap() (#648-652) compares to a boolean constant:
-require(bool,string)(autoSwap == false,autoSwap already enabled) (#649)
Remove the equality to the boolean constant.

Additional information: link

TravGoPV.sendBNBtoAddress(address) (#434-438) is never used and should be removed
Remove unused functions.

Additional information: link

TravGoPV._previousBuyLiquidityFee (#207) is set pre-construction with a non-constant function or state variable:
- _buyLiquidityFee
TravGoPV._previousBuyMarketingFee (#209) is set pre-construction with a non-constant function or state variable:
- _buyMarketingFee
TravGoPV._previousSellLiquidityFee (#213) is set pre-construction with a non-constant function or state variable:
- _sellLiquidityFee
TravGoPV._previousSellMarketingFee (#215) is set pre-construction with a non-constant function or state variable:
- _sellMarketingFee
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.8.4 (#2) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6
solc-0.8.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

Parameter Ownable.trfOwner(address).Addr (#83) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#104) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#105) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#122) is not in mixedCase
Function IUniswapV2Router02.WETH() (#160) is not in mixedCase
Event TravGoPVautoSwapUpdate(bool) (#243) is not in CapWords
Parameter TravGoPV.sendBNBtoAddress(address).Addr (#434) is not in mixedCase
Parameter TravGoPV.setLiquidityAddress(address).Address (#679) is not in mixedCase
Constant TravGoPV._name (#184) is not in UPPER_CASE_WITH_UNDERSCORES
Constant TravGoPV._symbol (#185) is not in UPPER_CASE_WITH_UNDERSCORES
Constant TravGoPV._decimals (#186) is not in UPPER_CASE_WITH_UNDERSCORES
Constant TravGoPV._tTotal (#193) is not in UPPER_CASE_WITH_UNDERSCORES
Variable TravGoPV._priceImpact (#197) is not in mixedCase
Variable TravGoPV._priceImpactBuy (#198) is not in mixedCase
Variable TravGoPV._maxWallet (#200) is not in mixedCase
Variable TravGoPV._buyLiquidityFee (#206) is not in mixedCase
Variable TravGoPV._buyMarketingFee (#208) is not in mixedCase
Variable TravGoPV._sellLiquidityFee (#212) is not in mixedCase
Variable TravGoPV._sellMarketingFee (#214) is not in mixedCase
Variable TravGoPV._marketingPercent (#216) is not in mixedCase
Variable TravGoPV._liquidityPercent (#217) is not in mixedCase
Constant TravGoPV._burnAddress (#234) is not in UPPER_CASE_WITH_UNDERSCORES
Follow the Solidity naming convention.

Additional information: link

Reentrancy in TravGoPV._transfer(address,address,uint256) (#364-415):
External calls:
- sendETHToFee(address(this).balance) (#397)
- _marketingAddress.transfer(amount.mul(_marketingPercent).div(100)) (#430)
- _liquidityAddress.transfer(amount.mul(_liquidityPercent).div(100)) (#431)
State variables written after the call(s):
- setBotFee() (#409)
- _buyLiquidityFee = 0 (#343)
- _tokenTransfer(from,to,amount,takeFee) (#413)
- _buyLiquidityFee = _previousBuyLiquidityFee (#351)
- _buyLiquidityFee = 0 (#329)
- restoreAllFee() (#414)
- _buyLiquidityFee = _previousBuyLiquidityFee (#351)
- setBotFee() (#409)
- _buyMarketingFee = 9 (#342)
- _tokenTransfer(from,to,amount,takeFee) (#413)
- _buyMarketingFee = _previousBuyMarketingFee (#350)
- _buyMarketingFee = 0 (#328)
- restoreAllFee() (#414)
- _buyMarketingFee = _previousBuyMarketingFee (#350)
- setBotFee() (#409)
- _previousBuyLiquidityFee = _buyLiquidityFee (#337)
- _tokenTransfer(from,to,amount,takeFee) (#413)
- _previousBuyLiquidityFee = _buyLiquidityFee (#323)
- setBotFee() (#409)
- _previousBuyMarketingFee = _buyMarketingFee (#336)
- _tokenTransfer(from,to,amount,takeFee) (#413)
- _previousBuyMarketingFee = _buyMarketingFee (#322)
- setBotFee() (#409)
- _previousSellLiquidityFee = _sellLiquidityFee (#340)
- _tokenTransfer(from,to,amount,takeFee) (#413)
- _previousSellLiquidityFee = _sellLiquidityFee (#326)
- setBotFee() (#409)
- _previousSellMarketingFee = _sellMarketingFee (#339)
- _tokenTransfer(from,to,amount,takeFee) (#413)
- _previousSellMarketingFee = _sellMarketingFee (#325)
- _tokenTransfer(from,to,amount,takeFee) (#413)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#499)
- _rOwned[address(this)] = _rOwned[address(this)].add(rMarketing) (#505)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#477)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#486)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#478)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#487)
- setBotFee() (#409)
- _sellLiquidityFee = 0 (#346)
- _tokenTransfer(from,to,amount,takeFee) (#413)
- _sellLiquidityFee = _previousSellLiquidityFee (#354)
- _sellLiquidityFee = 0 (#332)
- restoreAllFee() (#414)
- _sellLiquidityFee = _previousSellLiquidityFee (#354)
- setBotFee() (#409)
- _sellMarketingFee = 9 (#345)
- _tokenTransfer(from,to,amount,takeFee) (#413)
- _sellMarketingFee = _previousSellMarketingFee (#353)
- _sellMarketingFee = 0 (#331)
- restoreAllFee() (#414)
- _sellMarketingFee = _previousSellMarketingFee (#353)
- _tokenTransfer(from,to,amount,takeFee) (#413)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#489)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#481)
- _tokenTransfer(from,to,amount,takeFee) (#413)
- Transfer(sender,recipient,tTransferAmount) (#493)
- _tokenTransfer(from,to,amount,takeFee) (#413)
Reentrancy in TravGoPV.transferFrom(address,address,uint256) (#308-312):
External calls:
- _transfer(sender,recipient,amount) (#309)
- _marketingAddress.transfer(amount.mul(_marketingPercent).div(100)) (#430)
- _liquidityAddress.transfer(amount.mul(_liquidityPercent).div(100)) (#431)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#310)
- _allowances[owner][spender] = amount (#360)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#361)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#310)
Apply the check-effects-interactions pattern.

Additional information: link

Variable TravGoPV._transferStandardBuy(address,address,uint256).rTransferAmount (#476) is too similar to TravGoPV._transferStandardBuy(address,address,uint256).tTransferAmount (#476)
Variable TravGoPV._getRValuesBuy(uint256,uint256,uint256,uint256).rTransferAmount (#553) is too similar to TravGoPV._getTValuesBuy(uint256,uint256,uint256).tTransferAmount (#545)
Variable TravGoPV._getValuesSell(uint256).rTransferAmount (#515) is too similar to TravGoPV._getTValuesBuy(uint256,uint256,uint256).tTransferAmount (#545)
Variable TravGoPV._transferStandardSell(address,address,uint256).rTransferAmount (#485) is too similar to TravGoPV._getTValuesBuy(uint256,uint256,uint256).tTransferAmount (#545)
Variable TravGoPV._getRValuesSell(uint256,uint256,uint256,uint256).rTransferAmount (#530) is too similar to TravGoPV._getTValuesBuy(uint256,uint256,uint256).tTransferAmount (#545)
Variable TravGoPV._transferStandardBuy(address,address,uint256).rTransferAmount (#476) is too similar to TravGoPV._getTValuesBuy(uint256,uint256,uint256).tTransferAmount (#545)
Variable TravGoPV._transferStandardBuy(address,address,uint256).rTransferAmount (#476) is too similar to TravGoPV._getTValuesSell(uint256,uint256,uint256).tTransferAmount (#522)
Variable TravGoPV._transferStandardBuy(address,address,uint256).rTransferAmount (#476) is too similar to TravGoPV._transferStandardSell(address,address,uint256).tTransferAmount (#485)
Variable TravGoPV._getValuesBuy(uint256).rTransferAmount (#538) is too similar to TravGoPV._getTValuesBuy(uint256,uint256,uint256).tTransferAmount (#545)
Variable TravGoPV._getRValuesBuy(uint256,uint256,uint256,uint256).rTransferAmount (#553) is too similar to TravGoPV._transferStandardSell(address,address,uint256).tTransferAmount (#485)
Variable TravGoPV._getValuesSell(uint256).rTransferAmount (#515) is too similar to TravGoPV._getTValuesSell(uint256,uint256,uint256).tTransferAmount (#522)
Variable TravGoPV._getValuesSell(uint256).rTransferAmount (#515) is too similar to TravGoPV._transferStandardSell(address,address,uint256).tTransferAmount (#485)
Variable TravGoPV._transferStandardSell(address,address,uint256).rTransferAmount (#485) is too similar to TravGoPV._transferStandardSell(address,address,uint256).tTransferAmount (#485)
Variable TravGoPV._getValuesBuy(uint256).rTransferAmount (#538) is too similar to TravGoPV._getTValuesSell(uint256,uint256,uint256).tTransferAmount (#522)
Variable TravGoPV._getRValuesSell(uint256,uint256,uint256,uint256).rTransferAmount (#530) is too similar to TravGoPV._transferStandardSell(address,address,uint256).tTransferAmount (#485)
Variable TravGoPV._getValuesBuy(uint256).rTransferAmount (#538) is too similar to TravGoPV._transferStandardBuy(address,address,uint256).tTransferAmount (#476)
Variable TravGoPV._getRValuesBuy(uint256,uint256,uint256,uint256).rTransferAmount (#553) is too similar to TravGoPV._getTValuesSell(uint256,uint256,uint256).tTransferAmount (#522)
Variable TravGoPV._transferStandardSell(address,address,uint256).rTransferAmount (#485) is too similar to TravGoPV._getTValuesSell(uint256,uint256,uint256).tTransferAmount (#522)
Variable TravGoPV._getRValuesSell(uint256,uint256,uint256,uint256).rTransferAmount (#530) is too similar to TravGoPV._getTValuesSell(uint256,uint256,uint256).tTransferAmount (#522)
Variable TravGoPV._getRValuesBuy(uint256,uint256,uint256,uint256).rTransferAmount (#553) is too similar to TravGoPV._transferStandardBuy(address,address,uint256).tTransferAmount (#476)
Variable TravGoPV._getValuesBuy(uint256).rTransferAmount (#538) is too similar to TravGoPV._transferStandardSell(address,address,uint256).tTransferAmount (#485)
Variable TravGoPV._transferStandardSell(address,address,uint256).rTransferAmount (#485) is too similar to TravGoPV._transferStandardBuy(address,address,uint256).tTransferAmount (#476)
Variable TravGoPV._getValuesSell(uint256).rTransferAmount (#515) is too similar to TravGoPV._transferStandardBuy(address,address,uint256).tTransferAmount (#476)
Variable TravGoPV._getRValuesSell(uint256,uint256,uint256,uint256).rTransferAmount (#530) is too similar to TravGoPV._transferStandardBuy(address,address,uint256).tTransferAmount (#476)
Prevent variables from having similar names.

Additional information: link

TravGoPV.slitherConstructorConstantVariables() (#182-683) uses literals with too many digits:
- _burnAddress = address(0x000000000000000000000000000000000000dEaD) (#234)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Ownable._previousOwner (#60) is never used in TravGoPV (#182-683)
TravGoPV._tFeeTotal (#196) is never used in TravGoPV (#182-683)
Remove unused state variables.

Additional information: link

Ownable._previousOwner (#60) should be constant
TravGoPV._rTotal (#195) should be constant
TravGoPV._tFeeTotal (#196) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#78-81)
trfOwner(address) should be declared external:
- Ownable.trfOwner(address) (#83-86)
excludeFromFee(address) should be declared external:
- TravGoPV.excludeFromFee(address) (#572-574)
addExchange(address) should be declared external:
- TravGoPV.addExchange(address) (#580-582)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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


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


Token is deployed only at one blockchain


Unable to find PancakeSwap trading pair to compute liquidity.


Unable to find PancakeSwap trading pair to compute number of swaps.


Twitter account link seems to be invalid


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


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


Unable to find code repository for the project


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 scam / price dump / death


Young tokens have high risks of price dump / death


Token has relatively low CoinGecko rank


Token has relatively low CoinMarketCap rank

Price for TPV