Reentrancy in MetaTron._transfer(address,address,uint256) (#1027-1051):
External calls:
- swapAndLiquify(contractTokenBalance) (#1046)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1099-1106)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1085-1091)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1046)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1099-1106)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#1050)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#982)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1157)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1166)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1177)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#875)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1158)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1168)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1178)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#877)
- _tokenTransfer(from,to,amount) (#1050)
- _rTotal = _rTotal.sub(rFee) (#937)
- _tokenTransfer(from,to,amount) (#1050)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#984)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#874)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1176)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1167)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#876)
Apply the check-effects-interactions pattern.
Additional information: link
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
MetaTron._taxFee (#705) is written in both
_taxFee = _previousTaxFee (#997)
_taxFee = 0 (#1002)
MetaTron._liquidityFee (#708) is written in both
_liquidityFee = _previousLiquidityFee (#998)
_liquidityFee = 0 (#1003)
MetaTron._burnFee (#711) is written in both
_burnFee = _previousBurnFee (#999)
_burnFee = 0 (#1004)
MetaTron._devFee (#714) is written in both
_devFee = _previousDevFee (#1000)
_devFee = 0 (#1005)
Fix or remove the writes.
Additional information: link
Contract ownership is not renounced (belongs to a wallet)
MetaTron.addLiquidity(uint256,uint256) (#1094-1107) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1099-1106)
Ensure that all the return values of the function calls are used.
Additional information: link
MetaTron.constructor(string,string).name (#743) shadows:
- MetaTron.name() (#764-766) (function)
MetaTron.constructor(string,string).symbol (#743) shadows:
- MetaTron.symbol() (#768-770) (function)
MetaTron.allowance(address,address).owner (#790) shadows:
- Ownable.owner() (#414-416) (function)
MetaTron._approve(address,address,uint256).owner (#1019) shadows:
- Ownable.owner() (#414-416) (function)
Rename the local variables that shadow another component.
Additional information: link
MetaTron.setfees(uint256,uint256,uint256,uint256) (#887-892) should emit an event for:
- _taxFee = settax (#888)
- _liquidityFee = setliquidity (#889)
- _burnFee = setburn (#890)
- _devFee = setdev (#891)
MetaTron.setMaxTxAmount(uint256) (#911-913) should emit an event for:
- _maxTxAmount = newmaxTxAmount (#912)
MetaTron.setNumTokensSellToAddToLiquidity(uint256) (#924-926) should emit an event for:
- numTokensSellToAddToLiquidity = swapNumber (#925)
Emit an event for critical parameter changes.
Additional information: link
MetaTron.setDevWallet(address).newDevWallet (#907) lacks a zero-check on :
- devWallet = newDevWallet (#908)
Check that the address is not zero.
Additional information: link
Reentrancy in MetaTron._transfer(address,address,uint256) (#1027-1051):
External calls:
- swapAndLiquify(contractTokenBalance) (#1046)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1099-1106)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1085-1091)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1046)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1099-1106)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#1050)
- _burnFee = _previousBurnFee (#1011)
- _burnFee = _previousBurnFee (#999)
- _burnFee = 0 (#1004)
- _tokenTransfer(from,to,amount) (#1050)
- _devFee = _previousDevFee (#1012)
- _devFee = _previousDevFee (#1000)
- _devFee = 0 (#1005)
- _tokenTransfer(from,to,amount) (#1050)
- _liquidityFee = _previousLiquidityFee (#1010)
- _liquidityFee = _previousLiquidityFee (#998)
- _liquidityFee = 0 (#1003)
- _liquidityFee = 0 (#1141)
- _liquidityFee = _previousLiquidityFee (#1148)
- _tokenTransfer(from,to,amount) (#1050)
- _tFeeTotal = _tFeeTotal.add(tFee) (#938)
- _tokenTransfer(from,to,amount) (#1050)
- _taxFee = _previousTaxFee (#1009)
- _taxFee = _previousTaxFee (#997)
- _taxFee = 0 (#1002)
- _taxFee = 0 (#1140)
- _taxFee = _previousTaxFee (#1147)
Reentrancy in MetaTron.constructor(string,string) (#743-762):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#751-752)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#758)
- _isExcludedFromFee[address(this)] = true (#759)
- uniswapV2Router = _uniswapV2Router (#755)
Reentrancy in MetaTron.swapAndLiquify(uint256) (#1053-1074):
External calls:
- swapTokensForEth(half) (#1065)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1085-1091)
- addLiquidity(otherHalf,newBalance) (#1071)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1099-1106)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1071)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1099-1106)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1071)
- _allowances[owner][spender] = amount (#1023)
Reentrancy in MetaTron.transferFrom(address,address,uint256) (#799-803):
External calls:
- _transfer(sender,recipient,amount) (#800)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1099-1106)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1085-1091)
External calls sending eth:
- _transfer(sender,recipient,amount) (#800)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1099-1106)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#801)
- _allowances[owner][spender] = amount (#1023)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in MetaTron._transfer(address,address,uint256) (#1027-1051):
External calls:
- swapAndLiquify(contractTokenBalance) (#1046)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1099-1106)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1085-1091)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1046)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1099-1106)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1161)
- _tokenTransfer(from,to,amount) (#1050)
- Transfer(sender,recipient,tTransferAmount) (#1171)
- _tokenTransfer(from,to,amount) (#1050)
- Transfer(sender,recipient,tTransferAmount) (#1181)
- _tokenTransfer(from,to,amount) (#1050)
- Transfer(sender,recipient,tTransferAmount) (#880)
- _tokenTransfer(from,to,amount) (#1050)
Reentrancy in MetaTron.constructor(string,string) (#743-762):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#751-752)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#761)
Reentrancy in MetaTron.swapAndLiquify(uint256) (#1053-1074):
External calls:
- swapTokensForEth(half) (#1065)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1085-1091)
- addLiquidity(otherHalf,newBalance) (#1071)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1099-1106)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1071)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1099-1106)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1024)
- addLiquidity(otherHalf,newBalance) (#1071)
- SwapAndLiquify(half,newBalance,otherHalf) (#1073)
Reentrancy in MetaTron.transferFrom(address,address,uint256) (#799-803):
External calls:
- _transfer(sender,recipient,amount) (#800)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1099-1106)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1085-1091)
External calls sending eth:
- _transfer(sender,recipient,amount) (#800)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1099-1106)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1024)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#801)
Apply the check-effects-interactions pattern.
Additional information: link
Ownable.unlock() (#461-466) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now > _lockTime,Contract is locked until 7 days) (#463)
Avoid relying on block.timestamp.
Additional information: link
Address.isContract(address) (#266-275) uses assembly
- INLINE ASM (#273)
Address._functionCallWithValue(address,bytes,uint256,string) (#359-380) uses assembly
- INLINE ASM (#372-375)
Do not use evm assembly.
Additional information: link
MetaTron.includeInReward(address) (#859-870) has costly operations inside a loop:
- _excluded.pop() (#866)
MetaTron._reflectFee(uint256,uint256) (#936-939) has costly operations inside a loop:
- _rTotal = _rTotal.sub(rFee) (#937)
MetaTron._reflectFee(uint256,uint256) (#936-939) has costly operations inside a loop:
- _tFeeTotal = _tFeeTotal.add(tFee) (#938)
Use a local variable to hold the loop computation result.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#359-380) is never used and should be removed
Address.functionCall(address,bytes) (#319-321) is never used and should be removed
Address.functionCall(address,bytes,string) (#329-331) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#344-346) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#354-357) is never used and should be removed
Address.isContract(address) (#266-275) is never used and should be removed
Address.sendValue(address,uint256) (#293-299) is never used and should be removed
Context._msgData() (#238-241) is never used and should be removed
SafeMath.mod(uint256,uint256) (#211-213) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#227-230) is never used and should be removed
Remove unused functions.
Additional information: link
MetaTron._rTotal (#698) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
MetaTron._previousTaxFee (#706) is set pre-construction with a non-constant function or state variable:
- _taxFee
MetaTron._previousLiquidityFee (#709) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
MetaTron._previousBurnFee (#712) is set pre-construction with a non-constant function or state variable:
- _burnFee
MetaTron._previousDevFee (#716) is set pre-construction with a non-constant function or state variable:
- _devFee
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) (#293-299):
- (success) = recipient.call{value: amount}() (#297)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#359-380):
- (success,returndata) = target.call{value: weiValue}(data) (#363)
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() (#505) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#506) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#523) is not in mixedCase
Function IUniswapV2Router01.WETH() (#545) is not in mixedCase
Parameter MetaTron.tradingStatus(bool)._status (#883) is not in mixedCase
Parameter MetaTron.setSwapAndLiquifyEnabled(bool)._enabled (#919) is not in mixedCase
Parameter MetaTron.calculateTaxFee(uint256)._amount (#987) is not in mixedCase
Parameter MetaTron.calculateLiquidityFee(uint256)._amount (#991) is not in mixedCase
Variable MetaTron._isBlacklisted (#693) is not in mixedCase
Variable MetaTron._taxFee (#705) is not in mixedCase
Variable MetaTron._liquidityFee (#708) is not in mixedCase
Variable MetaTron._burnFee (#711) is not in mixedCase
Variable MetaTron._devFee (#714) is not in mixedCase
Variable MetaTron._maxTxAmount (#725) is not in mixedCase
Variable MetaTron._maxWalletToken (#726) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#239)" inContext (#233-242)
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 (#550) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#551)
Variable MetaTron._transferToExcluded(address,address,uint256).rTransferAmount (#1165) is too similar to MetaTron._transferToExcluded(address,address,uint256).tTransferAmount (#1165)
Variable MetaTron._transferBothExcluded(address,address,uint256).rTransferAmount (#873) is too similar to MetaTron._getValues(uint256).tTransferAmount (#942)
Variable MetaTron._getValues(uint256).rTransferAmount (#943) is too similar to MetaTron._transferToExcluded(address,address,uint256).tTransferAmount (#1165)
Variable MetaTron._transferToExcluded(address,address,uint256).rTransferAmount (#1165) is too similar to MetaTron._transferFromExcluded(address,address,uint256).tTransferAmount (#1175)
Variable MetaTron._transferStandard(address,address,uint256).rTransferAmount (#1156) is too similar to MetaTron._transferStandard(address,address,uint256).tTransferAmount (#1156)
Variable MetaTron._getValues(uint256).rTransferAmount (#943) is too similar to MetaTron._transferFromExcluded(address,address,uint256).tTransferAmount (#1175)
Variable MetaTron.reflectionFromToken(uint256,bool).rTransferAmount (#838) is too similar to MetaTron._transferToExcluded(address,address,uint256).tTransferAmount (#1165)
Variable MetaTron.reflectionFromToken(uint256,bool).rTransferAmount (#838) is too similar to MetaTron._transferFromExcluded(address,address,uint256).tTransferAmount (#1175)
Variable MetaTron._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#958) is too similar to MetaTron._transferToExcluded(address,address,uint256).tTransferAmount (#1165)
Variable MetaTron._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#958) is too similar to MetaTron._transferFromExcluded(address,address,uint256).tTransferAmount (#1175)
Variable MetaTron._transferBothExcluded(address,address,uint256).rTransferAmount (#873) is too similar to MetaTron._transferStandard(address,address,uint256).tTransferAmount (#1156)
Variable MetaTron._transferStandard(address,address,uint256).rTransferAmount (#1156) is too similar to MetaTron._transferToExcluded(address,address,uint256).tTransferAmount (#1165)
Variable MetaTron._transferStandard(address,address,uint256).rTransferAmount (#1156) is too similar to MetaTron._transferFromExcluded(address,address,uint256).tTransferAmount (#1175)
Variable MetaTron.reflectionFromToken(uint256,bool).rTransferAmount (#838) is too similar to MetaTron._getValues(uint256).tTransferAmount (#942)
Variable MetaTron._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#958) is too similar to MetaTron._getValues(uint256).tTransferAmount (#942)
Variable MetaTron._transferFromExcluded(address,address,uint256).rTransferAmount (#1175) is too similar to MetaTron._transferToExcluded(address,address,uint256).tTransferAmount (#1165)
Variable MetaTron._transferBothExcluded(address,address,uint256).rTransferAmount (#873) is too similar to MetaTron._transferToExcluded(address,address,uint256).tTransferAmount (#1165)
Variable MetaTron._transferFromExcluded(address,address,uint256).rTransferAmount (#1175) is too similar to MetaTron._transferFromExcluded(address,address,uint256).tTransferAmount (#1175)
Variable MetaTron._transferBothExcluded(address,address,uint256).rTransferAmount (#873) is too similar to MetaTron._transferFromExcluded(address,address,uint256).tTransferAmount (#1175)
Variable MetaTron._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#958) is too similar to MetaTron._getTValues(uint256).tTransferAmount (#950)
Variable MetaTron._transferStandard(address,address,uint256).rTransferAmount (#1156) is too similar to MetaTron._getValues(uint256).tTransferAmount (#942)
Variable MetaTron.reflectionFromToken(uint256,bool).rTransferAmount (#838) is too similar to MetaTron._transferStandard(address,address,uint256).tTransferAmount (#1156)
Variable MetaTron._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#958) is too similar to MetaTron._transferStandard(address,address,uint256).tTransferAmount (#1156)
Variable MetaTron.reflectionFromToken(uint256,bool).rTransferAmount (#838) is too similar to MetaTron._getTValues(uint256).tTransferAmount (#950)
Variable MetaTron._getValues(uint256).rTransferAmount (#943) is too similar to MetaTron._getTValues(uint256).tTransferAmount (#950)
Variable MetaTron._transferToExcluded(address,address,uint256).rTransferAmount (#1165) is too similar to MetaTron._getTValues(uint256).tTransferAmount (#950)
Variable MetaTron._getValues(uint256).rTransferAmount (#943) is too similar to MetaTron._getValues(uint256).tTransferAmount (#942)
Variable MetaTron._transferToExcluded(address,address,uint256).rTransferAmount (#1165) is too similar to MetaTron._getValues(uint256).tTransferAmount (#942)
Variable MetaTron._transferFromExcluded(address,address,uint256).rTransferAmount (#1175) is too similar to MetaTron._getTValues(uint256).tTransferAmount (#950)
Variable MetaTron._transferBothExcluded(address,address,uint256).rTransferAmount (#873) is too similar to MetaTron._transferBothExcluded(address,address,uint256).tTransferAmount (#873)
Variable MetaTron._transferFromExcluded(address,address,uint256).rTransferAmount (#1175) is too similar to MetaTron._getValues(uint256).tTransferAmount (#942)
Variable MetaTron._getValues(uint256).rTransferAmount (#943) is too similar to MetaTron._transferStandard(address,address,uint256).tTransferAmount (#1156)
Variable MetaTron._transferToExcluded(address,address,uint256).rTransferAmount (#1165) is too similar to MetaTron._transferStandard(address,address,uint256).tTransferAmount (#1156)
Variable MetaTron._transferStandard(address,address,uint256).rTransferAmount (#1156) is too similar to MetaTron._transferBothExcluded(address,address,uint256).tTransferAmount (#873)
Variable MetaTron._transferFromExcluded(address,address,uint256).rTransferAmount (#1175) is too similar to MetaTron._transferStandard(address,address,uint256).tTransferAmount (#1156)
Variable MetaTron.reflectionFromToken(uint256,bool).rTransferAmount (#838) is too similar to MetaTron._transferBothExcluded(address,address,uint256).tTransferAmount (#873)
Variable MetaTron._transferBothExcluded(address,address,uint256).rTransferAmount (#873) is too similar to MetaTron._getTValues(uint256).tTransferAmount (#950)
Variable MetaTron._getValues(uint256).rTransferAmount (#943) is too similar to MetaTron._transferBothExcluded(address,address,uint256).tTransferAmount (#873)
Variable MetaTron._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#958) is too similar to MetaTron._transferBothExcluded(address,address,uint256).tTransferAmount (#873)
Variable MetaTron._transferToExcluded(address,address,uint256).rTransferAmount (#1165) is too similar to MetaTron._transferBothExcluded(address,address,uint256).tTransferAmount (#873)
Variable MetaTron._transferStandard(address,address,uint256).rTransferAmount (#1156) is too similar to MetaTron._getTValues(uint256).tTransferAmount (#950)
Variable MetaTron._transferFromExcluded(address,address,uint256).rTransferAmount (#1175) is too similar to MetaTron._transferBothExcluded(address,address,uint256).tTransferAmount (#873)
Prevent variables from having similar names.
Additional information: link
MetaTron._decimals (#703) should be constant
MetaTron._tTotal (#697) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#433-436)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#442-446)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#448-450)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#453-458)
unlock() should be declared external:
- Ownable.unlock() (#461-466)
name() should be declared external:
- MetaTron.name() (#764-766)
symbol() should be declared external:
- MetaTron.symbol() (#768-770)
decimals() should be declared external:
- MetaTron.decimals() (#772-774)
totalSupply() should be declared external:
- MetaTron.totalSupply() (#776-778)
transfer(address,uint256) should be declared external:
- MetaTron.transfer(address,uint256) (#785-788)
allowance(address,address) should be declared external:
- MetaTron.allowance(address,address) (#790-792)
approve(address,uint256) should be declared external:
- MetaTron.approve(address,uint256) (#794-797)
transferFrom(address,address,uint256) should be declared external:
- MetaTron.transferFrom(address,address,uint256) (#799-803)
increaseAllowance(address,uint256) should be declared external:
- MetaTron.increaseAllowance(address,uint256) (#805-808)
decreaseAllowance(address,uint256) should be declared external:
- MetaTron.decreaseAllowance(address,uint256) (#810-813)
isExcludedFromReward(address) should be declared external:
- MetaTron.isExcludedFromReward(address) (#815-817)
totalFees() should be declared external:
- MetaTron.totalFees() (#819-821)
deliver(uint256) should be declared external:
- MetaTron.deliver(uint256) (#823-830)
reflectionFromToken(uint256,bool) should be declared external:
- MetaTron.reflectionFromToken(uint256,bool) (#832-841)
excludeFromReward(address) should be declared external:
- MetaTron.excludeFromReward(address) (#849-857)
tradingStatus(bool) should be declared external:
- MetaTron.tradingStatus(bool) (#883-885)
excludeFromFee(address) should be declared external:
- MetaTron.excludeFromFee(address) (#898-900)
includeInFee(address) should be declared external:
- MetaTron.includeInFee(address) (#902-904)
setMaxTxAmount(uint256) should be declared external:
- MetaTron.setMaxTxAmount(uint256) (#911-913)
setMaxWalletAmount(uint256) should be declared external:
- MetaTron.setMaxWalletAmount(uint256) (#915-917)
setSwapAndLiquifyEnabled(bool) should be declared external:
- MetaTron.setSwapAndLiquifyEnabled(bool) (#919-922)
setNumTokensSellToAddToLiquidity(uint256) should be declared external:
- MetaTron.setNumTokensSellToAddToLiquidity(uint256) (#924-926)
isExcludedFromFee(address) should be declared external:
- MetaTron.isExcludedFromFee(address) (#1015-1017)
Use the external attribute for functions never called from the contract.
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.
Contract has 6% buy tax and 3% sell tax.
Taxes are low but contract ownership is not renounced. Token has a high risk of becoming a honeypot.
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 website, listings and other project-related information
Young tokens have high risks of price dump / death
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Unable to find Telegram and Twitter accounts