FTS Token Logo

FootballStars [FTS] Token

About FootballStars

Listings

Token 2 years
CoinMarketCap 2 years

We connect fans, players and clubs around the globe to provide a seamless virtual integration of all their top leagues, cups and championships.

Social

Laser Scorebeta Last Audit: 29 January 2022

report
Token is either risky or in presale. For presale 30+ is a fine score.

Anti-Scam

Links


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

FTS.swapAndLiquify(uint256) (#947-977) sends eth to arbitrary user
Dangerous calls:
- wallet.transfer(oneThird) (#967)
- rewardsWallet.transfer(oneThird) (#968)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in FTS._transfer(address,address,uint256) (#897-945):
External calls:
- swapAndLiquify(contractTokenBalance) (#932)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1004-1011)
- pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#990-996)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#932)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1004-1011)
- wallet.transfer(oneThird) (#967)
- rewardsWallet.transfer(oneThird) (#968)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#944)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#1121)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1046)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1037)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1067)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1057)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1038)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1058)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1048)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1069)
- _tokenTransfer(from,to,amount,takeFee) (#944)
- _rTotal = _rTotal.sub(rFee) (#1076)
- _tokenTransfer(from,to,amount,takeFee) (#944)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#1123)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1056)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1066)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1047)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1068)
Apply the check-effects-interactions pattern.

Additional information: link


Combination 1: Reentrancy vulnerabilities + Functions that send Ether to arbitraty destination. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.

FTS.setTaxFeePercent(uint256) (#1165-1168) should emit an event for:
- _taxFee = taxFee (#1167)
FTS.setLiquidityFeePercent(uint256) (#1170-1173) should emit an event for:
- _liquidityFee = liquidityFee (#1172)
FTS.setMaxTxPercent(uint256) (#1175-1180) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (#1177-1179)
Emit an event for critical parameter changes.

Additional information: link

FTS.includeInReward(address) (#856-867) has costly operations inside a loop:
- _excluded.pop() (#863)
Use a local variable to hold the loop computation result.

Additional information: link

FTS.addLiquidity(uint256,uint256) (#999-1012) ignores return value by pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1004-1011)
Ensure that all the return values of the function calls are used.

Additional information: link

FTS.allowance(address,address).owner (#787) shadows:
- Ownable.owner() (#418-420) (function)
FTS._approve(address,address,uint256).owner (#869) shadows:
- Ownable.owner() (#418-420) (function)
Rename the local variables that shadow another component.

Additional information: link

Reentrancy in FTS._transfer(address,address,uint256) (#897-945):
External calls:
- swapAndLiquify(contractTokenBalance) (#932)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1004-1011)
- pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#990-996)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#932)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1004-1011)
- wallet.transfer(oneThird) (#967)
- rewardsWallet.transfer(oneThird) (#968)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#944)
- _liquidityFee = _previousLiquidityFee (#1150)
- _liquidityFee = 0 (#1145)
- _tokenTransfer(from,to,amount,takeFee) (#944)
- _previousLiquidityFee = _liquidityFee (#1142)
- _tokenTransfer(from,to,amount,takeFee) (#944)
- _previousTaxFee = _taxFee (#1141)
- _tokenTransfer(from,to,amount,takeFee) (#944)
- _tFeeTotal = _tFeeTotal.add(tFee) (#1077)
- _tokenTransfer(from,to,amount,takeFee) (#944)
- _taxFee = _previousTaxFee (#1149)
- _taxFee = 0 (#1144)
Reentrancy in FTS.constructor() (#742-759):
External calls:
- pancakePair = IPancakeFactory(_pancakeRouter.factory()).createPair(address(this),_pancakeRouter.WETH()) (#748-749)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#755)
- _isExcludedFromFee[address(this)] = true (#756)
- pancakeRouter = _pancakeRouter (#752)
Reentrancy in FTS.swapAndLiquify(uint256) (#947-977):
External calls:
- swapTokensForEth(half.add(devExp).add(forRewards)) (#962)
- pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#990-996)
- addLiquidity(otherHalf,oneThird) (#974)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1004-1011)
External calls sending eth:
- wallet.transfer(oneThird) (#967)
- rewardsWallet.transfer(oneThird) (#968)
- addLiquidity(otherHalf,oneThird) (#974)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1004-1011)
State variables written after the call(s):
- addLiquidity(otherHalf,oneThird) (#974)
- _allowances[owner][spender] = amount (#873)
Reentrancy in FTS.transferFrom(address,address,uint256) (#796-800):
External calls:
- _transfer(sender,recipient,amount) (#797)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1004-1011)
- pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#990-996)
External calls sending eth:
- _transfer(sender,recipient,amount) (#797)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1004-1011)
- wallet.transfer(oneThird) (#967)
- rewardsWallet.transfer(oneThird) (#968)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#798)
- _allowances[owner][spender] = amount (#873)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in FTS._transfer(address,address,uint256) (#897-945):
External calls:
- swapAndLiquify(contractTokenBalance) (#932)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1004-1011)
- pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#990-996)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#932)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1004-1011)
- wallet.transfer(oneThird) (#967)
- rewardsWallet.transfer(oneThird) (#968)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1041)
- _tokenTransfer(from,to,amount,takeFee) (#944)
- Transfer(sender,recipient,tTransferAmount) (#1061)
- _tokenTransfer(from,to,amount,takeFee) (#944)
- Transfer(sender,recipient,tTransferAmount) (#1051)
- _tokenTransfer(from,to,amount,takeFee) (#944)
- Transfer(sender,recipient,tTransferAmount) (#1072)
- _tokenTransfer(from,to,amount,takeFee) (#944)
Reentrancy in FTS.constructor() (#742-759):
External calls:
- pancakePair = IPancakeFactory(_pancakeRouter.factory()).createPair(address(this),_pancakeRouter.WETH()) (#748-749)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#758)
Reentrancy in FTS.swapAndLiquify(uint256) (#947-977):
External calls:
- swapTokensForEth(half.add(devExp).add(forRewards)) (#962)
- pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#990-996)
- addLiquidity(otherHalf,oneThird) (#974)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1004-1011)
External calls sending eth:
- wallet.transfer(oneThird) (#967)
- rewardsWallet.transfer(oneThird) (#968)
- addLiquidity(otherHalf,oneThird) (#974)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1004-1011)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#874)
- addLiquidity(otherHalf,oneThird) (#974)
- SwapAndLiquify(half,oneThird,otherHalf) (#976)
Reentrancy in FTS.transferFrom(address,address,uint256) (#796-800):
External calls:
- _transfer(sender,recipient,amount) (#797)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1004-1011)
- pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#990-996)
External calls sending eth:
- _transfer(sender,recipient,amount) (#797)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1004-1011)
- wallet.transfer(oneThird) (#967)
- rewardsWallet.transfer(oneThird) (#968)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#874)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#798)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable.unlock() (#465-470) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now > _lockTime,Contract is locked until 7 days) (#467)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#270-279) uses assembly
- INLINE ASM (#277)
Address._functionCallWithValue(address,bytes,uint256,string) (#363-384) uses assembly
- INLINE ASM (#376-379)
Do not use evm assembly.

Additional information: link

FTS.changeLimit() (#878-881) compares to a boolean constant:
-require(bool,string)(limit == true,limit is already false) (#879)
FTS._transfer(address,address,uint256) (#897-945) compares to a boolean constant:
-limit == true && from != owner() && to != owner() (#905)
Remove the equality to the boolean constant.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#363-384) is never used and should be removed
Address.functionCall(address,bytes) (#323-325) is never used and should be removed
Address.functionCall(address,bytes,string) (#333-335) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#348-350) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#358-361) is never used and should be removed
Address.isContract(address) (#270-279) is never used and should be removed
Address.sendValue(address,uint256) (#297-303) is never used and should be removed
Context._msgData() (#9-12) 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) (#243-246) is never used and should be removed
Remove unused functions.

Additional information: link

FTS._rTotal (#700) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
FTS._previousTaxFee (#708) is set pre-construction with a non-constant function or state variable:
- _taxFee
FTS._previousLiquidityFee (#711) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
FTS._maxTxAmount (#718) is set pre-construction with a non-constant function or state variable:
- _tTotal
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) (#297-303):
- (success) = recipient.call{value: amount}() (#301)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#363-384):
- (success,returndata) = target.call{value: weiValue}(data) (#367)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IPancakePair.DOMAIN_SEPARATOR() (#508) is not in mixedCase
Function IPancakePair.PERMIT_TYPEHASH() (#509) is not in mixedCase
Function IPancakePair.MINIMUM_LIQUIDITY() (#526) is not in mixedCase
Function IPancakeRouter01.WETH() (#548) is not in mixedCase
Parameter FTS.expectedRewards(address)._sender (#885) is not in mixedCase
Parameter FTS.calculateTaxFee(uint256)._amount (#1126) is not in mixedCase
Parameter FTS.calculateLiquidityFee(uint256)._amount (#1132) is not in mixedCase
Parameter FTS.setSwapAndLiquifyEnabled(bool)._enabled (#1182) is not in mixedCase
Variable FTS._taxFee (#707) is not in mixedCase
Variable FTS._liquidityFee (#710) is not in mixedCase
Variable FTS._maxTxAmount (#718) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#10)" inContext (#4-13)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in FTS._transfer(address,address,uint256) (#897-945):
External calls:
- swapAndLiquify(contractTokenBalance) (#932)
- wallet.transfer(oneThird) (#967)
- rewardsWallet.transfer(oneThird) (#968)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#932)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1004-1011)
- wallet.transfer(oneThird) (#967)
- rewardsWallet.transfer(oneThird) (#968)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#944)
- _liquidityFee = _previousLiquidityFee (#1150)
- _liquidityFee = 0 (#1145)
- _tokenTransfer(from,to,amount,takeFee) (#944)
- _previousLiquidityFee = _liquidityFee (#1142)
- _tokenTransfer(from,to,amount,takeFee) (#944)
- _previousTaxFee = _taxFee (#1141)
- _tokenTransfer(from,to,amount,takeFee) (#944)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#1121)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1046)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1037)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1067)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1057)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1038)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1058)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1048)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1069)
- _tokenTransfer(from,to,amount,takeFee) (#944)
- _rTotal = _rTotal.sub(rFee) (#1076)
- _tokenTransfer(from,to,amount,takeFee) (#944)
- _tFeeTotal = _tFeeTotal.add(tFee) (#1077)
- _tokenTransfer(from,to,amount,takeFee) (#944)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#1123)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1056)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1066)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1047)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1068)
- _tokenTransfer(from,to,amount,takeFee) (#944)
- _taxFee = _previousTaxFee (#1149)
- _taxFee = 0 (#1144)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1041)
- _tokenTransfer(from,to,amount,takeFee) (#944)
- Transfer(sender,recipient,tTransferAmount) (#1061)
- _tokenTransfer(from,to,amount,takeFee) (#944)
- Transfer(sender,recipient,tTransferAmount) (#1051)
- _tokenTransfer(from,to,amount,takeFee) (#944)
- Transfer(sender,recipient,tTransferAmount) (#1072)
- _tokenTransfer(from,to,amount,takeFee) (#944)
Reentrancy in FTS.swapAndLiquify(uint256) (#947-977):
External calls:
- wallet.transfer(oneThird) (#967)
- rewardsWallet.transfer(oneThird) (#968)
External calls sending eth:
- wallet.transfer(oneThird) (#967)
- rewardsWallet.transfer(oneThird) (#968)
- addLiquidity(otherHalf,oneThird) (#974)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1004-1011)
State variables written after the call(s):
- addLiquidity(otherHalf,oneThird) (#974)
- _allowances[owner][spender] = amount (#873)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#874)
- addLiquidity(otherHalf,oneThird) (#974)
- SwapAndLiquify(half,oneThird,otherHalf) (#976)
Reentrancy in FTS.transferFrom(address,address,uint256) (#796-800):
External calls:
- _transfer(sender,recipient,amount) (#797)
- wallet.transfer(oneThird) (#967)
- rewardsWallet.transfer(oneThird) (#968)
External calls sending eth:
- _transfer(sender,recipient,amount) (#797)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1004-1011)
- wallet.transfer(oneThird) (#967)
- rewardsWallet.transfer(oneThird) (#968)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#798)
- _allowances[owner][spender] = amount (#873)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#874)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#798)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IPancakeRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#553) is too similar to IPancakeRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#554)
Variable FTS._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1097) is too similar to FTS._getTValues(uint256).tTransferAmount (#1089)
Variable FTS._transferToExcluded(address,address,uint256).rTransferAmount (#1045) is too similar to FTS._transferFromExcluded(address,address,uint256).tTransferAmount (#1055)
Variable FTS._transferStandard(address,address,uint256).rTransferAmount (#1036) is too similar to FTS._transferToExcluded(address,address,uint256).tTransferAmount (#1045)
Variable FTS._transferFromExcluded(address,address,uint256).rTransferAmount (#1055) is too similar to FTS._transferToExcluded(address,address,uint256).tTransferAmount (#1045)
Variable FTS._transferStandard(address,address,uint256).rTransferAmount (#1036) is too similar to FTS._getValues(uint256).tTransferAmount (#1081)
Variable FTS._transferFromExcluded(address,address,uint256).rTransferAmount (#1055) is too similar to FTS._getValues(uint256).tTransferAmount (#1081)
Variable FTS._transferToExcluded(address,address,uint256).rTransferAmount (#1045) is too similar to FTS._transferToExcluded(address,address,uint256).tTransferAmount (#1045)
Variable FTS._transferStandard(address,address,uint256).rTransferAmount (#1036) is too similar to FTS._transferStandard(address,address,uint256).tTransferAmount (#1036)
Variable FTS.reflectionFromToken(uint256,bool).rTransferAmount (#835) is too similar to FTS._getTValues(uint256).tTransferAmount (#1089)
Variable FTS._transferToExcluded(address,address,uint256).rTransferAmount (#1045) is too similar to FTS._getValues(uint256).tTransferAmount (#1081)
Variable FTS._transferStandard(address,address,uint256).rTransferAmount (#1036) is too similar to FTS._getTValues(uint256).tTransferAmount (#1089)
Variable FTS._transferFromExcluded(address,address,uint256).rTransferAmount (#1055) is too similar to FTS._getTValues(uint256).tTransferAmount (#1089)
Variable FTS._getValues(uint256).rTransferAmount (#1082) is too similar to FTS._getTValues(uint256).tTransferAmount (#1089)
Variable FTS._transferStandard(address,address,uint256).rTransferAmount (#1036) is too similar to FTS._transferFromExcluded(address,address,uint256).tTransferAmount (#1055)
Variable FTS._transferFromExcluded(address,address,uint256).rTransferAmount (#1055) is too similar to FTS._transferFromExcluded(address,address,uint256).tTransferAmount (#1055)
Variable FTS._transferToExcluded(address,address,uint256).rTransferAmount (#1045) is too similar to FTS._getTValues(uint256).tTransferAmount (#1089)
Variable FTS._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1097) is too similar to FTS._getValues(uint256).tTransferAmount (#1081)
Variable FTS._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1097) is too similar to FTS._transferToExcluded(address,address,uint256).tTransferAmount (#1045)
Variable FTS._transferBothExcluded(address,address,uint256).rTransferAmount (#1065) is too similar to FTS._transferBothExcluded(address,address,uint256).tTransferAmount (#1065)
Variable FTS._getValues(uint256).rTransferAmount (#1082) is too similar to FTS._transferFromExcluded(address,address,uint256).tTransferAmount (#1055)
Variable FTS.reflectionFromToken(uint256,bool).rTransferAmount (#835) is too similar to FTS._getValues(uint256).tTransferAmount (#1081)
Variable FTS.reflectionFromToken(uint256,bool).rTransferAmount (#835) is too similar to FTS._transferToExcluded(address,address,uint256).tTransferAmount (#1045)
Variable FTS._transferFromExcluded(address,address,uint256).rTransferAmount (#1055) is too similar to FTS._transferStandard(address,address,uint256).tTransferAmount (#1036)
Variable FTS._transferToExcluded(address,address,uint256).rTransferAmount (#1045) is too similar to FTS._transferBothExcluded(address,address,uint256).tTransferAmount (#1065)
Variable FTS._getValues(uint256).rTransferAmount (#1082) is too similar to FTS._transferStandard(address,address,uint256).tTransferAmount (#1036)
Variable FTS._transferBothExcluded(address,address,uint256).rTransferAmount (#1065) is too similar to FTS._transferFromExcluded(address,address,uint256).tTransferAmount (#1055)
Variable FTS._transferBothExcluded(address,address,uint256).rTransferAmount (#1065) is too similar to FTS._getTValues(uint256).tTransferAmount (#1089)
Variable FTS._getValues(uint256).rTransferAmount (#1082) is too similar to FTS._getValues(uint256).tTransferAmount (#1081)
Variable FTS._getValues(uint256).rTransferAmount (#1082) is too similar to FTS._transferToExcluded(address,address,uint256).tTransferAmount (#1045)
Variable FTS._transferBothExcluded(address,address,uint256).rTransferAmount (#1065) is too similar to FTS._transferStandard(address,address,uint256).tTransferAmount (#1036)
Variable FTS._transferToExcluded(address,address,uint256).rTransferAmount (#1045) is too similar to FTS._transferStandard(address,address,uint256).tTransferAmount (#1036)
Variable FTS._transferStandard(address,address,uint256).rTransferAmount (#1036) is too similar to FTS._transferBothExcluded(address,address,uint256).tTransferAmount (#1065)
Variable FTS._transferBothExcluded(address,address,uint256).rTransferAmount (#1065) is too similar to FTS._transferToExcluded(address,address,uint256).tTransferAmount (#1045)
Variable FTS._transferBothExcluded(address,address,uint256).rTransferAmount (#1065) is too similar to FTS._getValues(uint256).tTransferAmount (#1081)
Variable FTS._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1097) is too similar to FTS._transferBothExcluded(address,address,uint256).tTransferAmount (#1065)
Variable FTS.reflectionFromToken(uint256,bool).rTransferAmount (#835) is too similar to FTS._transferBothExcluded(address,address,uint256).tTransferAmount (#1065)
Variable FTS._transferFromExcluded(address,address,uint256).rTransferAmount (#1055) is too similar to FTS._transferBothExcluded(address,address,uint256).tTransferAmount (#1065)
Variable FTS._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1097) is too similar to FTS._transferFromExcluded(address,address,uint256).tTransferAmount (#1055)
Variable FTS._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#1097) is too similar to FTS._transferStandard(address,address,uint256).tTransferAmount (#1036)
Variable FTS._getValues(uint256).rTransferAmount (#1082) is too similar to FTS._transferBothExcluded(address,address,uint256).tTransferAmount (#1065)
Variable FTS.reflectionFromToken(uint256,bool).rTransferAmount (#835) is too similar to FTS._transferFromExcluded(address,address,uint256).tTransferAmount (#1055)
Variable FTS.reflectionFromToken(uint256,bool).rTransferAmount (#835) is too similar to FTS._transferStandard(address,address,uint256).tTransferAmount (#1036)
Prevent variables from having similar names.

Additional information: link

FTS._transfer(address,address,uint256) (#897-945) uses literals with too many digits:
- require(bool,string)(amount <= 10000000000000000000000000,Transfer amount must be less than 100 tokens) (#909)
FTS.slitherConstructorVariables() (#686-1190) uses literals with too many digits:
- _tTotal = 1000000000000 * 10 ** 18 (#699)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

FTS._decimals (#705) should be constant
FTS._name (#703) should be constant
FTS._symbol (#704) should be constant
FTS._tTotal (#699) should be constant
FTS.minTokensBeforeSwap (#726) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#437-440)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#446-450)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#452-454)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#457-462)
unlock() should be declared external:
- Ownable.unlock() (#465-470)
name() should be declared external:
- FTS.name() (#761-763)
symbol() should be declared external:
- FTS.symbol() (#765-767)
decimals() should be declared external:
- FTS.decimals() (#769-771)
totalSupply() should be declared external:
- FTS.totalSupply() (#773-775)
transfer(address,uint256) should be declared external:
- FTS.transfer(address,uint256) (#782-785)
allowance(address,address) should be declared external:
- FTS.allowance(address,address) (#787-789)
approve(address,uint256) should be declared external:
- FTS.approve(address,uint256) (#791-794)
transferFrom(address,address,uint256) should be declared external:
- FTS.transferFrom(address,address,uint256) (#796-800)
increaseAllowance(address,uint256) should be declared external:
- FTS.increaseAllowance(address,uint256) (#802-805)
decreaseAllowance(address,uint256) should be declared external:
- FTS.decreaseAllowance(address,uint256) (#807-810)
isExcludedFromReward(address) should be declared external:
- FTS.isExcludedFromReward(address) (#812-814)
totalFees() should be declared external:
- FTS.totalFees() (#816-818)
deliver(uint256) should be declared external:
- FTS.deliver(uint256) (#820-827)
reflectionFromToken(uint256,bool) should be declared external:
- FTS.reflectionFromToken(uint256,bool) (#829-838)
excludeFromReward(address) should be declared external:
- FTS.excludeFromReward(address) (#846-854)
changeLimit() should be declared external:
- FTS.changeLimit() (#878-881)
isExcludedFromFee(address) should be declared external:
- FTS.isExcludedFromFee(address) (#1153-1155)
excludeFromFee(address) should be declared external:
- FTS.excludeFromFee(address) (#1157-1159)
includeInFee(address) should be declared external:
- FTS.includeInFee(address) (#1161-1163)
setSwapAndLiquifyEnabled(bool) should be declared external:
- FTS.setSwapAndLiquifyEnabled(bool) (#1182-1185)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Average 30d PancakeSwap liquidity 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.


Swap operations require suspiciously high gas. Contract logic is complex and may disguise some form of scam.


Token is deployed only at one blockchain

Contract has 6% buy tax and 5% sell tax.
Taxes are low and contract ownership is renounced.


Last post in Twitter was more than 30 days ago


Unable to find Blog account (Reddit or Medium)


Unable to find Discord account


BscScan page for the token does not contain additional info: website, socials, description, etc.

Additional information: link


Unable to find token/project description on the website or on BscScan, CoinMarketCap


Unable to find token contract audit


Unable to find audit link on the website


Unable to find whitepaper link on the website


Unable to find code repository for the project


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


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death


Token has relatively low CoinMarketCap rank

Price for FootballStars

News for FootballStars