STARP Token Logo

STARP Token

About STARP

Listings

Token 23 months
CoinGecko 20 months
CoinMarketCap 20 months
white paper

In the future, we will combine parking space reservation and payment with blockchain
technology for regional and national parking space providers through to globally networked
companies in the field of parking solution providers.
Our unique application software and DAPP, which we have continuously adapted and
expanded to the technical conditions over the past 25 years, will now also adapt crypto
technology.
In addition to the usual important attributes, a new key technology will open up for our
business partners and their customers and thus revolutionize the parking experience.

Social

Laser Scorebeta Last Audit: 5 August 2022

report
Token seems to be (relatively) fine. It still become a scam, but probability is moderate.


Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains

Contract locking ether found:
Contract STARP (#674-1122) has payable functions:
- STARP.receive() (#898-899)
But does not have a function to withdraw the ether
Remove the payable attribute or add a withdraw function.

Additional information: link

STARP.ChangeBurnAddress(address).BurnAddressr (#864) lacks a zero-check on :
- BurnAddress = BurnAddressr (#865)
STARP.setLiquidityAddress(address)._liquidityAddr (#869) lacks a zero-check on :
- liquidityAddr = _liquidityAddr (#870)
Check that the address is not zero.

Additional information: link

Low level call in Address.sendValue(address,uint256) (#291-297):
- (success) = recipient.call{value: amount}() (#295)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#357-378):
- (success,returndata) = target.call{value: weiValue}(data) (#361)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#357-378) is never used and should be removed
Address.functionCall(address,bytes) (#317-319) is never used and should be removed
Address.functionCall(address,bytes,string) (#327-329) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#342-344) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#352-355) is never used and should be removed
Address.isContract(address) (#264-273) is never used and should be removed
Address.sendValue(address,uint256) (#291-297) is never used and should be removed
Context._msgData() (#236-239) is never used and should be removed
SafeMath.mod(uint256,uint256) (#209-211) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#225-228) is never used and should be removed
Remove unused functions.

Additional information: link

STARP.allowance(address,address).owner (#768) shadows:
- Ownable.owner() (#405-407) (function)
STARP._approve(address,address,uint256).owner (#1004) shadows:
- Ownable.owner() (#405-407) (function)
Rename the local variables that shadow another component.

Additional information: link

STARP.changeSellFees(uint256,uint256,uint256) (#858-862) should emit an event for:
- S_taxFee = taxFee (#859)
- S_BurnFee = burn (#860)
- S_liquidityFee = liquidityFee (#861)
Emit an event for critical parameter changes.

Additional information: link

Reentrancy in STARP.constructor() (#721-740):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),BUSD) (#727-728)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#734)
- _isExcludedFromFee[address(this)] = true (#736)
- _isExcludedSS[owner()] = true (#735)
- _setAutomatedMarketMakerPair(uniswapV2Pair,true) (#729)
- automatedMarketMakerPairs[pair] = value (#885)
- uniswapV2Router = _uniswapV2Router (#731)
Reentrancy in STARP.setRouter(address) (#873-880):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),BUSD) (#876-877)
State variables written after the call(s):
- uniswapV2Router = _uniswapV2Router (#879)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in STARP.constructor() (#721-740):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),BUSD) (#727-728)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (#886)
- _setAutomatedMarketMakerPair(uniswapV2Pair,true) (#729)
- Transfer(address(0),owner(),_tTotal) (#739)
Apply the check-effects-interactions pattern.

Additional information: link

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

Additional information: link

Address.isContract(address) (#264-273) uses assembly
- INLINE ASM (#271)
Address._functionCallWithValue(address,bytes,uint256,string) (#357-378) uses assembly
- INLINE ASM (#370-373)
Do not use evm assembly.

Additional information: link

STARP.includeInReward(address) (#829-840) has costly operations inside a loop:
- _excluded.pop() (#836)
Use a local variable to hold the loop computation result.

Additional information: link

STARP._rTotal (#691) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
STARP._previousTaxFee (#701) is set pre-construction with a non-constant function or state variable:
- _taxFee
STARP._previousBurnFee (#707) is set pre-construction with a non-constant function or state variable:
- _BurnFee
STARP._previousLiquidityFee (#712) 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

Pragma version0.8.13 (#1) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
solc-0.8.13 is not recommended for deployment
Deploy with any of the following Solidity versions: 0.5.16 - 0.5.17, 0.6.11 - 0.6.12, 0.7.5 - 0.7.6 Use a simple pragma version that allows any of these versions. Consider using the latest version of Solidity for testing.

Additional information: link

Variable Ownable._owner (#394) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#496) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#497) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#514) is not in mixedCase
Function IUniswapV2Router01.WETH() (#536) is not in mixedCase
Function STARP.Exclude(address) (#850-852) is not in mixedCase
Function STARP.Include(address) (#854-856) is not in mixedCase
Function STARP.ChangeBurnAddress(address) (#864-866) is not in mixedCase
Parameter STARP.ChangeBurnAddress(address).BurnAddressr (#864) is not in mixedCase
Parameter STARP.setLiquidityAddress(address)._liquidityAddr (#869) is not in mixedCase
Function STARP._Burn(uint256) (#954-960) is not in mixedCase
Parameter STARP.calculateTaxFee(uint256)._amount (#962) is not in mixedCase
Parameter STARP.calculateWalletFee(uint256)._amount (#969) is not in mixedCase
Parameter STARP.calculateLiquidityFee(uint256)._amount (#975) is not in mixedCase
Variable STARP._taxFee (#698) is not in mixedCase
Variable STARP.S_taxFee (#699) is not in mixedCase
Variable STARP._previousTaxFee (#701) is not in mixedCase
Variable STARP._BurnFee (#704) is not in mixedCase
Variable STARP.S_BurnFee (#705) is not in mixedCase
Variable STARP._previousBurnFee (#707) is not in mixedCase
Variable STARP._liquidityFee (#709) is not in mixedCase
Variable STARP.S_liquidityFee (#710) is not in mixedCase
Variable STARP._previousLiquidityFee (#712) is not in mixedCase
Variable STARP.BurnAddress (#713) is not in mixedCase
Variable STARP.BUSD (#714) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#237)" inContext (#231-240)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#541) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#542)
Variable STARP.reflectionFromToken(uint256,bool).rTransferAmount (#808) is too similar to STARP._transferToExcluded(address,address,uint256).tTransferAmount (#1082)
Variable STARP._transferToExcluded(address,address,uint256).rTransferAmount (#1082) is too similar to STARP._transferBothExcluded(address,address,uint256).tTransferAmount (#1108)
Variable STARP._transferFromExcluded(address,address,uint256).rTransferAmount (#1095) is too similar to STARP._transferFromExcluded(address,address,uint256).tTransferAmount (#1095)
Variable STARP.reflectionFromToken(uint256,bool).rTransferAmount (#808) is too similar to STARP._transferBothExcluded(address,address,uint256).tTransferAmount (#1108)
Variable STARP._transferFromExcluded(address,address,uint256).rTransferAmount (#1095) is too similar to STARP._transferStandard(address,address,uint256).tTransferAmount (#1070)
Variable STARP.reflectionFromToken(uint256,bool).rTransferAmount (#808) is too similar to STARP._getTValues(uint256).tTransferAmount (#916)
Variable STARP._transferStandard(address,address,uint256).rTransferAmount (#1070) is too similar to STARP._transferStandard(address,address,uint256).tTransferAmount (#1070)
Variable STARP._transferBothExcluded(address,address,uint256).rTransferAmount (#1108) is too similar to STARP._transferBothExcluded(address,address,uint256).tTransferAmount (#1108)
Variable STARP._transferToExcluded(address,address,uint256).rTransferAmount (#1082) is too similar to STARP._transferFromExcluded(address,address,uint256).tTransferAmount (#1095)
Variable STARP.reflectionFromToken(uint256,bool).rTransferAmount (#808) is too similar to STARP._transferFromExcluded(address,address,uint256).tTransferAmount (#1095)
Variable STARP._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#925) is too similar to STARP._transferToExcluded(address,address,uint256).tTransferAmount (#1082)
Variable STARP._transferToExcluded(address,address,uint256).rTransferAmount (#1082) is too similar to STARP._transferStandard(address,address,uint256).tTransferAmount (#1070)
Variable STARP.reflectionFromToken(uint256,bool).rTransferAmount (#808) is too similar to STARP._transferStandard(address,address,uint256).tTransferAmount (#1070)
Variable STARP._getValues(uint256).rTransferAmount (#908) is too similar to STARP._transferToExcluded(address,address,uint256).tTransferAmount (#1082)
Variable STARP._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#925) is too similar to STARP._transferBothExcluded(address,address,uint256).tTransferAmount (#1108)
Variable STARP._getValues(uint256).rTransferAmount (#908) is too similar to STARP._transferBothExcluded(address,address,uint256).tTransferAmount (#1108)
Variable STARP._getValues(uint256).rTransferAmount (#908) is too similar to STARP._getTValues(uint256).tTransferAmount (#916)
Variable STARP._transferStandard(address,address,uint256).rTransferAmount (#1070) is too similar to STARP._transferBothExcluded(address,address,uint256).tTransferAmount (#1108)
Variable STARP._transferBothExcluded(address,address,uint256).rTransferAmount (#1108) is too similar to STARP._transferStandard(address,address,uint256).tTransferAmount (#1070)
Variable STARP._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#925) is too similar to STARP._transferFromExcluded(address,address,uint256).tTransferAmount (#1095)
Variable STARP._transferFromExcluded(address,address,uint256).rTransferAmount (#1095) is too similar to STARP._transferBothExcluded(address,address,uint256).tTransferAmount (#1108)
Variable STARP._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#925) is too similar to STARP._transferStandard(address,address,uint256).tTransferAmount (#1070)
Variable STARP._getValues(uint256).rTransferAmount (#908) is too similar to STARP._transferFromExcluded(address,address,uint256).tTransferAmount (#1095)
Variable STARP._getValues(uint256).rTransferAmount (#908) is too similar to STARP._transferStandard(address,address,uint256).tTransferAmount (#1070)
Variable STARP._transferToExcluded(address,address,uint256).rTransferAmount (#1082) is too similar to STARP._transferToExcluded(address,address,uint256).tTransferAmount (#1082)
Variable STARP._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#925) is too similar to STARP._getValues(uint256).tTransferAmount (#907)
Variable STARP._transferBothExcluded(address,address,uint256).rTransferAmount (#1108) is too similar to STARP._transferFromExcluded(address,address,uint256).tTransferAmount (#1095)
Variable STARP._transferFromExcluded(address,address,uint256).rTransferAmount (#1095) is too similar to STARP._getTValues(uint256).tTransferAmount (#916)
Variable STARP._transferStandard(address,address,uint256).rTransferAmount (#1070) is too similar to STARP._getTValues(uint256).tTransferAmount (#916)
Variable STARP._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#925) is too similar to STARP._getTValues(uint256).tTransferAmount (#916)
Variable STARP._transferBothExcluded(address,address,uint256).rTransferAmount (#1108) is too similar to STARP._transferToExcluded(address,address,uint256).tTransferAmount (#1082)
Variable STARP._transferStandard(address,address,uint256).rTransferAmount (#1070) is too similar to STARP._transferFromExcluded(address,address,uint256).tTransferAmount (#1095)
Variable STARP._transferToExcluded(address,address,uint256).rTransferAmount (#1082) is too similar to STARP._getValues(uint256).tTransferAmount (#907)
Variable STARP._transferFromExcluded(address,address,uint256).rTransferAmount (#1095) is too similar to STARP._transferToExcluded(address,address,uint256).tTransferAmount (#1082)
Variable STARP._transferBothExcluded(address,address,uint256).rTransferAmount (#1108) is too similar to STARP._getValues(uint256).tTransferAmount (#907)
Variable STARP._getValues(uint256).rTransferAmount (#908) is too similar to STARP._getValues(uint256).tTransferAmount (#907)
Variable STARP._transferStandard(address,address,uint256).rTransferAmount (#1070) is too similar to STARP._transferToExcluded(address,address,uint256).tTransferAmount (#1082)
Variable STARP.reflectionFromToken(uint256,bool).rTransferAmount (#808) is too similar to STARP._getValues(uint256).tTransferAmount (#907)
Variable STARP._transferToExcluded(address,address,uint256).rTransferAmount (#1082) is too similar to STARP._getTValues(uint256).tTransferAmount (#916)
Variable STARP._transferFromExcluded(address,address,uint256).rTransferAmount (#1095) is too similar to STARP._getValues(uint256).tTransferAmount (#907)
Variable STARP._transferBothExcluded(address,address,uint256).rTransferAmount (#1108) is too similar to STARP._getTValues(uint256).tTransferAmount (#916)
Variable STARP._transferStandard(address,address,uint256).rTransferAmount (#1070) is too similar to STARP._getValues(uint256).tTransferAmount (#907)
Prevent variables from having similar names.

Additional information: link

STARP.slitherConstructorVariables() (#674-1122) uses literals with too many digits:
- BurnAddress = 0x000000000000000000000000000000000000dEaD (#713)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

STARP.BUSD (#714) should be constant
STARP._decimals (#696) should be constant
STARP._name (#694) should be constant
STARP._symbol (#695) should be constant
STARP._tTotal (#690) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#424-427)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#433-437)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#439-441)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#444-449)
unlock() should be declared external:
- Ownable.unlock() (#452-457)
name() should be declared external:
- STARP.name() (#742-744)
symbol() should be declared external:
- STARP.symbol() (#746-748)
decimals() should be declared external:
- STARP.decimals() (#750-752)
totalSupply() should be declared external:
- STARP.totalSupply() (#754-756)
balanceOf(address) should be declared external:
- STARP.balanceOf(address) (#758-761)
transfer(address,uint256) should be declared external:
- STARP.transfer(address,uint256) (#763-766)
allowance(address,address) should be declared external:
- STARP.allowance(address,address) (#768-770)
approve(address,uint256) should be declared external:
- STARP.approve(address,uint256) (#772-775)
transferFrom(address,address,uint256) should be declared external:
- STARP.transferFrom(address,address,uint256) (#777-781)
increaseAllowance(address,uint256) should be declared external:
- STARP.increaseAllowance(address,uint256) (#783-786)
decreaseAllowance(address,uint256) should be declared external:
- STARP.decreaseAllowance(address,uint256) (#788-791)
isExcludedFromReward(address) should be declared external:
- STARP.isExcludedFromReward(address) (#793-795)
totalFees() should be declared external:
- STARP.totalFees() (#797-799)
reflectionFromToken(uint256,bool) should be declared external:
- STARP.reflectionFromToken(uint256,bool) (#802-811)
excludeFromReward(address) should be declared external:
- STARP.excludeFromReward(address) (#819-827)
excludeFromFee(address) should be declared external:
- STARP.excludeFromFee(address) (#842-844)
includeInFee(address) should be declared external:
- STARP.includeInFee(address) (#846-848)
Exclude(address) should be declared external:
- STARP.Exclude(address) (#850-852)
Include(address) should be declared external:
- STARP.Include(address) (#854-856)
setRouter(address) should be declared external:
- STARP.setRouter(address) (#873-880)
setAutomatedMarketMakerPair(address,bool) should be declared external:
- STARP.setAutomatedMarketMakerPair(address,bool) (#890-894)
isExcludedFromFee(address) should be declared external:
- STARP.isExcludedFromFee(address) (#1000-1002)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Token is deployed only at one blockchain


Token has only one trading pair


Twitter account has relatively few followers


Unable to find Discord account


Unable to find KYC or doxxing proof


Token is not listed at Mobula.Finance

Additional information: link


Unable to find token on CoinHunt

Additional information: link


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


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


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


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


Young tokens have high risks of price dump / death


Token has relatively low CoinGecko rank

Price for STARP

News for STARP