Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Sekuya.swapBack() (#585-633) sends eth to arbitrary user
Dangerous calls:
- distributor.deposit{value: amountBNBReflection}() (#614)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#615)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#616)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#617)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in Sekuya._transferFrom(address,address,uint256) (#469-517):
External calls:
- swapBack() (#496)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#596-602)
- distributor.deposit{value: amountBNBReflection}() (#614)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#615)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#616)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#617)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#623-630)
External calls sending eth:
- swapBack() (#496)
- distributor.deposit{value: amountBNBReflection}() (#614)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#615)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#616)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#617)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#623-630)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#499)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#502)
- amountReceived = takeFee(sender,amount,(recipient == pair)) (#501)
- _balances[address(this)] = _balances[address(this)].add(contractTokens) (#542)
- _balances[burnFeeReceiver] = _balances[burnFeeReceiver].add(burnTokens) (#543)
Apply the check-effects-interactions pattern.
Additional information: link
Sekuya.swapBack().tmpSuccess (#615) is written in both
(tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#615)
(tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#616)
Sekuya.swapBack().tmpSuccess (#615) is written in both
(tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#616)
(tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#617)
Sekuya.swapBack().tmpSuccess (#615) is written in both
(tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#617)
tmpSuccess = false (#620)
Fix or remove the writes.
Additional information: link
Combination 1: Reentrancy vulnerabilities + Functions that send Ether to arbitraty destination. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.
Sekuya.takeFee(address,uint256,bool) (#534-551) performs a multiplication on the result of a division:
-feeAmount = amount.mul(totalFee).mul(multiplier).div(feeDenominator * 100) (#537)
-burnTokens = feeAmount.mul(burnFee).div(totalFee) (#539)
Consider ordering multiplication before division.
Additional information: link
Sekuya.manage_blacklist(address[],bool).i (#651) 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
Sekuya.swapBack() (#585-633) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#623-630)
Ensure that all the return values of the function calls are used.
Additional information: link
DividendDistributor.setDistributionCriteria(uint256,uint256) (#219-222) should emit an event for:
- minPeriod = _minPeriod (#220)
- minDistribution = _minDistribution (#221)
DividendDistributor.deposit() (#240-243) should emit an event for:
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(msg.value).div(totalShares)) (#242)
Sekuya.setMaxTxPercent_base1000(uint256) (#460-462) should emit an event for:
- _maxTxAmount = (_totalSupply * maxTXPercentage_base1000) / 1000 (#461)
Sekuya.setTxLimit(uint256) (#464-466) should emit an event for:
- _maxTxAmount = amount (#465)
Sekuya.set_sell_multiplier(uint256) (#570-572) should emit an event for:
- sellMultiplier = Multiplier (#571)
Sekuya.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256) (#669-679) should emit an event for:
- liquidityFee = _liquidityFee (#670)
- reflectionFee = _reflectionFee (#671)
- marketingFee = _marketingFee (#672)
- teamFee = _teamFee (#673)
- devFee = _devFee (#674)
- burnFee = _burnFee (#675)
- totalFee = _liquidityFee + _reflectionFee + _marketingFee + _teamFee + _burnFee + _devFee (#676)
- feeDenominator = _feeDenominator (#677)
Sekuya.setSwapBackSettings(bool,uint256) (#689-692) should emit an event for:
- swapThreshold = _amount (#691)
Sekuya.setTargetLiquidity(uint256,uint256) (#694-697) should emit an event for:
- targetLiquidity = _target (#695)
- targetLiquidityDenominator = _denominator (#696)
Emit an event for critical parameter changes.
Additional information: link
DividendDistributor.constructor(address)._tokenowner (#214) lacks a zero-check on :
- _owner = _tokenowner (#216)
Auth.transferOwnership(address).adr (#104) lacks a zero-check on :
- owner = adr (#105)
Sekuya.setFeeReceivers(address,address,address,address,address)._autoLiquidityReceiver (#681) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#682)
Sekuya.setFeeReceivers(address,address,address,address,address)._marketingFeeReceiver (#681) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#683)
Sekuya.setFeeReceivers(address,address,address,address,address)._teamFeeReceiver (#681) lacks a zero-check on :
- teamFeeReceiver = _teamFeeReceiver (#684)
Sekuya.setFeeReceivers(address,address,address,address,address)._burnFeeReceiver (#681) lacks a zero-check on :
- burnFeeReceiver = _burnFeeReceiver (#685)
Sekuya.setFeeReceivers(address,address,address,address,address)._devFeeReceiver (#681) lacks a zero-check on :
- devFeeReceiver = _devFeeReceiver (#686)
Check that the address is not zero.
Additional information: link
DividendDistributor.distributeDividend(address) (#276-289) has external calls inside a loop: address(shareholder).transfer(amount) (#283)
Sekuya.multiTransfer(address,address[],uint256[]) (#723-747) has external calls inside a loop: distributor.setShare(addresses[i_scope_0],_balances[addresses[i_scope_0]]) (#739)
Sekuya.multiTransfer_fixed(address,address[],uint256) (#749-768) has external calls inside a loop: distributor.setShare(addresses[i],_balances[addresses[i]]) (#760)
Favor pull over push strategy for external calls.
Additional information: link
Reentrancy in Sekuya.constructor() (#388-423):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#394)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = uint256(- 1) (#395)
- _balances[msg.sender] = _totalSupply - half (#418)
- _balances[DEAD] = _totalSupply - half (#421)
- autoLiquidityReceiver = DEAD (#410)
- burnFeeReceiver = DEAD (#414)
- devFeeReceiver = PULL (#413)
- distributor = new DividendDistributor(address(msg.sender)) (#397)
- isDividendExempt[pair] = true (#406)
- isDividendExempt[address(this)] = true (#407)
- isDividendExempt[DEAD] = true (#408)
- isFeeExempt[msg.sender] = true (#399)
- isTimelockExempt[msg.sender] = true (#402)
- isTimelockExempt[DEAD] = true (#403)
- isTimelockExempt[address(this)] = true (#404)
- isTxLimitExempt[msg.sender] = true (#400)
- marketingFeeReceiver = PULL (#411)
- teamFeeReceiver = PULL (#412)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in Sekuya._transferFrom(address,address,uint256) (#469-517):
External calls:
- swapBack() (#496)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#596-602)
- distributor.deposit{value: amountBNBReflection}() (#614)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#615)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#616)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#617)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#623-630)
- distributor.setShare(sender,_balances[sender]) (#506)
- distributor.setShare(recipient,_balances[recipient]) (#510)
- distributor.process(distributorGas) (#513)
External calls sending eth:
- swapBack() (#496)
- distributor.deposit{value: amountBNBReflection}() (#614)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#615)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#616)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#617)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#623-630)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived) (#515)
Reentrancy in Sekuya._transferFrom(address,address,uint256) (#469-517):
External calls:
- swapBack() (#496)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#596-602)
- distributor.deposit{value: amountBNBReflection}() (#614)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#615)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#616)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#617)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#623-630)
External calls sending eth:
- swapBack() (#496)
- distributor.deposit{value: amountBNBReflection}() (#614)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#615)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#616)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#617)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#623-630)
Event emitted after the call(s):
- Transfer(sender,address(this),contractTokens) (#544)
- amountReceived = takeFee(sender,amount,(recipient == pair)) (#501)
- Transfer(sender,burnFeeReceiver,burnTokens) (#547)
- amountReceived = takeFee(sender,amount,(recipient == pair)) (#501)
Reentrancy in Sekuya.constructor() (#388-423):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#394)
Event emitted after the call(s):
- Transfer(address(0),msg.sender,_totalSupply - half) (#419)
- Transfer(address(0),DEAD,_totalSupply - half) (#422)
Reentrancy in Sekuya.swapBack() (#585-633):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#596-602)
- distributor.deposit{value: amountBNBReflection}() (#614)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#615)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#616)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#617)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#623-630)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#614)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#615)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#616)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#617)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#623-630)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#631)
Apply the check-effects-interactions pattern.
Additional information: link
DividendDistributor.shouldDistribute(address) (#271-274) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#272-273)
Sekuya._transferFrom(address,address,uint256) (#469-517) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(cooldownTimer[recipient] < block.timestamp,Please wait for 1min between two buys) (#489)
Avoid relying on block.timestamp.
Additional information: link
DividendDistributor.process(uint256) (#245-269) has costly operations inside a loop:
- currentIndex = 0 (#257)
DividendDistributor.distributeDividend(address) (#276-289) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#281)
DividendDistributor.process(uint256) (#245-269) has costly operations inside a loop:
- currentIndex ++ (#266)
Use a local variable to hold the loop computation result.
Additional information: link
Sekuya._maxTxAmount (#336) is set pre-construction with a non-constant function or state variable:
- (_totalSupply * 2) / 100
Sekuya._maxWalletToken (#337) is set pre-construction with a non-constant function or state variable:
- (_totalSupply * 2) / 100
Sekuya.totalFee (#357) is set pre-construction with a non-constant function or state variable:
- marketingFee + reflectionFee + liquidityFee + teamFee + burnFee + devFee
Sekuya.swapThreshold (#384) is set pre-construction with a non-constant function or state variable:
- _totalSupply * 10 / 10000
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.7.4 (#15) 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 Sekuya.swapBack() (#585-633):
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#615)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#616)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#617)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Function IDEXRouter.WETH() (#119) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minPeriod (#219) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minDistribution (#219) is not in mixedCase
Variable DividendDistributor._token (#175) is not in mixedCase
Variable DividendDistributor._owner (#176) is not in mixedCase
Variable DividendDistributor.RWRD (#184) is not in mixedCase
Function Sekuya.setMaxWalletPercent_base1000(uint256) (#457-459) is not in mixedCase
Parameter Sekuya.setMaxWalletPercent_base1000(uint256).maxWallPercent_base1000 (#457) is not in mixedCase
Function Sekuya.setMaxTxPercent_base1000(uint256) (#460-462) is not in mixedCase
Parameter Sekuya.setMaxTxPercent_base1000(uint256).maxTXPercentage_base1000 (#460) is not in mixedCase
Function Sekuya.clearStuckBalance_sender(uint256) (#565-568) is not in mixedCase
Function Sekuya.set_sell_multiplier(uint256) (#570-572) is not in mixedCase
Parameter Sekuya.set_sell_multiplier(uint256).Multiplier (#570) is not in mixedCase
Parameter Sekuya.tradingStatus(bool)._status (#575) is not in mixedCase
Parameter Sekuya.cooldownEnabled(bool,uint8)._status (#580) is not in mixedCase
Parameter Sekuya.cooldownEnabled(bool,uint8)._interval (#580) is not in mixedCase
Function Sekuya.enable_blacklist(bool) (#646-648) is not in mixedCase
Parameter Sekuya.enable_blacklist(bool)._status (#646) is not in mixedCase
Function Sekuya.manage_blacklist(address[],bool) (#650-654) is not in mixedCase
Parameter Sekuya.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._liquidityFee (#669) is not in mixedCase
Parameter Sekuya.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._reflectionFee (#669) is not in mixedCase
Parameter Sekuya.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._marketingFee (#669) is not in mixedCase
Parameter Sekuya.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._teamFee (#669) is not in mixedCase
Parameter Sekuya.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._burnFee (#669) is not in mixedCase
Parameter Sekuya.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._devFee (#669) is not in mixedCase
Parameter Sekuya.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._feeDenominator (#669) is not in mixedCase
Parameter Sekuya.setFeeReceivers(address,address,address,address,address)._autoLiquidityReceiver (#681) is not in mixedCase
Parameter Sekuya.setFeeReceivers(address,address,address,address,address)._marketingFeeReceiver (#681) is not in mixedCase
Parameter Sekuya.setFeeReceivers(address,address,address,address,address)._teamFeeReceiver (#681) is not in mixedCase
Parameter Sekuya.setFeeReceivers(address,address,address,address,address)._burnFeeReceiver (#681) is not in mixedCase
Parameter Sekuya.setFeeReceivers(address,address,address,address,address)._devFeeReceiver (#681) is not in mixedCase
Parameter Sekuya.setSwapBackSettings(bool,uint256)._enabled (#689) is not in mixedCase
Parameter Sekuya.setSwapBackSettings(bool,uint256)._amount (#689) is not in mixedCase
Parameter Sekuya.setTargetLiquidity(uint256,uint256)._target (#694) is not in mixedCase
Parameter Sekuya.setTargetLiquidity(uint256,uint256)._denominator (#694) is not in mixedCase
Parameter Sekuya.setDistributionCriteria(uint256,uint256)._minPeriod (#699) is not in mixedCase
Parameter Sekuya.setDistributionCriteria(uint256,uint256)._minDistribution (#699) is not in mixedCase
Function Sekuya.multiTransfer_fixed(address,address[],uint256) (#749-768) is not in mixedCase
Variable Sekuya.WBNB (#325) is not in mixedCase
Variable Sekuya.DEAD (#326) is not in mixedCase
Variable Sekuya.ZERO (#327) is not in mixedCase
Variable Sekuya.PULL (#328) is not in mixedCase
Constant Sekuya._name (#330) is not in UPPER_CASE_WITH_UNDERSCORES
Constant Sekuya._symbol (#331) is not in UPPER_CASE_WITH_UNDERSCORES
Constant Sekuya._decimals (#332) is not in UPPER_CASE_WITH_UNDERSCORES
Variable Sekuya._totalSupply (#334) is not in mixedCase
Variable Sekuya._maxTxAmount (#336) is not in mixedCase
Variable Sekuya._maxWalletToken (#337) is not in mixedCase
Variable Sekuya._balances (#339) is not in mixedCase
Variable Sekuya._allowances (#340) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Reentrancy in DividendDistributor.distributeDividend(address) (#276-289):
External calls:
- address(shareholder).transfer(amount) (#283)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#285)
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#286)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#287)
Reentrancy in DividendDistributor.process(uint256) (#245-269):
External calls:
- distributeDividend(shareholders[currentIndex]) (#261)
- address(shareholder).transfer(amount) (#283)
State variables written after the call(s):
- currentIndex ++ (#266)
Reentrancy in DividendDistributor.setShare(address,uint256) (#224-238):
External calls:
- distributeDividend(shareholder) (#226)
- address(shareholder).transfer(amount) (#283)
State variables written after the call(s):
- addShareholder(shareholder) (#230)
- shareholderIndexes[shareholder] = shareholders.length (#311)
- removeShareholder(shareholder) (#232)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#317)
- addShareholder(shareholder) (#230)
- shareholders.push(shareholder) (#312)
- removeShareholder(shareholder) (#232)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#316)
- shareholders.pop() (#318)
- shares[shareholder].amount = amount (#236)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#237)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#235)
Apply the check-effects-interactions pattern.
Additional information: link
Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#124) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#125)
Prevent variables from having similar names.
Additional information: link
Sekuya.slitherConstructorVariables() (#322-772) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#326)
Sekuya.slitherConstructorVariables() (#322-772) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#327)
Sekuya.slitherConstructorVariables() (#322-772) uses literals with too many digits:
- distributorGas = 500000 (#377)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
DividendDistributor.RWRD (#184) is never used in DividendDistributor (#172-320)
Remove unused state variables.
Additional information: link
DividendDistributor.dividendsPerShareAccuracyFactor (#196) should be constant
Sekuya.DEAD (#326) should be constant
Sekuya.PULL (#328) should be constant
Sekuya.ZERO (#327) should be constant
Sekuya._totalSupply (#334) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
authorize(address) should be declared external:
- Auth.authorize(address) (#88-90)
unauthorize(address) should be declared external:
- Auth.unauthorize(address) (#92-94)
transferOwnership(address) should be declared external:
- Auth.transferOwnership(address) (#104-108)
tradingStatus(bool) should be declared external:
- Sekuya.tradingStatus(bool) (#575-577)
cooldownEnabled(bool,uint8) should be declared external:
- Sekuya.cooldownEnabled(bool,uint8) (#580-583)
enable_blacklist(bool) should be declared external:
- Sekuya.enable_blacklist(bool) (#646-648)
manage_blacklist(address[],bool) should be declared external:
- Sekuya.manage_blacklist(address[],bool) (#650-654)
Use the external attribute for functions never called from the contract.
Additional information: link
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
Unable to find Telegram and Twitter accounts