Run-to-Earn Token Logo

R2E [Run-to-Earn] Token

ALERT: unclassified scam

About R2E

Listings

Token 4 years
white paper

You missed STEPN? Dont miss R2E! R2E is a web 3.0 lifestyle app, that combines the power of SOCIAL-FI and GAME-FI elements. Players can earn money through RUN-TO-EARN. Whether you are a runner, jogger or sprinter, any kind of exercise is welcome here. KYC + Doxxed Team. As a thank you for early support, all Presale buyers will receive the following bonus: 1 BNB = Bronze Sneaker NFT | 2 BNB = Silver Sneaker NFT | 3 BNB = Gold Sneaker NFT | 5 BNB = 2x Gold Sneaker NFT. Safe: Liquidity locked for 100 years!

Social

Laser Scorebeta Last Audit: 12 September 2022

report
Token seems to be a scam (type: unclassified scam).

Anti-Scam

Links


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

Reentrancy in R2E._transferFrom(address,address,uint256) (#448-472):
External calls:
- swapBack() (#456)
- router.addLiquidity(address(this),busdToken,tokenAmount,busdAmount,0,0,liquidityReceiver,block.timestamp) (#523-532)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,liquidityReceiver,block.timestamp) (#513-520)
- 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 R2E._transferFrom(address,address,uint256) (#448-472):
External calls:
- swapBack() (#456)
- router.addLiquidity(address(this),busdToken,tokenAmount,busdAmount,0,0,liquidityReceiver,block.timestamp) (#523-532)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,liquidityReceiver,block.timestamp) (#513-520)
- 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.addLiquidity(address(this),busdToken,tokenAmount,busdAmount,0,0,liquidityReceiver,block.timestamp) (#523-532)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,liquidityReceiver,block.timestamp) (#513-520)
- 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


Contract ownership is not renounced (belongs to a wallet)

Contract name (Run-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.

R2E.setTargetLiquidity(uint256,uint256) (#664-667) should emit an event for:
- targetLiquidity = target (#665)
- targetLiquidityDenominator = accuracy (#666)
R2E.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

R2E.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)
R2E.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)
R2E.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)
R2E.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

R2E.constructor() (#341-368) ignores return value by IERC20(busdToken).approve(address(router),uint256(- 1)) (#363)
R2E.constructor() (#341-368) ignores return value by IERC20(busdToken).approve(address(pairBusd),uint256(- 1)) (#364)
R2E.constructor() (#341-368) ignores return value by IERC20(busdToken).approve(address(this),uint256(- 1)) (#365)
R2E.getLiquidityBacking(uint256) (#415-421) ignores return value by liquidityBalance.add(balanceOf(_markerPairs[i]).div(10 ** 9)) (#418)
R2E._addLiquidity(uint256,uint256) (#512-521) ignores return value by router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,liquidityReceiver,block.timestamp) (#513-520)
R2E._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

R2E.setFeeReceivers(address,address,address)._liquidityReceiver (#674) lacks a zero-check on :
- liquidityReceiver = _liquidityReceiver (#675)
R2E.setFeeReceivers(address,address,address)._treasuryReceiver (#674) lacks a zero-check on :
- treasuryReceiver = _treasuryReceiver (#676)
R2E.setFeeReceivers(address,address,address)._riskFreeValueReceiver (#674) lacks a zero-check on :
- riskFreeValueReceiver = _riskFreeValueReceiver (#677)
R2E.clearStuckBalance(address)._receiver (#680) lacks a zero-check on :
- address(_receiver).transfer(balance) (#682)
Check that the address is not zero.

Additional information: link

R2E.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 R2E.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 R2E._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 R2E._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 R2E._transferFrom(address,address,uint256) (#448-472):
External calls:
- swapBack() (#456)
- router.addLiquidity(address(this),busdToken,tokenAmount,busdAmount,0,0,liquidityReceiver,block.timestamp) (#523-532)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,liquidityReceiver,block.timestamp) (#513-520)
- 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.addLiquidity(address(this),busdToken,tokenAmount,busdAmount,0,0,liquidityReceiver,block.timestamp) (#523-532)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,liquidityReceiver,block.timestamp) (#513-520)
- 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)
- gonAmountReceived = takeFee(sender,recipient,gonAmount) (#461)
- Transfer(sender,recipient,gonAmountReceived.div(_gonsPerFragment)) (#465-469)
Reentrancy in R2E.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 R2E.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 R2E.swapBack() (#563-586):
External calls:
- _swapAndLiquify(amountToLiquify) (#574)
- router.addLiquidity(address(this),busdToken,tokenAmount,busdAmount,0,0,liquidityReceiver,block.timestamp) (#523-532)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,liquidityReceiver,block.timestamp) (#513-520)
- 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 R2E.takeFee(address,address,uint256) (#588-601):
External calls:
- _transferFrom(address(this),address(0x000000000000000000000000000000000000dEaD),(gonAmount.div(_gonsPerFragment)).mul(burnFee).div(100)) (#596)
- router.addLiquidity(address(this),busdToken,tokenAmount,busdAmount,0,0,liquidityReceiver,block.timestamp) (#523-532)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,liquidityReceiver,block.timestamp) (#513-520)
- 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

R2E.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

R2E.totalBuyFee (#314) is set pre-construction with a non-constant function or state variable:
- liquidityFee.add(treasuryFee).add(buyFeeRFV).add(burnFee)
R2E.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

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

Function IDEXRouter.WETH() (#171) is not in mixedCase
Parameter R2E.checkFeeExempt(address)._addr (#384) is not in mixedCase
Parameter R2E.setAutomatedMarketMakerPair(address,bool)._pair (#638) is not in mixedCase
Parameter R2E.setAutomatedMarketMakerPair(address,bool)._value (#638) is not in mixedCase
Parameter R2E.setFeeExempt(address,bool)._addr (#659) is not in mixedCase
Parameter R2E.setFeeExempt(address,bool)._value (#659) is not in mixedCase
Parameter R2E.setSwapBackSettings(bool,uint256,uint256)._enabled (#669) is not in mixedCase
Parameter R2E.setSwapBackSettings(bool,uint256,uint256)._num (#669) is not in mixedCase
Parameter R2E.setSwapBackSettings(bool,uint256,uint256)._denom (#669) is not in mixedCase
Parameter R2E.setFeeReceivers(address,address,address)._liquidityReceiver (#674) is not in mixedCase
Parameter R2E.setFeeReceivers(address,address,address)._treasuryReceiver (#674) is not in mixedCase
Parameter R2E.setFeeReceivers(address,address,address)._riskFreeValueReceiver (#674) is not in mixedCase
Parameter R2E.clearStuckBalance(address)._receiver (#680) is not in mixedCase
Parameter R2E.setFeesOnNormalTransfers(bool)._enabled (#689) is not in mixedCase
Parameter R2E.setIsLiquidityInBnb(bool)._value (#694) is not in mixedCase
Variable R2E._isFeeExempt (#286) is not in mixedCase
Variable R2E._markerPairs (#287) is not in mixedCase
Variable R2E.DEAD (#297) is not in mixedCase
Variable R2E.ZERO (#298) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

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

R2E.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)
R2E.slitherConstructorVariables() (#275-704) uses literals with too many digits:
- rewardYieldDenominator = 10000000000 (#284)
R2E.slitherConstructorVariables() (#275-704) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#297)
R2E.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)
R2E.MAX_SUPPLY (#295) is never used in R2E (#275-704)
Remove unused state variables.

Additional information: link

R2E.DEAD (#297) should be constant
R2E.ZERO (#298) should be constant
R2E.burnFee (#310) should be constant
R2E.busdToken (#303) should be constant
R2E.buyFeeRFV (#311) should be constant
R2E.feeDenominator (#316) should be constant
R2E.liquidityFee (#308) should be constant
R2E.rewardYield (#283) should be constant
R2E.rewardYieldDenominator (#284) should be constant
R2E.sellFeeRFVAdded (#313) should be constant
R2E.sellFeeTreasuryAdded (#312) should be constant
R2E.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:
- R2E.manualSync() (#427-431)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:

Contract has 10% buy tax and 21% sell tax.
Taxes are suspiciously high (over 10%) and contract ownership is not renounced. Token has a high risk of becoming a honeypot.


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


Average 30d number of PancakeSwap swaps is less than 1. Token is either dead or inactive.


Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.


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


Average 30d PancakeSwap liquidity is low.


Token is deployed only at one blockchain


Token has only one trading pair


Telegram account link seems to be invalid


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 on CoinGecko

Additional information: link


Unable to find token on CoinMarketCap

Additional information: link


Unable to find token contract audit


Unable to verify that token and website are owned by the same team (no listings + unable to find contract on website)


Unable to find KYC or doxxing proof


Unable to find code repository for the project


Unable to verify token contract address on the website


Unable to find audit link on the website


Unable to find token on CoinHunt

Additional information: link


Unable to find Telegram link on the website


Unable to find Twitter link on the website


Token is not listed at Mobula.Finance

Additional information: link


Token is marked as scam (rug pull, honeypot, phishing, etc.)

Additional information: link


Token has no active CoinGecko listing / rank


Young tokens have high risks of price dump / death


Token has no active CoinMarketCap listing / rank


Young tokens have high risks of price dump / death

Price for R2E