MORFY Token Logo

MRFY [MORFY] Token

About MRFY

Listings

Token 19 months
white paper

Audit by Certik in progress (https://www.certik.com/projects/morfy-finance) ✅ KYC Verified ✅ Top Tier Marketing 🚀 The Highest Paying Auto-Staking & Auto-Compounding Protocol📈502,548.34% Fixed Staking APY. Daily ROI: 2.33% 🎨NFT Marketplace 👨‍💻Morfy Dapp 📱Auto Staking 🌟NFT's for community that pay up to 100 $BUSD daily.

Social

Laser Scorebeta Last Audit: 27 June 2022

report
Token has too many issues. Scam probability is high.

MRFY.swapBack() (#762-800) sends eth to arbitrary user
Dangerous calls:
- (success) = address(treasuryReceiver).call{gas: 30000,value: amountETHToTreasuryAndMarketing.mul(treasuryFee).div(treasuryFee.add(marketingFee))}() (#788-793)
- (success,None) = address(marketingReceiver).call{gas: 30000,value: amountETHToTreasuryAndMarketing.mul(marketingFee).div(treasuryFee.add(marketingFee))}() (#794-799)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in MRFY._transferFrom(address,address,uint256) (#632-676):
External calls:
- rebase() (#649)
- pairContract.sync() (#554)
- addLiquidity() (#653)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#739-745)
- router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#750-757)
- swapBack() (#657)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#776-782)
- (success) = address(treasuryReceiver).call{gas: 30000,value: amountETHToTreasuryAndMarketing.mul(treasuryFee).div(treasuryFee.add(marketingFee))}() (#788-793)
- (success,None) = address(marketingReceiver).call{gas: 30000,value: amountETHToTreasuryAndMarketing.mul(marketingFee).div(treasuryFee.add(marketingFee))}() (#794-799)
External calls sending eth:
- addLiquidity() (#653)
- router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#750-757)
- swapBack() (#657)
- (success) = address(treasuryReceiver).call{gas: 30000,value: amountETHToTreasuryAndMarketing.mul(treasuryFee).div(treasuryFee.add(marketingFee))}() (#788-793)
- (success,None) = address(marketingReceiver).call{gas: 30000,value: amountETHToTreasuryAndMarketing.mul(marketingFee).div(treasuryFee.add(marketingFee))}() (#794-799)
State variables written after the call(s):
- _gonBalances[sender] = _gonBalances[sender].sub(gonAmount) (#661)
- _gonBalances[recipient] = _gonBalances[recipient].add(gonAmountReceived) (#665-667)
- gonAmountReceived = takeFee(sender,recipient,gonAmount) (#662-664)
- _gonBalances[burnReceiver] = _gonBalances[burnReceiver].add(gonAmount.div(feeDenominator).mul(burnFee)) (#704-706)
- _gonBalances[address(this)] = _gonBalances[address(this)].add(gonAmount.div(feeDenominator).mul(treasuryFee.add(marketingFee))) (#707-709)
- _gonBalances[autoLiquidityReceiver] = _gonBalances[autoLiquidityReceiver].add(gonAmount.div(feeDenominator).mul(liquidityFee)) (#710-712)
- swapBack() (#657)
- inSwap = true (#465)
- inSwap = false (#467)
- gonAmountReceived = takeFee(sender,recipient,gonAmount) (#662-664)
- marketingFee = _SellmarketingFee (#688)
- marketingFee = _BuymarketingFee (#696)
- gonAmountReceived = takeFee(sender,recipient,gonAmount) (#662-664)
- treasuryFee = _SelltreasuryFee (#687)
- treasuryFee = _BuytreasuryFee (#695)
Apply the check-effects-interactions pattern.

Additional information: link


Too many vulnerabilities (Unchecked transfer, Reentrancy vulnerability, etc.). High risk of a scam. DYOR & manual audit are advised.

MRFY._name (#402) shadows:
- ERC20Detailed._name (#368)
MRFY._symbol (#403) shadows:
- ERC20Detailed._symbol (#369)
MRFY._decimals (#404) shadows:
- ERC20Detailed._decimals (#370)
Remove the state variable shadowing.

Additional information: link

MRFY.swapBack().success (#788) is written in both
(success) = address(treasuryReceiver).call{gas: 30000,value: amountETHToTreasuryAndMarketing.mul(treasuryFee).div(treasuryFee.add(marketingFee))}() (#788-793)
(success,None) = address(marketingReceiver).call{gas: 30000,value: amountETHToTreasuryAndMarketing.mul(marketingFee).div(treasuryFee.add(marketingFee))}() (#794-799)
Fix or remove the writes.

Additional information: link


Contract ownership is not renounced (belongs to a wallet)


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.

MRFY.setBuyFees(uint256,uint256,uint256,uint256) (#611-619) contains a tautology or contradiction:
- require(bool,string)(_BuytotalFee >= 0 && _BuytotalFee <= 200,Fees are exceeding the limits) (#618)
MRFY.setSellFees(uint256,uint256,uint256,uint256) (#621-630) contains a tautology or contradiction:
- require(bool,string)(_SelltotalFee >= 0 && _SelltotalFee <= 200,Fees are exceeding the limits) (#629)
Fix the incorrect comparison by changing the value type or the comparison.

Additional information: link

MRFY.isContract(address) (#989-993) uses assembly
- INLINE ASM (#991)
Do not use evm assembly.

Additional information: link

MRFY.rebase() (#520-557) performs a multiplication on the result of a division:
-times = deltaTime.div(900) (#526)
-epoch = times.mul(15) (#527)
MRFY.rebase() (#520-557) performs a multiplication on the result of a division:
-times = deltaTime.div(900) (#526)
-_lastRebasedTime = _lastRebasedTime.add(times.mul(900)) (#552)
MRFY.takeFee(address,address,uint256) (#678-716) performs a multiplication on the result of a division:
-feeAmount = gonAmount.div(feeDenominator).mul(_totalFee) (#702)
MRFY.takeFee(address,address,uint256) (#678-716) performs a multiplication on the result of a division:
-_gonBalances[burnReceiver] = _gonBalances[burnReceiver].add(gonAmount.div(feeDenominator).mul(burnFee)) (#704-706)
MRFY.takeFee(address,address,uint256) (#678-716) performs a multiplication on the result of a division:
-_gonBalances[address(this)] = _gonBalances[address(this)].add(gonAmount.div(feeDenominator).mul(treasuryFee.add(marketingFee))) (#707-709)
MRFY.takeFee(address,address,uint256) (#678-716) performs a multiplication on the result of a division:
-_gonBalances[autoLiquidityReceiver] = _gonBalances[autoLiquidityReceiver].add(gonAmount.div(feeDenominator).mul(liquidityFee)) (#710-712)
MRFY.getLiquidityBacking(uint256) (#954-962) performs a multiplication on the result of a division:
-liquidityBalance = _gonBalances[pair].div(_gonsPerFragment) (#959)
-accuracy.mul(liquidityBalance.mul(2)).div(getCirculatingSupply()) (#960-961)
Consider ordering multiplication before division.

Additional information: link

MRFY.setBuyFees(uint256,uint256,uint256,uint256) (#611-619) should emit an event for:
- _BuyliquidityFee = buyLiquidityFee (#613)
- _BuytreasuryFee = buyTreasuryFee (#614)
- _BuymarketingFee = buyMarketingFee (#615)
- _BuyburnFee = buyBurnFee (#616)
- _BuytotalFee = _BuyliquidityFee.add(_BuytreasuryFee).add(_BuymarketingFee).add(_BuyburnFee) (#617)
MRFY.setSellFees(uint256,uint256,uint256,uint256) (#621-630) should emit an event for:
- _SellliquidityFee = sellLiquidityFee (#624)
- _SelltreasuryFee = sellTreasuryFee (#625)
- _SellmarketingFee = sellMarketingFee (#626)
- _SellburnFee = sellBurnFee (#627)
- _SelltotalFee = _SellliquidityFee.add(_SelltreasuryFee).add(_SellmarketingFee).add(_SellburnFee) (#628)
Emit an event for critical parameter changes.

Additional information: link

MRFY.setFeeReceivers(address,address,address,address)._autoLiquidityReceiver (#943) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#948)
MRFY.setFeeReceivers(address,address,address,address)._treasuryReceiver (#944) lacks a zero-check on :
- treasuryReceiver = _treasuryReceiver (#949)
MRFY.setFeeReceivers(address,address,address,address)._marketingReceiver (#945) lacks a zero-check on :
- marketingReceiver = _marketingReceiver (#950)
MRFY.setFeeReceivers(address,address,address,address)._burnReceiver (#946) lacks a zero-check on :
- burnReceiver = _burnReceiver (#951)
Check that the address is not zero.

Additional information: link

Reentrancy in MRFY._transferFrom(address,address,uint256) (#632-676):
External calls:
- rebase() (#649)
- pairContract.sync() (#554)
- addLiquidity() (#653)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#739-745)
- router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#750-757)
- swapBack() (#657)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#776-782)
- (success) = address(treasuryReceiver).call{gas: 30000,value: amountETHToTreasuryAndMarketing.mul(treasuryFee).div(treasuryFee.add(marketingFee))}() (#788-793)
- (success,None) = address(marketingReceiver).call{gas: 30000,value: amountETHToTreasuryAndMarketing.mul(marketingFee).div(treasuryFee.add(marketingFee))}() (#794-799)
External calls sending eth:
- addLiquidity() (#653)
- router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#750-757)
- swapBack() (#657)
- (success) = address(treasuryReceiver).call{gas: 30000,value: amountETHToTreasuryAndMarketing.mul(treasuryFee).div(treasuryFee.add(marketingFee))}() (#788-793)
- (success,None) = address(marketingReceiver).call{gas: 30000,value: amountETHToTreasuryAndMarketing.mul(marketingFee).div(treasuryFee.add(marketingFee))}() (#794-799)
State variables written after the call(s):
- gonAmountReceived = takeFee(sender,recipient,gonAmount) (#662-664)
- burnFee = _SellburnFee (#689)
- burnFee = _BuyburnFee (#697)
- gonAmountReceived = takeFee(sender,recipient,gonAmount) (#662-664)
- liquidityFee = _SellliquidityFee (#686)
- liquidityFee = _BuyliquidityFee (#694)
Reentrancy in MRFY.addLiquidity() (#718-760):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#739-745)
- router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#750-757)
External calls sending eth:
- router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#750-757)
State variables written after the call(s):
- _lastAddLiquidityTime = block.timestamp (#759)
Reentrancy in MRFY.constructor() (#488-518):
External calls:
- pair = IPancakeSwapFactory(router.factory()).createPair(router.WETH(),address(this)) (#491-494)
State variables written after the call(s):
- _allowedFragments[address(this)][address(router)] = uint256(- 1) (#501)
- _autoAddLiquidity = false (#511)
- _autoRebase = false (#510)
- _gonBalances[owner()] = TOTAL_GONS (#506)
- _gonsPerFragment = TOTAL_GONS.div(_totalSupply) (#507)
- _initRebaseStartTime = block.timestamp (#508)
- _isFeeExempt[owner()] = true (#512)
- _isFeeExempt[address(this)] = true (#513)
- _lastRebasedTime = block.timestamp (#509)
- _transferOwnership(owner()) (#516)
- _owner = newOwner (#363)
- _totalSupply = INITIAL_FRAGMENTS_SUPPLY (#505)
- autoLiquidityReceiver = 0xa3cE15fd3c1755eB5c1737fB205dAfaAa855D6E3 (#496)
- burnReceiver = 0xd602ca7f6b4Fe1ccf49d26c229a498b0EC55d0f4 (#499)
- marketingReceiver = 0x8810961F18a46cEE3893848219FDA26f2b3B5473 (#498)
- pairAddress = pair (#502)
- pairContract = IPancakeSwapPair(pair) (#503)
- treasuryReceiver = 0xF8EA9BBAA9FeE18d97B98f07DbA5DB11988E072a (#497)
- whitelisted[owner()] = true (#514)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in MRFY._transferFrom(address,address,uint256) (#632-676):
External calls:
- rebase() (#649)
- pairContract.sync() (#554)
- addLiquidity() (#653)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#739-745)
- router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#750-757)
- swapBack() (#657)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#776-782)
- (success) = address(treasuryReceiver).call{gas: 30000,value: amountETHToTreasuryAndMarketing.mul(treasuryFee).div(treasuryFee.add(marketingFee))}() (#788-793)
- (success,None) = address(marketingReceiver).call{gas: 30000,value: amountETHToTreasuryAndMarketing.mul(marketingFee).div(treasuryFee.add(marketingFee))}() (#794-799)
External calls sending eth:
- addLiquidity() (#653)
- router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#750-757)
- swapBack() (#657)
- (success) = address(treasuryReceiver).call{gas: 30000,value: amountETHToTreasuryAndMarketing.mul(treasuryFee).div(treasuryFee.add(marketingFee))}() (#788-793)
- (success,None) = address(marketingReceiver).call{gas: 30000,value: amountETHToTreasuryAndMarketing.mul(marketingFee).div(treasuryFee.add(marketingFee))}() (#794-799)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount.div(_gonsPerFragment)) (#714)
- gonAmountReceived = takeFee(sender,recipient,gonAmount) (#662-664)
- Transfer(sender,recipient,gonAmountReceived.div(_gonsPerFragment)) (#670-674)
Reentrancy in MRFY.constructor() (#488-518):
External calls:
- pair = IPancakeSwapFactory(router.factory()).createPair(router.WETH(),address(this)) (#491-494)
Event emitted after the call(s):
- OwnershipTransferred(_owner,newOwner) (#362)
- _transferOwnership(owner()) (#516)
- Transfer(address(0x0),owner(),_totalSupply) (#517)
Reentrancy in MRFY.rebase() (#520-557):
External calls:
- pairContract.sync() (#554)
Event emitted after the call(s):
- LogRebase(epoch,_totalSupply) (#556)
Apply the check-effects-interactions pattern.

Additional information: link

MRFY.rebase() (#520-557) uses timestamp for comparisons
Dangerous comparisons:
- deltaTimeFromInit < 31536000 (#529)
- (deltaTimeFromInit >= 31536000) && (deltaTimeFromInit < (15 * 31536000) / 10) (#532-533)
- (deltaTimeFromInit >= (15 * 31536000) / 10) && (deltaTimeFromInit < (7 * 31536000)) (#537-538)
- deltaTimeFromInit >= (7 * 31536000) (#541)
- i < times (#545)
MRFY.shouldRebase() (#828-835) uses timestamp for comparisons
Dangerous comparisons:
- _autoRebase && (_totalSupply < MAX_SUPPLY) && msg.sender != pair && ! inSwap && block.timestamp >= (_lastRebasedTime + 900) (#829-834)
MRFY.shouldAddLiquidity() (#837-843) uses timestamp for comparisons
Dangerous comparisons:
- _autoAddLiquidity && ! inSwap && msg.sender != pair && block.timestamp >= (_lastAddLiquidityTime + 172800) (#838-842)
Avoid relying on block.timestamp.

Additional information: link

MRFY.totalFee (#426-429) is set pre-construction with a non-constant function or state variable:
- liquidityFee.add(treasuryFee).add(marketingFee).add(burnFee)
MRFY._BuytotalFee (#435-438) is set pre-construction with a non-constant function or state variable:
- _BuyliquidityFee.add(_BuytreasuryFee).add(_BuymarketingFee).add(_BuyburnFee)
MRFY._SelltotalFee (#445-448) is set pre-construction with a non-constant function or state variable:
- _SellliquidityFee.add(_SelltreasuryFee).add(_SellmarketingFee).add(_SellburnFee)
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

Low level call in MRFY.swapBack() (#762-800):
- (success) = address(treasuryReceiver).call{gas: 30000,value: amountETHToTreasuryAndMarketing.mul(treasuryFee).div(treasuryFee.add(marketingFee))}() (#788-793)
- (success,None) = address(marketingReceiver).call{gas: 30000,value: amountETHToTreasuryAndMarketing.mul(marketingFee).div(treasuryFee.add(marketingFee))}() (#794-799)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IPancakeSwapPair.DOMAIN_SEPARATOR() (#140) is not in mixedCase
Function IPancakeSwapPair.PERMIT_TYPEHASH() (#141) is not in mixedCase
Function IPancakeSwapPair.MINIMUM_LIQUIDITY() (#158) is not in mixedCase
Function IPancakeSwapRouter.WETH() (#178) is not in mixedCase
Function MRFY.Whitelist(address,bool) (#595-599) is not in mixedCase
Parameter MRFY.setAutoRebase(bool)._flag (#851) is not in mixedCase
Parameter MRFY.setAutoAddLiquidity(bool)._flag (#860) is not in mixedCase
Parameter MRFY.checkFeeExempt(address)._addr (#923) is not in mixedCase
Parameter MRFY.setFeeReceivers(address,address,address,address)._autoLiquidityReceiver (#943) is not in mixedCase
Parameter MRFY.setFeeReceivers(address,address,address,address)._treasuryReceiver (#944) is not in mixedCase
Parameter MRFY.setFeeReceivers(address,address,address,address)._marketingReceiver (#945) is not in mixedCase
Parameter MRFY.setFeeReceivers(address,address,address,address)._burnReceiver (#946) is not in mixedCase
Parameter MRFY.setFeeExempted(address)._addr (#964) is not in mixedCase
Parameter MRFY.setBotBlacklist(address,bool)._botAddress (#968) is not in mixedCase
Parameter MRFY.setBotBlacklist(address,bool)._flag (#968) is not in mixedCase
Parameter MRFY.setPairAddress(address)._pairAddress (#973) is not in mixedCase
Parameter MRFY.setLP(address)._address (#977) is not in mixedCase
Variable MRFY._isFeeExempt (#407) is not in mixedCase
Variable MRFY._BuyliquidityFee (#431) is not in mixedCase
Variable MRFY._BuytreasuryFee (#432) is not in mixedCase
Variable MRFY._BuymarketingFee (#433) is not in mixedCase
Variable MRFY._BuyburnFee (#434) is not in mixedCase
Variable MRFY._BuytotalFee (#435-438) is not in mixedCase
Variable MRFY._SellliquidityFee (#441) is not in mixedCase
Variable MRFY._SelltreasuryFee (#442) is not in mixedCase
Variable MRFY._SellmarketingFee (#443) is not in mixedCase
Variable MRFY._SellburnFee (#444) is not in mixedCase
Variable MRFY._SelltotalFee (#445-448) is not in mixedCase
Variable MRFY.DEAD (#452) is not in mixedCase
Variable MRFY.ZERO (#453) is not in mixedCase
Variable MRFY._autoRebase (#475) is not in mixedCase
Variable MRFY._autoAddLiquidity (#476) is not in mixedCase
Variable MRFY._initRebaseStartTime (#477) is not in mixedCase
Variable MRFY._lastRebasedTime (#478) is not in mixedCase
Variable MRFY._lastAddLiquidityTime (#479) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable IPancakeSwapRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#183) is too similar to IPancakeSwapRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#184)
Prevent variables from having similar names.

Additional information: link

MRFY.DEAD (#452) should be constant
MRFY.ZERO (#453) should be constant
MRFY._decimals (#404) should be constant
MRFY._name (#402) should be constant
MRFY._symbol (#403) should be constant
MRFY.feeDenominator (#450) should be constant
MRFY.swapEnabled (#460) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

MRFY.rebase().rebaseRate (#523) 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

MRFY.addLiquidity() (#718-760) ignores return value by router.addLiquidityETH{value: amountETHLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#750-757)
Ensure that all the return values of the function calls are used.

Additional information: link

MRFY.setPairAddress(address) (#973-975) is never used and should be removed
SafeMath.mod(uint256,uint256) (#90-93) 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

MRFY.slitherConstructorVariables() (#395-997) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#452)
MRFY.slitherConstructorVariables() (#395-997) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#453)
MRFY.slitherConstructorConstantVariables() (#395-997) uses literals with too many digits:
- INITIAL_FRAGMENTS_SUPPLY = 1000000 * 10 ** DECIMALS (#419-420)
MRFY.slitherConstructorConstantVariables() (#395-997) uses literals with too many digits:
- MAX_SUPPLY = 1000000000 * 10 ** DECIMALS (#473)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SafeMathInt.MAX_INT256 (#7) is never used in SafeMathInt (#5-39)
MRFY._name (#402) is never used in MRFY (#395-997)
MRFY._symbol (#403) is never used in MRFY (#395-997)
MRFY._decimals (#404) is never used in MRFY (#395-997)
Remove unused state variables.

Additional information: link

transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#356-358)
getLiquidityBacking(uint256) should be declared external:
- MRFY.getLiquidityBacking(uint256) (#954-962)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:

Contract has 15% buy tax and 20% 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.


Swap operations require suspiciously high gas. Contract logic is complex and may disguise some form of scam.


Average 30d number of PancakeSwap swaps is low.


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


Token is deployed only at one blockchain


Token has only one trading pair


Last post in Twitter was more than 30 days ago


Unable to find Youtube 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


Token is not listed at Mobula.Finance

Additional information: link


Unable to find code repository for the project


Unable to find token on CoinHunt

Additional information: link


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


Young tokens have high risks of price dump / death

Price for MRFY

News for MRFY