Sweet World Space Token Logo

SWS [Sweet World Space] Token

About SWS

Listings

Not Found
Token 2 years

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 7 January 2022

report
Token seems to be anonymous. As long as we are unable to find website score is limited.


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

SWSToken.addLiquidity(uint256,uint256) (#936-946) sends eth to arbitrary user
Dangerous calls:
- DEXV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#937-944)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in SWSToken._transfer(address,address,uint256) (#985-1037):
External calls:
- swapBack(contractTokenBalance) (#1004)
- DEXV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#937-944)
- DEXV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#917-923)
- (success) = address(rewardToken).call{value: bnbForReflection}() (#931)
External calls sending eth:
- swapBack(contractTokenBalance) (#1004)
- DEXV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#937-944)
- address(developmentTeamReciever).transfer(bnbForDev) (#930)
- (success) = address(rewardToken).call{value: bnbForReflection}() (#931)
State variables written after the call(s):
- super._transfer(from,address(this),SellFees) (#1015)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#147)
- _balances[recipient] = _balances[recipient].add(amount) (#148)
- super._transfer(from,to,amount) (#1016)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#147)
- _balances[recipient] = _balances[recipient].add(amount) (#148)
- super._transfer(from,address(this),BuyFees) (#1020)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#147)
- _balances[recipient] = _balances[recipient].add(amount) (#148)
- super._transfer(from,to,amount) (#1021)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#147)
- _balances[recipient] = _balances[recipient].add(amount) (#148)
- super._transfer(from,to,amount) (#1026)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#147)
- _balances[recipient] = _balances[recipient].add(amount) (#148)
Reentrancy in rewardTokenHolders._withdrawDividendOfUser(address) (#278-294):
External calls:
- (success) = user.call{gas: 3000,value: _withdrawableDividend}() (#283)
State variables written after the call(s):
- withdrawnDividends[user] = withdrawnDividends[user].sub(_withdrawableDividend) (#286)
Apply the check-effects-interactions pattern.

Additional information: link

SWSToken._totalSupply (#789) shadows:
- ERC20._totalSupply (#87)
Remove the state variable shadowing.

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.


Not a direct threat, but may indicate unreliable intentions of developer. Widespread names (e.g. Elon, King, Moon, Doge) are common among meme-tokens and scams. The allow to gain free hype and attract unexperienced investors.

SWSToken._transfer(address,address,uint256).iterations (#1032) is a local variable never initialized
SWSToken._transfer(address,address,uint256).claims (#1032) is a local variable never initialized
SWSToken._transfer(address,address,uint256).lastProcessedIndex (#1032) 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

SWSToken.addLiquidity(uint256,uint256) (#936-946) ignores return value by DEXV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#937-944)
SWSToken.claim() (#975-977) ignores return value by rewardToken.processAccount(address(msg.sender),false) (#976)
SWSToken._transfer(address,address,uint256) (#985-1037) ignores return value by rewardToken.process(gas) (#1032-1035)
Ensure that all the return values of the function calls are used.

Additional information: link

rewardTokenHolders.constructor(string,string)._name (#260) shadows:
- ERC20._name (#88) (state variable)
rewardTokenHolders.constructor(string,string)._symbol (#260) shadows:
- ERC20._symbol (#89) (state variable)
Rename the local variables that shadow another component.

Additional information: link

SWSToken.setDevWallet(address).wallet (#880) lacks a zero-check on :
- developmentTeamReciever = wallet (#881)
Check that the address is not zero.

Additional information: link

rewardTokenHolders._withdrawDividendOfUser(address) (#278-294) has external calls inside a loop: (success) = user.call{gas: 3000,value: _withdrawableDividend}() (#283)
Favor pull over push strategy for external calls.

Additional information: link

Variable 'SWSToken._transfer(address,address,uint256).claims (#1032)' in SWSToken._transfer(address,address,uint256) (#985-1037) potentially used before declaration: ProcessedrewardToken(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1033)
Variable 'SWSToken._transfer(address,address,uint256).iterations (#1032)' in SWSToken._transfer(address,address,uint256) (#985-1037) potentially used before declaration: ProcessedrewardToken(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1033)
Variable 'SWSToken._transfer(address,address,uint256).lastProcessedIndex (#1032)' in SWSToken._transfer(address,address,uint256) (#985-1037) potentially used before declaration: ProcessedrewardToken(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1033)
Move all variable declarations prior to any usage of the variable, and ensure that reaching a variable declaration does not depend on some conditional if it is used unconditionally.

Additional information: link

Reentrancy in SWSToken.constructor() (#812-838):
External calls:
- _DEXV2Pair = PanCakeFactory(_DEXV2Router.factory()).createPair(address(this),_DEXV2Router.WETH()) (#816-817)
State variables written after the call(s):
- DEXV2Pair = _DEXV2Pair (#819)
- DEXV2Router = _DEXV2Router (#818)
- rewardToken = new SWSTokenrewardToken() (#820)
Reentrancy in SWSToken.constructor() (#812-838):
External calls:
- _DEXV2Pair = PanCakeFactory(_DEXV2Router.factory()).createPair(address(this),_DEXV2Router.WETH()) (#816-817)
- rewardToken.excludeFromDividends(owner()) (#821)
- rewardToken.excludeFromDividends(address(this)) (#822)
- rewardToken.excludeFromDividends(address(DEXV2Pair)) (#823)
- rewardToken.excludeFromDividends(address(DEXV2Router)) (#824)
- rewardToken.excludeFromDividends(address(rewardToken)) (#825)
- rewardToken.excludeFromDividends(0x000000000000000000000000000000000000dEaD) (#826)
- rewardToken.excludeFromDividends(0x0000000000000000000000000000000000000000) (#827)
State variables written after the call(s):
- reloadSWSToken(owner(),_totalSupply) (#837)
- _balances[account] = _balances[account].add(amount) (#155)
- excludeFromFees(owner(),true) (#832)
- _isExcludedFromFees[account] = excluded (#891)
- excludeFromFees(address(this),true) (#833)
- _isExcludedFromFees[account] = excluded (#891)
- reloadSWSToken(owner(),_totalSupply) (#837)
- _totalSupply = _totalSupply.add(amount) (#154)
- adressLiquidity = ILP(_DEXV2Pair) (#829)
- isTimelockLimited[owner()] = true (#834)
- isTimelockLimited[address(this)] = true (#835)
- isTimelockLimited[0x000000000000000000000000000000000000dEaD] = true (#836)
- isWalletLimit[owner()] = true (#830)
- isWalletLimit[DEXV2Pair] = true (#831)
- lp = _DEXV2Pair (#828)
Reentrancy in SWSTokenrewardToken.processAccount(address,bool) (#568-576):
External calls:
- amount = _withdrawDividendOfUser(account) (#569)
- (success) = user.call{gas: 3000,value: _withdrawableDividend}() (#283)
State variables written after the call(s):
- lastClaimTimes[account] = block.timestamp (#571)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in SWSToken._transfer(address,address,uint256) (#985-1037):
External calls:
- swapBack(contractTokenBalance) (#1004)
- DEXV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#937-944)
- DEXV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#917-923)
- (success) = address(rewardToken).call{value: bnbForReflection}() (#931)
External calls sending eth:
- swapBack(contractTokenBalance) (#1004)
- DEXV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#937-944)
- address(developmentTeamReciever).transfer(bnbForDev) (#930)
- (success) = address(rewardToken).call{value: bnbForReflection}() (#931)
Event emitted after the call(s):
- Transfer(sender,recipient,amount) (#149)
- super._transfer(from,to,amount) (#1021)
- Transfer(sender,recipient,amount) (#149)
- super._transfer(from,address(this),BuyFees) (#1020)
- Transfer(sender,recipient,amount) (#149)
- super._transfer(from,to,amount) (#1016)
- Transfer(sender,recipient,amount) (#149)
- super._transfer(from,address(this),SellFees) (#1015)
- Transfer(sender,recipient,amount) (#149)
- super._transfer(from,to,amount) (#1026)
Reentrancy in SWSToken._transfer(address,address,uint256) (#985-1037):
External calls:
- swapBack(contractTokenBalance) (#1004)
- DEXV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#937-944)
- DEXV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#917-923)
- (success) = address(rewardToken).call{value: bnbForReflection}() (#931)
- rewardToken.setBalance(address(from),balanceOf(from)) (#1028)
- rewardToken.setBalance(address(to),balanceOf(to)) (#1029)
- rewardToken.process(gas) (#1032-1035)
External calls sending eth:
- swapBack(contractTokenBalance) (#1004)
- DEXV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#937-944)
- address(developmentTeamReciever).transfer(bnbForDev) (#930)
- (success) = address(rewardToken).call{value: bnbForReflection}() (#931)
Event emitted after the call(s):
- ProcessedrewardToken(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1033)
Reentrancy in SWSToken.addLiquidity(uint256,uint256) (#936-946):
External calls:
- DEXV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#937-944)
Event emitted after the call(s):
- SwapAndLiquify(tokenAmount,ethAmount,tokenAmount) (#945)
Reentrancy in SWSToken.constructor() (#812-838):
External calls:
- _DEXV2Pair = PanCakeFactory(_DEXV2Router.factory()).createPair(address(this),_DEXV2Router.WETH()) (#816-817)
- rewardToken.excludeFromDividends(owner()) (#821)
- rewardToken.excludeFromDividends(address(this)) (#822)
- rewardToken.excludeFromDividends(address(DEXV2Pair)) (#823)
- rewardToken.excludeFromDividends(address(DEXV2Router)) (#824)
- rewardToken.excludeFromDividends(address(rewardToken)) (#825)
- rewardToken.excludeFromDividends(0x000000000000000000000000000000000000dEaD) (#826)
- rewardToken.excludeFromDividends(0x0000000000000000000000000000000000000000) (#827)
Event emitted after the call(s):
- ExcludeFromFees(account,excluded) (#893)
- excludeFromFees(address(this),true) (#833)
- ExcludeFromFees(account,excluded) (#893)
- excludeFromFees(owner(),true) (#832)
- Transfer(address(0),account,amount) (#156)
- reloadSWSToken(owner(),_totalSupply) (#837)
Reentrancy in SWSTokenrewardToken.processAccount(address,bool) (#568-576):
External calls:
- amount = _withdrawDividendOfUser(account) (#569)
- (success) = user.call{gas: 3000,value: _withdrawableDividend}() (#283)
Event emitted after the call(s):
- Claim(account,amount,automatic) (#572)
Reentrancy in SWSToken.processrewardToken(uint256) (#971-974):
External calls:
- (iterations,claims,lastProcessedIndex) = rewardToken.process(gas) (#972)
Event emitted after the call(s):
- ProcessedrewardToken(iterations,claims,lastProcessedIndex,false,gas,tx.origin) (#973)
Reentrancy in SWSToken.rebaseToken(uint256,int256) (#848-866):
External calls:
- adressLiquidity.sync() (#863)
Event emitted after the call(s):
- RebaseUpdate(epoch,_totalSupply) (#864)
Reentrancy in SWSToken.swapBack(uint256) (#910-935):
External calls:
- DEXV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#917-923)
- addLiquidity(tokensTSWSToken,bnbForLiquidity) (#929)
- DEXV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#937-944)
External calls sending eth:
- addLiquidity(tokensTSWSToken,bnbForLiquidity) (#929)
- DEXV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#937-944)
Event emitted after the call(s):
- SwapAndLiquify(tokenAmount,ethAmount,tokenAmount) (#945)
- addLiquidity(tokensTSWSToken,bnbForLiquidity) (#929)
Reentrancy in SWSToken.swapBack(uint256) (#910-935):
External calls:
- DEXV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#917-923)
- addLiquidity(tokensTSWSToken,bnbForLiquidity) (#929)
- DEXV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#937-944)
- (success) = address(rewardToken).call{value: bnbForReflection}() (#931)
External calls sending eth:
- addLiquidity(tokensTSWSToken,bnbForLiquidity) (#929)
- DEXV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#937-944)
- address(developmentTeamReciever).transfer(bnbForDev) (#930)
- (success) = address(rewardToken).call{value: bnbForReflection}() (#931)
Event emitted after the call(s):
- transferDividends(tokensToLiquify.mul(distributeToholders).div(TotalFees),bnbForReflection) (#933)
Apply the check-effects-interactions pattern.

Additional information: link

SWSTokenrewardToken.getAccount(address) (#467-500) uses timestamp for comparisons
Dangerous comparisons:
- nextClaimTime > block.timestamp (#497-499)
SWSTokenrewardToken.canAutoClaim(uint256) (#517-522) uses timestamp for comparisons
Dangerous comparisons:
- lastClaimTime > block.timestamp (#518)
- block.timestamp.sub(lastClaimTime) >= claimWait (#521)
SWSToken._transfer(address,address,uint256) (#985-1037) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(cooldownTimer[from] < block.timestamp,Please wait for cooldown between buys) (#999)
Avoid relying on block.timestamp.

Additional information: link

Context._msgData() (#28-31) is never used and should be removed
SafeMath.mod(uint256,uint256) (#73-75) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#78-81) is never used and should be removed
SafeMathInt.abs(int256) (#210-213) is never used and should be removed
SafeMathInt.div(int256,int256) (#193-199) is never used and should be removed
SafeMathInt.mul(int256,int256) (#184-191) is never used and should be removed
rewardTokenHolders._transfer(address,address,uint256) (#308-314) is never used and should be removed
Remove unused functions.

Additional information: link

SWSToken.maxTxAmount (#809) is set pre-construction with a non-constant function or state variable:
- _totalSupply
SWSToken.walletMax (#810) is set pre-construction with a non-constant function or state variable:
- _totalSupply
SWSToken.swapTokensAmount (#811) is set pre-construction with a non-constant function or state variable:
- _totalSupply
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 rewardTokenHolders._withdrawDividendOfUser(address) (#278-294):
- (success) = user.call{gas: 3000,value: _withdrawableDividend}() (#283)
Low level call in SWSToken.swapBack(uint256) (#910-935):
- (success) = address(rewardToken).call{value: bnbForReflection}() (#931)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Contract rewardTokenHoldersInterface (#227-244) is not in CapWords
Event rewardTokenHoldersInterfacerewardTokenHoldersDistributed(address,uint256) (#235-238) is not in CapWords
Event rewardTokenHoldersInterfacerewardTokenHoldersWithdrawn(address,uint256) (#240-243) is not in CapWords
Contract rewardTokenHoldersOptionalInterface (#245-249) is not in CapWords
Contract rewardTokenHolders (#250-338) is not in CapWords
Parameter rewardTokenHolders.dividendOf(address)._owner (#295) is not in mixedCase
Parameter rewardTokenHolders.withdrawableDividendOf(address)._owner (#298) is not in mixedCase
Parameter rewardTokenHolders.withdrawnDividendOf(address)._owner (#301) is not in mixedCase
Parameter rewardTokenHolders.accumulativeDividendOf(address)._owner (#304) is not in mixedCase
Constant rewardTokenHolders.magnitude (#254) is not in UPPER_CASE_WITH_UNDERSCORES
Parameter SWSTokenrewardToken.getAccount(address)._account (#467) is not in mixedCase
Function PanCakePair.DOMAIN_SEPARATOR() (#602) is not in mixedCase
Function PanCakePair.PERMIT_TYPEHASH() (#603) is not in mixedCase
Function PanCakePair.MINIMUM_LIQUIDITY() (#617) is not in mixedCase
Function PanCakeRouter01.WETH() (#634) is not in mixedCase
Event SWSTokentransferDividends(uint256,uint256) (#770) is not in CapWords
Parameter SWSToken.changeIsDividendLimited(address,bool).Limited (#868) is not in mixedCase
Variable SWSToken._totalSupply (#789) is not in mixedCase
Variable SWSToken.TotalFees (#784) is not in mixedCase
Variable SWSToken.DEXV2Pair (#786) is not in mixedCase
Variable SWSToken.DEXV2Router (#787) is not in mixedCase
Variable SWSToken._isExcludedFromFees (#801) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#29)" inContext (#23-32)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in SWSToken._transfer(address,address,uint256) (#985-1037):
External calls:
- swapBack(contractTokenBalance) (#1004)
- address(developmentTeamReciever).transfer(bnbForDev) (#930)
External calls sending eth:
- swapBack(contractTokenBalance) (#1004)
- DEXV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#937-944)
- address(developmentTeamReciever).transfer(bnbForDev) (#930)
- (success) = address(rewardToken).call{value: bnbForReflection}() (#931)
State variables written after the call(s):
- super._transfer(from,address(this),SellFees) (#1015)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#147)
- _balances[recipient] = _balances[recipient].add(amount) (#148)
- super._transfer(from,to,amount) (#1016)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#147)
- _balances[recipient] = _balances[recipient].add(amount) (#148)
- super._transfer(from,address(this),BuyFees) (#1020)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#147)
- _balances[recipient] = _balances[recipient].add(amount) (#148)
- super._transfer(from,to,amount) (#1021)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#147)
- _balances[recipient] = _balances[recipient].add(amount) (#148)
- super._transfer(from,to,amount) (#1026)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#147)
- _balances[recipient] = _balances[recipient].add(amount) (#148)
Event emitted after the call(s):
- ProcessedrewardToken(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1033)
- Transfer(sender,recipient,amount) (#149)
- super._transfer(from,to,amount) (#1021)
- Transfer(sender,recipient,amount) (#149)
- super._transfer(from,address(this),BuyFees) (#1020)
- Transfer(sender,recipient,amount) (#149)
- super._transfer(from,to,amount) (#1026)
- Transfer(sender,recipient,amount) (#149)
- super._transfer(from,to,amount) (#1016)
- Transfer(sender,recipient,amount) (#149)
- super._transfer(from,address(this),SellFees) (#1015)
Reentrancy in SWSToken.swapBack(uint256) (#910-935):
External calls:
- address(developmentTeamReciever).transfer(bnbForDev) (#930)
External calls sending eth:
- addLiquidity(tokensTSWSToken,bnbForLiquidity) (#929)
- DEXV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#937-944)
- address(developmentTeamReciever).transfer(bnbForDev) (#930)
- (success) = address(rewardToken).call{value: bnbForReflection}() (#931)
Event emitted after the call(s):
- transferDividends(tokensToLiquify.mul(distributeToholders).div(TotalFees),bnbForReflection) (#933)
Apply the check-effects-interactions pattern.

Additional information: link

Variable rewardTokenHolders._withdrawDividendOfUser(address)._withdrawableDividend (#279) is too similar to SWSTokenrewardToken.getAccount(address).withdrawableDividends (#472)
Variable PanCakeRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#638) is too similar to PanCakeRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#639)
Prevent variables from having similar names.

Additional information: link

SWSTokenrewardToken.getAccountAtIndex(uint256) (#501-516) uses literals with too many digits:
- (0x0000000000000000000000000000000000000000,- 1,- 1,0,0,0,0,0) (#512)
SWSToken.constructor() (#812-838) uses literals with too many digits:
- rewardToken.excludeFromDividends(0x000000000000000000000000000000000000dEaD) (#826)
SWSToken.constructor() (#812-838) uses literals with too many digits:
- rewardToken.excludeFromDividends(0x0000000000000000000000000000000000000000) (#827)
SWSToken.constructor() (#812-838) uses literals with too many digits:
- isTimelockLimited[0x000000000000000000000000000000000000dEaD] = true (#836)
SWSToken.updateGasForProcessing(uint256) (#895-900) uses literals with too many digits:
- require(bool,string)(newValue >= 200000 && newValue <= 500000,SWSToken: gasForProcessing must be between 200,000 and 500,000) (#896)
SWSToken.slitherConstructorVariables() (#765-1041) uses literals with too many digits:
- _totalSupply = 250000000 * (10 ** 9) (#789)
SWSToken.slitherConstructorVariables() (#765-1041) uses literals with too many digits:
- gasForProcessing = 300000 (#785)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SafeMathInt.MAX_INT256 (#183) is never used in SafeMathInt (#181-218)
SWSToken._presalerCollected (#804) is never used in SWSToken (#765-1041)
Remove unused state variables.

Additional information: link

SWSToken.cooldownEnabled (#805) should be constant
SWSToken.cooldownTimerInterval (#806) should be constant
SWSToken.developmentTeam (#782) should be constant
SWSToken.distributeToholders (#783) should be constant
SWSToken.liquidityFee (#796) should be constant
SWSToken.restrictWhales (#800) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

name() should be declared external:
- ERC20.name() (#94-96)
symbol() should be declared external:
- ERC20.symbol() (#97-99)
decimals() should be declared external:
- ERC20.decimals() (#100-102)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#109-112)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (#113-115)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#116-119)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#120-128)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#135-138)
withdrawDividend() should be declared external:
- SWSTokenrewardToken.withdrawDividend() (#433-435)
- rewardTokenHolders.withdrawDividend() (#275-277)
dividendOf(address) should be declared external:
- rewardTokenHolders.dividendOf(address) (#295-297)
withdrawnDividendOf(address) should be declared external:
- rewardTokenHolders.withdrawnDividendOf(address) (#301-303)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#354-357)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#358-362)
get(IterateSWSToken.Map,address) should be declared external:
- IterateSWSToken.get(IterateSWSToken.Map,address) (#372-374)
getIndexOfKey(IterateSWSToken.Map,address) should be declared external:
- IterateSWSToken.getIndexOfKey(IterateSWSToken.Map,address) (#375-380)
getKeyAtIndex(IterateSWSToken.Map,uint256) should be declared external:
- IterateSWSToken.getKeyAtIndex(IterateSWSToken.Map,uint256) (#381-383)
size(IterateSWSToken.Map) should be declared external:
- IterateSWSToken.size(IterateSWSToken.Map) (#384-386)
getAccountAtIndex(uint256) should be declared external:
- SWSTokenrewardToken.getAccountAtIndex(uint256) (#501-516)
process(uint256) should be declared external:
- SWSTokenrewardToken.process(uint256) (#537-567)
assistSWSToken(address,uint256) should be declared external:
- SWSToken.assistSWSToken(address,uint256) (#877-879)
setDevWallet(address) should be declared external:
- SWSToken.setDevWallet(address) (#880-882)
updateDEXV2Router(address) should be declared external:
- SWSToken.updateDEXV2Router(address) (#884-888)
updateGasForProcessing(uint256) should be declared external:
- SWSToken.updateGasForProcessing(uint256) (#895-900)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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


Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.


Token is deployed only at one blockchain


Token has only one trading pair


Unable to find PancakeSwap trading pair to compute liquidity.


Unable to find PancakeSwap trading pair to compute volume.


Unable to find PancakeSwap trading pair to compute number of swaps.


Unable to find Telegram and Twitter accounts


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

Price for SWS