Starlink 1469 Token Logo

S1469 [Starlink 1469] Token

About S1469

Listings

Not Found
Token 2 years

Based on Elon Musk tweet. Get ready to get more blast!!

Social

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

Reentrancy in Starlink1469._transfer(address,address,uint256) (#630-668):
External calls:
- swapTokens(contractTokenBalance) (#648)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#697-703)
- buyBackTokens(balance.div(100)) (#656)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,burnAddress,block.timestamp.add(300)) (#715-720)
External calls sending eth:
- swapTokens(contractTokenBalance) (#648)
- recipient.transfer(amount) (#928)
- buyBackTokens(balance.div(100)) (#656)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,burnAddress,block.timestamp.add(300)) (#715-720)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#667)
- _liquidityFee = _previousLiquidityFee (#873)
- _liquidityFee = 0 (#868)
- _tokenTransfer(from,to,amount,takeFee) (#667)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#844)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#760)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#769)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#790)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#761)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#780)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#781)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#771)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#792)
- _tokenTransfer(from,to,amount,takeFee) (#667)
- _rTotal = _rTotal.sub(rFee) (#799)
- _tokenTransfer(from,to,amount,takeFee) (#667)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#846)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#779)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#789)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#770)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#791)
- buyBackTokens(balance.div(100)) (#656)
- inSwapAndLiquify = true (#479)
- inSwapAndLiquify = false (#481)
Apply the check-effects-interactions pattern.

Additional information: link

Starlink1469.swapTokens(uint256) (#670-679) performs a multiplication on the result of a division:
-transferToAddressETH(burnWallet,transferredBalance.div(_liquidityFee).mul(burnDivisor)) (#677)
Consider ordering multiplication before division.

Additional information: link

Starlink1469.addLiquidity(uint256,uint256) (#725-738) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#730-737)
Ensure that all the return values of the function calls are used.

Additional information: link

Starlink1469.allowance(address,address).owner (#526) shadows:
- Ownable.owner() (#160-162) (function)
Starlink1469._approve(address,address,uint256).owner (#622) shadows:
- Ownable.owner() (#160-162) (function)
Rename the local variables that shadow another component.

Additional information: link

Starlink1469.setTaxFeePercent(uint256) (#888-890) should emit an event for:
- _taxFee = taxFee (#889)
Starlink1469.setLiquidityFeePercent(uint256) (#892-894) should emit an event for:
- _liquidityFee = liquidityFee (#893)
Starlink1469.setMaxTxAmount(uint256) (#896-898) should emit an event for:
- _maxTxAmount = maxTxAmount (#897)
Starlink1469.setburnDivisor(uint256) (#900-902) should emit an event for:
- burnDivisor = divisor (#901)
Starlink1469.setNumTokensSellToAddToLiquidity(uint256) (#904-906) should emit an event for:
- minimumTokensBeforeSwap = _minimumTokensBeforeSwap (#905)
Starlink1469.setBuybackUpperLimit(uint256) (#908-910) should emit an event for:
- buyBackUpperLimit = buyBackLimit * 10 ** 18 (#909)
Emit an event for critical parameter changes.

Additional information: link

Starlink1469.setburnAddress(address)._burnWallet (#912) lacks a zero-check on :
- burnWallet = address(_burnWallet) (#913)
Check that the address is not zero.

Additional information: link

Reentrancy in Starlink1469._transfer(address,address,uint256) (#630-668):
External calls:
- swapTokens(contractTokenBalance) (#648)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#697-703)
- buyBackTokens(balance.div(100)) (#656)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,burnAddress,block.timestamp.add(300)) (#715-720)
External calls sending eth:
- swapTokens(contractTokenBalance) (#648)
- recipient.transfer(amount) (#928)
- buyBackTokens(balance.div(100)) (#656)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,burnAddress,block.timestamp.add(300)) (#715-720)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#667)
- _previousLiquidityFee = _liquidityFee (#865)
- _tokenTransfer(from,to,amount,takeFee) (#667)
- _previousTaxFee = _taxFee (#864)
- _tokenTransfer(from,to,amount,takeFee) (#667)
- _tFeeTotal = _tFeeTotal.add(tFee) (#800)
- _tokenTransfer(from,to,amount,takeFee) (#667)
- _taxFee = _previousTaxFee (#872)
- _taxFee = 0 (#867)
Reentrancy in Starlink1469.constructor() (#484-498):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#488-489)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#494)
- _isExcludedFromFee[address(this)] = true (#495)
- uniswapV2Router = _uniswapV2Router (#491)
Reentrancy in Starlink1469.transferFrom(address,address,uint256) (#540-544):
External calls:
- _transfer(sender,recipient,amount) (#541)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,burnAddress,block.timestamp.add(300)) (#715-720)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#697-703)
External calls sending eth:
- _transfer(sender,recipient,amount) (#541)
- recipient.transfer(amount) (#928)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,burnAddress,block.timestamp.add(300)) (#715-720)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#542)
- _allowances[owner][spender] = amount (#626)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in Starlink1469._transfer(address,address,uint256) (#630-668):
External calls:
- swapTokens(contractTokenBalance) (#648)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#697-703)
- buyBackTokens(balance.div(100)) (#656)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,burnAddress,block.timestamp.add(300)) (#715-720)
External calls sending eth:
- swapTokens(contractTokenBalance) (#648)
- recipient.transfer(amount) (#928)
- buyBackTokens(balance.div(100)) (#656)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,burnAddress,block.timestamp.add(300)) (#715-720)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#722)
- buyBackTokens(balance.div(100)) (#656)
- Transfer(sender,recipient,tTransferAmount) (#764)
- _tokenTransfer(from,to,amount,takeFee) (#667)
- Transfer(sender,recipient,tTransferAmount) (#774)
- _tokenTransfer(from,to,amount,takeFee) (#667)
- Transfer(sender,recipient,tTransferAmount) (#784)
- _tokenTransfer(from,to,amount,takeFee) (#667)
- Transfer(sender,recipient,tTransferAmount) (#795)
- _tokenTransfer(from,to,amount,takeFee) (#667)
Reentrancy in Starlink1469.constructor() (#484-498):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#488-489)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#497)
Reentrancy in Starlink1469.swapETHForTokens(uint256) (#708-723):
External calls:
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,burnAddress,block.timestamp.add(300)) (#715-720)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#722)
Reentrancy in Starlink1469.swapTokensForEth(uint256) (#688-706):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#697-703)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#705)
Reentrancy in Starlink1469.transferFrom(address,address,uint256) (#540-544):
External calls:
- _transfer(sender,recipient,amount) (#541)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,burnAddress,block.timestamp.add(300)) (#715-720)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#697-703)
External calls sending eth:
- _transfer(sender,recipient,amount) (#541)
- recipient.transfer(amount) (#928)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,burnAddress,block.timestamp.add(300)) (#715-720)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#627)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#542)
Apply the check-effects-interactions pattern.

Additional information: link

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

Additional information: link

Address.isContract(address) (#90-99) uses assembly
- INLINE ASM (#97)
Address._functionCallWithValue(address,bytes,uint256,string) (#127-144) uses assembly
- INLINE ASM (#136-139)
Do not use evm assembly.

Additional information: link

Starlink1469.includeInReward(address) (#609-620) has costly operations inside a loop:
- _excluded.pop() (#616)
Use a local variable to hold the loop computation result.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#127-144) 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) (#114-116) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#118-120) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#122-125) is never used and should be removed
Address.isContract(address) (#90-99) is never used and should be removed
Address.sendValue(address,uint256) (#101-107) is never used and should be removed
Context._msgData() (#13-16) is never used and should be removed
SafeMath.mod(uint256,uint256) (#78-80) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#82-85) is never used and should be removed
Starlink1469.addLiquidity(uint256,uint256) (#725-738) is never used and should be removed
Remove unused functions.

Additional information: link

Starlink1469._rTotal (#431) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
Starlink1469._previousTaxFee (#440) is set pre-construction with a non-constant function or state variable:
- _taxFee
Starlink1469._previousLiquidityFee (#443) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
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) (#101-107):
- (success) = recipient.call{value: amount}() (#105)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#127-144):
- (success,returndata) = target.call{value: weiValue}(data) (#130)
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() (#239) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#240) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#256) is not in mixedCase
Function IUniswapV2Router01.WETH() (#277) is not in mixedCase
Parameter Starlink1469.calculateTaxFee(uint256)._amount (#849) is not in mixedCase
Parameter Starlink1469.calculateLiquidityFee(uint256)._amount (#855) is not in mixedCase
Parameter Starlink1469.setNumTokensSellToAddToLiquidity(uint256)._minimumTokensBeforeSwap (#904) is not in mixedCase
Parameter Starlink1469.setburnAddress(address)._burnWallet (#912) is not in mixedCase
Parameter Starlink1469.setSwapAndLiquifyEnabled(bool)._enabled (#916) is not in mixedCase
Parameter Starlink1469.setBuyBackEnabled(bool)._enabled (#921) is not in mixedCase
Variable Starlink1469._taxFee (#439) is not in mixedCase
Variable Starlink1469._liquidityFee (#442) is not in mixedCase
Variable Starlink1469._maxTxAmount (#447) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

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

Additional information: link

Reentrancy in Starlink1469._transfer(address,address,uint256) (#630-668):
External calls:
- swapTokens(contractTokenBalance) (#648)
- recipient.transfer(amount) (#928)
External calls sending eth:
- swapTokens(contractTokenBalance) (#648)
- recipient.transfer(amount) (#928)
- buyBackTokens(balance.div(100)) (#656)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,burnAddress,block.timestamp.add(300)) (#715-720)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#667)
- _liquidityFee = _previousLiquidityFee (#873)
- _liquidityFee = 0 (#868)
- _tokenTransfer(from,to,amount,takeFee) (#667)
- _previousLiquidityFee = _liquidityFee (#865)
- _tokenTransfer(from,to,amount,takeFee) (#667)
- _previousTaxFee = _taxFee (#864)
- _tokenTransfer(from,to,amount,takeFee) (#667)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#844)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#760)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#769)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#790)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#761)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#780)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#781)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#771)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#792)
- _tokenTransfer(from,to,amount,takeFee) (#667)
- _rTotal = _rTotal.sub(rFee) (#799)
- _tokenTransfer(from,to,amount,takeFee) (#667)
- _tFeeTotal = _tFeeTotal.add(tFee) (#800)
- _tokenTransfer(from,to,amount,takeFee) (#667)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#846)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#779)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#789)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#770)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#791)
- _tokenTransfer(from,to,amount,takeFee) (#667)
- _taxFee = _previousTaxFee (#872)
- _taxFee = 0 (#867)
- buyBackTokens(balance.div(100)) (#656)
- inSwapAndLiquify = true (#479)
- inSwapAndLiquify = false (#481)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#722)
- buyBackTokens(balance.div(100)) (#656)
- Transfer(sender,recipient,tTransferAmount) (#764)
- _tokenTransfer(from,to,amount,takeFee) (#667)
- Transfer(sender,recipient,tTransferAmount) (#784)
- _tokenTransfer(from,to,amount,takeFee) (#667)
- Transfer(sender,recipient,tTransferAmount) (#774)
- _tokenTransfer(from,to,amount,takeFee) (#667)
- Transfer(sender,recipient,tTransferAmount) (#795)
- _tokenTransfer(from,to,amount,takeFee) (#667)
Reentrancy in Starlink1469.transferFrom(address,address,uint256) (#540-544):
External calls:
- _transfer(sender,recipient,amount) (#541)
- recipient.transfer(amount) (#928)
External calls sending eth:
- _transfer(sender,recipient,amount) (#541)
- recipient.transfer(amount) (#928)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,burnAddress,block.timestamp.add(300)) (#715-720)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#542)
- _allowances[owner][spender] = amount (#626)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#627)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#542)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#282) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#283)
Variable Starlink1469._transferStandard(address,address,uint256).rTransferAmount (#759) is too similar to Starlink1469._getTValues(uint256).tTransferAmount (#812)
Variable Starlink1469._transferFromExcluded(address,address,uint256).rTransferAmount (#778) is too similar to Starlink1469._transferFromExcluded(address,address,uint256).tTransferAmount (#778)
Variable Starlink1469._transferBothExcluded(address,address,uint256).rTransferAmount (#788) is too similar to Starlink1469._transferFromExcluded(address,address,uint256).tTransferAmount (#778)
Variable Starlink1469._transferStandard(address,address,uint256).rTransferAmount (#759) is too similar to Starlink1469._transferToExcluded(address,address,uint256).tTransferAmount (#768)
Variable Starlink1469._transferFromExcluded(address,address,uint256).rTransferAmount (#778) is too similar to Starlink1469._transferBothExcluded(address,address,uint256).tTransferAmount (#788)
Variable Starlink1469._transferToExcluded(address,address,uint256).rTransferAmount (#768) is too similar to Starlink1469._transferToExcluded(address,address,uint256).tTransferAmount (#768)
Variable Starlink1469._transferBothExcluded(address,address,uint256).rTransferAmount (#788) is too similar to Starlink1469._transferBothExcluded(address,address,uint256).tTransferAmount (#788)
Variable Starlink1469._transferFromExcluded(address,address,uint256).rTransferAmount (#778) is too similar to Starlink1469._getTValues(uint256).tTransferAmount (#812)
Variable Starlink1469._transferStandard(address,address,uint256).rTransferAmount (#759) is too similar to Starlink1469._transferStandard(address,address,uint256).tTransferAmount (#759)
Variable Starlink1469._transferBothExcluded(address,address,uint256).rTransferAmount (#788) is too similar to Starlink1469._getTValues(uint256).tTransferAmount (#812)
Variable Starlink1469.reflectionFromToken(uint256,bool).rTransferAmount (#588) is too similar to Starlink1469._transferToExcluded(address,address,uint256).tTransferAmount (#768)
Variable Starlink1469._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#820) is too similar to Starlink1469._getTValues(uint256).tTransferAmount (#812)
Variable Starlink1469._transferFromExcluded(address,address,uint256).rTransferAmount (#778) is too similar to Starlink1469._transferToExcluded(address,address,uint256).tTransferAmount (#768)
Variable Starlink1469._transferBothExcluded(address,address,uint256).rTransferAmount (#788) is too similar to Starlink1469._transferToExcluded(address,address,uint256).tTransferAmount (#768)
Variable Starlink1469._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#820) is too similar to Starlink1469._transferToExcluded(address,address,uint256).tTransferAmount (#768)
Variable Starlink1469._getValues(uint256).rTransferAmount (#805) is too similar to Starlink1469._getTValues(uint256).tTransferAmount (#812)
Variable Starlink1469._transferFromExcluded(address,address,uint256).rTransferAmount (#778) is too similar to Starlink1469._transferStandard(address,address,uint256).tTransferAmount (#759)
Variable Starlink1469._transferBothExcluded(address,address,uint256).rTransferAmount (#788) is too similar to Starlink1469._transferStandard(address,address,uint256).tTransferAmount (#759)
Variable Starlink1469._getValues(uint256).rTransferAmount (#805) is too similar to Starlink1469._transferToExcluded(address,address,uint256).tTransferAmount (#768)
Variable Starlink1469._transferStandard(address,address,uint256).rTransferAmount (#759) is too similar to Starlink1469._transferBothExcluded(address,address,uint256).tTransferAmount (#788)
Variable Starlink1469._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#820) is too similar to Starlink1469._transferBothExcluded(address,address,uint256).tTransferAmount (#788)
Variable Starlink1469._transferFromExcluded(address,address,uint256).rTransferAmount (#778) is too similar to Starlink1469._getValues(uint256).tTransferAmount (#804)
Variable Starlink1469.reflectionFromToken(uint256,bool).rTransferAmount (#588) is too similar to Starlink1469._transferStandard(address,address,uint256).tTransferAmount (#759)
Variable Starlink1469._getValues(uint256).rTransferAmount (#805) is too similar to Starlink1469._transferStandard(address,address,uint256).tTransferAmount (#759)
Variable Starlink1469._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#820) is too similar to Starlink1469._transferFromExcluded(address,address,uint256).tTransferAmount (#778)
Variable Starlink1469._transferStandard(address,address,uint256).rTransferAmount (#759) is too similar to Starlink1469._transferFromExcluded(address,address,uint256).tTransferAmount (#778)
Variable Starlink1469.reflectionFromToken(uint256,bool).rTransferAmount (#588) is too similar to Starlink1469._getValues(uint256).tTransferAmount (#804)
Variable Starlink1469._getValues(uint256).rTransferAmount (#805) is too similar to Starlink1469._getValues(uint256).tTransferAmount (#804)
Variable Starlink1469._transferBothExcluded(address,address,uint256).rTransferAmount (#788) is too similar to Starlink1469._getValues(uint256).tTransferAmount (#804)
Variable Starlink1469._transferToExcluded(address,address,uint256).rTransferAmount (#768) is too similar to Starlink1469._transferStandard(address,address,uint256).tTransferAmount (#759)
Variable Starlink1469._getValues(uint256).rTransferAmount (#805) is too similar to Starlink1469._transferBothExcluded(address,address,uint256).tTransferAmount (#788)
Variable Starlink1469.reflectionFromToken(uint256,bool).rTransferAmount (#588) is too similar to Starlink1469._transferBothExcluded(address,address,uint256).tTransferAmount (#788)
Variable Starlink1469._transferToExcluded(address,address,uint256).rTransferAmount (#768) is too similar to Starlink1469._getValues(uint256).tTransferAmount (#804)
Variable Starlink1469.reflectionFromToken(uint256,bool).rTransferAmount (#588) is too similar to Starlink1469._getTValues(uint256).tTransferAmount (#812)
Variable Starlink1469.reflectionFromToken(uint256,bool).rTransferAmount (#588) is too similar to Starlink1469._transferFromExcluded(address,address,uint256).tTransferAmount (#778)
Variable Starlink1469._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#820) is too similar to Starlink1469._transferStandard(address,address,uint256).tTransferAmount (#759)
Variable Starlink1469._getValues(uint256).rTransferAmount (#805) is too similar to Starlink1469._transferFromExcluded(address,address,uint256).tTransferAmount (#778)
Variable Starlink1469._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#820) is too similar to Starlink1469._getValues(uint256).tTransferAmount (#804)
Variable Starlink1469._transferToExcluded(address,address,uint256).rTransferAmount (#768) is too similar to Starlink1469._transferBothExcluded(address,address,uint256).tTransferAmount (#788)
Variable Starlink1469._transferStandard(address,address,uint256).rTransferAmount (#759) is too similar to Starlink1469._getValues(uint256).tTransferAmount (#804)
Variable Starlink1469._transferToExcluded(address,address,uint256).rTransferAmount (#768) is too similar to Starlink1469._getTValues(uint256).tTransferAmount (#812)
Variable Starlink1469._transferToExcluded(address,address,uint256).rTransferAmount (#768) is too similar to Starlink1469._transferFromExcluded(address,address,uint256).tTransferAmount (#778)
Prevent variables from having similar names.

Additional information: link

Starlink1469.slitherConstructorVariables() (#414-934) uses literals with too many digits:
- burnWallet = address(0x000000000000000000000000000000000000dEaD) (#418)
Starlink1469.slitherConstructorVariables() (#414-934) uses literals with too many digits:
- burnAddress = 0x000000000000000000000000000000000000dEaD (#419)
Starlink1469.slitherConstructorVariables() (#414-934) uses literals with too many digits:
- _tTotal = 1000000 * 10 ** 6 * 10 ** 9 (#430)
Starlink1469.slitherConstructorVariables() (#414-934) uses literals with too many digits:
- _maxTxAmount = 1000000 * 10 ** 6 * 10 ** 9 (#447)
Starlink1469.slitherConstructorVariables() (#414-934) uses literals with too many digits:
- buyBackUpperLimit = 1000000000 * 10 ** 18 (#449)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Starlink1469._decimals (#436) should be constant
Starlink1469._name (#434) should be constant
Starlink1469._symbol (#435) should be constant
Starlink1469._tTotal (#430) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#169-172)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#174-178)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#180-182)
getTime() should be declared external:
- Ownable.getTime() (#184-186)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#188-193)
unlock() should be declared external:
- Ownable.unlock() (#195-200)
name() should be declared external:
- Starlink1469.name() (#500-502)
symbol() should be declared external:
- Starlink1469.symbol() (#504-506)
decimals() should be declared external:
- Starlink1469.decimals() (#508-510)
totalSupply() should be declared external:
- Starlink1469.totalSupply() (#512-514)
transfer(address,uint256) should be declared external:
- Starlink1469.transfer(address,uint256) (#521-524)
allowance(address,address) should be declared external:
- Starlink1469.allowance(address,address) (#526-528)
approve(address,uint256) should be declared external:
- Starlink1469.approve(address,uint256) (#530-533)
transferFrom(address,address,uint256) should be declared external:
- Starlink1469.transferFrom(address,address,uint256) (#540-544)
increaseAllowance(address,uint256) should be declared external:
- Starlink1469.increaseAllowance(address,uint256) (#546-549)
decreaseAllowance(address,uint256) should be declared external:
- Starlink1469.decreaseAllowance(address,uint256) (#551-554)
isExcludedFromReward(address) should be declared external:
- Starlink1469.isExcludedFromReward(address) (#556-558)
totalFees() should be declared external:
- Starlink1469.totalFees() (#560-562)
minimumTokensBeforeSwapAmount() should be declared external:
- Starlink1469.minimumTokensBeforeSwapAmount() (#564-566)
buyBackUpperLimitAmount() should be declared external:
- Starlink1469.buyBackUpperLimitAmount() (#568-570)
deliver(uint256) should be declared external:
- Starlink1469.deliver(uint256) (#572-579)
reflectionFromToken(uint256,bool) should be declared external:
- Starlink1469.reflectionFromToken(uint256,bool) (#582-591)
excludeFromReward(address) should be declared external:
- Starlink1469.excludeFromReward(address) (#599-607)
isExcludedFromFee(address) should be declared external:
- Starlink1469.isExcludedFromFee(address) (#876-878)
excludeFromFee(address) should be declared external:
- Starlink1469.excludeFromFee(address) (#880-882)
includeInFee(address) should be declared external:
- Starlink1469.includeInFee(address) (#884-886)
setSwapAndLiquifyEnabled(bool) should be declared external:
- Starlink1469.setSwapAndLiquifyEnabled(bool) (#916-919)
setBuyBackEnabled(bool) should be declared external:
- Starlink1469.setBuyBackEnabled(bool) (#921-924)
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 Twitter account


Telegram account has less than 100 subscribers


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


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


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 S1469