Reentrancy in CryptoFanToken._transfer(address,address,uint256) (#1030-1084):
External calls:
- swapAndLiquify(contractTokenBalance) (#1067)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1131-1138)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1117-1123)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1067)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1131-1138)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1083)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#967)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1189)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1198)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1209)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1190)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#869)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1200)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1210)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#871)
- _tokenTransfer(from,to,amount,takeFee) (#1083)
- _rTotal = _rTotal.sub(rFee) (#922)
- _tokenTransfer(from,to,amount,takeFee) (#1083)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#969)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#868)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1208)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1199)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#870)
Apply the check-effects-interactions pattern.
Additional information: link
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Contract ownership is not renounced (belongs to a wallet)
Ownable.unlock() (#459-464) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now > _lockTime,Contract is locked until 7 days) (#461)
Avoid relying on block.timestamp.
Additional information: link
Address.isContract(address) (#264-273) uses assembly
- INLINE ASM (#271)
Address._functionCallWithValue(address,bytes,uint256,string) (#357-378) uses assembly
- INLINE ASM (#370-373)
Do not use evm assembly.
Additional information: link
CryptoFanToken.includeInReward(address) (#854-865) has costly operations inside a loop:
- _excluded.pop() (#861)
Use a local variable to hold the loop computation result.
Additional information: link
CryptoFanToken.addLiquidity(uint256,uint256) (#1126-1139) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1131-1138)
Ensure that all the return values of the function calls are used.
Additional information: link
CryptoFanToken.allowance(address,address).owner (#785) shadows:
- Ownable.owner() (#412-414) (function)
CryptoFanToken._approve(address,address,uint256).owner (#1022) shadows:
- Ownable.owner() (#412-414) (function)
Rename the local variables that shadow another component.
Additional information: link
CryptoFanToken.setTaxFeePercent(uint256) (#885-887) should emit an event for:
- _taxFee = taxFee (#886)
CryptoFanToken.setLiquidityFeePercent(uint256) (#889-891) should emit an event for:
- _liquidityFee = liquidityFee (#890)
CryptoFanToken.setBurnFeePercent(uint256) (#893-895) should emit an event for:
- _burnFee = burnFee (#894)
CryptoFanToken.setMarketingFeePercent(uint256) (#897-899) should emit an event for:
- _marketingFee = fee (#898)
CryptoFanToken.setMaxTxPercent(uint256) (#901-905) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (#902-904)
CryptoFanToken.setMaxWalletPercent(uint256) (#907-911) should emit an event for:
- _maxWalletSize = _tTotal.mul(maxWallPercent).div(10 ** 2) (#908-910)
Emit an event for critical parameter changes.
Additional information: link
Reentrancy in CryptoFanToken._transfer(address,address,uint256) (#1030-1084):
External calls:
- swapAndLiquify(contractTokenBalance) (#1067)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1131-1138)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1117-1123)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1067)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1131-1138)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1083)
- _burnFee = _previousBurnFee (#1015)
- _burnFee = 0 (#1008)
- _tokenTransfer(from,to,amount,takeFee) (#1083)
- _liquidityFee = _previousLiquidityFee (#1013)
- _liquidityFee = 0 (#1006)
- _tokenTransfer(from,to,amount,takeFee) (#1083)
- _marketingFee = _previousMarketingFee (#1014)
- _marketingFee = 0 (#1007)
- _tokenTransfer(from,to,amount,takeFee) (#1083)
- _previousBurnFee = _burnFee (#1003)
- _tokenTransfer(from,to,amount,takeFee) (#1083)
- _previousLiquidityFee = _liquidityFee (#1001)
- _tokenTransfer(from,to,amount,takeFee) (#1083)
- _previousMarketingFee = _marketingFee (#1002)
- _tokenTransfer(from,to,amount,takeFee) (#1083)
- _previousTaxFee = _taxFee (#1000)
- _tokenTransfer(from,to,amount,takeFee) (#1083)
- _tFeeTotal = _tFeeTotal.add(tFee) (#923)
- _tokenTransfer(from,to,amount,takeFee) (#1083)
- _taxFee = _previousTaxFee (#1012)
- _taxFee = 0 (#1005)
Reentrancy in CryptoFanToken.constructor() (#741-757):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#746-747)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#753)
- _isExcludedFromFee[address(this)] = true (#754)
- uniswapV2Router = _uniswapV2Router (#750)
Reentrancy in CryptoFanToken.swapAndLiquify(uint256) (#1086-1106):
External calls:
- swapTokensForEth(halfOfLiquify) (#1097)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1117-1123)
- addLiquidity(otherHalfOfLiquify,newBalance) (#1103)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1131-1138)
External calls sending eth:
- addLiquidity(otherHalfOfLiquify,newBalance) (#1103)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1131-1138)
State variables written after the call(s):
- addLiquidity(otherHalfOfLiquify,newBalance) (#1103)
- _allowances[owner][spender] = amount (#1026)
Reentrancy in CryptoFanToken.transferFrom(address,address,uint256) (#794-798):
External calls:
- _transfer(sender,recipient,amount) (#795)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1131-1138)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1117-1123)
External calls sending eth:
- _transfer(sender,recipient,amount) (#795)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1131-1138)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#796)
- _allowances[owner][spender] = amount (#1026)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in CryptoFanToken._transfer(address,address,uint256) (#1030-1084):
External calls:
- swapAndLiquify(contractTokenBalance) (#1067)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1131-1138)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1117-1123)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1067)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1131-1138)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1193)
- _tokenTransfer(from,to,amount,takeFee) (#1083)
- Transfer(sender,recipient,tTransferAmount) (#1213)
- _tokenTransfer(from,to,amount,takeFee) (#1083)
- Transfer(sender,recipient,tTransferAmount) (#1203)
- _tokenTransfer(from,to,amount,takeFee) (#1083)
- Transfer(sender,recipient,tTransferAmount) (#874)
- _tokenTransfer(from,to,amount,takeFee) (#1083)
Reentrancy in CryptoFanToken.constructor() (#741-757):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#746-747)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#756)
Reentrancy in CryptoFanToken.swapAndLiquify(uint256) (#1086-1106):
External calls:
- swapTokensForEth(halfOfLiquify) (#1097)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1117-1123)
- addLiquidity(otherHalfOfLiquify,newBalance) (#1103)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1131-1138)
External calls sending eth:
- addLiquidity(otherHalfOfLiquify,newBalance) (#1103)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1131-1138)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1027)
- addLiquidity(otherHalfOfLiquify,newBalance) (#1103)
- SwapAndLiquify(halfOfLiquify,newBalance,otherHalfOfLiquify) (#1105)
Reentrancy in CryptoFanToken.transferFrom(address,address,uint256) (#794-798):
External calls:
- _transfer(sender,recipient,amount) (#795)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1131-1138)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1117-1123)
External calls sending eth:
- _transfer(sender,recipient,amount) (#795)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1131-1138)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1027)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#796)
Apply the check-effects-interactions pattern.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#357-378) is never used and should be removed
Address.functionCall(address,bytes) (#317-319) is never used and should be removed
Address.functionCall(address,bytes,string) (#327-329) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#342-344) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#352-355) is never used and should be removed
Address.isContract(address) (#264-273) is never used and should be removed
Address.sendValue(address,uint256) (#291-297) is never used and should be removed
Context._msgData() (#236-239) is never used and should be removed
SafeMath.mod(uint256,uint256) (#209-211) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#225-228) is never used and should be removed
Remove unused functions.
Additional information: link
CryptoFanToken._rTotal (#696) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
CryptoFanToken._previousBurnFee (#704) is set pre-construction with a non-constant function or state variable:
- _burnFee
CryptoFanToken._previousMarketingFee (#707) is set pre-construction with a non-constant function or state variable:
- _marketingFee
CryptoFanToken._previousTaxFee (#710) is set pre-construction with a non-constant function or state variable:
- _taxFee
CryptoFanToken._previousLiquidityFee (#713) 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) (#291-297):
- (success) = recipient.call{value: amount}() (#295)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#357-378):
- (success,returndata) = target.call{value: weiValue}(data) (#361)
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() (#503) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#504) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#521) is not in mixedCase
Function IUniswapV2Router01.WETH() (#543) is not in mixedCase
Parameter CryptoFanToken.setSwapAndLiquifyEnabled(bool)._enabled (#913) is not in mixedCase
Parameter CryptoFanToken.calculateTaxFee(uint256)._amount (#972) is not in mixedCase
Parameter CryptoFanToken.calculateBurnFee(uint256)._amount (#978) is not in mixedCase
Parameter CryptoFanToken.calculateMarketingFee(uint256)._amount (#984) is not in mixedCase
Parameter CryptoFanToken.calculateLiquidityFee(uint256)._amount (#991) is not in mixedCase
Variable CryptoFanToken._burnFee (#703) is not in mixedCase
Variable CryptoFanToken._marketingFee (#706) is not in mixedCase
Variable CryptoFanToken._taxFee (#709) is not in mixedCase
Variable CryptoFanToken._liquidityFee (#712) is not in mixedCase
Variable CryptoFanToken._maxTxAmount (#723) is not in mixedCase
Variable CryptoFanToken._maxWalletSize (#724) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#237)" inContext (#231-240)
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 (#548) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#549)
Variable CryptoFanToken._transferBothExcluded(address,address,uint256).rTransferAmount (#867) is too similar to CryptoFanToken._transferToExcluded(address,address,uint256).tTransferAmount (#1197)
Variable CryptoFanToken.reflectionFromToken(uint256,bool).rTransferAmount (#833) is too similar to CryptoFanToken._transferStandard(address,address,uint256).tTransferAmount (#1188)
Variable CryptoFanToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1207) is too similar to CryptoFanToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1207)
Variable CryptoFanToken._transferToExcluded(address,address,uint256).rTransferAmount (#1197) is too similar to CryptoFanToken._getTValues(uint256).tTransferAmount (#935)
Variable CryptoFanToken._transferBothExcluded(address,address,uint256).rTransferAmount (#867) is too similar to CryptoFanToken._transferStandard(address,address,uint256).tTransferAmount (#1188)
Variable CryptoFanToken._transferToExcluded(address,address,uint256).rTransferAmount (#1197) is too similar to CryptoFanToken._getValues(uint256).tTransferAmount (#927)
Variable CryptoFanToken._transferStandard(address,address,uint256).rTransferAmount (#1188) is too similar to CryptoFanToken._getTValues(uint256).tTransferAmount (#935)
Variable CryptoFanToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1207) is too similar to CryptoFanToken._getTValues(uint256).tTransferAmount (#935)
Variable CryptoFanToken._transferToExcluded(address,address,uint256).rTransferAmount (#1197) is too similar to CryptoFanToken._transferToExcluded(address,address,uint256).tTransferAmount (#1197)
Variable CryptoFanToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#943) is too similar to CryptoFanToken._transferStandard(address,address,uint256).tTransferAmount (#1188)
Variable CryptoFanToken._getValues(uint256).rTransferAmount (#928) is too similar to CryptoFanToken._transferStandard(address,address,uint256).tTransferAmount (#1188)
Variable CryptoFanToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1207) is too similar to CryptoFanToken._getValues(uint256).tTransferAmount (#927)
Variable CryptoFanToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1207) is too similar to CryptoFanToken._transferToExcluded(address,address,uint256).tTransferAmount (#1197)
Variable CryptoFanToken._transferBothExcluded(address,address,uint256).rTransferAmount (#867) is too similar to CryptoFanToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1207)
Variable CryptoFanToken.reflectionFromToken(uint256,bool).rTransferAmount (#833) is too similar to CryptoFanToken._getTValues(uint256).tTransferAmount (#935)
Variable CryptoFanToken._transferToExcluded(address,address,uint256).rTransferAmount (#1197) is too similar to CryptoFanToken._transferStandard(address,address,uint256).tTransferAmount (#1188)
Variable CryptoFanToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#943) is too similar to CryptoFanToken._getTValues(uint256).tTransferAmount (#935)
Variable CryptoFanToken.reflectionFromToken(uint256,bool).rTransferAmount (#833) is too similar to CryptoFanToken._getValues(uint256).tTransferAmount (#927)
Variable CryptoFanToken._transferBothExcluded(address,address,uint256).rTransferAmount (#867) is too similar to CryptoFanToken._getTValues(uint256).tTransferAmount (#935)
Variable CryptoFanToken._transferStandard(address,address,uint256).rTransferAmount (#1188) is too similar to CryptoFanToken._transferStandard(address,address,uint256).tTransferAmount (#1188)
Variable CryptoFanToken._getValues(uint256).rTransferAmount (#928) is too similar to CryptoFanToken._getTValues(uint256).tTransferAmount (#935)
Variable CryptoFanToken.reflectionFromToken(uint256,bool).rTransferAmount (#833) is too similar to CryptoFanToken._transferToExcluded(address,address,uint256).tTransferAmount (#1197)
Variable CryptoFanToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1207) is too similar to CryptoFanToken._transferStandard(address,address,uint256).tTransferAmount (#1188)
Variable CryptoFanToken._transferBothExcluded(address,address,uint256).rTransferAmount (#867) is too similar to CryptoFanToken._getValues(uint256).tTransferAmount (#927)
Variable CryptoFanToken._transferBothExcluded(address,address,uint256).rTransferAmount (#867) is too similar to CryptoFanToken._transferBothExcluded(address,address,uint256).tTransferAmount (#867)
Variable CryptoFanToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#943) is too similar to CryptoFanToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1207)
Variable CryptoFanToken._transferStandard(address,address,uint256).rTransferAmount (#1188) is too similar to CryptoFanToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1207)
Variable CryptoFanToken._transferToExcluded(address,address,uint256).rTransferAmount (#1197) is too similar to CryptoFanToken._transferBothExcluded(address,address,uint256).tTransferAmount (#867)
Variable CryptoFanToken._getValues(uint256).rTransferAmount (#928) is too similar to CryptoFanToken._transferToExcluded(address,address,uint256).tTransferAmount (#1197)
Variable CryptoFanToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#943) is too similar to CryptoFanToken._transferBothExcluded(address,address,uint256).tTransferAmount (#867)
Variable CryptoFanToken._getValues(uint256).rTransferAmount (#928) is too similar to CryptoFanToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1207)
Variable CryptoFanToken._transferStandard(address,address,uint256).rTransferAmount (#1188) is too similar to CryptoFanToken._transferBothExcluded(address,address,uint256).tTransferAmount (#867)
Variable CryptoFanToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#943) is too similar to CryptoFanToken._getValues(uint256).tTransferAmount (#927)
Variable CryptoFanToken._transferStandard(address,address,uint256).rTransferAmount (#1188) is too similar to CryptoFanToken._getValues(uint256).tTransferAmount (#927)
Variable CryptoFanToken._getValues(uint256).rTransferAmount (#928) is too similar to CryptoFanToken._transferBothExcluded(address,address,uint256).tTransferAmount (#867)
Variable CryptoFanToken.reflectionFromToken(uint256,bool).rTransferAmount (#833) is too similar to CryptoFanToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1207)
Variable CryptoFanToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1207) is too similar to CryptoFanToken._transferBothExcluded(address,address,uint256).tTransferAmount (#867)
Variable CryptoFanToken._getValues(uint256).rTransferAmount (#928) is too similar to CryptoFanToken._getValues(uint256).tTransferAmount (#927)
Variable CryptoFanToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#943) is too similar to CryptoFanToken._transferToExcluded(address,address,uint256).tTransferAmount (#1197)
Variable CryptoFanToken.reflectionFromToken(uint256,bool).rTransferAmount (#833) is too similar to CryptoFanToken._transferBothExcluded(address,address,uint256).tTransferAmount (#867)
Variable CryptoFanToken._transferToExcluded(address,address,uint256).rTransferAmount (#1197) is too similar to CryptoFanToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1207)
Variable CryptoFanToken._transferStandard(address,address,uint256).rTransferAmount (#1188) is too similar to CryptoFanToken._transferToExcluded(address,address,uint256).tTransferAmount (#1197)
Prevent variables from having similar names.
Additional information: link
CryptoFanToken.slitherConstructorVariables() (#681-1216) uses literals with too many digits:
- _tTotal = 1000000000 * 10 ** 9 (#695)
CryptoFanToken.slitherConstructorVariables() (#681-1216) uses literals with too many digits:
- _maxTxAmount = 1000000 * 10 ** 9 (#723)
CryptoFanToken.slitherConstructorVariables() (#681-1216) uses literals with too many digits:
- _maxWalletSize = 3000000 * 10 ** 9 (#724)
CryptoFanToken.slitherConstructorVariables() (#681-1216) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 100000 * 10 ** 9 (#725)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
CryptoFanToken._decimals (#701) should be constant
CryptoFanToken._name (#699) should be constant
CryptoFanToken._symbol (#700) should be constant
CryptoFanToken._tTotal (#695) should be constant
CryptoFanToken.marketingWallet (#715) should be constant
CryptoFanToken.numTokensSellToAddToLiquidity (#725) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#431-434)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#440-444)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#446-448)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#451-456)
unlock() should be declared external:
- Ownable.unlock() (#459-464)
name() should be declared external:
- CryptoFanToken.name() (#759-761)
symbol() should be declared external:
- CryptoFanToken.symbol() (#763-765)
decimals() should be declared external:
- CryptoFanToken.decimals() (#767-769)
totalSupply() should be declared external:
- CryptoFanToken.totalSupply() (#771-773)
transfer(address,uint256) should be declared external:
- CryptoFanToken.transfer(address,uint256) (#780-783)
allowance(address,address) should be declared external:
- CryptoFanToken.allowance(address,address) (#785-787)
approve(address,uint256) should be declared external:
- CryptoFanToken.approve(address,uint256) (#789-792)
transferFrom(address,address,uint256) should be declared external:
- CryptoFanToken.transferFrom(address,address,uint256) (#794-798)
increaseAllowance(address,uint256) should be declared external:
- CryptoFanToken.increaseAllowance(address,uint256) (#800-803)
decreaseAllowance(address,uint256) should be declared external:
- CryptoFanToken.decreaseAllowance(address,uint256) (#805-808)
isExcludedFromReward(address) should be declared external:
- CryptoFanToken.isExcludedFromReward(address) (#810-812)
totalFees() should be declared external:
- CryptoFanToken.totalFees() (#814-816)
deliver(uint256) should be declared external:
- CryptoFanToken.deliver(uint256) (#818-825)
reflectionFromToken(uint256,bool) should be declared external:
- CryptoFanToken.reflectionFromToken(uint256,bool) (#827-836)
excludeFromReward(address) should be declared external:
- CryptoFanToken.excludeFromReward(address) (#844-852)
excludeFromFee(address) should be declared external:
- CryptoFanToken.excludeFromFee(address) (#877-879)
includeInFee(address) should be declared external:
- CryptoFanToken.includeInFee(address) (#881-883)
setSwapAndLiquifyEnabled(bool) should be declared external:
- CryptoFanToken.setSwapAndLiquifyEnabled(bool) (#913-916)
isExcludedFromFee(address) should be declared external:
- CryptoFanToken.isExcludedFromFee(address) (#1018-1020)
Use the external attribute for functions never called from the contract.
Additional information: link
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
Unable to find Telegram and Twitter accounts