MetaJungle Token Logo

JUNGLE [MetaJungle] Token

About JUNGLE

Listings

Token 2 years

MetaJungle is a stealth launched reward token on the Binance Smart Chain aiming to build the biggest live crypto-casino community in the sphere by partnering up with as many BSC/ERC tokens as possible.
MetaJungle, will also be developing and creating casino Slot games. Becoming a provider for various famous crypto casinos.
The main mission of MetaJungle is to give easy access to all kind of token holders to play and earn their favorite tokens on games like Live Blackjack, Live Roulette and slots.

🤯 Mad BUSD rewards !
🍀 Daily BUSD giveaways on Telegram
⭐️ Holders will get early access to Jungle Casino
🔥 Experienced team. KYC
💫Strong Marketing Campaign

💎TOKENOMICS:
- Total Supply: 1,000,000,000,000
- Fee : 12%
- BUSD Rewards : 5%
- Marketing: 5%
- Liquidity: 2%

Social

Laser Scorebeta Last Audit: 22 December 2021

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

Anti-Scam

Links


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

MetaJungle.swapBack() (#589-633) sends eth to arbitrary user
Dangerous calls:
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#617)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in MetaJungle._transferFrom(address,address,uint256) (#489-537):
External calls:
- swapBack() (#516)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#600-606)
- distributor.deposit{value: amountBNBReflection}() (#616)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#617)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#623-630)
External calls sending eth:
- swapBack() (#516)
- distributor.deposit{value: amountBNBReflection}() (#616)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#617)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#623-630)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#519)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#522)
- amountReceived = takeFee(sender,amount) (#521)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#557)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.distributeDividend(address) (#324-335) ignores return value by BETH.transfer(shareholder,amount) (#330)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link


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

MetaJungle.swapBack().tmpSuccess (#617) is written in both
(tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#617)
tmpSuccess = false (#620)
Fix or remove the writes.

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.


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.

MetaJungle._maxTxAmount (#381) is set pre-construction with a non-constant function or state variable:
- _totalSupply * 3 / 100
MetaJungle._maxWalletToken (#384) is set pre-construction with a non-constant function or state variable:
- (_totalSupply * 3) / 100
MetaJungle.swapThreshold (#421) is set pre-construction with a non-constant function or state variable:
- _totalSupply * 30 / 10000
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

Reentrancy in DividendDistributor.distributeDividend(address) (#324-335):
External calls:
- BETH.transfer(shareholder,amount) (#330)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#332)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#333)
Reentrancy in DividendDistributor.process(uint256) (#293-317):
External calls:
- distributeDividend(shareholders[currentIndex]) (#309)
- BETH.transfer(shareholder,amount) (#330)
State variables written after the call(s):
- currentIndex ++ (#314)
Reentrancy in DividendDistributor.setShare(address,uint256) (#257-271):
External calls:
- distributeDividend(shareholder) (#259)
- BETH.transfer(shareholder,amount) (#330)
State variables written after the call(s):
- shares[shareholder].amount = amount (#269)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#270)
Apply the check-effects-interactions pattern.

Additional information: link

MetaJungle.swapBack() (#589-633) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#623-630)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendDistributor.setDistributionCriteria(uint256,uint256) (#252-255) should emit an event for:
- minPeriod = _minPeriod (#253)
- minDistribution = _minDistribution (#254)
MetaJungle.setTxLimit(uint256) (#636-638) should emit an event for:
- _maxTxAmount = amount (#637)
MetaJungle.setFees(uint256,uint256,uint256,uint256) (#662-669) should emit an event for:
- liquidityFee = _liquidityFee (#663)
- reflectionFee = _reflectionFee (#664)
- marketingFee = _marketingFee (#665)
- totalFee = _liquidityFee.add(_reflectionFee).add(_marketingFee) (#666)
- feeDenominator = _feeDenominator (#667)
MetaJungle.setSwapBackSettings(bool,uint256) (#676-679) should emit an event for:
- swapThreshold = _amount (#678)
MetaJungle.setTargetLiquidity(uint256,uint256) (#681-684) should emit an event for:
- targetLiquidity = _target (#682)
- targetLiquidityDenominator = _denominator (#683)
Emit an event for critical parameter changes.

Additional information: link

Auth.transferOwnership(address).adr (#135) lacks a zero-check on :
- owner = adr (#136)
MetaJungle.setFeeReceivers(address,address)._autoLiquidityReceiver (#671) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#672)
MetaJungle.setFeeReceivers(address,address)._marketingFeeReceiver (#671) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#673)
Check that the address is not zero.

Additional information: link

DividendDistributor.distributeDividend(address) (#324-335) has external calls inside a loop: BETH.transfer(shareholder,amount) (#330)
MetaJungle.airdrop(address,address[],uint256[]) (#712-735) has external calls inside a loop: distributor.setShare(addresses[i_scope_0],_balances[addresses[i_scope_0]]) (#727)
Favor pull over push strategy for external calls.

Additional information: link

Reentrancy in MetaJungle.constructor() (#425-450):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#427)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = uint256(- 1) (#428)
- _balances[msg.sender] = _totalSupply (#448)
- autoLiquidityReceiver = msg.sender (#445)
- distributor = new DividendDistributor(address(router)) (#430)
- isDividendExempt[pair] = true (#440)
- isDividendExempt[address(this)] = false (#441)
- isDividendExempt[DEAD] = true (#442)
- isFeeExempt[msg.sender] = true (#432)
- isTimelockExempt[msg.sender] = true (#436)
- isTimelockExempt[DEAD] = true (#437)
- isTimelockExempt[address(this)] = true (#438)
- isTxLimitExempt[msg.sender] = true (#433)
- marketingFeeReceiver = msg.sender (#446)
Reentrancy in DividendDistributor.deposit() (#273-291):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#280-285)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#290)
- totalDividends = totalDividends.add(amount) (#289)
Reentrancy in DividendDistributor.distributeDividend(address) (#324-335):
External calls:
- BETH.transfer(shareholder,amount) (#330)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#331)
Reentrancy in DividendDistributor.setShare(address,uint256) (#257-271):
External calls:
- distributeDividend(shareholder) (#259)
- BETH.transfer(shareholder,amount) (#330)
State variables written after the call(s):
- addShareholder(shareholder) (#263)
- shareholderIndexes[shareholder] = shareholders.length (#357)
- removeShareholder(shareholder) (#265)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#363)
- addShareholder(shareholder) (#263)
- shareholders.push(shareholder) (#358)
- removeShareholder(shareholder) (#265)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#362)
- shareholders.pop() (#364)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#268)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in MetaJungle._transferFrom(address,address,uint256) (#489-537):
External calls:
- swapBack() (#516)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#600-606)
- distributor.deposit{value: amountBNBReflection}() (#616)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#617)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#623-630)
- distributor.setShare(sender,_balances[sender]) (#526)
- distributor.setShare(recipient,_balances[recipient]) (#530)
- distributor.process(distributorGas) (#533)
External calls sending eth:
- swapBack() (#516)
- distributor.deposit{value: amountBNBReflection}() (#616)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#617)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#623-630)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived) (#535)
Reentrancy in MetaJungle._transferFrom(address,address,uint256) (#489-537):
External calls:
- swapBack() (#516)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#600-606)
- distributor.deposit{value: amountBNBReflection}() (#616)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#617)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#623-630)
External calls sending eth:
- swapBack() (#516)
- distributor.deposit{value: amountBNBReflection}() (#616)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#617)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#623-630)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#558)
- amountReceived = takeFee(sender,amount) (#521)
Reentrancy in MetaJungle.constructor() (#425-450):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#427)
Event emitted after the call(s):
- Transfer(address(0),msg.sender,_totalSupply) (#449)
Reentrancy in MetaJungle.swapBack() (#589-633):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#600-606)
- distributor.deposit{value: amountBNBReflection}() (#616)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#617)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#623-630)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#616)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#617)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#623-630)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#631)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.shouldDistribute(address) (#319-322) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#320-321)
MetaJungle._transferFrom(address,address,uint256) (#489-537) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(cooldownTimer[recipient] < block.timestamp,Please wait for 1min between two buys) (#507)
Avoid relying on block.timestamp.

Additional information: link

DividendDistributor.process(uint256) (#293-317) has costly operations inside a loop:
- currentIndex = 0 (#305)
DividendDistributor.distributeDividend(address) (#324-335) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#329)
DividendDistributor.process(uint256) (#293-317) has costly operations inside a loop:
- currentIndex ++ (#314)
Use a local variable to hold the loop computation result.

Additional information: link

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

Additional information: link

Function IDEXRouter.WETH() (#150) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minPeriod (#252) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minDistribution (#252) is not in mixedCase
Variable DividendDistributor._token (#206) is not in mixedCase
Variable DividendDistributor.BETH (#214) is not in mixedCase
Variable DividendDistributor.WBNB (#215) is not in mixedCase
Parameter MetaJungle.tradingStatus(bool)._status (#577) is not in mixedCase
Parameter MetaJungle.cooldownEnabled(bool,uint8)._status (#582) is not in mixedCase
Parameter MetaJungle.cooldownEnabled(bool,uint8)._interval (#582) is not in mixedCase
Parameter MetaJungle.setFees(uint256,uint256,uint256,uint256)._liquidityFee (#662) is not in mixedCase
Parameter MetaJungle.setFees(uint256,uint256,uint256,uint256)._reflectionFee (#662) is not in mixedCase
Parameter MetaJungle.setFees(uint256,uint256,uint256,uint256)._marketingFee (#662) is not in mixedCase
Parameter MetaJungle.setFees(uint256,uint256,uint256,uint256)._feeDenominator (#662) is not in mixedCase
Parameter MetaJungle.setFeeReceivers(address,address)._autoLiquidityReceiver (#671) is not in mixedCase
Parameter MetaJungle.setFeeReceivers(address,address)._marketingFeeReceiver (#671) is not in mixedCase
Parameter MetaJungle.setSwapBackSettings(bool,uint256)._enabled (#676) is not in mixedCase
Parameter MetaJungle.setSwapBackSettings(bool,uint256)._amount (#676) is not in mixedCase
Parameter MetaJungle.setTargetLiquidity(uint256,uint256)._target (#681) is not in mixedCase
Parameter MetaJungle.setTargetLiquidity(uint256,uint256)._denominator (#681) is not in mixedCase
Parameter MetaJungle.setDistributionCriteria(uint256,uint256)._minPeriod (#686) is not in mixedCase
Parameter MetaJungle.setDistributionCriteria(uint256,uint256)._minDistribution (#686) is not in mixedCase
Variable MetaJungle.BETH (#371) is not in mixedCase
Variable MetaJungle.WBNB (#372) is not in mixedCase
Variable MetaJungle.DEAD (#373) is not in mixedCase
Variable MetaJungle.ZERO (#374) is not in mixedCase
Constant MetaJungle._name (#376) is not in UPPER_CASE_WITH_UNDERSCORES
Constant MetaJungle._symbol (#377) is not in UPPER_CASE_WITH_UNDERSCORES
Constant MetaJungle._decimals (#378) is not in UPPER_CASE_WITH_UNDERSCORES
Variable MetaJungle._totalSupply (#380) is not in mixedCase
Variable MetaJungle._maxTxAmount (#381) is not in mixedCase
Variable MetaJungle._maxWalletToken (#384) is not in mixedCase
Variable MetaJungle._balances (#386) is not in mixedCase
Variable MetaJungle._allowances (#387) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

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

Additional information: link

MetaJungle.slitherConstructorVariables() (#368-740) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#373)
MetaJungle.slitherConstructorVariables() (#368-740) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#374)
MetaJungle.slitherConstructorVariables() (#368-740) uses literals with too many digits:
- distributorGas = 500000 (#413)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

MetaJungle.BETH (#371) is never used in MetaJungle (#368-740)
Remove unused state variables.

Additional information: link

DividendDistributor.WBNB (#215) should be constant
DividendDistributor.dividendsPerShareAccuracyFactor (#228) should be constant
MetaJungle.BETH (#371) should be constant
MetaJungle.DEAD (#373) should be constant
MetaJungle.WBNB (#372) should be constant
MetaJungle.ZERO (#374) should be constant
MetaJungle._totalSupply (#380) should be constant
MetaJungle.launchedAt (#409) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

authorize(address) should be declared external:
- Auth.authorize(address) (#107-109)
unauthorize(address) should be declared external:
- Auth.unauthorize(address) (#114-116)
transferOwnership(address) should be declared external:
- Auth.transferOwnership(address) (#135-139)
tradingStatus(bool) should be declared external:
- MetaJungle.tradingStatus(bool) (#577-579)
cooldownEnabled(bool,uint8) should be declared external:
- MetaJungle.cooldownEnabled(bool,uint8) (#582-585)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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


Number of Binance Smart Chain (BSC) token holders is low.


Token is deployed only at one blockchain


Token has only one trading pair


Unable to find PancakeSwap trading pair to compute liquidity.


Unable to find PancakeSwap trading pair to compute volume.


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


Twitter account has less than 100 followers


Last post in Twitter was more than 30 days ago


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


Twitter account has few posts


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/project description on the website or on BscScan, CoinMarketCap


Unable to find token contract audit


Unable to find audit link on the website


Unable to find whitepaper link on the website


Unable to find code repository for the project


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


Young tokens have high risks of price dump / death

Price for JUNGLE

News for JUNGLE