StarshipX Token Logo

SX [StarshipX] Token

About SX

Listings

Token 2 years

Starshipx is a new and original "double income" card blockchain game. Players can fight through NFT pledge, PVE / PVP, and hold NFT to obtain rich BNB rewards and SX token rewards in the game.
✅ Starshipx has the most perfect "double income" economic model of blockchain tourism at present,
The game revenue is 24-hour switching system. (please refer to the white paper for the specific mechanism)
① Get rewards in local currency in a single day
② Get BNB rewards on two days

Social

Laser Scorebeta Last Audit: 29 May 2022

report
Token has too many issues. Scam probability is high.

Anti-Scam

Links


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

owner() should be declared external:
- Ownable.owner() (#159-161)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#168-171)
name() should be declared external:
- SXToken.name() (#363-365)
symbol() should be declared external:
- SXToken.symbol() (#367-369)
decimals() should be declared external:
- SXToken.decimals() (#371-373)
totalSupply() should be declared external:
- SXToken.totalSupply() (#375-377)
transfer(address,uint256) should be declared external:
- SXToken.transfer(address,uint256) (#383-386)
allowance(address,address) should be declared external:
- SXToken.allowance(address,address) (#388-390)
approve(address,uint256) should be declared external:
- SXToken.approve(address,uint256) (#392-395)
transferFrom(address,address,uint256) should be declared external:
- SXToken.transferFrom(address,address,uint256) (#397-401)
increaseAllowance(address,uint256) should be declared external:
- SXToken.increaseAllowance(address,uint256) (#403-406)
decreaseAllowance(address,uint256) should be declared external:
- SXToken.decreaseAllowance(address,uint256) (#408-411)
excludeFromFee(address) should be declared external:
- SXToken.excludeFromFee(address) (#413-415)
includeInFee(address) should be declared external:
- SXToken.includeInFee(address) (#417-419)
isExcludedFromFee(address) should be declared external:
- SXToken.isExcludedFromFee(address) (#421-423)
Use the external attribute for functions never called from the contract.

Additional information: link

Reentrancy in SXToken._transfer(address,address,uint256) (#486-548):
External calls:
- swapTokensForEth(v,address(this)) (#512)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,to,block.timestamp) (#560-566)
- swapTokensForEth(v_scope_0,daoAddress) (#518)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,to,block.timestamp) (#560-566)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,param) (#547)
- _tOwned[to] = _tOwned[to].add(tValue) (#462)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#570)
- _tOwned[recipient] = _tOwned[recipient].add(param.tTransferAmount) (#571)
- _tokenTransfer(from,to,amount,param) (#547)
- daoAmount += param.tDao (#469)
- inSwapAndLiquify = false (#521)
- _tokenTransfer(from,to,amount,param) (#547)
- mkAmount += param.tMk (#473)
Apply the check-effects-interactions pattern.

Additional information: link

SXToken._transfer(address,address,uint256).param (#524) 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

SXToken.allowance(address,address).owner (#388) shadows:
- Ownable.owner() (#159-161) (function)
SXToken._approve(address,address,uint256).owner (#427) shadows:
- Ownable.owner() (#159-161) (function)
Rename the local variables that shadow another component.

Additional information: link

SXToken.setTxAmount(uint256,uint256) (#342-345) should emit an event for:
- mkTxAmount = _mkTxAmount (#343)
- daoTxAmount = _daoTxAmount (#344)
SXToken.setBuyFee(uint256,uint256) (#351-355) should emit an event for:
- buyDaoFee = _buyDaoFee (#352)
- buyMarketFee = _buyMarketFee (#353)
- buyTotalFee = buyDaoFee + buyMarketFee (#354)
SXToken.setSellFee(uint256,uint256) (#357-361) should emit an event for:
- sellDaoFee = _sellDaoFee (#358)
- sellMarketFee = _sellMarketFee (#359)
- sellTotalFee = sellDaoFee + sellMarketFee (#360)
Emit an event for critical parameter changes.

Additional information: link

Ownable.transferOwnership(address).newOwner (#168) lacks a zero-check on :
- _owner = newOwner (#170)
SXToken.constructor(address,address,address)._holder (#301) lacks a zero-check on :
- holder = _holder (#304)
SXToken.constructor(address,address,address)._daoAddress (#302) lacks a zero-check on :
- daoAddress = _daoAddress (#305)
SXToken.setDespatcher(address).cher (#347) lacks a zero-check on :
- despatcher = cher (#348)
Check that the address is not zero.

Additional information: link

Reentrancy in SXToken._transfer(address,address,uint256) (#486-548):
External calls:
- swapTokensForEth(v,address(this)) (#512)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,to,block.timestamp) (#560-566)
State variables written after the call(s):
- daoAmount = 0 (#517)
Reentrancy in SXToken._transfer(address,address,uint256) (#486-548):
External calls:
- swapTokensForEth(v,address(this)) (#512)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,to,block.timestamp) (#560-566)
- swapTokensForEth(v_scope_0,daoAddress) (#518)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,to,block.timestamp) (#560-566)
State variables written after the call(s):
- swapTokensForEth(v_scope_0,daoAddress) (#518)
- _allowances[owner][spender] = amount (#431)
Reentrancy in SXToken.transferFrom(address,address,uint256) (#397-401):
External calls:
- _transfer(sender,recipient,amount) (#398)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,to,block.timestamp) (#560-566)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#399)
- _allowances[owner][spender] = amount (#431)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in SXToken._transfer(address,address,uint256) (#486-548):
External calls:
- swapTokensForEth(v,address(this)) (#512)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,to,block.timestamp) (#560-566)
- swapTokensForEth(v_scope_0,daoAddress) (#518)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,to,block.timestamp) (#560-566)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#432)
- swapTokensForEth(v_scope_0,daoAddress) (#518)
- Transfer(from,to,tValue) (#463)
- _tokenTransfer(from,to,amount,param) (#547)
- Transfer(sender,recipient,param.tTransferAmount) (#572)
- _tokenTransfer(from,to,amount,param) (#547)
Reentrancy in SXToken.transferFrom(address,address,uint256) (#397-401):
External calls:
- _transfer(sender,recipient,amount) (#398)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,to,block.timestamp) (#560-566)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#432)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#399)
Apply the check-effects-interactions pattern.

Additional information: link

Address.isContract(address) (#95-100) uses assembly
- INLINE ASM (#98)
Address._functionCallWithValue(address,bytes,uint256,string) (#130-151) uses assembly
- INLINE ASM (#143-146)
SXToken._isContract(address) (#593-597) uses assembly
- INLINE ASM (#595)
Do not use evm assembly.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#130-151) is never used and should be removed
Address.functionCall(address,bytes) (#110-112) is never used and should be removed
Address.functionCall(address,bytes,string) (#115-117) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#120-122) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#125-128) is never used and should be removed
Address.isContract(address) (#95-100) is never used and should be removed
Address.sendValue(address,uint256) (#102-108) is never used and should be removed
Context._msgData() (#87-90) is never used and should be removed
SafeMath.div(uint256,uint256) (#59-61) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#64-68) 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) (#76-79) is never used and should be removed
SafeMath.mul(uint256,uint256) (#49-56) is never used and should be removed
TransferHelper.safeApprove(address,address,uint256) (#225-229) is never used and should be removed
TransferHelper.safeTransferFrom(address,address,address,uint256) (#237-241) is never used and should be removed
Remove unused functions.

Additional information: link

Low level call in Address.sendValue(address,uint256) (#102-108):
- (success) = recipient.call{value: amount}() (#106)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#130-151):
- (success,returndata) = target.call{value: weiValue}(data) (#134)
Low level call in TransferHelper.safeApprove(address,address,uint256) (#225-229):
- (success,data) = token.call(abi.encodeWithSelector(0x095ea7b3,to,value)) (#227)
Low level call in TransferHelper.safeTransfer(address,address,uint256) (#231-235):
- (success,data) = token.call(abi.encodeWithSelector(0xa9059cbb,to,value)) (#233)
Low level call in TransferHelper.safeTransferFrom(address,address,address,uint256) (#237-241):
- (success,data) = token.call(abi.encodeWithSelector(0x23b872dd,from,to,value)) (#239)
Low level call in TransferHelper.safeTransferETH(address,uint256) (#243-246):
- (success) = to.call{value: value}(new bytes(0)) (#244)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable Ownable._owner (#155) is not in mixedCase
Function IUniswapV2Router02.WETH() (#183) is not in mixedCase
Parameter SXToken.setTxAmount(uint256,uint256)._mkTxAmount (#342) is not in mixedCase
Parameter SXToken.setTxAmount(uint256,uint256)._daoTxAmount (#342) is not in mixedCase
Parameter SXToken.setBuyFee(uint256,uint256)._buyDaoFee (#351) is not in mixedCase
Parameter SXToken.setBuyFee(uint256,uint256)._buyMarketFee (#351) is not in mixedCase
Parameter SXToken.setSellFee(uint256,uint256)._sellDaoFee (#357) is not in mixedCase
Parameter SXToken.setSellFee(uint256,uint256)._sellMarketFee (#357) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#88)" inContext (#82-91)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable IUniswapV2Router02.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#210) is too similar to IUniswapV2Router02.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#211)
Prevent variables from having similar names.

Additional information: link

SXToken.slitherConstructorVariables() (#258-600) uses literals with too many digits:
- _tTotal = 1000000000 * 10 ** 18 (#267)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SXToken._decimals (#269) should be constant
SXToken._name (#271) should be constant
SXToken._symbol (#272) should be constant
SXToken._tTotal (#267) should be constant
Add the constant attributes to state variables that never change.

Additional information: link


Contract ownership is semi-renounced (passed to a contract)

Holders:


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


Average 30d PancakeSwap liquidity is low.


Token is deployed only at one blockchain


Token has only one trading pair

Contract has 12% buy tax and 12% sell tax.
Taxes are high (over 10%) but contract ownership is renounced.


Twitter account has relatively few followers


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 find token on CoinGecko

Additional information: link


Unable to find token on CoinMarketCap

Additional information: link


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


Unable to find token contract audit


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 Telegram link on the website


Unable to find Twitter link on the website


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


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for SX

News for SX