Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Reentrancy in FanPiNetwork._transfer(address,address,uint256) (#1151-1196):
External calls:
- swapAndLiquify(contractTokenBalance) (#1183)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#888-895)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1235-1241)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1254-1260)
- IERC20(husdtToken).transfer(address(devAddress),dividends) (#1262)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1183)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#888-895)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1195)
- _devFee = _previousDevFee (#1136)
- _devFee = 0 (#1129)
- _tokenTransfer(from,to,amount,takeFee) (#1195)
- _liquidityFee = _previousLiquidityFee (#1134)
- _liquidityFee = 0 (#1127)
- _tokenTransfer(from,to,amount,takeFee) (#1195)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#1090)
- _rOwned[burnAddress] = _rOwned[burnAddress].add(rBurn) (#976)
- _rOwned[devAddress] = _rOwned[devAddress].add(rDev) (#986)
- _rOwned[address(this)] = _rOwned[address(this)].add(rDev) (#988)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#920)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#921)
- _tokenTransfer(from,to,amount,takeFee) (#1195)
- _rTotal = _rTotal.sub(rFee) (#1035)
Apply the check-effects-interactions pattern.
Additional information: link
FanPiNetwork.swapTokensForDividendToken(uint256) (#1244-1264) ignores return value by IERC20(husdtToken).transfer(address(devAddress),dividends) (#1262)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.
Additional information: link
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.
Ownable.unlock() (#456-461) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now > _lockTime,Contract is locked until 7 days) (#458)
Avoid relying on block.timestamp.
Additional information: link
FanPiNetwork.swapAndLiquify(uint256) (#1198-1223) performs a multiplication on the result of a division:
-addHl = uint256(100).mul(_liquidityFee).div(_liquidityFee.add(lsDevFee)) (#1203)
-addNumber = contractTokenBalance.mul(addHl).div(100) (#1204)
Consider ordering multiplication before division.
Additional information: link
PancakeLibrary.getAmountsOut(address,uint256,address[]).i (#740) is a local variable never initialized
Initialize all the variables. If a variable is meant to be initialized to zero, explicitly set it to zero to improve code readability.
Additional information: link
FanPiNetwork.addLiquidity(uint256,uint256) (#883-896) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#888-895)
Ensure that all the return values of the function calls are used.
Additional information: link
FanPiNetwork.allowance(address,address).owner (#879) shadows:
- Ownable.owner() (#409-411) (function)
FanPiNetwork._approve(address,address,uint256).owner (#1143) shadows:
- Ownable.owner() (#409-411) (function)
Rename the local variables that shadow another component.
Additional information: link
FanPiNetwork.setTaxFeePercent(uint256) (#1001-1003) should emit an event for:
- _taxFee = taxFee (#1002)
FanPiNetwork.setLiquidityFeePercent(uint256) (#1005-1007) should emit an event for:
- _liquidityFee = liquidityFee (#1006)
FanPiNetwork.setBurnFeePercent(uint256) (#1009-1011) should emit an event for:
- _burnFee = burnFee (#1010)
FanPiNetwork.setDevFeePercent(uint256) (#1013-1015) should emit an event for:
- _devFee = devFee (#1014)
FanPiNetwork.setMaxTxPercent(uint256) (#1017-1019) should emit an event for:
- _maxTxAmount = maxTxPercent (#1018)
Emit an event for critical parameter changes.
Additional information: link
Reentrancy in FanPiNetwork._transfer(address,address,uint256) (#1151-1196):
External calls:
- swapAndLiquify(contractTokenBalance) (#1183)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#888-895)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1235-1241)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1254-1260)
- IERC20(husdtToken).transfer(address(devAddress),dividends) (#1262)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1183)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#888-895)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1195)
- _burnFee = _previousBurnFee (#1135)
- _burnFee = 0 (#1128)
- _tokenTransfer(from,to,amount,takeFee) (#1195)
- _previousBurnFee = _burnFee (#1123)
- _tokenTransfer(from,to,amount,takeFee) (#1195)
- _previousDevFee = _devFee (#1124)
- _tokenTransfer(from,to,amount,takeFee) (#1195)
- _previousLiquidityFee = _liquidityFee (#1122)
- _tokenTransfer(from,to,amount,takeFee) (#1195)
- _previousTaxFee = _taxFee (#1121)
- _tokenTransfer(from,to,amount,takeFee) (#1195)
- _tFeeTotal = _tFeeTotal.add(tFee) (#1036)
- _tokenTransfer(from,to,amount,takeFee) (#1195)
- _taxFee = _previousTaxFee (#1133)
- _taxFee = 0 (#1126)
Reentrancy in FanPiNetwork.constructor() (#825-847):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#834-835)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#841)
- _isExcludedFromFee[ownerAddres] = true (#842)
- _isExcludedFromFee[burnAddress] = true (#843)
- _isExcludedFromFee[address(this)] = true (#844)
- uniswapV2Router = _uniswapV2Router (#838)
Reentrancy in FanPiNetwork.swapAndLiquify(uint256) (#1198-1223):
External calls:
- swapTokensForEth(half) (#1212)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1235-1241)
- addLiquidity(otherHalf,newBalance) (#1218)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#888-895)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1218)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#888-895)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1218)
- _allowances[owner][spender] = amount (#1147)
Reentrancy in FanPiNetwork.swapAndLiquify(uint256) (#1198-1223):
External calls:
- swapTokensForEth(half) (#1212)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1235-1241)
- addLiquidity(otherHalf,newBalance) (#1218)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#888-895)
- swapTokensForDividendToken(devNumber) (#1220)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1254-1260)
- IERC20(husdtToken).transfer(address(devAddress),dividends) (#1262)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1218)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#888-895)
State variables written after the call(s):
- swapTokensForDividendToken(devNumber) (#1220)
- _allowances[owner][spender] = amount (#1147)
Reentrancy in FanPiNetwork.transferFrom(address,address,uint256) (#935-939):
External calls:
- _transfer(sender,recipient,amount) (#936)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#888-895)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1235-1241)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1254-1260)
- IERC20(husdtToken).transfer(address(devAddress),dividends) (#1262)
External calls sending eth:
- _transfer(sender,recipient,amount) (#936)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#888-895)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#937)
- _allowances[owner][spender] = amount (#1147)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in FanPiNetwork._transfer(address,address,uint256) (#1151-1196):
External calls:
- swapAndLiquify(contractTokenBalance) (#1183)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#888-895)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1235-1241)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1254-1260)
- IERC20(husdtToken).transfer(address(devAddress),dividends) (#1262)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1183)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#888-895)
Event emitted after the call(s):
- Transfer(sender,burnAddress,tBurn) (#978)
- _tokenTransfer(from,to,amount,takeFee) (#1195)
- Transfer(sender,recipient,tTransferAmount) (#927)
- _tokenTransfer(from,to,amount,takeFee) (#1195)
Reentrancy in FanPiNetwork.constructor() (#825-847):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#834-835)
Event emitted after the call(s):
- Transfer(address(0),ownerAddres,_tTotal) (#846)
Reentrancy in FanPiNetwork.swapAndLiquify(uint256) (#1198-1223):
External calls:
- swapTokensForEth(half) (#1212)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1235-1241)
- addLiquidity(otherHalf,newBalance) (#1218)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#888-895)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1218)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#888-895)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1148)
- addLiquidity(otherHalf,newBalance) (#1218)
Reentrancy in FanPiNetwork.swapAndLiquify(uint256) (#1198-1223):
External calls:
- swapTokensForEth(half) (#1212)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1235-1241)
- addLiquidity(otherHalf,newBalance) (#1218)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#888-895)
- swapTokensForDividendToken(devNumber) (#1220)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1254-1260)
- IERC20(husdtToken).transfer(address(devAddress),dividends) (#1262)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1218)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#888-895)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1148)
- swapTokensForDividendToken(devNumber) (#1220)
- SwapAndLiquify(half,newBalance,otherHalf) (#1222)
Reentrancy in FanPiNetwork.transferFrom(address,address,uint256) (#935-939):
External calls:
- _transfer(sender,recipient,amount) (#936)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#888-895)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1235-1241)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1254-1260)
- IERC20(husdtToken).transfer(address(devAddress),dividends) (#1262)
External calls sending eth:
- _transfer(sender,recipient,amount) (#936)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#888-895)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1148)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#937)
Apply the check-effects-interactions pattern.
Additional information: link
Address.isContract(address) (#261-270) uses assembly
- INLINE ASM (#268)
Address._functionCallWithValue(address,bytes,uint256,string) (#354-375) uses assembly
- INLINE ASM (#367-370)
Do not use evm assembly.
Additional information: link
Different versions of Solidity is used:
- Version used: ['>=0.5.0', '^0.6.12']
- ^0.6.12 (#16)
- >=0.5.0 (#657)
- >=0.5.0 (#676)
Use one Solidity version.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#354-375) is never used and should be removed
Address.functionCall(address,bytes) (#314-316) is never used and should be removed
Address.functionCall(address,bytes,string) (#324-326) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#339-341) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#349-352) is never used and should be removed
Address.isContract(address) (#261-270) is never used and should be removed
Address.sendValue(address,uint256) (#288-294) is never used and should be removed
Context._msgData() (#233-236) is never used and should be removed
PancakeLibrary.getAmountIn(uint256,uint256,uint256) (#727-733) is never used and should be removed
PancakeLibrary.getAmountOut(uint256,uint256,uint256) (#717-724) is never used and should be removed
PancakeLibrary.getAmountsIn(address,uint256,address[]) (#747-755) is never used and should be removed
PancakeLibrary.getAmountsOut(address,uint256,address[]) (#736-744) is never used and should be removed
PancakeLibrary.getReserves(address,address,address) (#702-707) is never used and should be removed
PancakeLibrary.pairFor(address,address,address) (#691-699) is never used and should be removed
PancakeLibrary.quote(uint256,uint256,uint256) (#710-714) is never used and should be removed
PancakeLibrary.sortTokens(address,address) (#684-688) is never used and should be removed
SafeMath.mod(uint256,uint256) (#139-141) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#155-158) is never used and should be removed
Remove unused functions.
Additional information: link
FanPiNetwork._rTotal (#775) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
FanPiNetwork._previousTaxFee (#783) is set pre-construction with a non-constant function or state variable:
- _taxFee
FanPiNetwork._previousLiquidityFee (#786) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
FanPiNetwork._previousBurnFee (#789) is set pre-construction with a non-constant function or state variable:
- _burnFee
FanPiNetwork._previousDevFee (#792) 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
Pragma version>=0.5.0 (#657) allows old versions
Pragma version>=0.5.0 (#676) allows old versions
Deploy with any of the following Solidity versions: 0.5.16 - 0.5.17, 0.6.11 - 0.6.12, 0.7.5 - 0.7.6 Use a simple pragma version that allows any of these versions. Consider using the latest version of Solidity for testing.
Additional information: link
Low level call in Address.sendValue(address,uint256) (#288-294):
- (success) = recipient.call{value: amount}() (#292)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#354-375):
- (success,returndata) = target.call{value: weiValue}(data) (#358)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Function IPancakeRouter01.WETH() (#468) is not in mixedCase
Function IPancakePair.DOMAIN_SEPARATOR() (#621) is not in mixedCase
Function IPancakePair.PERMIT_TYPEHASH() (#622) is not in mixedCase
Function IPancakePair.MINIMUM_LIQUIDITY() (#639) is not in mixedCase
Function FanPiNetwork.Launch() (#848-850) is not in mixedCase
Parameter FanPiNetwork.setSwapAndLiquifyEnabled(bool)._enabled (#1021) is not in mixedCase
Parameter FanPiNetwork.setSwapDevEnabled(bool)._enabled (#1026) is not in mixedCase
Parameter FanPiNetwork.calculateTaxFee(uint256)._amount (#1093) is not in mixedCase
Parameter FanPiNetwork.calculateLiquidityFee(uint256)._amount (#1099) is not in mixedCase
Parameter FanPiNetwork.calculateBurnFee(uint256)._amount (#1105) is not in mixedCase
Parameter FanPiNetwork.calculateDevFee(uint256)._amount (#1111) is not in mixedCase
Variable FanPiNetwork._taxFee (#782) is not in mixedCase
Variable FanPiNetwork._liquidityFee (#785) is not in mixedCase
Variable FanPiNetwork._burnFee (#788) is not in mixedCase
Variable FanPiNetwork._devFee (#791) is not in mixedCase
Variable FanPiNetwork._maxTxAmount (#808) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#234)" inContext (#228-237)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Variable IPancakeRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#473) is too similar to IPancakeRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#474)
Variable FanPiNetwork._getValues(uint256).rTransferAmount (#1050) is too similar to FanPiNetwork._getTValues(uint256).tTransferAmount (#1059)
Variable FanPiNetwork._getRValues(FanPiNetwork.TData,uint256).rTransferAmount (#1070) is too similar to FanPiNetwork._getTValues(uint256).tTransferAmount (#1059)
Variable FanPiNetwork._transferStandard(address,address,uint256).rTransferAmount (#919) is too similar to FanPiNetwork._getTValues(uint256).tTransferAmount (#1059)
Variable FanPiNetwork._getRValues(FanPiNetwork.TData,uint256).rTransferAmount (#1070) is too similar to FanPiNetwork._transferStandard(address,address,uint256).tTransferAmount (#919)
Variable FanPiNetwork._getValues(uint256).rTransferAmount (#1050) is too similar to FanPiNetwork._transferStandard(address,address,uint256).tTransferAmount (#919)
Variable FanPiNetwork._transferStandard(address,address,uint256).rTransferAmount (#919) is too similar to FanPiNetwork._transferStandard(address,address,uint256).tTransferAmount (#919)
Variable FanPiNetwork._getValues(uint256).rTransferAmount (#1050) is too similar to FanPiNetwork._getValues(uint256).tTransferAmount (#1048)
Variable FanPiNetwork._getRValues(FanPiNetwork.TData,uint256).rTransferAmount (#1070) is too similar to FanPiNetwork._getValues(uint256).tTransferAmount (#1048)
Variable FanPiNetwork._transferStandard(address,address,uint256).rTransferAmount (#919) is too similar to FanPiNetwork._getValues(uint256).tTransferAmount (#1048)
Variable FanPiNetwork.reflectionFromToken(uint256,bool).rTransferAmount (#962) is too similar to FanPiNetwork._getValues(uint256).tTransferAmount (#1048)
Variable FanPiNetwork.reflectionFromToken(uint256,bool).rTransferAmount (#962) is too similar to FanPiNetwork._getTValues(uint256).tTransferAmount (#1059)
Variable FanPiNetwork.reflectionFromToken(uint256,bool).rTransferAmount (#962) is too similar to FanPiNetwork._transferStandard(address,address,uint256).tTransferAmount (#919)
Prevent variables from having similar names.
Additional information: link
FanPiNetwork.removeMaxtxAmount() (#851-853) uses literals with too many digits:
- _maxTxAmount = 1000000000 * 10 ** 18 (#852)
FanPiNetwork.slitherConstructorVariables() (#763-1266) uses literals with too many digits:
- _tTotal = 10000000000 * 10 ** 18 (#774)
FanPiNetwork.slitherConstructorVariables() (#763-1266) uses literals with too many digits:
- burnAddress = address(0x000000000000000000000000000000000000dEaD) (#794)
FanPiNetwork.slitherConstructorVariables() (#763-1266) uses literals with too many digits:
- _maxTxAmount = 20000000 * 10 ** 18 (#808)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
FanPiNetwork._tOwned (#768) is never used in FanPiNetwork (#763-1266)
Remove unused state variables.
Additional information: link
FanPiNetwork._decimals (#780) should be constant
FanPiNetwork._name (#778) should be constant
FanPiNetwork._symbol (#779) should be constant
FanPiNetwork._tTotal (#774) should be constant
FanPiNetwork.burnAddress (#794) should be constant
FanPiNetwork.devAddress (#796) should be constant
FanPiNetwork.husdtToken (#799) should be constant
FanPiNetwork.numTokensSellToAddToLiquidity (#809) should be constant
FanPiNetwork.ownerAddres (#795) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#428-431)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#437-441)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#443-445)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#448-453)
unlock() should be declared external:
- Ownable.unlock() (#456-461)
Launch() should be declared external:
- FanPiNetwork.Launch() (#848-850)
removeMaxtxAmount() should be declared external:
- FanPiNetwork.removeMaxtxAmount() (#851-853)
name() should be declared external:
- FanPiNetwork.name() (#854-856)
symbol() should be declared external:
- FanPiNetwork.symbol() (#858-860)
decimals() should be declared external:
- FanPiNetwork.decimals() (#862-864)
totalSupply() should be declared external:
- FanPiNetwork.totalSupply() (#866-868)
transfer(address,uint256) should be declared external:
- FanPiNetwork.transfer(address,uint256) (#874-877)
allowance(address,address) should be declared external:
- FanPiNetwork.allowance(address,address) (#879-881)
approve(address,uint256) should be declared external:
- FanPiNetwork.approve(address,uint256) (#930-933)
transferFrom(address,address,uint256) should be declared external:
- FanPiNetwork.transferFrom(address,address,uint256) (#935-939)
increaseAllowance(address,uint256) should be declared external:
- FanPiNetwork.increaseAllowance(address,uint256) (#941-944)
decreaseAllowance(address,uint256) should be declared external:
- FanPiNetwork.decreaseAllowance(address,uint256) (#946-949)
totalFees() should be declared external:
- FanPiNetwork.totalFees() (#952-954)
reflectionFromToken(uint256,bool) should be declared external:
- FanPiNetwork.reflectionFromToken(uint256,bool) (#956-965)
excludeFromFee(address) should be declared external:
- FanPiNetwork.excludeFromFee(address) (#993-995)
includeInFee(address) should be declared external:
- FanPiNetwork.includeInFee(address) (#997-999)
setSwapAndLiquifyEnabled(bool) should be declared external:
- FanPiNetwork.setSwapAndLiquifyEnabled(bool) (#1021-1024)
setSwapDevEnabled(bool) should be declared external:
- FanPiNetwork.setSwapDevEnabled(bool) (#1026-1028)
isExcludedFromFee(address) should be declared external:
- FanPiNetwork.isExcludedFromFee(address) (#1139-1141)
Use the external attribute for functions never called from the contract.
Additional information: link
Average 30d PancakeSwap liquidity is low.
Average 30d number of PancakeSwap swaps is low.
Number of Binance Smart Chain (BSC) token holders is low.
Token is deployed only at one blockchain
Token has only one trading pair
Contract has 8% buy tax and 8% sell tax.
Taxes are low and contract ownership is renounced.
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