Super Soccer Token Logo

SPS [Super Soccer] Token

About SPS

Listings

Not Found
Token 22 months
white paper

Super Soccer is a Web3 lifestyle app with inbuilt Game-Fi and Social-Fi elements

Super Soccer is built around an essential daily activity for most people – moving around. We are the first project to effectively bring to life a functioning move&earn concept.

Users equip themselves with NFTs in the form of Soccer. By walking, jogging, or running outdoors, users will earn game currency, which can either be used in-game, or cashed out for profit.

Through Game-Fi, Super Soccer aims to motivate millions of people to build healthier lifestyles, combat climate change, and connect the public to Web 3.0, while relying on its Social-Fi aspect to build a social platform for soccer fans to play sports and promote user-generated Web 3.0 content.

Social

Laser Scorebeta Last Audit: 9 June 2022

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

SuperSoccer.addLiquidity(uint256,uint256) (#713-726) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,OwnerAddress,block.timestamp) (#718-725)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in SuperSoccer._transfer(address,address,uint256) (#632-668):
External calls:
- swapAndLiquify(contractTokenBalance) (#655)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#702-708)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#655)
- recipient.transfer(amount) (#597)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#658)
- _balances[recipient] = _balances[recipient].add(finalAmount) (#663)
- finalAmount = takeFee(sender,recipient,amount) (#660-661)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#740)
Apply the check-effects-interactions pattern.

Additional information: link


Contract ownership is not renounced (belongs to a wallet)


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

SuperSoccer.addLiquidity(uint256,uint256) (#713-726) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,OwnerAddress,block.timestamp) (#718-725)
Ensure that all the return values of the function calls are used.

Additional information: link

SuperSoccer.allowance(address,address).owner (#505) shadows:
- Ownable.owner() (#152-154) (function)
SuperSoccer._approve(address,address,uint256).owner (#528) shadows:
- Ownable.owner() (#152-154) (function)
Rename the local variables that shadow another component.

Additional information: link

solc-0.8.14 is not recommended for deployment
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

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#267) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#268)
Prevent variables from having similar names.

Additional information: link

SuperSoccer.slitherConstructorVariables() (#395-748) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#407)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SuperSoccer._buyMarketingFee (#416) should be constant
SuperSoccer._buyTeamFee (#417) should be constant
SuperSoccer._decimals (#402) should be constant
SuperSoccer._marketingShare (#422) should be constant
SuperSoccer._name (#400) should be constant
SuperSoccer._sellMarketingFee (#419) should be constant
SuperSoccer._sellTeamFee (#420) should be constant
SuperSoccer._symbol (#401) should be constant
SuperSoccer._teamShare (#423) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

SuperSoccer.setMarketingWalletAddress(address).newAddress (#560) lacks a zero-check on :
- marketingWalletAddress = address(newAddress) (#561)
SuperSoccer.setTeamWalletAddress(address).newAddress (#564) lacks a zero-check on :
- teamWalletAddress = address(newAddress) (#565)
SuperSoccer.setOAddress(address).newAddress (#568) lacks a zero-check on :
- OwnerAddress = newAddress (#569)
SuperSoccer.Sweep(address).account (#578) lacks a zero-check on :
- address(account).transfer(balance) (#580)
Check that the address is not zero.

Additional information: link

Reentrancy in SuperSoccer.changeRouterVersion(address) (#600-616):
External calls:
- newPairAddress = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#608-609)
State variables written after the call(s):
- isMarketPair[address(uniswapPair)] = true (#615)
- uniswapPair = newPairAddress (#612)
- uniswapV2Router = _uniswapV2Router (#613)
Reentrancy in SuperSoccer.constructor() (#462-483):
External calls:
- uniswapPair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#466-467)
State variables written after the call(s):
- _allowances[address(this)][address(uniswapV2Router)] = _totalSupply (#470)
- _balances[_msgSender()] = _totalSupply (#481)
- _totalDistributionShares = _marketingShare.add(_teamShare) (#477)
- _totalTaxIfBuying = _buyMarketingFee.add(_buyTeamFee) (#475)
- _totalTaxIfSelling = _sellMarketingFee.add(_sellTeamFee) (#476)
- isExcludedFromFee[owner()] = true (#472)
- isExcludedFromFee[address(this)] = true (#473)
- isMarketPair[address(uniswapPair)] = true (#479)
- uniswapV2Router = _uniswapV2Router (#469)
Reentrancy in SuperSoccer.transferFrom(address,address,uint256) (#626-630):
External calls:
- _transfer(sender,recipient,amount) (#627)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#702-708)
External calls sending eth:
- _transfer(sender,recipient,amount) (#627)
- recipient.transfer(amount) (#597)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#628)
- _allowances[owner][spender] = amount (#532)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in SuperSoccer._transfer(address,address,uint256) (#632-668):
External calls:
- swapAndLiquify(contractTokenBalance) (#655)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#702-708)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#655)
- recipient.transfer(amount) (#597)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#741)
- finalAmount = takeFee(sender,recipient,amount) (#660-661)
- Transfer(sender,recipient,finalAmount) (#665)
Reentrancy in SuperSoccer.constructor() (#462-483):
External calls:
- uniswapPair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#466-467)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_totalSupply) (#482)
Reentrancy in SuperSoccer.swapTokensForEth(uint256) (#693-711):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#702-708)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#710)
Reentrancy in SuperSoccer.transferFrom(address,address,uint256) (#626-630):
External calls:
- _transfer(sender,recipient,amount) (#627)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#702-708)
External calls sending eth:
- _transfer(sender,recipient,amount) (#627)
- recipient.transfer(amount) (#597)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#533)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#628)
Apply the check-effects-interactions pattern.

Additional information: link

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

Additional information: link

Address.isContract(address) (#83-92) uses assembly
- INLINE ASM (#90)
Address._functionCallWithValue(address,bytes,uint256,string) (#119-136) uses assembly
- INLINE ASM (#128-131)
Do not use evm assembly.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#119-136) is never used and should be removed
Address.functionCall(address,bytes) (#102-104) is never used and should be removed
Address.functionCall(address,bytes,string) (#106-108) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#110-112) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#114-117) is never used and should be removed
Address.isContract(address) (#83-92) is never used and should be removed
Address.sendValue(address,uint256) (#94-100) is never used and should be removed
Context._msgData() (#10-13) is never used and should be removed
SafeMath.mod(uint256,uint256) (#71-73) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#75-78) is never used and should be removed
SuperSoccer.addLiquidity(uint256,uint256) (#713-726) is never used and should be removed
Remove unused functions.

Additional information: link

SuperSoccer._totalSupply (#429) is set pre-construction with a non-constant function or state variable:
- 2022 * 10 ** 4 * 10 ** _decimals
SuperSoccer.minimumTokensBeforeSwap (#430) is set pre-construction with a non-constant function or state variable:
- 2022 * 10 ** _decimals
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) (#94-100):
- (success) = recipient.call{value: amount}() (#98)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#119-136):
- (success,returndata) = target.call{value: weiValue}(data) (#122)
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() (#226) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#227) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#243) is not in mixedCase
Function IUniswapV2Router01.WETH() (#262) is not in mixedCase
Parameter SuperSoccer.addBlackList(address[])._blackList (#544) is not in mixedCase
Parameter SuperSoccer.removeBlackList(address[])._blackList (#550) is not in mixedCase
Parameter SuperSoccer.transferForeignToken(address,address)._token (#572) is not in mixedCase
Parameter SuperSoccer.transferForeignToken(address,address)._to (#572) is not in mixedCase
Function SuperSoccer.Sweep(address) (#578-581) is not in mixedCase
Parameter SuperSoccer.setSwapAndLiquifyEnabled(bool)._enabled (#583) is not in mixedCase
Variable SuperSoccer.OwnerAddress (#406) is not in mixedCase
Variable SuperSoccer._balances (#409) is not in mixedCase
Variable SuperSoccer._buyMarketingFee (#416) is not in mixedCase
Variable SuperSoccer._buyTeamFee (#417) is not in mixedCase
Variable SuperSoccer._sellMarketingFee (#419) is not in mixedCase
Variable SuperSoccer._sellTeamFee (#420) is not in mixedCase
Variable SuperSoccer._marketingShare (#422) is not in mixedCase
Variable SuperSoccer._teamShare (#423) is not in mixedCase
Variable SuperSoccer._totalTaxIfBuying (#425) is not in mixedCase
Variable SuperSoccer._totalTaxIfSelling (#426) is not in mixedCase
Variable SuperSoccer._totalDistributionShares (#427) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

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

Additional information: link

Reentrancy in SuperSoccer._transfer(address,address,uint256) (#632-668):
External calls:
- swapAndLiquify(contractTokenBalance) (#655)
- recipient.transfer(amount) (#597)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#658)
- _balances[recipient] = _balances[recipient].add(finalAmount) (#663)
- finalAmount = takeFee(sender,recipient,amount) (#660-661)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#740)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#741)
- finalAmount = takeFee(sender,recipient,amount) (#660-661)
- Transfer(sender,recipient,finalAmount) (#665)
Reentrancy in SuperSoccer.transferFrom(address,address,uint256) (#626-630):
External calls:
- _transfer(sender,recipient,amount) (#627)
- recipient.transfer(amount) (#597)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#628)
- _allowances[owner][spender] = amount (#532)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#533)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#628)
Apply the check-effects-interactions pattern.

Additional information: link

waiveOwnership() should be declared external:
- Ownable.waiveOwnership() (#161-164)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#166-170)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#172-174)
getTime() should be declared external:
- Ownable.getTime() (#176-178)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#180-185)
unlock() should be declared external:
- Ownable.unlock() (#187-192)
name() should be declared external:
- SuperSoccer.name() (#485-487)
symbol() should be declared external:
- SuperSoccer.symbol() (#489-491)
decimals() should be declared external:
- SuperSoccer.decimals() (#493-495)
totalSupply() should be declared external:
- SuperSoccer.totalSupply() (#497-499)
allowance(address,address) should be declared external:
- SuperSoccer.allowance(address,address) (#505-507)
increaseAllowance(address,uint256) should be declared external:
- SuperSoccer.increaseAllowance(address,uint256) (#509-512)
decreaseAllowance(address,uint256) should be declared external:
- SuperSoccer.decreaseAllowance(address,uint256) (#514-517)
minimumTokensBeforeSwapAmount() should be declared external:
- SuperSoccer.minimumTokensBeforeSwapAmount() (#519-521)
approve(address,uint256) should be declared external:
- SuperSoccer.approve(address,uint256) (#523-526)
setMarketPairStatus(address,bool) should be declared external:
- SuperSoccer.setMarketPairStatus(address,bool) (#536-538)
setIsExcludedFromFee(address,bool) should be declared external:
- SuperSoccer.setIsExcludedFromFee(address,bool) (#540-542)
transferForeignToken(address,address) should be declared external:
- SuperSoccer.transferForeignToken(address,address) (#572-576)
setSwapAndLiquifyEnabled(bool) should be declared external:
- SuperSoccer.setSwapAndLiquifyEnabled(bool) (#583-586)
setSwapAndLiquifyByLimitOnly(bool) should be declared external:
- SuperSoccer.setSwapAndLiquifyByLimitOnly(bool) (#588-590)
getCirculatingSupply() should be declared external:
- SuperSoccer.getCirculatingSupply() (#592-594)
changeRouterVersion(address) should be declared external:
- SuperSoccer.changeRouterVersion(address) (#600-616)
transfer(address,uint256) should be declared external:
- SuperSoccer.transfer(address,uint256) (#621-624)
transferFrom(address,address,uint256) should be declared external:
- SuperSoccer.transferFrom(address,address,uint256) (#626-630)
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 Youtube account


Unable to find Discord account


Twitter account has few posts


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

Additional information: link


Unable to verify that token and website are owned by the same team (no listings + unable to find contract on website)


Unable to verify token contract address on the website


Unable to find audit link on the website


Unable to find whitepaper link on the website


Unable to find Twitter 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


Unable to find token on CoinHunt

Additional information: link


Unable to find code repository for the project


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


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


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


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for SPS

News for SPS