Launched in 16/01/2022 by a team based in Europe, Metabullrage is a P2E & PVP gaming token offering NFT minting for in game player battles, a staking platform and an NFT marketplace. Get ready for a NFT based online P2E and PVP game with one of a kind experience & incredible game scenes. From space to bull arenas, dungeons to forests everything is created by an experienced design team.
Reentrancy in METABULLRAGE._transfer(address,address,uint256) (#625-675):
External calls:
- collectFees() (#655)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#752-759)
- IERC20(marketingWalletToken).transfer(marketingAddress,IERC20(marketingWalletToken).balanceOf(address(this))) (#710)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#721-727)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#739-745)
External calls sending eth:
- collectFees() (#655)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#752-759)
State variables written after the call(s):
- transferToken(from,address(this),feesToContract) (#669)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#766)
- _balances[recipient] = _balances[recipient].add(amount) (#767)
- transferToken(from,deadAddress,toBurnAmount) (#670)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#766)
- _balances[recipient] = _balances[recipient].add(amount) (#767)
- transferToken(from,to,amount) (#674)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#766)
- _balances[recipient] = _balances[recipient].add(amount) (#767)
Apply the check-effects-interactions pattern.
Additional information: link
METABULLRAGE.swapAndSendToFee(uint256) (#705-711) ignores return value by IERC20(marketingWalletToken).transfer(marketingAddress,IERC20(marketingWalletToken).balanceOf(address(this))) (#710)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.
Additional information: link
Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains
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.
METABULLRAGE.setLiquifyThreshhold(uint256) (#560-562) should emit an event for:
- _liquifyThreshhold = newLiquifyThreshhold (#561)
METABULLRAGE.setMaxBalance(uint256) (#568-571) should emit an event for:
- _maxBalance = newMaxBalance (#570)
Emit an event for critical parameter changes.
Additional information: link
METABULLRAGE.allowance(address,address).owner (#500) shadows:
- Ownable.owner() (#175-177) (function)
METABULLRAGE._approve(address,address,uint256).owner (#525) shadows:
- Ownable.owner() (#175-177) (function)
Rename the local variables that shadow another component.
Additional information: link
METABULLRAGE.addLiquidity(uint256,uint256) (#748-760) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#752-759)
Ensure that all the return values of the function calls are used.
Additional information: link
METABULLRAGE.setMarketingAddress(address).newMarketingAddress (#533) lacks a zero-check on :
- marketingAddress = newMarketingAddress (#534)
METABULLRAGE.setMarketingWalletToken(address)._marketingWalletToken (#564) lacks a zero-check on :
- marketingWalletToken = _marketingWalletToken (#565)
Check that the address is not zero.
Additional information: link
Reentrancy in METABULLRAGE.collectFees() (#677-687):
External calls:
- swapAndLiquify(liquidityTokensToSell) (#683)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#752-759)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#721-727)
- swapAndSendToFee(marketingTokensToSell) (#686)
- IERC20(marketingWalletToken).transfer(marketingAddress,IERC20(marketingWalletToken).balanceOf(address(this))) (#710)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#739-745)
External calls sending eth:
- swapAndLiquify(liquidityTokensToSell) (#683)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#752-759)
State variables written after the call(s):
- swapAndSendToFee(marketingTokensToSell) (#686)
- _allowances[owner][spender] = amount (#529)
Reentrancy in METABULLRAGE.constructor() (#446-471):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#448-449)
State variables written after the call(s):
- _balances[_msgSender()] = _totalSupply (#469)
- _burnFee = 0 (#462)
- _isExcludedFromFees[owner()] = true (#453)
- _isExcludedFromFees[address(this)] = true (#454)
- _isExcludedFromMaxBalance[owner()] = true (#456)
- _isExcludedFromMaxBalance[address(this)] = true (#457)
- _isExcludedFromMaxBalance[uniswapV2Pair] = true (#458)
- _liquidityFee = 2 (#460)
- _liquifyThreshhold = 20 * 10 ** 4 * 10 ** _decimals (#466)
- _marketingFee = 8 (#461)
- _maxBalance = 1 * 10 ** 9 * 10 ** _decimals (#467)
- _totalFees = _liquidityFee.add(_marketingFee).add(_burnFee) (#463)
- _totalFeesToContract = _liquidityFee.add(_marketingFee) (#464)
- uniswapV2Router = _uniswapV2Router (#451)
Reentrancy in METABULLRAGE.swapAndLiquify(uint256) (#689-703):
External calls:
- swapTokensForEth(half) (#697)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#721-727)
- addLiquidity(otherHalf,newBalance) (#702)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#752-759)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#702)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#752-759)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#702)
- _allowances[owner][spender] = amount (#529)
Reentrancy in METABULLRAGE.transferFrom(address,address,uint256) (#509-513):
External calls:
- _transfer(sender,recipient,amount) (#510)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#752-759)
- IERC20(marketingWalletToken).transfer(marketingAddress,IERC20(marketingWalletToken).balanceOf(address(this))) (#710)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#721-727)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#739-745)
External calls sending eth:
- _transfer(sender,recipient,amount) (#510)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#752-759)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#511)
- _allowances[owner][spender] = amount (#529)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in METABULLRAGE._transfer(address,address,uint256) (#625-675):
External calls:
- collectFees() (#655)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#752-759)
- IERC20(marketingWalletToken).transfer(marketingAddress,IERC20(marketingWalletToken).balanceOf(address(this))) (#710)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#721-727)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#739-745)
External calls sending eth:
- collectFees() (#655)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#752-759)
Event emitted after the call(s):
- TokenBurn(from,toBurnAmount) (#671)
- Transfer(sender,recipient,amount) (#768)
- transferToken(from,to,amount) (#674)
- Transfer(sender,recipient,amount) (#768)
- transferToken(from,deadAddress,toBurnAmount) (#670)
- Transfer(sender,recipient,amount) (#768)
- transferToken(from,address(this),feesToContract) (#669)
Reentrancy in METABULLRAGE.collectFees() (#677-687):
External calls:
- swapAndLiquify(liquidityTokensToSell) (#683)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#752-759)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#721-727)
- swapAndSendToFee(marketingTokensToSell) (#686)
- IERC20(marketingWalletToken).transfer(marketingAddress,IERC20(marketingWalletToken).balanceOf(address(this))) (#710)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#739-745)
External calls sending eth:
- swapAndLiquify(liquidityTokensToSell) (#683)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#752-759)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#530)
- swapAndSendToFee(marketingTokensToSell) (#686)
Reentrancy in METABULLRAGE.constructor() (#446-471):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#448-449)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_totalSupply) (#470)
Reentrancy in METABULLRAGE.swapAndLiquify(uint256) (#689-703):
External calls:
- swapTokensForEth(half) (#697)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#721-727)
- addLiquidity(otherHalf,newBalance) (#702)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#752-759)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#702)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#752-759)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#530)
- addLiquidity(otherHalf,newBalance) (#702)
Reentrancy in METABULLRAGE.transferFrom(address,address,uint256) (#509-513):
External calls:
- _transfer(sender,recipient,amount) (#510)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#752-759)
- IERC20(marketingWalletToken).transfer(marketingAddress,IERC20(marketingWalletToken).balanceOf(address(this))) (#710)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#721-727)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#739-745)
External calls sending eth:
- _transfer(sender,recipient,amount) (#510)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#752-759)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#530)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#511)
Apply the check-effects-interactions pattern.
Additional information: link
Address.isContract(address) (#105-114) uses assembly
- INLINE ASM (#112)
Address._functionCallWithValue(address,bytes,uint256,string) (#142-159) uses assembly
- INLINE ASM (#151-154)
Do not use evm assembly.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#142-159) is never used and should be removed
Address.functionCall(address,bytes) (#125-127) is never used and should be removed
Address.functionCall(address,bytes,string) (#129-131) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#133-135) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#137-140) is never used and should be removed
Address.isContract(address) (#105-114) is never used and should be removed
Address.sendValue(address,uint256) (#116-122) is never used and should be removed
Context._msgData() (#36-39) is never used and should be removed
SafeMath.mod(uint256,uint256) (#93-95) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#97-100) is never used and should be removed
Remove unused functions.
Additional information: link
METABULLRAGE._totalSupply (#414) is set pre-construction with a non-constant function or state variable:
- 1 * 10 ** 9 * 10 ** _decimals
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 Address.sendValue(address,uint256) (#116-122):
- (success) = recipient.call{value: amount}() (#120)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#142-159):
- (success,returndata) = target.call{value: weiValue}(data) (#145)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#231) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#232) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#248) is not in mixedCase
Function IUniswapV2Router01.WETH() (#267) is not in mixedCase
Parameter METABULLRAGE.setMarketingWalletToken(address)._marketingWalletToken (#564) is not in mixedCase
Constant METABULLRAGE.deadAddress (#418) is not in UPPER_CASE_WITH_UNDERSCORES
Constant METABULLRAGE._maxFees (#425) is not in UPPER_CASE_WITH_UNDERSCORES
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#37)" inContext (#31-40)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#272) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#273)
Prevent variables from having similar names.
Additional information: link
METABULLRAGE.slitherConstructorConstantVariables() (#402-771) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#418)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
Ownable._previousOwner (#164) is never used in METABULLRAGE (#402-771)
Ownable._lockTime (#165) is never used in METABULLRAGE (#402-771)
Remove unused state variables.
Additional information: link
METABULLRAGE._decimals (#413) should be constant
METABULLRAGE._name (#411) should be constant
METABULLRAGE._symbol (#412) should be constant
Ownable._lockTime (#165) should be constant
Ownable._previousOwner (#164) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#184-187)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#189-193)
name() should be declared external:
- METABULLRAGE.name() (#475-477)
symbol() should be declared external:
- METABULLRAGE.symbol() (#479-481)
decimals() should be declared external:
- METABULLRAGE.decimals() (#483-485)
totalSupply() should be declared external:
- METABULLRAGE.totalSupply() (#487-489)
transfer(address,uint256) should be declared external:
- METABULLRAGE.transfer(address,uint256) (#495-498)
allowance(address,address) should be declared external:
- METABULLRAGE.allowance(address,address) (#500-502)
approve(address,uint256) should be declared external:
- METABULLRAGE.approve(address,uint256) (#504-507)
transferFrom(address,address,uint256) should be declared external:
- METABULLRAGE.transferFrom(address,address,uint256) (#509-513)
increaseAllowance(address,uint256) should be declared external:
- METABULLRAGE.increaseAllowance(address,uint256) (#515-518)
decreaseAllowance(address,uint256) should be declared external:
- METABULLRAGE.decreaseAllowance(address,uint256) (#520-523)
isExcludedFromFees(address) should be declared external:
- METABULLRAGE.isExcludedFromFees(address) (#573-575)
excludeFromFees(address) should be declared external:
- METABULLRAGE.excludeFromFees(address) (#577-579)
includeInFees(address) should be declared external:
- METABULLRAGE.includeInFees(address) (#581-583)
isExcludedFromMaxBalance(address) should be declared external:
- METABULLRAGE.isExcludedFromMaxBalance(address) (#585-587)
excludeFromMaxBalance(address) should be declared external:
- METABULLRAGE.excludeFromMaxBalance(address) (#589-591)
includeInMaxBalance(address) should be declared external:
- METABULLRAGE.includeInMaxBalance(address) (#593-595)
totalFees() should be declared external:
- METABULLRAGE.totalFees() (#597-599)
liquidityFee() should be declared external:
- METABULLRAGE.liquidityFee() (#601-603)
marketingFee() should be declared external:
- METABULLRAGE.marketingFee() (#605-607)
burnFee() should be declared external:
- METABULLRAGE.burnFee() (#609-611)
maxFees() should be declared external:
- METABULLRAGE.maxFees() (#613-615)
liquifyThreshhold() should be declared external:
- METABULLRAGE.liquifyThreshhold() (#617-619)
maxBalance() should be declared external:
- METABULLRAGE.maxBalance() (#621-623)
Use the external attribute for functions never called from the contract.
Additional information: link
Attempt to swap token was unsuccessful. For some reason it is untradeable. If token is not in presale stage and is not traded outside PancakeSwap, then it's a scam
Additional information: link
Average 30d PancakeSwap volume is less than $100. Token is either dead or inactive.
Token is deployed only at one blockchain
Token has only one trading pair
Average 30d PancakeSwap liquidity is low.
Average 30d number of PancakeSwap swaps is low.
Number of Binance Smart Chain (BSC) token holders is low.
Average PancakeSwap trading volume, liqudity, number of swaps are low. Token seems to be inactive.
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
Unable to find audit link on the website
Unable to find whitepaper link on the website
Unable to verify token contract address on the website
Unable to find Telegram link on the website
Unable to find Twitter link on the website
Unable to find token on CoinHunt
Additional information: link
Token is marked as scam (rug pull, honeypot, phishing, etc.)
Additional information: link
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
Young tokens have high risks of price dump / death
Young tokens have high risks of price dump / death
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