Fanclub Worldcup Token Token Logo

FWT [Fanclub Worldcup] Token

About FWT

Listings

Token 23 months

Website

white paper

The 2022 World Cup season is getting closer and closer and this is the moment that all football fans around the world are excitedly preparing for. FC WorldCup Token (FWT) is a project to build a Web3 platform for Football Fans. We will fulfill the ambition of building a Social - Web 3.0 infrastructure for everyone to be able to go there to communicate, exchange and post information around the football topic.
✅NFT reward ✅Web3 ✅Fantoken ✅Social-Fi ✅Lowtax 8/8

Social

Laser Scorebeta Last Audit: 19 August 2022

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

FanClubWorldCupToken.sendBNBToFee(uint256) (#398-401) sends eth to arbitrary user
Dangerous calls:
- _devAddress.transfer(amount.div(2)) (#399)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in FanClubWorldCupToken._transfer(address,address,uint256) (#356-382):
External calls:
- swapTokensForBNB(contractTokenBalance) (#366)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#389-395)
External calls sending eth:
- sendBNBToFee(address(this).balance) (#369)
- _devAddress.transfer(amount.div(2)) (#399)
- _mktAddress.transfer(amount.div(2)) (#400)
State variables written after the call(s):
- _tokenTransfer(sender,recipient,amount,takeFee) (#380)
- _rOwned[address(this)] = _rOwned[address(this)].add(rDev) (#424)
- _rOwned[address(this)] = _rOwned[address(this)].add(rMkt) (#428)
- _rOwned[_burnAddress] = _rOwned[_burnAddress].add(_rBurn) (#433)
- _rOwned[sender] = _rOwned[sender].sub(_rValues.rAmount) (#412)
- _rOwned[recipient] = _rOwned[recipient].add(_rValues.rTransferAmount) (#413)
- _tokenTransfer(sender,recipient,amount,takeFee) (#380)
- _rTotal = _rTotal.sub(rFee) (#437)
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.


Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains

FanClubWorldCupToken.allowance(address,address).owner (#334) shadows:
- Ownable.owner() (#122-124) (function)
FanClubWorldCupToken._approve(address,address,uint256).owner (#349) shadows:
- Ownable.owner() (#122-124) (function)
Rename the local variables that shadow another component.

Additional information: link

FanClubWorldCupToken.setUpdateDevAddress(address).devAdress (#263) lacks a zero-check on :
- _devAddress = devAdress (#265)
FanClubWorldCupToken.retrieveBalance(uint256,address).userAddress (#483) lacks a zero-check on :
- address(userAddress).transfer(amount) (#484)
Check that the address is not zero.

Additional information: link

Reentrancy in FanClubWorldCupToken._transfer(address,address,uint256) (#356-382):
External calls:
- swapTokensForBNB(contractTokenBalance) (#366)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#389-395)
External calls sending eth:
- sendBNBToFee(address(this).balance) (#369)
- _devAddress.transfer(amount.div(2)) (#399)
- _mktAddress.transfer(amount.div(2)) (#400)
State variables written after the call(s):
- _tokenTransfer(sender,recipient,amount,takeFee) (#380)
- _burnFee = _preBurnFee (#296)
- _burnFee = 0 (#289)
- _tokenTransfer(sender,recipient,amount,takeFee) (#380)
- _devFee = _preDevFee (#294)
- _devFee = 0 (#287)
- _tokenTransfer(sender,recipient,amount,takeFee) (#380)
- _mktFee = _preMktFee (#295)
- _mktFee = 0 (#288)
- _tokenTransfer(sender,recipient,amount,takeFee) (#380)
- _preBurnFee = _burnFee (#284)
- _tokenTransfer(sender,recipient,amount,takeFee) (#380)
- _preDevFee = _devFee (#282)
- _tokenTransfer(sender,recipient,amount,takeFee) (#380)
- _preMktFee = _mktFee (#283)
- _tokenTransfer(sender,recipient,amount,takeFee) (#380)
- _preRewardHolderFee = _rewardHolderFee (#281)
- _tokenTransfer(sender,recipient,amount,takeFee) (#380)
- _rewardHolderFee = _preRewardHolderFee (#293)
- _rewardHolderFee = 0 (#286)
- _tokenTransfer(sender,recipient,amount,takeFee) (#380)
- _tBurnTotal = _tBurnTotal.add(_rBurn) (#432)
- _tokenTransfer(sender,recipient,amount,takeFee) (#380)
- _tFeeTotal = _tFeeTotal.add(tFee) (#438)
Reentrancy in FanClubWorldCupToken.constructor() (#249-261):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#253-254)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#255)
- _isExcludedFromFee[address(this)] = true (#256)
- _isExcludedFromFee[_devAddress] = true (#257)
- _isExcludedFromFee[_mktAddress] = true (#258)
- _rOwned[_msgSender()] = _rTotal (#259)
Reentrancy in FanClubWorldCupToken.transferFrom(address,address,uint256) (#343-347):
External calls:
- _transfer(sender,recipient,amount) (#344)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#389-395)
External calls sending eth:
- _transfer(sender,recipient,amount) (#344)
- _devAddress.transfer(amount.div(2)) (#399)
- _mktAddress.transfer(amount.div(2)) (#400)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#345)
- _allowances[owner][spender] = amount (#352)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in FanClubWorldCupToken._transfer(address,address,uint256) (#356-382):
External calls:
- swapTokensForBNB(contractTokenBalance) (#366)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#389-395)
External calls sending eth:
- sendBNBToFee(address(this).balance) (#369)
- _devAddress.transfer(amount.div(2)) (#399)
- _mktAddress.transfer(amount.div(2)) (#400)
Event emitted after the call(s):
- Transfer(sender,_burnAddress,_tValues.tBurn) (#419)
- _tokenTransfer(sender,recipient,amount,takeFee) (#380)
- Transfer(sender,recipient,_tValues.tTransferAmount) (#420)
- _tokenTransfer(sender,recipient,amount,takeFee) (#380)
Reentrancy in FanClubWorldCupToken.constructor() (#249-261):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#253-254)
Event emitted after the call(s):
- Transfer(address(0x0000000000000000000000000000000000000000),_msgSender(),_tTotal) (#260)
Reentrancy in FanClubWorldCupToken.transferFrom(address,address,uint256) (#343-347):
External calls:
- _transfer(sender,recipient,amount) (#344)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#389-395)
External calls sending eth:
- _transfer(sender,recipient,amount) (#344)
- _devAddress.transfer(amount.div(2)) (#399)
- _mktAddress.transfer(amount.div(2)) (#400)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#353)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#345)
Apply the check-effects-interactions pattern.

Additional information: link

Context._msgData() (#13-15) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#91-100) is never used and should be removed
SafeMath.mod(uint256,uint256) (#76-78) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#102-111) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (#20-26) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (#44-49) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (#51-56) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (#34-41) is never used and should be removed
SafeMath.trySub(uint256,uint256) (#27-32) is never used and should be removed
Remove unused functions.

Additional information: link

Function IUniswapV2Router02.WETH() (#158) is not in mixedCase
Event FanClubWorldCupTokensetDevAddress(address,address) (#192) is not in CapWords
Event FanClubWorldCupTokensetMktAddress(address,address) (#193) is not in CapWords
Variable FanClubWorldCupToken._rOwned (#187) is not in mixedCase
Constant FanClubWorldCupToken._tTotal (#195) is not in UPPER_CASE_WITH_UNDERSCORES
Variable FanClubWorldCupToken._tFeeTotal (#199) is not in mixedCase
Variable FanClubWorldCupToken._rewardHolderFee (#202) is not in mixedCase
Variable FanClubWorldCupToken._mktFee (#203) is not in mixedCase
Variable FanClubWorldCupToken._devFee (#204) is not in mixedCase
Variable FanClubWorldCupToken._burnFee (#205) is not in mixedCase
Variable FanClubWorldCupToken._preRewardHolderFee (#207) is not in mixedCase
Variable FanClubWorldCupToken._preMktFee (#208) is not in mixedCase
Variable FanClubWorldCupToken._preDevFee (#209) is not in mixedCase
Variable FanClubWorldCupToken._preBurnFee (#210) is not in mixedCase
Constant FanClubWorldCupToken._name (#214) is not in UPPER_CASE_WITH_UNDERSCORES
Constant FanClubWorldCupToken._symbol (#215) is not in UPPER_CASE_WITH_UNDERSCORES
Constant FanClubWorldCupToken._decimals (#216) is not in UPPER_CASE_WITH_UNDERSCORES
Follow the Solidity naming convention.

Additional information: link

Reentrancy in FanClubWorldCupToken._transfer(address,address,uint256) (#356-382):
External calls:
- sendBNBToFee(address(this).balance) (#369)
- _devAddress.transfer(amount.div(2)) (#399)
- _mktAddress.transfer(amount.div(2)) (#400)
State variables written after the call(s):
- _tokenTransfer(sender,recipient,amount,takeFee) (#380)
- _burnFee = _preBurnFee (#296)
- _burnFee = 0 (#289)
- _tokenTransfer(sender,recipient,amount,takeFee) (#380)
- _devFee = _preDevFee (#294)
- _devFee = 0 (#287)
- _tokenTransfer(sender,recipient,amount,takeFee) (#380)
- _mktFee = _preMktFee (#295)
- _mktFee = 0 (#288)
- _tokenTransfer(sender,recipient,amount,takeFee) (#380)
- _preBurnFee = _burnFee (#284)
- _tokenTransfer(sender,recipient,amount,takeFee) (#380)
- _preDevFee = _devFee (#282)
- _tokenTransfer(sender,recipient,amount,takeFee) (#380)
- _preMktFee = _mktFee (#283)
- _tokenTransfer(sender,recipient,amount,takeFee) (#380)
- _preRewardHolderFee = _rewardHolderFee (#281)
- _tokenTransfer(sender,recipient,amount,takeFee) (#380)
- _rOwned[address(this)] = _rOwned[address(this)].add(rDev) (#424)
- _rOwned[address(this)] = _rOwned[address(this)].add(rMkt) (#428)
- _rOwned[_burnAddress] = _rOwned[_burnAddress].add(_rBurn) (#433)
- _rOwned[sender] = _rOwned[sender].sub(_rValues.rAmount) (#412)
- _rOwned[recipient] = _rOwned[recipient].add(_rValues.rTransferAmount) (#413)
- _tokenTransfer(sender,recipient,amount,takeFee) (#380)
- _rTotal = _rTotal.sub(rFee) (#437)
- _tokenTransfer(sender,recipient,amount,takeFee) (#380)
- _rewardHolderFee = _preRewardHolderFee (#293)
- _rewardHolderFee = 0 (#286)
- _tokenTransfer(sender,recipient,amount,takeFee) (#380)
- _tBurnTotal = _tBurnTotal.add(_rBurn) (#432)
- _tokenTransfer(sender,recipient,amount,takeFee) (#380)
- _tFeeTotal = _tFeeTotal.add(tFee) (#438)
Event emitted after the call(s):
- Transfer(sender,_burnAddress,_tValues.tBurn) (#419)
- _tokenTransfer(sender,recipient,amount,takeFee) (#380)
- Transfer(sender,recipient,_tValues.tTransferAmount) (#420)
- _tokenTransfer(sender,recipient,amount,takeFee) (#380)
Reentrancy in FanClubWorldCupToken.transferFrom(address,address,uint256) (#343-347):
External calls:
- _transfer(sender,recipient,amount) (#344)
- _devAddress.transfer(amount.div(2)) (#399)
- _mktAddress.transfer(amount.div(2)) (#400)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#345)
- _allowances[owner][spender] = amount (#352)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#353)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#345)
Apply the check-effects-interactions pattern.

Additional information: link

FanClubWorldCupToken.constructor() (#249-261) uses literals with too many digits:
- Transfer(address(0x0000000000000000000000000000000000000000),_msgSender(),_tTotal) (#260)
FanClubWorldCupToken.slitherConstructorVariables() (#180-487) uses literals with too many digits:
- _burnAddress = address(0x000000000000000000000000000000000000dEaD) (#220)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

FanClubWorldCupToken._tOwned (#188) is never used in FanClubWorldCupToken (#180-487)
FanClubWorldCupToken.DEMI (#212) is never used in FanClubWorldCupToken (#180-487)
Remove unused state variables.

Additional information: link

FanClubWorldCupToken._burnAddress (#220) should be constant
FanClubWorldCupToken._mktAddress (#219) should be constant
FanClubWorldCupToken.swapEnabled (#223) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#129-131)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#133-136)
setUpdateDevAddress(address) should be declared external:
- FanClubWorldCupToken.setUpdateDevAddress(address) (#263-267)
excludeFromFee(address,bool) should be declared external:
- FanClubWorldCupToken.excludeFromFee(address,bool) (#269-271)
excludeListFromFee(address[],bool) should be declared external:
- FanClubWorldCupToken.excludeListFromFee(address[],bool) (#273-277)
name() should be declared external:
- FanClubWorldCupToken.name() (#299-301)
symbol() should be declared external:
- FanClubWorldCupToken.symbol() (#303-305)
decimals() should be declared external:
- FanClubWorldCupToken.decimals() (#307-309)
totalSupply() should be declared external:
- FanClubWorldCupToken.totalSupply() (#311-313)
totalBurn() should be declared external:
- FanClubWorldCupToken.totalBurn() (#315-317)
transfer(address,uint256) should be declared external:
- FanClubWorldCupToken.transfer(address,uint256) (#329-332)
allowance(address,address) should be declared external:
- FanClubWorldCupToken.allowance(address,address) (#334-336)
approve(address,uint256) should be declared external:
- FanClubWorldCupToken.approve(address,uint256) (#338-341)
transferFrom(address,address,uint256) should be declared external:
- FanClubWorldCupToken.transferFrom(address,address,uint256) (#343-347)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Token seems to be untradeable: there is no PancakeSwap trading pair and no trading volumes. Ignore for presale.


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


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 on CoinHunt

Additional information: link


Unable to find Telegram link on the website


Unable to find token on CoinGecko

Additional information: link


Unable to find token on CoinMarketCap

Additional information: link


Token is not listed at Mobula.Finance

Additional information: link


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


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank


Token is relatively young, but twitter if very old (probably it's fake).

Price for FWT