Metacrafter Token Logo

CRFT [Metacrafter] Token

About CRFT

Listings

Not Found
Token 3 years

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 2 March 2022

report
Token seems to be anonymous. As long as we are unable to find website score is limited.


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

Reentrancy in Metacrafter._transfer(address,address,uint256) (#1115-1159):
External calls:
- swapAndLiquify(contractTokenBalance) (#1146)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1207-1214)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1193-1199)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1146)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1207-1214)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1158)
- _rOwned[_mktWalletAddress] = _rOwned[_mktWalletAddress].add(rMkt) (#1062)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#1054)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1250)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1240)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1262)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1241)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#956)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1263)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1252)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#958)
- _tokenTransfer(from,to,amount,takeFee) (#1158)
- _rTotal = _rTotal.sub(rFee) (#1007)
- _tokenTransfer(from,to,amount,takeFee) (#1158)
- _tOwned[_mktWalletAddress] = _tOwned[_mktWalletAddress].add(tMkt) (#1064)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#1056)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1261)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#955)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1251)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#957)
Apply the check-effects-interactions pattern.

Additional information: link

Metacrafter.setTaxFeePercent(uint256) (#977-980) contains a tautology or contradiction:
- require(bool,string)(taxFee >= 0 && taxFee <= 5,Tax fee is too high) (#978)
Metacrafter.setMktFeePercent(uint256) (#982-985) contains a tautology or contradiction:
- require(bool,string)(mktFee >= 0 && mktFee <= 5,Mkt fee is too high) (#983)
Metacrafter.setLiquidityFeePercent(uint256) (#987-990) contains a tautology or contradiction:
- require(bool,string)(liquidityFee >= 0 && liquidityFee <= 10,Liquidity fee is too high) (#988)
Fix the incorrect comparison by changing the value type or the comparison.

Additional information: link

Metacrafter._rTotal (#787) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
Metacrafter._previousTaxFee (#795) is set pre-construction with a non-constant function or state variable:
- _taxFee
Metacrafter._previousMktFee (#798) is set pre-construction with a non-constant function or state variable:
- _mktFee
Metacrafter._previousLiquidityFee (#801) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
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) (#366-372):
- (success) = recipient.call{value: amount}() (#370)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (#427-434):
- (success,returndata) = target.call{value: value}(data) (#432)
Low level call in Address.functionStaticCall(address,bytes,string) (#452-458):
- (success,returndata) = target.staticcall(data) (#456)
Low level call in Address.functionDelegateCall(address,bytes,string) (#476-482):
- (success,returndata) = target.delegatecall(data) (#480)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Metacrafter.addLiquidity(uint256,uint256) (#1202-1215) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1207-1214)
Ensure that all the return values of the function calls are used.

Additional information: link

Metacrafter.allowance(address,address).owner (#871) shadows:
- Ownable.owner() (#533-535) (function)
Metacrafter._approve(address,address,uint256).owner (#1107) shadows:
- Ownable.owner() (#533-535) (function)
Rename the local variables that shadow another component.

Additional information: link

Metacrafter.setTaxFeePercent(uint256) (#977-980) should emit an event for:
- _taxFee = taxFee (#979)
Metacrafter.setMktFeePercent(uint256) (#982-985) should emit an event for:
- _mktFee = mktFee (#984)
Metacrafter.setLiquidityFeePercent(uint256) (#987-990) should emit an event for:
- _liquidityFee = liquidityFee (#989)
Metacrafter.setMaxTxPercent(uint256) (#992-996) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (#993-995)
Emit an event for critical parameter changes.

Additional information: link

Metacrafter.setMktAddress(address).account (#965) lacks a zero-check on :
- _mktWalletAddress = account (#966)
Check that the address is not zero.

Additional information: link

Reentrancy in Metacrafter._transfer(address,address,uint256) (#1115-1159):
External calls:
- swapAndLiquify(contractTokenBalance) (#1146)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1207-1214)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1193-1199)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1146)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1207-1214)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1158)
- _liquidityFee = _previousLiquidityFee (#1100)
- _liquidityFee = 0 (#1094)
- _tokenTransfer(from,to,amount,takeFee) (#1158)
- _mktFee = _previousMktFee (#1099)
- _mktFee = 0 (#1093)
- _tokenTransfer(from,to,amount,takeFee) (#1158)
- _previousLiquidityFee = _liquidityFee (#1090)
- _tokenTransfer(from,to,amount,takeFee) (#1158)
- _previousMktFee = _mktFee (#1089)
- _tokenTransfer(from,to,amount,takeFee) (#1158)
- _previousTaxFee = _taxFee (#1088)
- _tokenTransfer(from,to,amount,takeFee) (#1158)
- _tFeeTotal = _tFeeTotal.add(tFee) (#1008)
- _tokenTransfer(from,to,amount,takeFee) (#1158)
- _taxFee = _previousTaxFee (#1098)
- _taxFee = 0 (#1092)
Reentrancy in Metacrafter.constructor() (#826-843):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#832-833)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#839)
- _isExcludedFromFee[address(this)] = true (#840)
- uniswapV2Router = _uniswapV2Router (#836)
Reentrancy in Metacrafter.swapAndLiquify(uint256) (#1161-1182):
External calls:
- swapTokensForEth(half) (#1173)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1193-1199)
- addLiquidity(otherHalf,newBalance) (#1179)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1207-1214)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1179)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1207-1214)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1179)
- _allowances[owner][spender] = amount (#1111)
Reentrancy in Metacrafter.transferFrom(address,address,uint256) (#880-884):
External calls:
- _transfer(sender,recipient,amount) (#881)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1207-1214)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1193-1199)
External calls sending eth:
- _transfer(sender,recipient,amount) (#881)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1207-1214)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#882)
- _allowances[owner][spender] = amount (#1111)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in Metacrafter._transfer(address,address,uint256) (#1115-1159):
External calls:
- swapAndLiquify(contractTokenBalance) (#1146)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1207-1214)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1193-1199)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1146)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1207-1214)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1245)
- _tokenTransfer(from,to,amount,takeFee) (#1158)
- Transfer(sender,recipient,tTransferAmount) (#1267)
- _tokenTransfer(from,to,amount,takeFee) (#1158)
- Transfer(sender,recipient,tTransferAmount) (#1256)
- _tokenTransfer(from,to,amount,takeFee) (#1158)
- Transfer(sender,recipient,tTransferAmount) (#962)
- _tokenTransfer(from,to,amount,takeFee) (#1158)
Reentrancy in Metacrafter.constructor() (#826-843):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#832-833)
Event emitted after the call(s):
- Transfer(address(0),owner(),_tTotal) (#842)
Reentrancy in Metacrafter.swapAndLiquify(uint256) (#1161-1182):
External calls:
- swapTokensForEth(half) (#1173)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1193-1199)
- addLiquidity(otherHalf,newBalance) (#1179)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1207-1214)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1179)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1207-1214)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1112)
- addLiquidity(otherHalf,newBalance) (#1179)
- SwapAndLiquify(half,newBalance,otherHalf) (#1181)
Reentrancy in Metacrafter.transferFrom(address,address,uint256) (#880-884):
External calls:
- _transfer(sender,recipient,amount) (#881)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1207-1214)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1193-1199)
External calls sending eth:
- _transfer(sender,recipient,amount) (#881)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1207-1214)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1112)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#882)
Apply the check-effects-interactions pattern.

Additional information: link

Address.isContract(address) (#339-348) uses assembly
- INLINE ASM (#346)
Address._verifyCallResult(bool,bytes,string) (#484-501) uses assembly
- INLINE ASM (#493-496)
Do not use evm assembly.

Additional information: link

Metacrafter.includeInReward(address) (#940-951) has costly operations inside a loop:
- _excluded.pop() (#947)
Use a local variable to hold the loop computation result.

Additional information: link

Address._verifyCallResult(bool,bytes,string) (#484-501) is never used and should be removed
Address.functionCall(address,bytes) (#392-394) is never used and should be removed
Address.functionCall(address,bytes,string) (#402-404) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#417-419) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#427-434) is never used and should be removed
Address.functionDelegateCall(address,bytes) (#466-468) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (#476-482) is never used and should be removed
Address.functionStaticCall(address,bytes) (#442-444) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (#452-458) is never used and should be removed
Address.isContract(address) (#339-348) is never used and should be removed
Address.sendValue(address,uint256) (#366-372) is never used and should be removed
Context._msgData() (#312-315) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#267-272) is never used and should be removed
SafeMath.mod(uint256,uint256) (#227-229) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#289-294) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (#98-104) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (#140-145) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (#152-157) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (#123-133) is never used and should be removed
SafeMath.trySub(uint256,uint256) (#111-116) is never used and should be removed
Remove unused functions.

Additional information: link

Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#599) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#600) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#617) is not in mixedCase
Function IUniswapV2Router01.WETH() (#637) is not in mixedCase
Parameter Metacrafter.setSwapAndLiquifyEnabled(bool)._enabled (#998) is not in mixedCase
Parameter Metacrafter.calculateTaxFee(uint256)._amount (#1067) is not in mixedCase
Parameter Metacrafter.calculateMktFee(uint256)._amount (#1073) is not in mixedCase
Parameter Metacrafter.calculateLiquidityFee(uint256)._amount (#1079) is not in mixedCase
Variable Metacrafter._taxFee (#794) is not in mixedCase
Variable Metacrafter._mktFee (#797) is not in mixedCase
Variable Metacrafter._liquidityFee (#800) is not in mixedCase
Variable Metacrafter._maxTxAmount (#809) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#313)" inContext (#307-316)
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 (#642) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#643)
Variable Metacrafter._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1030) is too similar to Metacrafter._getValues(uint256).tTransferAmount (#1012)
Variable Metacrafter._transferFromExcluded(address,address,uint256).rTransferAmount (#1260) is too similar to Metacrafter._getTValues(uint256).tTransferAmount (#1021)
Variable Metacrafter._transferToExcluded(address,address,uint256).rTransferAmount (#1249) is too similar to Metacrafter._getValues(uint256).tTransferAmount (#1012)
Variable Metacrafter._transferBothExcluded(address,address,uint256).rTransferAmount (#954) is too similar to Metacrafter._transferFromExcluded(address,address,uint256).tTransferAmount (#1260)
Variable Metacrafter._transferBothExcluded(address,address,uint256).rTransferAmount (#954) is too similar to Metacrafter._transferStandard(address,address,uint256).tTransferAmount (#1239)
Variable Metacrafter._transferStandard(address,address,uint256).rTransferAmount (#1239) is too similar to Metacrafter._transferFromExcluded(address,address,uint256).tTransferAmount (#1260)
Variable Metacrafter._transferStandard(address,address,uint256).rTransferAmount (#1239) is too similar to Metacrafter._transferToExcluded(address,address,uint256).tTransferAmount (#1249)
Variable Metacrafter._transferBothExcluded(address,address,uint256).rTransferAmount (#954) is too similar to Metacrafter._transferToExcluded(address,address,uint256).tTransferAmount (#1249)
Variable Metacrafter._transferStandard(address,address,uint256).rTransferAmount (#1239) is too similar to Metacrafter._transferStandard(address,address,uint256).tTransferAmount (#1239)
Variable Metacrafter._transferToExcluded(address,address,uint256).rTransferAmount (#1249) is too similar to Metacrafter._getTValues(uint256).tTransferAmount (#1021)
Variable Metacrafter._transferBothExcluded(address,address,uint256).rTransferAmount (#954) is too similar to Metacrafter._getValues(uint256).tTransferAmount (#1012)
Variable Metacrafter._transferStandard(address,address,uint256).rTransferAmount (#1239) is too similar to Metacrafter._getValues(uint256).tTransferAmount (#1012)
Variable Metacrafter._transferFromExcluded(address,address,uint256).rTransferAmount (#1260) is too similar to Metacrafter._transferFromExcluded(address,address,uint256).tTransferAmount (#1260)
Variable Metacrafter._transferFromExcluded(address,address,uint256).rTransferAmount (#1260) is too similar to Metacrafter._transferStandard(address,address,uint256).tTransferAmount (#1239)
Variable Metacrafter._transferFromExcluded(address,address,uint256).rTransferAmount (#1260) is too similar to Metacrafter._transferToExcluded(address,address,uint256).tTransferAmount (#1249)
Variable Metacrafter._transferBothExcluded(address,address,uint256).rTransferAmount (#954) is too similar to Metacrafter._transferBothExcluded(address,address,uint256).tTransferAmount (#954)
Variable Metacrafter._transferStandard(address,address,uint256).rTransferAmount (#1239) is too similar to Metacrafter._getTValues(uint256).tTransferAmount (#1021)
Variable Metacrafter._transferBothExcluded(address,address,uint256).rTransferAmount (#954) is too similar to Metacrafter._getTValues(uint256).tTransferAmount (#1021)
Variable Metacrafter._transferFromExcluded(address,address,uint256).rTransferAmount (#1260) is too similar to Metacrafter._getValues(uint256).tTransferAmount (#1012)
Variable Metacrafter._transferToExcluded(address,address,uint256).rTransferAmount (#1249) is too similar to Metacrafter._transferStandard(address,address,uint256).tTransferAmount (#1239)
Variable Metacrafter._transferToExcluded(address,address,uint256).rTransferAmount (#1249) is too similar to Metacrafter._transferFromExcluded(address,address,uint256).tTransferAmount (#1260)
Variable Metacrafter._transferToExcluded(address,address,uint256).rTransferAmount (#1249) is too similar to Metacrafter._transferToExcluded(address,address,uint256).tTransferAmount (#1249)
Variable Metacrafter._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1030) is too similar to Metacrafter._transferStandard(address,address,uint256).tTransferAmount (#1239)
Variable Metacrafter._getValues(uint256).rTransferAmount (#1013) is too similar to Metacrafter._getValues(uint256).tTransferAmount (#1012)
Variable Metacrafter.reflectionFromToken(uint256,bool).rTransferAmount (#919) is too similar to Metacrafter._transferBothExcluded(address,address,uint256).tTransferAmount (#954)
Variable Metacrafter._getValues(uint256).rTransferAmount (#1013) is too similar to Metacrafter._transferToExcluded(address,address,uint256).tTransferAmount (#1249)
Variable Metacrafter._getValues(uint256).rTransferAmount (#1013) is too similar to Metacrafter._getTValues(uint256).tTransferAmount (#1021)
Variable Metacrafter._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1030) is too similar to Metacrafter._transferFromExcluded(address,address,uint256).tTransferAmount (#1260)
Variable Metacrafter._getValues(uint256).rTransferAmount (#1013) is too similar to Metacrafter._transferBothExcluded(address,address,uint256).tTransferAmount (#954)
Variable Metacrafter.reflectionFromToken(uint256,bool).rTransferAmount (#919) is too similar to Metacrafter._transferStandard(address,address,uint256).tTransferAmount (#1239)
Variable Metacrafter._transferStandard(address,address,uint256).rTransferAmount (#1239) is too similar to Metacrafter._transferBothExcluded(address,address,uint256).tTransferAmount (#954)
Variable Metacrafter._transferFromExcluded(address,address,uint256).rTransferAmount (#1260) is too similar to Metacrafter._transferBothExcluded(address,address,uint256).tTransferAmount (#954)
Variable Metacrafter._transferToExcluded(address,address,uint256).rTransferAmount (#1249) is too similar to Metacrafter._transferBothExcluded(address,address,uint256).tTransferAmount (#954)
Variable Metacrafter._getValues(uint256).rTransferAmount (#1013) is too similar to Metacrafter._transferStandard(address,address,uint256).tTransferAmount (#1239)
Variable Metacrafter.reflectionFromToken(uint256,bool).rTransferAmount (#919) is too similar to Metacrafter._transferFromExcluded(address,address,uint256).tTransferAmount (#1260)
Variable Metacrafter._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1030) is too similar to Metacrafter._getTValues(uint256).tTransferAmount (#1021)
Variable Metacrafter._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1030) is too similar to Metacrafter._transferToExcluded(address,address,uint256).tTransferAmount (#1249)
Variable Metacrafter._getValues(uint256).rTransferAmount (#1013) is too similar to Metacrafter._transferFromExcluded(address,address,uint256).tTransferAmount (#1260)
Variable Metacrafter.reflectionFromToken(uint256,bool).rTransferAmount (#919) is too similar to Metacrafter._transferToExcluded(address,address,uint256).tTransferAmount (#1249)
Variable Metacrafter._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1030) is too similar to Metacrafter._transferBothExcluded(address,address,uint256).tTransferAmount (#954)
Variable Metacrafter.reflectionFromToken(uint256,bool).rTransferAmount (#919) is too similar to Metacrafter._getValues(uint256).tTransferAmount (#1012)
Variable Metacrafter.reflectionFromToken(uint256,bool).rTransferAmount (#919) is too similar to Metacrafter._getTValues(uint256).tTransferAmount (#1021)
Prevent variables from having similar names.

Additional information: link

Metacrafter.slitherConstructorVariables() (#770-1271) uses literals with too many digits:
- _tTotal = 100000000000 * 10 ** 9 (#786)
Metacrafter.slitherConstructorVariables() (#770-1271) uses literals with too many digits:
- _maxTxAmount = 100000000000 * 10 ** 9 (#809)
Metacrafter.slitherConstructorVariables() (#770-1271) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 11000000 * 10 ** 9 (#810)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Metacrafter._decimals (#792) should be constant
Metacrafter._name (#790) should be constant
Metacrafter._symbol (#791) should be constant
Metacrafter._tTotal (#786) should be constant
Metacrafter.numTokensSellToAddToLiquidity (#810) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#552-555)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#561-565)
name() should be declared external:
- Metacrafter.name() (#845-847)
symbol() should be declared external:
- Metacrafter.symbol() (#849-851)
decimals() should be declared external:
- Metacrafter.decimals() (#853-855)
totalSupply() should be declared external:
- Metacrafter.totalSupply() (#857-859)
transfer(address,uint256) should be declared external:
- Metacrafter.transfer(address,uint256) (#866-869)
allowance(address,address) should be declared external:
- Metacrafter.allowance(address,address) (#871-873)
approve(address,uint256) should be declared external:
- Metacrafter.approve(address,uint256) (#875-878)
transferFrom(address,address,uint256) should be declared external:
- Metacrafter.transferFrom(address,address,uint256) (#880-884)
increaseAllowance(address,uint256) should be declared external:
- Metacrafter.increaseAllowance(address,uint256) (#886-889)
decreaseAllowance(address,uint256) should be declared external:
- Metacrafter.decreaseAllowance(address,uint256) (#891-894)
isExcludedFromReward(address) should be declared external:
- Metacrafter.isExcludedFromReward(address) (#896-898)
totalFees() should be declared external:
- Metacrafter.totalFees() (#900-902)
deliver(uint256) should be declared external:
- Metacrafter.deliver(uint256) (#904-911)
reflectionFromToken(uint256,bool) should be declared external:
- Metacrafter.reflectionFromToken(uint256,bool) (#913-922)
excludeFromReward(address) should be declared external:
- Metacrafter.excludeFromReward(address) (#930-938)
setMktAddress(address) should be declared external:
- Metacrafter.setMktAddress(address) (#965-967)
excludeFromFee(address) should be declared external:
- Metacrafter.excludeFromFee(address) (#969-971)
includeInFee(address) should be declared external:
- Metacrafter.includeInFee(address) (#973-975)
setSwapAndLiquifyEnabled(bool) should be declared external:
- Metacrafter.setSwapAndLiquifyEnabled(bool) (#998-1001)
isExcludedFromFee(address) should be declared external:
- Metacrafter.isExcludedFromFee(address) (#1103-1105)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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.


Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.


Average 30d PancakeSwap liquidity is low.


Token is deployed only at one blockchain


Token has only one trading pair

Contract has 8% buy tax and 7% sell tax.
Taxes are low and contract ownership is renounced.


Unable to find Telegram and Twitter accounts


Unable to find website, listings and other project-related information


Young tokens have high risks of scam / price dump / death


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for CRFT