Sektor Token Token Logo

SEKTOR Token

About SEKTOR

Listings

Token 21 months
CoinGecko 20 months
CoinMarketCap 20 months
white paper

SEKTOR is the project token of the Sektor crypto mentoring group. This is an essential part of the range of services and also serves to visualize the individual project packages. We make our possibilities and experience available as a real product and interweave it directly with our portfolio, thereby enabling all investors and holders to participate in the overall success of the project.
The fusion through implementation, application and benefit is a basic economic factor for project success. Especially through the application of the mentoring process, we can positively influence the course of projects and thus ensure an impact in the
development process. Our mission is to establish more value-added projects and thus generate a sustainable impact on the development of blockchain adoption.

Laser Scorebeta Last Audit: 22 September 2022

report
Token is either risky or in presale. For presale 30+ is a fine score.

Contract locking ether found:
Contract Sektor (#674-1122) has payable functions:
- Sektor.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


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

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

Additional information: link

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

Additional information: link

Sektor.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 Sektor.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 Sektor.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 Sektor.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

Sektor.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

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

Sektor._rTotal (#691) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
Sektor._previousTaxFee (#701) is set pre-construction with a non-constant function or state variable:
- _taxFee
Sektor._previousBurnFee (#707) is set pre-construction with a non-constant function or state variable:
- _BurnFee
Sektor._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.15 (#1) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
solc-0.8.15 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

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

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 Sektor.Exclude(address) (#850-852) is not in mixedCase
Function Sektor.Include(address) (#854-856) is not in mixedCase
Function Sektor.ChangeBurnAddress(address) (#864-866) is not in mixedCase
Parameter Sektor.ChangeBurnAddress(address).BurnAddressr (#864) is not in mixedCase
Parameter Sektor.setLiquidityAddress(address)._liquidityAddr (#869) is not in mixedCase
Function Sektor._Burn(uint256) (#954-960) is not in mixedCase
Parameter Sektor.calculateTaxFee(uint256)._amount (#962) is not in mixedCase
Parameter Sektor.calculateWalletFee(uint256)._amount (#969) is not in mixedCase
Parameter Sektor.calculateLiquidityFee(uint256)._amount (#975) is not in mixedCase
Variable Sektor._taxFee (#698) is not in mixedCase
Variable Sektor.S_taxFee (#699) is not in mixedCase
Variable Sektor._previousTaxFee (#701) is not in mixedCase
Variable Sektor._BurnFee (#704) is not in mixedCase
Variable Sektor.S_BurnFee (#705) is not in mixedCase
Variable Sektor._previousBurnFee (#707) is not in mixedCase
Variable Sektor._liquidityFee (#709) is not in mixedCase
Variable Sektor.S_liquidityFee (#710) is not in mixedCase
Variable Sektor._previousLiquidityFee (#712) is not in mixedCase
Variable Sektor.BurnAddress (#713) is not in mixedCase
Variable Sektor.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 Sektor.reflectionFromToken(uint256,bool).rTransferAmount (#808) is too similar to Sektor._transferStandard(address,address,uint256).tTransferAmount (#1070)
Variable Sektor._transferToExcluded(address,address,uint256).rTransferAmount (#1082) is too similar to Sektor._transferFromExcluded(address,address,uint256).tTransferAmount (#1095)
Variable Sektor._transferFromExcluded(address,address,uint256).rTransferAmount (#1095) is too similar to Sektor._transferFromExcluded(address,address,uint256).tTransferAmount (#1095)
Variable Sektor._transferStandard(address,address,uint256).rTransferAmount (#1070) is too similar to Sektor._getTValues(uint256).tTransferAmount (#916)
Variable Sektor._getValues(uint256).rTransferAmount (#908) is too similar to Sektor._transferToExcluded(address,address,uint256).tTransferAmount (#1082)
Variable Sektor._transferStandard(address,address,uint256).rTransferAmount (#1070) is too similar to Sektor._transferStandard(address,address,uint256).tTransferAmount (#1070)
Variable Sektor._transferBothExcluded(address,address,uint256).rTransferAmount (#1108) is too similar to Sektor._transferToExcluded(address,address,uint256).tTransferAmount (#1082)
Variable Sektor._getValues(uint256).rTransferAmount (#908) is too similar to Sektor._transferBothExcluded(address,address,uint256).tTransferAmount (#1108)
Variable Sektor._transferToExcluded(address,address,uint256).rTransferAmount (#1082) is too similar to Sektor._transferToExcluded(address,address,uint256).tTransferAmount (#1082)
Variable Sektor._getValues(uint256).rTransferAmount (#908) is too similar to Sektor._getTValues(uint256).tTransferAmount (#916)
Variable Sektor._transferBothExcluded(address,address,uint256).rTransferAmount (#1108) is too similar to Sektor._transferBothExcluded(address,address,uint256).tTransferAmount (#1108)
Variable Sektor._transferBothExcluded(address,address,uint256).rTransferAmount (#1108) is too similar to Sektor._getTValues(uint256).tTransferAmount (#916)
Variable Sektor._getValues(uint256).rTransferAmount (#908) is too similar to Sektor._transferStandard(address,address,uint256).tTransferAmount (#1070)
Variable Sektor._transferToExcluded(address,address,uint256).rTransferAmount (#1082) is too similar to Sektor._getTValues(uint256).tTransferAmount (#916)
Variable Sektor._transferFromExcluded(address,address,uint256).rTransferAmount (#1095) is too similar to Sektor._getTValues(uint256).tTransferAmount (#916)
Variable Sektor._getValues(uint256).rTransferAmount (#908) is too similar to Sektor._transferFromExcluded(address,address,uint256).tTransferAmount (#1095)
Variable Sektor.reflectionFromToken(uint256,bool).rTransferAmount (#808) is too similar to Sektor._getTValues(uint256).tTransferAmount (#916)
Variable Sektor._transferBothExcluded(address,address,uint256).rTransferAmount (#1108) is too similar to Sektor._transferStandard(address,address,uint256).tTransferAmount (#1070)
Variable Sektor._transferToExcluded(address,address,uint256).rTransferAmount (#1082) is too similar to Sektor._transferStandard(address,address,uint256).tTransferAmount (#1070)
Variable Sektor._transferBothExcluded(address,address,uint256).rTransferAmount (#1108) is too similar to Sektor._transferFromExcluded(address,address,uint256).tTransferAmount (#1095)
Variable Sektor._transferFromExcluded(address,address,uint256).rTransferAmount (#1095) is too similar to Sektor._transferStandard(address,address,uint256).tTransferAmount (#1070)
Variable Sektor._transferStandard(address,address,uint256).rTransferAmount (#1070) is too similar to Sektor._transferToExcluded(address,address,uint256).tTransferAmount (#1082)
Variable Sektor._transferStandard(address,address,uint256).rTransferAmount (#1070) is too similar to Sektor._transferBothExcluded(address,address,uint256).tTransferAmount (#1108)
Variable Sektor._transferFromExcluded(address,address,uint256).rTransferAmount (#1095) is too similar to Sektor._transferToExcluded(address,address,uint256).tTransferAmount (#1082)
Variable Sektor.reflectionFromToken(uint256,bool).rTransferAmount (#808) is too similar to Sektor._transferToExcluded(address,address,uint256).tTransferAmount (#1082)
Variable Sektor._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#925) is too similar to Sektor._transferToExcluded(address,address,uint256).tTransferAmount (#1082)
Variable Sektor._transferToExcluded(address,address,uint256).rTransferAmount (#1082) is too similar to Sektor._getValues(uint256).tTransferAmount (#907)
Variable Sektor._transferFromExcluded(address,address,uint256).rTransferAmount (#1095) is too similar to Sektor._transferBothExcluded(address,address,uint256).tTransferAmount (#1108)
Variable Sektor._transferStandard(address,address,uint256).rTransferAmount (#1070) is too similar to Sektor._transferFromExcluded(address,address,uint256).tTransferAmount (#1095)
Variable Sektor.reflectionFromToken(uint256,bool).rTransferAmount (#808) is too similar to Sektor._transferBothExcluded(address,address,uint256).tTransferAmount (#1108)
Variable Sektor._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#925) is too similar to Sektor._transferBothExcluded(address,address,uint256).tTransferAmount (#1108)
Variable Sektor.reflectionFromToken(uint256,bool).rTransferAmount (#808) is too similar to Sektor._transferFromExcluded(address,address,uint256).tTransferAmount (#1095)
Variable Sektor._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#925) is too similar to Sektor._transferFromExcluded(address,address,uint256).tTransferAmount (#1095)
Variable Sektor._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#925) is too similar to Sektor._getTValues(uint256).tTransferAmount (#916)
Variable Sektor._transferBothExcluded(address,address,uint256).rTransferAmount (#1108) is too similar to Sektor._getValues(uint256).tTransferAmount (#907)
Variable Sektor._getValues(uint256).rTransferAmount (#908) is too similar to Sektor._getValues(uint256).tTransferAmount (#907)
Variable Sektor._transferStandard(address,address,uint256).rTransferAmount (#1070) is too similar to Sektor._getValues(uint256).tTransferAmount (#907)
Variable Sektor._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#925) is too similar to Sektor._transferStandard(address,address,uint256).tTransferAmount (#1070)
Variable Sektor._transferFromExcluded(address,address,uint256).rTransferAmount (#1095) is too similar to Sektor._getValues(uint256).tTransferAmount (#907)
Variable Sektor._transferToExcluded(address,address,uint256).rTransferAmount (#1082) is too similar to Sektor._transferBothExcluded(address,address,uint256).tTransferAmount (#1108)
Variable Sektor.reflectionFromToken(uint256,bool).rTransferAmount (#808) is too similar to Sektor._getValues(uint256).tTransferAmount (#907)
Variable Sektor._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#925) is too similar to Sektor._getValues(uint256).tTransferAmount (#907)
Prevent variables from having similar names.

Additional information: link

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

Additional information: link

Sektor.BUSD (#714) should be constant
Sektor._decimals (#696) should be constant
Sektor._name (#694) should be constant
Sektor._symbol (#695) should be constant
Sektor._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:
- Sektor.name() (#742-744)
symbol() should be declared external:
- Sektor.symbol() (#746-748)
decimals() should be declared external:
- Sektor.decimals() (#750-752)
totalSupply() should be declared external:
- Sektor.totalSupply() (#754-756)
balanceOf(address) should be declared external:
- Sektor.balanceOf(address) (#758-761)
transfer(address,uint256) should be declared external:
- Sektor.transfer(address,uint256) (#763-766)
allowance(address,address) should be declared external:
- Sektor.allowance(address,address) (#768-770)
approve(address,uint256) should be declared external:
- Sektor.approve(address,uint256) (#772-775)
transferFrom(address,address,uint256) should be declared external:
- Sektor.transferFrom(address,address,uint256) (#777-781)
increaseAllowance(address,uint256) should be declared external:
- Sektor.increaseAllowance(address,uint256) (#783-786)
decreaseAllowance(address,uint256) should be declared external:
- Sektor.decreaseAllowance(address,uint256) (#788-791)
isExcludedFromReward(address) should be declared external:
- Sektor.isExcludedFromReward(address) (#793-795)
totalFees() should be declared external:
- Sektor.totalFees() (#797-799)
reflectionFromToken(uint256,bool) should be declared external:
- Sektor.reflectionFromToken(uint256,bool) (#802-811)
excludeFromReward(address) should be declared external:
- Sektor.excludeFromReward(address) (#819-827)
excludeFromFee(address) should be declared external:
- Sektor.excludeFromFee(address) (#842-844)
includeInFee(address) should be declared external:
- Sektor.includeInFee(address) (#846-848)
Exclude(address) should be declared external:
- Sektor.Exclude(address) (#850-852)
Include(address) should be declared external:
- Sektor.Include(address) (#854-856)
setRouter(address) should be declared external:
- Sektor.setRouter(address) (#873-880)
setAutomatedMarketMakerPair(address,bool) should be declared external:
- Sektor.setAutomatedMarketMakerPair(address,bool) (#890-894)
isExcludedFromFee(address) should be declared external:
- Sektor.isExcludedFromFee(address) (#1000-1002)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Average 30d PancakeSwap liquidity is less than $100. Token is either dead or inactive.


Average 30d number of PancakeSwap swaps is low.


Token is deployed only at one blockchain


Token has only one trading pair


Twitter account link seems to be invalid


Unable to crawl data from the website


Token was delisted (assigned to inactive / untracked listing) from CoinMarketCap

Additional information: link


Unable to find KYC or doxxing proof


Token is not listed at Mobula.Finance

Additional information: link


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


Token has no active CoinMarketCap listing / rank


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


Token has relatively low CoinGecko rank

Price for SEKTOR