MEALS Token Logo

MEALS Token

About MEALS

Listings

Token 2 years
CoinGecko 2 years
CoinMarketCap 2 years
white paper

After success with a charitable social business within the United States, Austin Arrowood brings the same concept to blockchain. Meals is a deflationary charity-driven rewards token on Binance Smart Chain. For every buy & sell transaction, Meals contract collects a fee which helps strengthen the total donations made, liquidity pool, reflect static rewards in BUSD and secure their marketing/development budget. A total buy/sell fee of 16% on every transfer. Charitable donations are one small way Meals can help provide money to organizations that enhance the human experience. Philanthropy is a core value of Meals.

Social

Laser Scorebeta Last Audit: 14 October 2022

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

MEALS.swapBack() (#567-606) sends eth to arbitrary user
Dangerous calls:
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#592)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in MEALS._transferFrom(address,address,uint256) (#500-522):
External calls:
- swapBack() (#505)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#578-584)
- distributor.deposit{value: amountBNBReflection}() (#591)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#592)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#596-603)
- triggerAutoBuyback() (#506)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#644-649)
External calls sending eth:
- swapBack() (#505)
- distributor.deposit{value: amountBNBReflection}() (#591)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#592)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#596-603)
- triggerAutoBuyback() (#506)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#644-649)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#510)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#513)
- amountReceived = takeFee(sender,recipient,amount) (#512)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#554)
- triggerAutoBuyback() (#506)
- inSwap = true (#445)
- inSwap = false (#445)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.distributeDividend(address) (#341-352) ignores return value by BUSD.transfer(shareholder,amount) (#347)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

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.


Combination 2: Unchecked transfer + 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.


Contract ownership is not renounced (belongs to a wallet)


Combination 3: Reentrancy vulnerabilities + Unchecked transfer vulnerability. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.

unauthorize(address) should be declared external:
- Auth.unauthorize(address) (#130-132)
getUnpaidEarnings(address) should be declared external:
- MEALS.getUnpaidEarnings(address) (#739-741)
transferOwnership(address) should be declared external:
- Auth.transferOwnership(address) (#151-155)
authorize(address) should be declared external:
- Auth.authorize(address) (#123-125)
Use the external attribute for functions never called from the contract.

Additional information: link

Reentrancy in DividendDistributor.process(uint256) (#310-334):
External calls:
- distributeDividend(shareholders[currentIndex]) (#326)
- BUSD.transfer(shareholder,amount) (#347)
State variables written after the call(s):
- currentIndex ++ (#331)
Reentrancy in DividendDistributor.setShare(address,uint256) (#274-288):
External calls:
- distributeDividend(shareholder) (#276)
- BUSD.transfer(shareholder,amount) (#347)
State variables written after the call(s):
- shares[shareholder].amount = amount (#286)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#287)
Reentrancy in DividendDistributor.distributeDividend(address) (#341-352):
External calls:
- BUSD.transfer(shareholder,amount) (#347)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#349)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#350)
Apply the check-effects-interactions pattern.

Additional information: link

MEALS.swapBack() (#567-606) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#596-603)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendDistributor.distributeDividend(address) (#341-352) has external calls inside a loop: BUSD.transfer(shareholder,amount) (#347)
Favor pull over push strategy for external calls.

Additional information: link

Low level call in MEALS.swapBack() (#567-606):
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#592)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

DividendDistributor.setDistributionCriteria(uint256,uint256) (#269-272) should emit an event for:
- minPeriod = _minPeriod (#270)
- minDistribution = _minDistribution (#271)
MEALS.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool) (#652-660) should emit an event for:
- autoBuybackCap = _cap (#654)
- autoBuybackAmount = _amount (#656)
MEALS.setTargetLiquidity(uint256,uint256) (#721-724) should emit an event for:
- targetLiquidity = _target (#722)
- targetLiquidityDenominator = _denominator (#723)
MEALS.setFees(uint256,uint256,uint256,uint256,uint256) (#700-707) should emit an event for:
- liquidityFee = _liquidityFee (#701)
- marketingFee = _marketingFee (#703)
- reflectionFee = _reflectionFee (#704)
- totalFee = _liquidityFee.add(_buybackFee).add(_reflectionFee).add(_marketingFee) (#705)
- feeDenominator = _feeDenominator (#706)
MEALS.setBuybackMultiplierSettings(uint256,uint256,uint256) (#662-667) should emit an event for:
- buybackMultiplierNumerator = numerator (#664)
- buybackMultiplierDenominator = denominator (#665)
- buybackMultiplierLength = length (#666)
MEALS.setSwapBackSettings(bool,uint256) (#716-719) should emit an event for:
- swapThreshold = _amount (#718)
MEALS.setTxLimit(uint256) (#677-680) should emit an event for:
- _maxTxAmount = amount (#679)
Emit an event for critical parameter changes.

Additional information: link

MEALS.setFeeReceivers(address,address)._marketingFeeReceiver (#709) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#710)
MEALS.setFeeReceivers(address,address)._autoLiquidityReceiver (#709) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#711)
Auth.transferOwnership(address).adr (#151) lacks a zero-check on :
- owner = adr (#152)
Check that the address is not zero.

Additional information: link

Reentrancy in MEALS._transferFrom(address,address,uint256) (#500-522):
External calls:
- swapBack() (#505)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#578-584)
- distributor.deposit{value: amountBNBReflection}() (#591)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#592)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#596-603)
- triggerAutoBuyback() (#506)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#644-649)
External calls sending eth:
- swapBack() (#505)
- distributor.deposit{value: amountBNBReflection}() (#591)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#592)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#596-603)
- triggerAutoBuyback() (#506)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#644-649)
State variables written after the call(s):
- triggerAutoBuyback() (#506)
- buybackMultiplierTriggeredAt = block.timestamp (#631)
- launch() (#508)
- launchedAt = block.number (#674)
Reentrancy in DividendDistributor.deposit() (#290-308):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#297-302)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#307)
- totalDividends = totalDividends.add(amount) (#306)
Reentrancy in DividendDistributor.setShare(address,uint256) (#274-288):
External calls:
- distributeDividend(shareholder) (#276)
- BUSD.transfer(shareholder,amount) (#347)
State variables written after the call(s):
- addShareholder(shareholder) (#280)
- shareholderIndexes[shareholder] = shareholders.length (#374)
- removeShareholder(shareholder) (#282)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#380)
- addShareholder(shareholder) (#280)
- shareholders.push(shareholder) (#375)
- removeShareholder(shareholder) (#282)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#379)
- shareholders.pop() (#381)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#285)
Reentrancy in MEALS.triggerAutoBuyback() (#628-637):
External calls:
- buyTokens(autoBuybackAmount,DEAD) (#629)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#644-649)
State variables written after the call(s):
- autoBuybackAccumulator = autoBuybackAccumulator.add(autoBuybackAmount) (#635)
- autoBuybackBlockLast = block.number (#634)
- autoBuybackEnabled = false (#636)
- buybackMultiplierTriggeredAt = block.timestamp (#631)
Reentrancy in DividendDistributor.distributeDividend(address) (#341-352):
External calls:
- BUSD.transfer(shareholder,amount) (#347)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#348)
Reentrancy in MEALS.triggerManualBuyback(uint256,bool) (#616-622):
External calls:
- buyTokens(amount,DEAD) (#617)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#644-649)
State variables written after the call(s):
- buybackMultiplierTriggeredAt = block.timestamp (#619)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in MEALS.swapBack() (#567-606):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#578-584)
- distributor.deposit{value: amountBNBReflection}() (#591)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#592)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#596-603)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#591)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#592)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#596-603)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#604)
Reentrancy in MEALS._transferFrom(address,address,uint256) (#500-522):
External calls:
- swapBack() (#505)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#578-584)
- distributor.deposit{value: amountBNBReflection}() (#591)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#592)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#596-603)
- triggerAutoBuyback() (#506)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#644-649)
External calls sending eth:
- swapBack() (#505)
- distributor.deposit{value: amountBNBReflection}() (#591)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#592)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#596-603)
- triggerAutoBuyback() (#506)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#644-649)
Event emitted after the call(s):
- BuybackMultiplierActive(buybackMultiplierLength) (#632)
- triggerAutoBuyback() (#506)
- Transfer(sender,address(this),feeAmount) (#555)
- amountReceived = takeFee(sender,recipient,amount) (#512)
Reentrancy in MEALS._transferFrom(address,address,uint256) (#500-522):
External calls:
- swapBack() (#505)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#578-584)
- distributor.deposit{value: amountBNBReflection}() (#591)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#592)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#596-603)
- triggerAutoBuyback() (#506)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#644-649)
- distributor.setShare(sender,_balances[sender]) (#515)
- distributor.setShare(recipient,_balances[recipient]) (#516)
- distributor.process(distributorGas) (#518)
External calls sending eth:
- swapBack() (#505)
- distributor.deposit{value: amountBNBReflection}() (#591)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#592)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#596-603)
- triggerAutoBuyback() (#506)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#644-649)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived) (#520)
Reentrancy in MEALS.triggerManualBuyback(uint256,bool) (#616-622):
External calls:
- buyTokens(amount,DEAD) (#617)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#644-649)
Event emitted after the call(s):
- BuybackMultiplierActive(buybackMultiplierLength) (#620)
Reentrancy in MEALS.triggerAutoBuyback() (#628-637):
External calls:
- buyTokens(autoBuybackAmount,DEAD) (#629)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#644-649)
Event emitted after the call(s):
- BuybackMultiplierActive(buybackMultiplierLength) (#632)
Apply the check-effects-interactions pattern.

Additional information: link

MEALS._transferFrom(address,address,uint256) (#500-522) uses timestamp for comparisons
Dangerous comparisons:
- require(bool)(_balances[sender] > 0) (#508)
MEALS.isOverLiquified(uint256,uint256) (#756-758) uses timestamp for comparisons
Dangerous comparisons:
- getLiquidityBacking(accuracy) > target (#757)
DividendDistributor.shouldDistribute(address) (#336-339) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#337-338)
MEALS.shouldSwapBack() (#560-565) uses timestamp for comparisons
Dangerous comparisons:
- msg.sender != pair && ! inSwap && swapEnabled && _balances[address(this)] >= swapThreshold (#561-564)
MEALS.getTotalFee(bool) (#539-543) uses timestamp for comparisons
Dangerous comparisons:
- selling && buybackMultiplierTriggeredAt.add(buybackMultiplierLength) > block.timestamp (#541)
Avoid relying on block.timestamp.

Additional information: link

DividendDistributor.distributeDividend(address) (#341-352) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#346)
DividendDistributor.process(uint256) (#310-334) has costly operations inside a loop:
- currentIndex ++ (#331)
DividendDistributor.process(uint256) (#310-334) has costly operations inside a loop:
- currentIndex = 0 (#322)
Use a local variable to hold the loop computation result.

Additional information: link

MEALS._maxTxAmount (#398) is set pre-construction with a non-constant function or state variable:
- _totalSupply / 20
MEALS.swapThreshold (#443) is set pre-construction with a non-constant function or state variable:
- _totalSupply / 200
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

Parameter MEALS.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool)._cap (#652) is not in mixedCase
Parameter MEALS.setFeeReceivers(address,address)._autoLiquidityReceiver (#709) is not in mixedCase
Parameter MEALS.setFees(uint256,uint256,uint256,uint256,uint256)._feeDenominator (#700) is not in mixedCase
Parameter MEALS.setFees(uint256,uint256,uint256,uint256,uint256)._reflectionFee (#700) is not in mixedCase
Parameter MEALS.setDistributionCriteria(uint256,uint256)._minPeriod (#731) is not in mixedCase
Function IDEXRouter.WETH() (#166) is not in mixedCase
Variable MEALS._allowances (#401) is not in mixedCase
Variable MEALS._totalSupply (#397) is not in mixedCase
Constant MEALS._decimals (#395) is not in UPPER_CASE_WITH_UNDERSCORES
Variable MEALS.WBNB (#389) is not in mixedCase
Variable MEALS.DEAD (#390) is not in mixedCase
Variable MEALS._maxTxAmount (#398) is not in mixedCase
Parameter MEALS.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool)._enabled (#652) is not in mixedCase
Parameter MEALS.setSwapBackSettings(bool,uint256)._enabled (#716) is not in mixedCase
Variable DividendDistributor.BUSD (#230) is not in mixedCase
Constant MEALS._name (#393) is not in UPPER_CASE_WITH_UNDERSCORES
Parameter MEALS.setFees(uint256,uint256,uint256,uint256,uint256)._liquidityFee (#700) is not in mixedCase
Parameter MEALS.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool)._period (#652) is not in mixedCase
Parameter MEALS.setDistributionCriteria(uint256,uint256)._minDistribution (#731) is not in mixedCase
Parameter MEALS.setFees(uint256,uint256,uint256,uint256,uint256)._marketingFee (#700) is not in mixedCase
Parameter MEALS.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool)._amount (#652) is not in mixedCase
Parameter MEALS.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool)._autoBuybackMultiplier (#652) is not in mixedCase
Constant MEALS._symbol (#394) is not in UPPER_CASE_WITH_UNDERSCORES
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minDistribution (#269) is not in mixedCase
Parameter MEALS.setFeeReceivers(address,address)._marketingFeeReceiver (#709) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minPeriod (#269) is not in mixedCase
Parameter MEALS.setTargetLiquidity(uint256,uint256)._denominator (#721) is not in mixedCase
Variable DividendDistributor._token (#222) is not in mixedCase
Variable MEALS.BUSD (#388) is not in mixedCase
Variable DividendDistributor.WBNB (#231) is not in mixedCase
Parameter MEALS.setSwapBackSettings(bool,uint256)._amount (#716) is not in mixedCase
Parameter MEALS.setTargetLiquidity(uint256,uint256)._target (#721) is not in mixedCase
Parameter MEALS.setFees(uint256,uint256,uint256,uint256,uint256)._buybackFee (#700) is not in mixedCase
Variable MEALS.ZERO (#391) is not in mixedCase
Variable MEALS._balances (#400) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#171) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#172)
Prevent variables from having similar names.

Additional information: link

MEALS.slitherConstructorVariables() (#385-763) uses literals with too many digits:
- distributorGas = 500000 (#440)
MEALS.slitherConstructorVariables() (#385-763) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#390)
MEALS.slitherConstructorVariables() (#385-763) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#391)
MEALS.slitherConstructorVariables() (#385-763) uses literals with too many digits:
- _totalSupply = 100000000000 * (10 ** _decimals) (#397)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

MEALS.BUSD (#388) is never used in MEALS (#385-763)
Remove unused state variables.

Additional information: link

MEALS.WBNB (#389) should be constant
MEALS._totalSupply (#397) should be constant
MEALS.DEAD (#390) should be constant
MEALS.ZERO (#391) should be constant
DividendDistributor.dividendsPerShareAccuracyFactor (#244) should be constant
DividendDistributor.WBNB (#231) should be constant
MEALS.BUSD (#388) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

Holders:

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


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


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


Average 30d PancakeSwap liquidity is low.


Token is deployed only at one blockchain


Token has only one trading pair


Twitter account has relatively few followers


Last post in Twitter was more than 30 days ago


Unable to find Youtube account


Token was delisted (assigned to inactive / untracked listing) from CoinMarketCap

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


Token is not listed at Mobula.Finance

Additional information: link


Token has no active CoinMarketCap listing / rank


Token has a considerable age, but social accounts / website are missing or have few users


Token has a considerable age, but average PancakeSwap 30d trading volume is low


Token has relatively low CoinGecko rank


Young tokens have high risks of price dump / death

Price for MEALS

News for MEALS