Starship Token Logo

Starship Token

About Starship

Listings

Not Found
Token 2 years

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 14 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...)

Reentrancy in Starship._transfer(address,address,uint256) (#1113-1147):
External calls:
- swapAndLiquify(contractTokenBalance) (#1139)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#855-862)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1182-1188)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1200-1206)
- IERC20(BUSDToken).transfer(address(devAddress),dividends) (#1208)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1139)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#855-862)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1146)
- _devFee = _previousDevFee (#1098)
- _devFee = 0 (#1091)
- _tokenTransfer(from,to,amount,takeFee) (#1146)
- _liquidityFee = _previousLiquidityFee (#1096)
- _liquidityFee = 0 (#1089)
- _tokenTransfer(from,to,amount,takeFee) (#1146)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#1052)
- _rOwned[burnAddress] = _rOwned[burnAddress].add(rBurn) (#934)
- _rOwned[devAddress] = _rOwned[devAddress].add(rDev) (#944)
- _rOwned[address(this)] = _rOwned[address(this)].add(rDev) (#946)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#878)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#879)
- _tokenTransfer(from,to,amount,takeFee) (#1146)
- _rTotal = _rTotal.sub(rFee) (#997)
Apply the check-effects-interactions pattern.

Additional information: link

Starship.swapTokensForDividendToken(uint256) (#1191-1210) ignores return value by IERC20(BUSDToken).transfer(address(devAddress),dividends) (#1208)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link


Combination 3: Reentrancy vulnerabilities + Unchecked transfer vulnerability. 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.


Not a direct threat, but may indicate unreliable intentions of developer. Both name and ticker of current token are widespread, i.e. common across multiple tokens. This is slightly suspicious

Starship.BUSDToken (#775) should be constant
Starship._decimals (#759) should be constant
Starship._name (#757) should be constant
Starship._symbol (#758) should be constant
Starship._tTotal (#753) should be constant
Starship.burnAddress (#776) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

Starship.swapAndLiquify(uint256) (#1149-1170) performs a multiplication on the result of a division:
-addHl = uint256(100).mul(_liquidityFee).div(_liquidityFee.add(lsDevFee)) (#1154)
-addNumber = contractTokenBalance.mul(addHl).div(100) (#1155)
Consider ordering multiplication before division.

Additional information: link

PancakeLibrary.getAmountsOut(address,uint256,address[]).i (#725) 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

Starship.addLiquidity(uint256,uint256) (#850-863) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#855-862)
Ensure that all the return values of the function calls are used.

Additional information: link

Starship.allowance(address,address).owner (#846) shadows:
- Ownable.owner() (#394-396) (function)
Starship._approve(address,address,uint256).owner (#1105) shadows:
- Ownable.owner() (#394-396) (function)
Rename the local variables that shadow another component.

Additional information: link

Starship.setTaxFeePercent(uint256) (#959-961) should emit an event for:
- _taxFee = taxFee (#960)
Starship.setLiquidityFeePercent(uint256) (#963-965) should emit an event for:
- _liquidityFee = liquidityFee (#964)
Starship.setBurnFeePercent(uint256) (#967-969) should emit an event for:
- _burnFee = burnFee (#968)
Starship.setNumTokenPercent(uint256) (#971-973) should emit an event for:
- numTokensSellToAddToLiquidity = numToken (#972)
Starship.setDevFeePercent(uint256) (#975-977) should emit an event for:
- _devFee = devFee (#976)
Starship.setMaxTxPercent(uint256) (#979-981) should emit an event for:
- _maxTxAmount = maxTxPercent (#980)
Emit an event for critical parameter changes.

Additional information: link

Starship.constructor(address)._dev (#802) lacks a zero-check on :
- devAddress = _dev (#812)
Check that the address is not zero.

Additional information: link

Reentrancy in Starship._transfer(address,address,uint256) (#1113-1147):
External calls:
- swapAndLiquify(contractTokenBalance) (#1139)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#855-862)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1182-1188)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1200-1206)
- IERC20(BUSDToken).transfer(address(devAddress),dividends) (#1208)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1139)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#855-862)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1146)
- _burnFee = _previousBurnFee (#1097)
- _burnFee = 0 (#1090)
- _tokenTransfer(from,to,amount,takeFee) (#1146)
- _previousBurnFee = _burnFee (#1085)
- _tokenTransfer(from,to,amount,takeFee) (#1146)
- _previousDevFee = _devFee (#1086)
- _tokenTransfer(from,to,amount,takeFee) (#1146)
- _previousLiquidityFee = _liquidityFee (#1084)
- _tokenTransfer(from,to,amount,takeFee) (#1146)
- _previousTaxFee = _taxFee (#1083)
- _tokenTransfer(from,to,amount,takeFee) (#1146)
- _tFeeTotal = _tFeeTotal.add(tFee) (#998)
- _tokenTransfer(from,to,amount,takeFee) (#1146)
- _taxFee = _previousTaxFee (#1095)
- _taxFee = 0 (#1088)
Reentrancy in Starship.constructor(address) (#802-819):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#807-808)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#814)
- _isExcludedFromFee[burnAddress] = true (#815)
- _isExcludedFromFee[address(this)] = true (#816)
- devAddress = _dev (#812)
- uniswapV2Router = _uniswapV2Router (#811)
Reentrancy in Starship.swapAndLiquify(uint256) (#1149-1170):
External calls:
- swapTokensForEth(half) (#1162)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1182-1188)
- addLiquidity(otherHalf,newBalance) (#1165)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#855-862)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1165)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#855-862)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1165)
- _allowances[owner][spender] = amount (#1109)
Reentrancy in Starship.swapAndLiquify(uint256) (#1149-1170):
External calls:
- swapTokensForEth(half) (#1162)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1182-1188)
- addLiquidity(otherHalf,newBalance) (#1165)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#855-862)
- swapTokensForDividendToken(devNumber) (#1167)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1200-1206)
- IERC20(BUSDToken).transfer(address(devAddress),dividends) (#1208)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1165)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#855-862)
State variables written after the call(s):
- swapTokensForDividendToken(devNumber) (#1167)
- _allowances[owner][spender] = amount (#1109)
Reentrancy in Starship.transferFrom(address,address,uint256) (#893-897):
External calls:
- _transfer(sender,recipient,amount) (#894)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#855-862)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1182-1188)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1200-1206)
- IERC20(BUSDToken).transfer(address(devAddress),dividends) (#1208)
External calls sending eth:
- _transfer(sender,recipient,amount) (#894)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#855-862)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#895)
- _allowances[owner][spender] = amount (#1109)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in Starship._transfer(address,address,uint256) (#1113-1147):
External calls:
- swapAndLiquify(contractTokenBalance) (#1139)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#855-862)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1182-1188)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1200-1206)
- IERC20(BUSDToken).transfer(address(devAddress),dividends) (#1208)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1139)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#855-862)
Event emitted after the call(s):
- Transfer(sender,burnAddress,tBurn) (#936)
- _tokenTransfer(from,to,amount,takeFee) (#1146)
- Transfer(sender,recipient,tTransferAmount) (#885)
- _tokenTransfer(from,to,amount,takeFee) (#1146)
Reentrancy in Starship.constructor(address) (#802-819):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#807-808)
Event emitted after the call(s):
- Transfer(address(0),owner(),_tTotal) (#818)
Reentrancy in Starship.swapAndLiquify(uint256) (#1149-1170):
External calls:
- swapTokensForEth(half) (#1162)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1182-1188)
- addLiquidity(otherHalf,newBalance) (#1165)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#855-862)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1165)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#855-862)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1110)
- addLiquidity(otherHalf,newBalance) (#1165)
Reentrancy in Starship.swapAndLiquify(uint256) (#1149-1170):
External calls:
- swapTokensForEth(half) (#1162)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1182-1188)
- addLiquidity(otherHalf,newBalance) (#1165)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#855-862)
- swapTokensForDividendToken(devNumber) (#1167)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1200-1206)
- IERC20(BUSDToken).transfer(address(devAddress),dividends) (#1208)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1165)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#855-862)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1110)
- swapTokensForDividendToken(devNumber) (#1167)
- SwapAndLiquify(half,newBalance,otherHalf) (#1169)
Reentrancy in Starship.transferFrom(address,address,uint256) (#893-897):
External calls:
- _transfer(sender,recipient,amount) (#894)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#855-862)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1182-1188)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1200-1206)
- IERC20(BUSDToken).transfer(address(devAddress),dividends) (#1208)
External calls sending eth:
- _transfer(sender,recipient,amount) (#894)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(this),block.timestamp) (#855-862)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1110)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#895)
Apply the check-effects-interactions pattern.

Additional information: link

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

Additional information: link

Address.isContract(address) (#246-255) uses assembly
- INLINE ASM (#253)
Address._functionCallWithValue(address,bytes,uint256,string) (#339-360) uses assembly
- INLINE ASM (#352-355)
Do not use evm assembly.

Additional information: link

Different versions of Solidity is used:
- Version used: ['>=0.5.0', '^0.6.12']
- ^0.6.12 (#1)
- >=0.5.0 (#642)
- >=0.5.0 (#661)
Use one Solidity version.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#339-360) is never used and should be removed
Address.functionCall(address,bytes) (#299-301) is never used and should be removed
Address.functionCall(address,bytes,string) (#309-311) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#324-326) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#334-337) is never used and should be removed
Address.isContract(address) (#246-255) is never used and should be removed
Address.sendValue(address,uint256) (#273-279) is never used and should be removed
Context._msgData() (#218-221) is never used and should be removed
PancakeLibrary.getAmountIn(uint256,uint256,uint256) (#712-718) is never used and should be removed
PancakeLibrary.getAmountOut(uint256,uint256,uint256) (#702-709) is never used and should be removed
PancakeLibrary.getAmountsIn(address,uint256,address[]) (#732-740) is never used and should be removed
PancakeLibrary.getAmountsOut(address,uint256,address[]) (#721-729) is never used and should be removed
PancakeLibrary.getReserves(address,address,address) (#687-692) is never used and should be removed
PancakeLibrary.pairFor(address,address,address) (#676-684) is never used and should be removed
PancakeLibrary.quote(uint256,uint256,uint256) (#695-699) is never used and should be removed
PancakeLibrary.sortTokens(address,address) (#669-673) is never used and should be removed
SafeMath.mod(uint256,uint256) (#124-126) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#140-143) is never used and should be removed
Remove unused functions.

Additional information: link

Starship._rTotal (#754) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
Starship._previousTaxFee (#762) is set pre-construction with a non-constant function or state variable:
- _taxFee
Starship._previousLiquidityFee (#765) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
Starship._previousBurnFee (#768) is set pre-construction with a non-constant function or state variable:
- _burnFee
Starship._previousDevFee (#771) is set pre-construction with a non-constant function or state variable:
- _devFee
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

Pragma version>=0.5.0 (#642) allows old versions
Pragma version>=0.5.0 (#661) allows old versions
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

Low level call in Address.sendValue(address,uint256) (#273-279):
- (success) = recipient.call{value: amount}() (#277)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#339-360):
- (success,returndata) = target.call{value: weiValue}(data) (#343)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IPancakeRouter01.WETH() (#453) is not in mixedCase
Function IPancakePair.DOMAIN_SEPARATOR() (#606) is not in mixedCase
Function IPancakePair.PERMIT_TYPEHASH() (#607) is not in mixedCase
Function IPancakePair.MINIMUM_LIQUIDITY() (#624) is not in mixedCase
Parameter Starship.setSwapAndLiquifyEnabled(bool)._enabled (#983) is not in mixedCase
Parameter Starship.setSwapDevEnabled(bool)._enabled (#988) is not in mixedCase
Parameter Starship.calculateTaxFee(uint256)._amount (#1055) is not in mixedCase
Parameter Starship.calculateLiquidityFee(uint256)._amount (#1061) is not in mixedCase
Parameter Starship.calculateBurnFee(uint256)._amount (#1067) is not in mixedCase
Parameter Starship.calculateDevFee(uint256)._amount (#1073) is not in mixedCase
Variable Starship._taxFee (#761) is not in mixedCase
Variable Starship._liquidityFee (#764) is not in mixedCase
Variable Starship._burnFee (#767) is not in mixedCase
Variable Starship._devFee (#770) is not in mixedCase
Variable Starship.BUSDToken (#775) is not in mixedCase
Variable Starship._maxTxAmount (#785) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#219)" inContext (#213-222)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable IPancakeRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#458) is too similar to IPancakeRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#459)
Variable Starship._getRValues(Starship.TData,uint256).rTransferAmount (#1032) is too similar to Starship._getTValues(uint256).tTransferAmount (#1021)
Variable Starship._transferStandard(address,address,uint256).rTransferAmount (#877) is too similar to Starship._getTValues(uint256).tTransferAmount (#1021)
Variable Starship._getValues(uint256).rTransferAmount (#1012) is too similar to Starship._getTValues(uint256).tTransferAmount (#1021)
Variable Starship._getRValues(Starship.TData,uint256).rTransferAmount (#1032) is too similar to Starship._transferStandard(address,address,uint256).tTransferAmount (#877)
Variable Starship._getValues(uint256).rTransferAmount (#1012) is too similar to Starship._transferStandard(address,address,uint256).tTransferAmount (#877)
Variable Starship._transferStandard(address,address,uint256).rTransferAmount (#877) is too similar to Starship._transferStandard(address,address,uint256).tTransferAmount (#877)
Variable Starship.reflectionFromToken(uint256,bool).rTransferAmount (#920) is too similar to Starship._getTValues(uint256).tTransferAmount (#1021)
Variable Starship._getRValues(Starship.TData,uint256).rTransferAmount (#1032) is too similar to Starship._getValues(uint256).tTransferAmount (#1010)
Variable Starship._transferStandard(address,address,uint256).rTransferAmount (#877) is too similar to Starship._getValues(uint256).tTransferAmount (#1010)
Variable Starship.reflectionFromToken(uint256,bool).rTransferAmount (#920) is too similar to Starship._getValues(uint256).tTransferAmount (#1010)
Variable Starship.reflectionFromToken(uint256,bool).rTransferAmount (#920) is too similar to Starship._transferStandard(address,address,uint256).tTransferAmount (#877)
Variable Starship._getValues(uint256).rTransferAmount (#1012) is too similar to Starship._getValues(uint256).tTransferAmount (#1010)
Prevent variables from having similar names.

Additional information: link

Starship.slitherConstructorVariables() (#743-1212) uses literals with too many digits:
- _tTotal = 100000000 * 10 ** 18 (#753)
Starship.slitherConstructorVariables() (#743-1212) uses literals with too many digits:
- burnAddress = address(0x000000000000000000000000000000000000dEaD) (#776)
Starship.slitherConstructorVariables() (#743-1212) uses literals with too many digits:
- _maxTxAmount = 100000000 * 10 ** 18 (#785)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Starship._tOwned (#748) is never used in Starship (#743-1212)
Remove unused state variables.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#413-416)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#422-426)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#428-430)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#433-438)
unlock() should be declared external:
- Ownable.unlock() (#441-446)
name() should be declared external:
- Starship.name() (#821-823)
symbol() should be declared external:
- Starship.symbol() (#825-827)
decimals() should be declared external:
- Starship.decimals() (#829-831)
totalSupply() should be declared external:
- Starship.totalSupply() (#833-835)
transfer(address,uint256) should be declared external:
- Starship.transfer(address,uint256) (#841-844)
allowance(address,address) should be declared external:
- Starship.allowance(address,address) (#846-848)
approve(address,uint256) should be declared external:
- Starship.approve(address,uint256) (#888-891)
transferFrom(address,address,uint256) should be declared external:
- Starship.transferFrom(address,address,uint256) (#893-897)
increaseAllowance(address,uint256) should be declared external:
- Starship.increaseAllowance(address,uint256) (#899-902)
decreaseAllowance(address,uint256) should be declared external:
- Starship.decreaseAllowance(address,uint256) (#904-907)
totalFees() should be declared external:
- Starship.totalFees() (#910-912)
reflectionFromToken(uint256,bool) should be declared external:
- Starship.reflectionFromToken(uint256,bool) (#914-923)
excludeFromFee(address) should be declared external:
- Starship.excludeFromFee(address) (#951-953)
includeInFee(address) should be declared external:
- Starship.includeInFee(address) (#955-957)
setSwapAndLiquifyEnabled(bool) should be declared external:
- Starship.setSwapAndLiquifyEnabled(bool) (#983-986)
setSwapDevEnabled(bool) should be declared external:
- Starship.setSwapDevEnabled(bool) (#988-990)
isExcludedFromFee(address) should be declared external:
- Starship.isExcludedFromFee(address) (#1101-1103)
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 Starship