Baby Meta Token Logo

BabyMeta [Baby Meta] Token

About BabyMeta

Listings

Token 2 years
CoinMarketCap 2 years
[CoinMarketCap] alert: Baby Meta relaunched from old contract to new contract. For more information, visit here
[CoinGecko] alert: Baby Meta has migrated to a new contract address (0x30c49441d326677892891b97b34743306bc97934). For more information, please visit: https://twitter.com/babymetacoin/status/1466633920854822915
white paper

Memecoin in the process of building an NFT VR platform where you can view your NFTs in different rooms of the Metaverse.

Social

Laser Scorebeta Last Audit: 27 January 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...)

BabyMeta.swapAndLiquify() (#1060-1087) sends eth to arbitrary user
Dangerous calls:
- (sent) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1082)
BabyMeta.addLiquidity(address,uint256,uint256) (#1105-1118) sends eth to arbitrary user
Dangerous calls:
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1110-1117)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in BabyMeta._transfer(address,address,uint256) (#969-1003):
External calls:
- swapAndLiquify() (#986)
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1110-1117)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1096-1102)
- (sent) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1082)
External calls sending eth:
- swapAndLiquify() (#986)
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1110-1117)
- (sent) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1082)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#998)
- _rOwned[address(this)] += rLiquidity (#920)
- _rOwned[sender] -= rAmount (#1029)
- _rOwned[recipient] += rTransferAmount (#1036)
- _tokenTransfer(from,to,amount,takeFee) (#998)
- _rTotal = _rTotal - rFee (#819)
- _tokenTransfer(from,to,amount,takeFee) (#998)
- _tOwned[address(this)] += tLiquidity (#922)
- _tOwned[sender] -= tAmount (#1032)
- _tOwned[recipient] += tTransferAmount (#1034)
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.

BabyMeta.addLiquidity(address,uint256,uint256) (#1105-1118) ignores return value by router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1110-1117)
Ensure that all the return values of the function calls are used.

Additional information: link

BabyMeta.allowance(address,address)._owner (#676) shadows:
- Ownable._owner (#37) (state variable)
BabyMeta._approve(address,address,uint256)._owner (#946) shadows:
- Ownable._owner (#37) (state variable)
BabyMeta.addLiquidity(address,uint256,uint256).owner (#1106) shadows:
- Ownable.owner() (#51-53) (function)
Rename the local variables that shadow another component.

Additional information: link

BabyMeta.setMaxWallet(uint256,uint256) (#653-657) should emit an event for:
- maxWallet = (_tTotal * numerator) / divisor (#656)
BabyMeta.setMaxBuyTx(uint256,uint256) (#659-663) should emit an event for:
- maxBuyTxAmount = (_tTotal * numerator) / divisor (#662)
BabyMeta.setMaxSellTx(uint256,uint256) (#665-669) should emit an event for:
- maxSellTxAmount = (_tTotal * numerator) / divisor (#668)
BabyMeta.setTaxFeeThousandth(uint256,uint256) (#762-766) should emit an event for:
- _taxFee = taxFee (#764)
- _taxSellBias = taxSellBias (#765)
BabyMeta.setBNBFeeThousandth(uint256,uint256,uint256) (#768-776) should emit an event for:
- _liquidityFee = _marketingFee + _lpFee (#770)
- totalFeesToLP = _lpFee (#772)
- _liquiditySellBias = _sellBias (#775)
BabyMeta.setAmountToSell(uint256,uint256) (#778-781) should emit an event for:
- minTokenNumberToSell = _tTotal / _divisorMin (#779)
- tokenNumberToSell = _tTotal / _divisorMax (#780)
BabyMeta.updateGnosisGas(uint256) (#1056-1058) should emit an event for:
- gnosisGas = _amount (#1057)
Emit an event for critical parameter changes.

Additional information: link

BabyMeta.constructor(address)._marketing (#567) lacks a zero-check on :
- marketingWallet = _marketing (#581)
BabyMeta.setMarketingWallet(address)._newAddress (#783) lacks a zero-check on :
- marketingWallet = _newAddress (#784)
Check that the address is not zero.

Additional information: link

BabyMeta.swapTokensForEth(uint256) (#1089-1103) has external calls inside a loop: path[1] = router.WETH() (#1094)
BabyMeta.swapTokensForEth(uint256) (#1089-1103) has external calls inside a loop: router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1096-1102)
BabyMeta.addLiquidity(address,uint256,uint256) (#1105-1118) has external calls inside a loop: router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1110-1117)
BabyMeta.swapAndLiquify() (#1060-1087) has external calls inside a loop: (sent) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1082)
BabyMeta._transfer(address,address,uint256) (#969-1003) has external calls inside a loop: antisnipe.onPreTransferCheck(from,to,amount) (#1001)
Favor pull over push strategy for external calls.

Additional information: link

Reentrancy in BabyMeta._transfer(address,address,uint256) (#969-1003):
External calls:
- swapAndLiquify() (#986)
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1110-1117)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1096-1102)
- (sent) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1082)
External calls sending eth:
- swapAndLiquify() (#986)
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1110-1117)
- (sent) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1082)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#998)
- _tFeeTotal = _tFeeTotal + tFee (#820)
Reentrancy in BabyMeta.constructor(address) (#567-597):
External calls:
- pancakePair = IPancakeFactory(router.factory()).createPair(address(this),router.WETH()) (#575-578)
State variables written after the call(s):
- _approve(address(this),routerAddress,_tTotal) (#593)
- _allowances[_owner][spender] = amount (#953)
- _approve(0x3c4F6eef598101828aF63e44dFF52aAe0F207AFa,routerAddress,_tTotal) (#594)
- _allowances[_owner][spender] = amount (#953)
- _excluded.push(address(this)) (#589)
- _excluded.push(pancakePair) (#591)
- _isExcludedFromRewards[address(this)] = true (#588)
- _isExcludedFromRewards[pancakePair] = true (#590)
- _liqProvWhitelist[msg.sender] = true (#584)
- _taxWhitelist[msg.sender] = true (#583)
- _taxWhitelist[_marketing] = true (#585)
- _taxWhitelist[address(this)] = true (#586)
- liquidityPools[pancakePair] = true (#579)
- marketingWallet = _marketing (#581)
Reentrancy in BabyMeta.transferFrom(address,address,uint256) (#698-710):
External calls:
- _transfer(sender,recipient,amount) (#703)
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1110-1117)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1096-1102)
- (sent) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1082)
- antisnipe.onPreTransferCheck(from,to,amount) (#1001)
External calls sending eth:
- _transfer(sender,recipient,amount) (#703)
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1110-1117)
- (sent) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1082)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()] - amount) (#704-708)
- _allowances[_owner][spender] = amount (#953)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in BabyMeta._transfer(address,address,uint256) (#969-1003):
External calls:
- swapAndLiquify() (#986)
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1110-1117)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1096-1102)
- (sent) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1082)
External calls sending eth:
- swapAndLiquify() (#986)
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1110-1117)
- (sent) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1082)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1043)
- _tokenTransfer(from,to,amount,takeFee) (#998)
Reentrancy in BabyMeta.constructor(address) (#567-597):
External calls:
- pancakePair = IPancakeFactory(router.factory()).createPair(address(this),router.WETH()) (#575-578)
Event emitted after the call(s):
- Approval(_owner,spender,amount) (#954)
- _approve(0x3c4F6eef598101828aF63e44dFF52aAe0F207AFa,routerAddress,_tTotal) (#594)
- Approval(_owner,spender,amount) (#954)
- _approve(address(this),routerAddress,_tTotal) (#593)
- Transfer(address(0),_msgSender(),_tTotal) (#596)
Reentrancy in BabyMeta.swapAndLiquify() (#1060-1087):
External calls:
- swapTokensForEth(amountToSwap - tokensForLP) (#1067-1069)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1096-1102)
- addLiquidity(burnAddress,tokensForLP,bnbToBeAddedToLiquidity) (#1077)
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1110-1117)
- (sent) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1082)
External calls sending eth:
- addLiquidity(burnAddress,tokensForLP,bnbToBeAddedToLiquidity) (#1077)
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1110-1117)
- (sent) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1082)
Event emitted after the call(s):
- SwapAndLiquify(amountToSwap,deltaBalance,tokensForLP) (#1086)
Reentrancy in BabyMeta.transferFrom(address,address,uint256) (#698-710):
External calls:
- _transfer(sender,recipient,amount) (#703)
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1110-1117)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1096-1102)
- (sent) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1082)
- antisnipe.onPreTransferCheck(from,to,amount) (#1001)
External calls sending eth:
- _transfer(sender,recipient,amount) (#703)
- router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner,block.timestamp + 360) (#1110-1117)
- (sent) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1082)
Event emitted after the call(s):
- Approval(_owner,spender,amount) (#954)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()] - amount) (#704-708)
Apply the check-effects-interactions pattern.

Additional information: link

Address.isContract(address) (#156-166) uses assembly
- INLINE ASM (#162-164)
Address.verifyCallResult(bool,bytes,string) (#325-345) uses assembly
- INLINE ASM (#337-340)
Do not use evm assembly.

Additional information: link

BabyMeta.includeInReward(address) (#640-651) has costly operations inside a loop:
- _excluded.pop() (#647)
BabyMeta._transfer(address,address,uint256) (#969-1003) has costly operations inside a loop:
- liquidityLaunched = true (#980)
BabyMeta.swapping() (#560) has costly operations inside a loop:
- inSwap = true (#560)
BabyMeta.swapping() (#560) has costly operations inside a loop:
- inSwap = false (#560)
BabyMeta._reflectFee(uint256,uint256) (#818-821) has costly operations inside a loop:
- _rTotal = _rTotal - rFee (#819)
BabyMeta._reflectFee(uint256,uint256) (#818-821) has costly operations inside a loop:
- _tFeeTotal = _tFeeTotal + tFee (#820)
Use a local variable to hold the loop computation result.

Additional information: link

Address.functionCall(address,bytes) (#209-211) is never used and should be removed
Address.functionCall(address,bytes,string) (#219-225) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#238-244) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#252-263) is never used and should be removed
Address.functionDelegateCall(address,bytes) (#298-300) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (#308-317) is never used and should be removed
Address.functionStaticCall(address,bytes) (#271-273) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (#281-290) is never used and should be removed
Address.isContract(address) (#156-166) is never used and should be removed
Address.sendValue(address,uint256) (#184-189) is never used and should be removed
Address.verifyCallResult(bool,bytes,string) (#325-345) is never used and should be removed
Context._msgData() (#19-21) is never used and should be removed
Remove unused functions.

Additional information: link

BabyMeta._tTotal (#514) is set pre-construction with a non-constant function or state variable:
- 1_000_000_000_000_000 * (10 ** _decimals)
BabyMeta._rTotal (#515) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
BabyMeta.maxWallet (#516) is set pre-construction with a non-constant function or state variable:
- (_tTotal * 2) / 100
BabyMeta.maxBuyTxAmount (#517) is set pre-construction with a non-constant function or state variable:
- (_tTotal * 3) / 202
BabyMeta.maxSellTxAmount (#518) is set pre-construction with a non-constant function or state variable:
- (_tTotal * 3) / 202
BabyMeta.minTokenNumberToSell (#536) is set pre-construction with a non-constant function or state variable:
- _tTotal / 100000
BabyMeta.tokenNumberToSell (#537) is set pre-construction with a non-constant function or state variable:
- _tTotal / 1000
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.8 (#1) is known to contain severe issues (https://solidity.readthedocs.io/en/latest/bugs.html)
solc-0.8.10 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

Low level call in Address.sendValue(address,uint256) (#184-189):
- (success) = recipient.call{value: amount}() (#187)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (#252-263):
- (success,returndata) = target.call{value: value}(data) (#261)
Low level call in Address.functionStaticCall(address,bytes,string) (#281-290):
- (success,returndata) = target.staticcall(data) (#288)
Low level call in Address.functionDelegateCall(address,bytes,string) (#308-317):
- (success,returndata) = target.delegatecall(data) (#315)
Low level call in BabyMeta.swapAndLiquify() (#1060-1087):
- (sent) = marketingWallet.call{gas: gnosisGas,value: bnbToBeAddedToMarketing}() (#1082)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IPancakeRouter01.WETH() (#350) is not in mixedCase
Parameter BabyMeta.setTeamMember(address,bool)._team (#620) is not in mixedCase
Parameter BabyMeta.setTeamMember(address,bool)._enabled (#620) is not in mixedCase
Parameter BabyMeta.allowance(address,address)._owner (#676) is not in mixedCase
Parameter BabyMeta.currentReflection(address)._wallet (#748) is not in mixedCase
Parameter BabyMeta.setBNBFeeThousandth(uint256,uint256,uint256)._marketingFee (#768) is not in mixedCase
Parameter BabyMeta.setBNBFeeThousandth(uint256,uint256,uint256)._lpFee (#768) is not in mixedCase
Parameter BabyMeta.setBNBFeeThousandth(uint256,uint256,uint256)._sellBias (#768) is not in mixedCase
Parameter BabyMeta.setAmountToSell(uint256,uint256)._divisorMin (#778) is not in mixedCase
Parameter BabyMeta.setAmountToSell(uint256,uint256)._divisorMax (#778) is not in mixedCase
Parameter BabyMeta.setMarketingWallet(address)._newAddress (#783) is not in mixedCase
Parameter BabyMeta.setLiqidityProviderWhitelisted(address,bool)._address (#787) is not in mixedCase
Parameter BabyMeta.setLiqidityProviderWhitelisted(address,bool)._whitelisted (#787) is not in mixedCase
Parameter BabyMeta.getLPWhitelisted(address)._account (#796) is not in mixedCase
Parameter BabyMeta.setSwapAndLiquifyEnabled(bool)._enabled (#800) is not in mixedCase
Parameter BabyMeta.updateRouter(address,address)._router (#810) is not in mixedCase
Parameter BabyMeta.updateRouter(address,address)._pair (#810) is not in mixedCase
Function BabyMeta._getRate() (#894-897) is not in mixedCase
Parameter BabyMeta.calculateTaxFee(uint256,bool)._amount (#926) is not in mixedCase
Parameter BabyMeta.calculateLiquidityFee(uint256,bool)._amount (#931) is not in mixedCase
Parameter BabyMeta.setProtection(IAntiSnipe)._protection (#957) is not in mixedCase
Parameter BabyMeta.setProtection(bool)._enable (#961) is not in mixedCase
Parameter BabyMeta.setAutoStart(bool)._enable (#965) is not in mixedCase
Parameter BabyMeta.updateGnosisGas(uint256)._amount (#1056) is not in mixedCase
Parameter BabyMeta.airdrop(address[],uint256[])._addresses (#1120) is not in mixedCase
Parameter BabyMeta.airdrop(address[],uint256[])._amount (#1120) is not in mixedCase
Variable BabyMeta._taxFee (#528) is not in mixedCase
Variable BabyMeta._taxSellBias (#529) is not in mixedCase
Variable BabyMeta._liquidityFee (#533) is not in mixedCase
Variable BabyMeta._liquiditySellBias (#534) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable IPancakeRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#355) is too similar to IPancakeRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#356)
Variable BabyMeta._transferStandard(address,address,uint256,bool).rTransferAmount (#1022) is too similar to BabyMeta._transferStandard(address,address,uint256,bool).tTransferAmount (#1024)
Variable BabyMeta._getValues(uint256,bool,bool).rTransferAmount (#842) is too similar to BabyMeta._transferStandard(address,address,uint256,bool).tTransferAmount (#1024)
Variable BabyMeta._getValues(uint256,bool,bool).rTransferAmount (#842) is too similar to BabyMeta._getValues(uint256,bool,bool).tTransferAmount (#837)
Variable BabyMeta._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#890) is too similar to BabyMeta._getValues(uint256,bool,bool).tTransferAmount (#837)
Variable BabyMeta._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#890) is too similar to BabyMeta._transferStandard(address,address,uint256,bool).tTransferAmount (#1024)
Variable BabyMeta._transferStandard(address,address,uint256,bool).rTransferAmount (#1022) is too similar to BabyMeta._getTValues(uint256,bool,bool).tTransferAmount (#869)
Variable BabyMeta._getValues(uint256,bool,bool).rTransferAmount (#842) is too similar to BabyMeta._getTValues(uint256,bool,bool).tTransferAmount (#869)
Variable BabyMeta._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#890) is too similar to BabyMeta._getTValues(uint256,bool,bool).tTransferAmount (#869)
Variable BabyMeta._transferStandard(address,address,uint256,bool).rTransferAmount (#1022) is too similar to BabyMeta._getValues(uint256,bool,bool).tTransferAmount (#837)
Prevent variables from having similar names.

Additional information: link

BabyMeta.slitherConstructorVariables() (#493-1136) uses literals with too many digits:
- burnAddress = 0x000000000000000000000000000000000000dEaD (#521)
BabyMeta.slitherConstructorVariables() (#493-1136) uses literals with too many digits:
- minTokenNumberToSell = _tTotal / 100000 (#536)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

BabyMeta._decimals (#498) should be constant
BabyMeta._name (#496) should be constant
BabyMeta._symbol (#497) should be constant
BabyMeta.burnAddress (#521) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#70-72)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#78-81)
name() should be declared external:
- BabyMeta.name() (#599-601)
symbol() should be declared external:
- BabyMeta.symbol() (#603-605)
decimals() should be declared external:
- BabyMeta.decimals() (#607-609)
totalSupply() should be declared external:
- BabyMeta.totalSupply() (#611-613)
isExcludedFromReward(address) should be declared external:
- BabyMeta.isExcludedFromReward(address) (#624-626)
allowance(address,address) should be declared external:
- BabyMeta.allowance(address,address) (#676-682)
totalFees() should be declared external:
- BabyMeta.totalFees() (#684-686)
approve(address,uint256) should be declared external:
- BabyMeta.approve(address,uint256) (#688-691)
transfer(address,uint256) should be declared external:
- BabyMeta.transfer(address,uint256) (#693-696)
transferFrom(address,address,uint256) should be declared external:
- BabyMeta.transferFrom(address,address,uint256) (#698-710)
increaseAllowance(address,uint256) should be declared external:
- BabyMeta.increaseAllowance(address,uint256) (#712-723)
decreaseAllowance(address,uint256) should be declared external:
- BabyMeta.decreaseAllowance(address,uint256) (#725-736)
setAccountWhitelisted(address,bool) should be declared external:
- BabyMeta.setAccountWhitelisted(address,bool) (#757-760)
setSwapAndLiquifyEnabled(bool) should be declared external:
- BabyMeta.setSwapAndLiquifyEnabled(bool) (#800-803)
isWhitelisted(address) should be declared external:
- BabyMeta.isWhitelisted(address) (#936-938)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Average 30d PancakeSwap liquidity 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.

Contract has 7% buy tax and 14% sell tax.
Taxes are high (over 10%) but contract ownership is renounced.


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


Young tokens have high risks of 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 BabyMeta

News for BabyMeta