See relevant content for Metaweb3token.com
MetaWeb3.swapAndSendToFee(uint256) (#711-717) ignores return value by IERC20(marketingWalletToken).transfer(marketingAddress,IERC20(marketingWalletToken).balanceOf(address(this))) (#716)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.
Additional information: link
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Reentrancy in MetaWeb3._transfer(address,address,uint256) (#631-681):
External calls:
- collectFees() (#661)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#758-765)
- IERC20(marketingWalletToken).transfer(marketingAddress,IERC20(marketingWalletToken).balanceOf(address(this))) (#716)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#727-733)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#745-751)
External calls sending eth:
- collectFees() (#661)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#758-765)
State variables written after the call(s):
- transferToken(from,address(this),feesToContract) (#675)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#772)
- _balances[recipient] = _balances[recipient].add(amount) (#773)
- transferToken(from,deadAddress,toBurnAmount) (#676)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#772)
- _balances[recipient] = _balances[recipient].add(amount) (#773)
- transferToken(from,to,amount) (#680)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#772)
- _balances[recipient] = _balances[recipient].add(amount) (#773)
Apply the check-effects-interactions pattern.
Additional information: link
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.
MetaWeb3.addLiquidity(uint256,uint256) (#754-766) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#758-765)
Ensure that all the return values of the function calls are used.
Additional information: link
MetaWeb3.setLiquifyThreshhold(uint256) (#564-566) should emit an event for:
- _liquifyThreshhold = newLiquifyThreshhold (#565)
MetaWeb3.setMaxBalance(uint256) (#572-576) should emit an event for:
- _maxBalance = newMaxBalance (#575)
Emit an event for critical parameter changes.
Additional information: link
MetaWeb3.setMarketingAddress(address).newMarketingAddress (#535) lacks a zero-check on :
- marketingAddress = newMarketingAddress (#536)
MetaWeb3.setMarketingWalletToken(address)._marketingWalletToken (#568) lacks a zero-check on :
- marketingWalletToken = _marketingWalletToken (#569)
Check that the address is not zero.
Additional information: link
MetaWeb3.allowance(address,address).owner (#502) shadows:
- Ownable.owner() (#168-170) (function)
MetaWeb3._approve(address,address,uint256).owner (#527) shadows:
- Ownable.owner() (#168-170) (function)
Rename the local variables that shadow another component.
Additional information: link
Reentrancy in MetaWeb3.collectFees() (#683-693):
External calls:
- swapAndLiquify(liquidityTokensToSell) (#689)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#758-765)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#727-733)
- swapAndSendToFee(marketingTokensToSell) (#692)
- IERC20(marketingWalletToken).transfer(marketingAddress,IERC20(marketingWalletToken).balanceOf(address(this))) (#716)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#745-751)
External calls sending eth:
- swapAndLiquify(liquidityTokensToSell) (#689)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#758-765)
State variables written after the call(s):
- swapAndSendToFee(marketingTokensToSell) (#692)
- _allowances[owner][spender] = amount (#531)
Reentrancy in MetaWeb3.constructor() (#448-473):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#450-451)
State variables written after the call(s):
- _balances[_msgSender()] = _totalSupply (#471)
- _burnFee = 1 (#464)
- _isExcludedFromFees[owner()] = true (#455)
- _isExcludedFromFees[address(this)] = true (#456)
- _isExcludedFromMaxBalance[owner()] = true (#458)
- _isExcludedFromMaxBalance[address(this)] = true (#459)
- _isExcludedFromMaxBalance[uniswapV2Pair] = true (#460)
- _liquidityFee = 5 (#462)
- _liquifyThreshhold = 20 * 10 ** 9 * 10 ** _decimals (#468)
- _marketingFee = 4 (#463)
- _maxBalance = 500 * 10 ** 9 * 10 ** _decimals (#469)
- _totalFees = _liquidityFee.add(_marketingFee).add(_burnFee) (#465)
- _totalFeesToContract = _liquidityFee.add(_marketingFee) (#466)
- uniswapV2Router = _uniswapV2Router (#453)
Reentrancy in MetaWeb3.swapAndLiquify(uint256) (#695-709):
External calls:
- swapTokensForEth(half) (#703)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#727-733)
- addLiquidity(otherHalf,newBalance) (#708)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#758-765)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#708)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#758-765)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#708)
- _allowances[owner][spender] = amount (#531)
Reentrancy in MetaWeb3.transferFrom(address,address,uint256) (#511-515):
External calls:
- _transfer(sender,recipient,amount) (#512)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#758-765)
- IERC20(marketingWalletToken).transfer(marketingAddress,IERC20(marketingWalletToken).balanceOf(address(this))) (#716)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#727-733)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#745-751)
External calls sending eth:
- _transfer(sender,recipient,amount) (#512)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#758-765)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#513)
- _allowances[owner][spender] = amount (#531)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in MetaWeb3._transfer(address,address,uint256) (#631-681):
External calls:
- collectFees() (#661)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#758-765)
- IERC20(marketingWalletToken).transfer(marketingAddress,IERC20(marketingWalletToken).balanceOf(address(this))) (#716)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#727-733)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#745-751)
External calls sending eth:
- collectFees() (#661)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#758-765)
Event emitted after the call(s):
- TokenBurn(from,toBurnAmount) (#677)
- Transfer(sender,recipient,amount) (#774)
- transferToken(from,deadAddress,toBurnAmount) (#676)
- Transfer(sender,recipient,amount) (#774)
- transferToken(from,address(this),feesToContract) (#675)
- Transfer(sender,recipient,amount) (#774)
- transferToken(from,to,amount) (#680)
Reentrancy in MetaWeb3.collectFees() (#683-693):
External calls:
- swapAndLiquify(liquidityTokensToSell) (#689)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#758-765)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#727-733)
- swapAndSendToFee(marketingTokensToSell) (#692)
- IERC20(marketingWalletToken).transfer(marketingAddress,IERC20(marketingWalletToken).balanceOf(address(this))) (#716)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#745-751)
External calls sending eth:
- swapAndLiquify(liquidityTokensToSell) (#689)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#758-765)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#532)
- swapAndSendToFee(marketingTokensToSell) (#692)
Reentrancy in MetaWeb3.constructor() (#448-473):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#450-451)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_totalSupply) (#472)
Reentrancy in MetaWeb3.swapAndLiquify(uint256) (#695-709):
External calls:
- swapTokensForEth(half) (#703)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#727-733)
- addLiquidity(otherHalf,newBalance) (#708)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#758-765)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#708)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#758-765)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#532)
- addLiquidity(otherHalf,newBalance) (#708)
Reentrancy in MetaWeb3.transferFrom(address,address,uint256) (#511-515):
External calls:
- _transfer(sender,recipient,amount) (#512)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#758-765)
- IERC20(marketingWalletToken).transfer(marketingAddress,IERC20(marketingWalletToken).balanceOf(address(this))) (#716)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#727-733)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#745-751)
External calls sending eth:
- _transfer(sender,recipient,amount) (#512)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(0),block.timestamp) (#758-765)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#532)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#513)
Apply the check-effects-interactions pattern.
Additional information: link
Address.isContract(address) (#98-107) uses assembly
- INLINE ASM (#105)
Address._functionCallWithValue(address,bytes,uint256,string) (#135-152) uses assembly
- INLINE ASM (#144-147)
Do not use evm assembly.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#135-152) is never used and should be removed
Address.functionCall(address,bytes) (#118-120) is never used and should be removed
Address.functionCall(address,bytes,string) (#122-124) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#126-128) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#130-133) is never used and should be removed
Address.isContract(address) (#98-107) is never used and should be removed
Address.sendValue(address,uint256) (#109-115) is never used and should be removed
Context._msgData() (#21-24) is never used and should be removed
SafeMath.mod(uint256,uint256) (#86-88) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#90-93) is never used and should be removed
Remove unused functions.
Additional information: link
MetaWeb3._totalSupply (#416) is set pre-construction with a non-constant function or state variable:
- 100000 * 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) (#109-115):
- (success) = recipient.call{value: amount}() (#113)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#135-152):
- (success,returndata) = target.call{value: weiValue}(data) (#138)
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() (#225) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#226) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#242) is not in mixedCase
Function IUniswapV2Router01.WETH() (#263) is not in mixedCase
Parameter MetaWeb3.setMarketingWalletToken(address)._marketingWalletToken (#568) is not in mixedCase
Constant MetaWeb3.deadAddress (#420) is not in UPPER_CASE_WITH_UNDERSCORES
Constant MetaWeb3._maxFees (#427) is not in UPPER_CASE_WITH_UNDERSCORES
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#22)" inContext (#16-25)
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 (#268) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#269)
Prevent variables from having similar names.
Additional information: link
MetaWeb3.slitherConstructorVariables() (#404-777) uses literals with too many digits:
- _totalSupply = 100000 * 10 ** 9 * 10 ** _decimals (#416)
MetaWeb3.slitherConstructorConstantVariables() (#404-777) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#420)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
Ownable._previousOwner (#157) is never used in MetaWeb3 (#404-777)
Ownable._lockTime (#158) is never used in MetaWeb3 (#404-777)
Remove unused state variables.
Additional information: link
MetaWeb3._decimals (#415) should be constant
MetaWeb3._name (#413) should be constant
MetaWeb3._symbol (#414) should be constant
Ownable._lockTime (#158) should be constant
Ownable._previousOwner (#157) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#177-180)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#182-186)
name() should be declared external:
- MetaWeb3.name() (#477-479)
symbol() should be declared external:
- MetaWeb3.symbol() (#481-483)
decimals() should be declared external:
- MetaWeb3.decimals() (#485-487)
totalSupply() should be declared external:
- MetaWeb3.totalSupply() (#489-491)
transfer(address,uint256) should be declared external:
- MetaWeb3.transfer(address,uint256) (#497-500)
allowance(address,address) should be declared external:
- MetaWeb3.allowance(address,address) (#502-504)
approve(address,uint256) should be declared external:
- MetaWeb3.approve(address,uint256) (#506-509)
transferFrom(address,address,uint256) should be declared external:
- MetaWeb3.transferFrom(address,address,uint256) (#511-515)
increaseAllowance(address,uint256) should be declared external:
- MetaWeb3.increaseAllowance(address,uint256) (#517-520)
decreaseAllowance(address,uint256) should be declared external:
- MetaWeb3.decreaseAllowance(address,uint256) (#522-525)
isExcludedFromFees(address) should be declared external:
- MetaWeb3.isExcludedFromFees(address) (#578-580)
excludeFromFees(address) should be declared external:
- MetaWeb3.excludeFromFees(address) (#582-584)
includeInFees(address) should be declared external:
- MetaWeb3.includeInFees(address) (#586-588)
isExcludedFromMaxBalance(address) should be declared external:
- MetaWeb3.isExcludedFromMaxBalance(address) (#590-592)
excludeFromMaxBalance(address) should be declared external:
- MetaWeb3.excludeFromMaxBalance(address) (#594-596)
includeInMaxBalance(address) should be declared external:
- MetaWeb3.includeInMaxBalance(address) (#598-600)
totalFees() should be declared external:
- MetaWeb3.totalFees() (#602-604)
liquidityFee() should be declared external:
- MetaWeb3.liquidityFee() (#606-608)
marketingFee() should be declared external:
- MetaWeb3.marketingFee() (#610-612)
burnFee() should be declared external:
- MetaWeb3.burnFee() (#614-616)
maxFees() should be declared external:
- MetaWeb3.maxFees() (#618-620)
liquifyThreshhold() should be declared external:
- MetaWeb3.liquifyThreshhold() (#622-624)
maxBalance() should be declared external:
- MetaWeb3.maxBalance() (#626-628)
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 liquidity is less than $100. Token is either dead or inactive.
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.
Number of Binance Smart Chain (BSC) token holders is low.
Token is deployed only at one blockchain
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 verify that token and website are owned by the same team (no listings + unable to find contract on website)
Unable to verify token contract address on the website
Unable to find audit link on the website
Unable to find whitepaper link 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
Unable to find code repository for the project
Token is not listed at Mobula.Finance
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
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Young tokens have high risks of price dump / death
Unable to find Twitter account
Telegram account has less than 100 subscribers
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account