Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
STONKSINU.swapBack() (#603-651) sends eth to arbitrary user
Dangerous calls:
- distributor.deposit{value: amountBNBReflection}() (#632)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#633)
- (tmpSuccess,None) = address(buybackFeeReceiver).call{gas: 30000,value: amountBNBbuyback}() (#634)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBdev}() (#635)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in STONKSINU._transferFrom(address,address,uint256) (#474-518):
External calls:
- swapBack() (#494)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#614-620)
- distributor.deposit{value: amountBNBReflection}() (#632)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#633)
- (tmpSuccess,None) = address(buybackFeeReceiver).call{gas: 30000,value: amountBNBbuyback}() (#634)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBdev}() (#635)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#641-648)
External calls sending eth:
- swapBack() (#494)
- distributor.deposit{value: amountBNBReflection}() (#632)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#633)
- (tmpSuccess,None) = address(buybackFeeReceiver).call{gas: 30000,value: amountBNBbuyback}() (#634)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBdev}() (#635)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#641-648)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#497)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#500)
- amountReceived = takeFee(sender,amount,recipient) (#499)
- _balances[address(this)] = _balances[address(this)].add(contractTokens) (#554)
- _balances[stakingFeeReceiver] = _balances[stakingFeeReceiver].add(stakingTokens) (#555)
Apply the check-effects-interactions pattern.
Additional information: link
DividendDistributor.distributeDividend(address) (#283-294) ignores return value by RWRD.transfer(shareholder,amount) (#289)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.
Additional information: link
Too many vulnerabilities (Unchecked transfer, Reentrancy vulnerability, etc.). High risk of a scam. DYOR & manual audit are advised.
STONKSINU.swapBack().tmpSuccess (#633) is written in both
(tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#633)
(tmpSuccess,None) = address(buybackFeeReceiver).call{gas: 30000,value: amountBNBbuyback}() (#634)
STONKSINU.swapBack().tmpSuccess (#633) is written in both
(tmpSuccess,None) = address(buybackFeeReceiver).call{gas: 30000,value: amountBNBbuyback}() (#634)
(tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBdev}() (#635)
STONKSINU.swapBack().tmpSuccess (#633) is written in both
(tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBdev}() (#635)
tmpSuccess = false (#638)
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.
Combination 2: Unchecked transfer + 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.
Combination 3: Reentrancy vulnerabilities + Unchecked transfer vulnerability. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.
STONKSINU.takeFee(address,uint256,address) (#535-563) performs a multiplication on the result of a division:
-feeAmount = amount.mul(totalFee).mul(multiplier).div(feeDenominator * 100) (#544)
-stakingTokens = feeAmount.mul(stakingFee).div(totalFee) (#551)
STONKSINU.takeFee(address,uint256,address) (#535-563) performs a multiplication on the result of a division:
-feeAmount = amount.div(100).mul(99) (#548)
Consider ordering multiplication before division.
Additional information: link
Reentrancy in DividendDistributor.distributeDividend(address) (#283-294):
External calls:
- RWRD.transfer(shareholder,amount) (#289)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#291)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#292)
Reentrancy in DividendDistributor.process(uint256) (#252-276):
External calls:
- distributeDividend(shareholders[currentIndex]) (#268)
- RWRD.transfer(shareholder,amount) (#289)
State variables written after the call(s):
- currentIndex ++ (#273)
Reentrancy in DividendDistributor.setShare(address,uint256) (#216-230):
External calls:
- distributeDividend(shareholder) (#218)
- RWRD.transfer(shareholder,amount) (#289)
State variables written after the call(s):
- shares[shareholder].amount = amount (#228)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#229)
Apply the check-effects-interactions pattern.
Additional information: link
STONKSINU.manage_blacklist(address[],bool).i (#669) 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
STONKSINU.swapBack() (#603-651) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#641-648)
Ensure that all the return values of the function calls are used.
Additional information: link
DividendDistributor.setDistributionCriteria(uint256,uint256,bool) (#210-214) should emit an event for:
- minPeriod = _minPeriod (#211)
- minDistribution = _minDistribution (#212)
STONKSINU.setMaxTxPercent_base1000(uint256) (#465-467) should emit an event for:
- _maxTxAmount = (_totalSupply * maxTXPercentage_base1000) / 1000 (#466)
STONKSINU.setMaxTxAmount(uint256) (#469-471) should emit an event for:
- _maxTxAmount = amount (#470)
STONKSINU.set_multipliers(uint256,uint256,uint256) (#584-588) should emit an event for:
- sellMultiplier = _sell (#585)
- buyMultiplier = _buy (#586)
- transferMultiplier = _trans (#587)
STONKSINU.tradingStatus(bool,uint256) (#591-597) should emit an event for:
- deadBlocks = _deadBlocks (#595)
STONKSINU.launchStatus(uint256) (#599-601) should emit an event for:
- launchedAt = _launchblock (#600)
STONKSINU.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256) (#687-697) should emit an event for:
- liquidityFee = _liquidityFee (#688)
- reflectionFee = _reflectionFee (#689)
- marketingFee = _marketingFee (#690)
- buybackFee = _buybackFee (#691)
- devFee = _devFee (#692)
- stakingFee = _stakingFee (#693)
- totalFee = _liquidityFee + _reflectionFee + _marketingFee + _buybackFee + _stakingFee + _devFee (#694)
- feeDenominator = _feeDenominator (#695)
STONKSINU.setSwapBackSettings(bool,uint256) (#707-710) should emit an event for:
- swapThreshold = _amount (#709)
STONKSINU.setTargetLiquidity(uint256,uint256) (#712-715) should emit an event for:
- targetLiquidity = _target (#713)
- targetLiquidityDenominator = _denominator (#714)
Emit an event for critical parameter changes.
Additional information: link
DividendDistributor.constructor(address,address)._owner (#204) lacks a zero-check on :
- _tokenowner = _owner (#207)
Auth.transferOwnership(address).adr (#92) lacks a zero-check on :
- owner = adr (#93)
STONKSINU.setFeeReceivers(address,address,address,address,address)._autoLiquidityReceiver (#699) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#700)
STONKSINU.setFeeReceivers(address,address,address,address,address)._marketingFeeReceiver (#699) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#701)
STONKSINU.setFeeReceivers(address,address,address,address,address)._buybackFeeReceiver (#699) lacks a zero-check on :
- buybackFeeReceiver = _buybackFeeReceiver (#702)
STONKSINU.setFeeReceivers(address,address,address,address,address)._stakingFeeReceiver (#699) lacks a zero-check on :
- stakingFeeReceiver = _stakingFeeReceiver (#703)
STONKSINU.setFeeReceivers(address,address,address,address,address)._devFeeReceiver (#699) lacks a zero-check on :
- devFeeReceiver = _devFeeReceiver (#704)
Check that the address is not zero.
Additional information: link
DividendDistributor.distributeDividend(address) (#283-294) has external calls inside a loop: RWRD.transfer(shareholder,amount) (#289)
STONKSINU.multiTransfer(address,address[],uint256[]) (#739-763) has external calls inside a loop: distributor.setShare(addresses[i_scope_0],_balances[addresses[i_scope_0]]) (#755)
Favor pull over push strategy for external calls.
Additional information: link
Reentrancy in STONKSINU.constructor() (#399-427):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#403)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = type()(uint256).max (#404)
- _balances[msg.sender] = _totalSupply (#425)
- autoLiquidityReceiver = msg.sender (#419)
- buybackFeeReceiver = 0x6f568F61De2d21FF2d7888B02F40f3B911D3103F (#421)
- devFeeReceiver = 0x277BdadF7A82Ab1a9C5Cac664abfdF748aFF3486 (#422)
- distributor = new DividendDistributor(address(router),msg.sender) (#406)
- isDividendExempt[pair] = true (#415)
- isDividendExempt[address(this)] = true (#416)
- isDividendExempt[DEAD] = true (#417)
- isFeeExempt[msg.sender] = true (#408)
- isTimelockExempt[msg.sender] = true (#411)
- isTimelockExempt[DEAD] = true (#412)
- isTimelockExempt[address(this)] = true (#413)
- isTxLimitExempt[msg.sender] = true (#409)
- marketingFeeReceiver = 0x6f568F61De2d21FF2d7888B02F40f3B911D3103F (#420)
- stakingFeeReceiver = DEAD (#423)
Reentrancy in DividendDistributor.deposit() (#232-250):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#239-244)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#249)
- totalDividends = totalDividends.add(amount) (#248)
Reentrancy in DividendDistributor.distributeDividend(address) (#283-294):
External calls:
- RWRD.transfer(shareholder,amount) (#289)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#290)
Reentrancy in DividendDistributor.setShare(address,uint256) (#216-230):
External calls:
- distributeDividend(shareholder) (#218)
- RWRD.transfer(shareholder,amount) (#289)
State variables written after the call(s):
- addShareholder(shareholder) (#222)
- shareholderIndexes[shareholder] = shareholders.length (#323)
- removeShareholder(shareholder) (#224)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#329)
- addShareholder(shareholder) (#222)
- shareholders.push(shareholder) (#324)
- removeShareholder(shareholder) (#224)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#328)
- shareholders.pop() (#330)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#227)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in STONKSINU._transferFrom(address,address,uint256) (#474-518):
External calls:
- swapBack() (#494)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#614-620)
- distributor.deposit{value: amountBNBReflection}() (#632)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#633)
- (tmpSuccess,None) = address(buybackFeeReceiver).call{gas: 30000,value: amountBNBbuyback}() (#634)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBdev}() (#635)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#641-648)
- distributor.setShare(sender,_balances[sender]) (#504)
- distributor.setShare(recipient,_balances[recipient]) (#508)
- distributor.process(distributorGas) (#512)
External calls sending eth:
- swapBack() (#494)
- distributor.deposit{value: amountBNBReflection}() (#632)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#633)
- (tmpSuccess,None) = address(buybackFeeReceiver).call{gas: 30000,value: amountBNBbuyback}() (#634)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBdev}() (#635)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#641-648)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived) (#516)
Reentrancy in STONKSINU._transferFrom(address,address,uint256) (#474-518):
External calls:
- swapBack() (#494)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#614-620)
- distributor.deposit{value: amountBNBReflection}() (#632)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#633)
- (tmpSuccess,None) = address(buybackFeeReceiver).call{gas: 30000,value: amountBNBbuyback}() (#634)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBdev}() (#635)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#641-648)
External calls sending eth:
- swapBack() (#494)
- distributor.deposit{value: amountBNBReflection}() (#632)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#633)
- (tmpSuccess,None) = address(buybackFeeReceiver).call{gas: 30000,value: amountBNBbuyback}() (#634)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBdev}() (#635)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#641-648)
Event emitted after the call(s):
- Transfer(sender,address(this),contractTokens) (#556)
- amountReceived = takeFee(sender,amount,recipient) (#499)
- Transfer(sender,stakingFeeReceiver,stakingTokens) (#559)
- amountReceived = takeFee(sender,amount,recipient) (#499)
Reentrancy in STONKSINU.constructor() (#399-427):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#403)
Event emitted after the call(s):
- Transfer(address(0),msg.sender,_totalSupply) (#426)
Reentrancy in STONKSINU.swapBack() (#603-651):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#614-620)
- distributor.deposit{value: amountBNBReflection}() (#632)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#633)
- (tmpSuccess,None) = address(buybackFeeReceiver).call{gas: 30000,value: amountBNBbuyback}() (#634)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBdev}() (#635)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#641-648)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#632)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#633)
- (tmpSuccess,None) = address(buybackFeeReceiver).call{gas: 30000,value: amountBNBbuyback}() (#634)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBdev}() (#635)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#641-648)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#649)
Apply the check-effects-interactions pattern.
Additional information: link
DividendDistributor.shouldDistribute(address) (#278-281) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#279-280)
Avoid relying on block.timestamp.
Additional information: link
DividendDistributor.process(uint256) (#252-276) has costly operations inside a loop:
- currentIndex = 0 (#264)
DividendDistributor.distributeDividend(address) (#283-294) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#288)
DividendDistributor.process(uint256) (#252-276) has costly operations inside a loop:
- currentIndex ++ (#273)
Use a local variable to hold the loop computation result.
Additional information: link
STONKSINU._maxTxAmount (#347) is set pre-construction with a non-constant function or state variable:
- _totalSupply / 100
STONKSINU._maxWalletToken (#348) is set pre-construction with a non-constant function or state variable:
- _totalSupply / 50
STONKSINU.totalFee (#368) is set pre-construction with a non-constant function or state variable:
- marketingFee + reflectionFee + liquidityFee + buybackFee + stakingFee + devFee
STONKSINU.swapThreshold (#395) is set pre-construction with a non-constant function or state variable:
- _totalSupply * 8 / 1000
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 STONKSINU.swapBack() (#603-651):
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#633)
- (tmpSuccess,None) = address(buybackFeeReceiver).call{gas: 30000,value: amountBNBbuyback}() (#634)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBdev}() (#635)
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() (#107) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256,bool)._minPeriod (#210) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256,bool)._minDistribution (#210) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256,bool)._enabled (#210) is not in mixedCase
Variable DividendDistributor._token (#163) is not in mixedCase
Variable DividendDistributor._tokenowner (#164) is not in mixedCase
Variable DividendDistributor.RWRD (#172) is not in mixedCase
Function STONKSINU.setMaxWalletPercent_base1000(uint256) (#461-463) is not in mixedCase
Parameter STONKSINU.setMaxWalletPercent_base1000(uint256).maxWallPercent_base1000 (#461) is not in mixedCase
Function STONKSINU.setMaxTxPercent_base1000(uint256) (#465-467) is not in mixedCase
Parameter STONKSINU.setMaxTxPercent_base1000(uint256).maxTXPercentage_base1000 (#465) is not in mixedCase
Function STONKSINU.set_multipliers(uint256,uint256,uint256) (#584-588) is not in mixedCase
Parameter STONKSINU.set_multipliers(uint256,uint256,uint256)._buy (#584) is not in mixedCase
Parameter STONKSINU.set_multipliers(uint256,uint256,uint256)._sell (#584) is not in mixedCase
Parameter STONKSINU.set_multipliers(uint256,uint256,uint256)._trans (#584) is not in mixedCase
Parameter STONKSINU.tradingStatus(bool,uint256)._status (#591) is not in mixedCase
Parameter STONKSINU.tradingStatus(bool,uint256)._deadBlocks (#591) is not in mixedCase
Parameter STONKSINU.launchStatus(uint256)._launchblock (#599) is not in mixedCase
Function STONKSINU.enable_blacklist(bool) (#664-666) is not in mixedCase
Parameter STONKSINU.enable_blacklist(bool)._status (#664) is not in mixedCase
Function STONKSINU.manage_blacklist(address[],bool) (#668-672) is not in mixedCase
Parameter STONKSINU.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._liquidityFee (#687) is not in mixedCase
Parameter STONKSINU.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._reflectionFee (#687) is not in mixedCase
Parameter STONKSINU.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._marketingFee (#687) is not in mixedCase
Parameter STONKSINU.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._buybackFee (#687) is not in mixedCase
Parameter STONKSINU.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._devFee (#687) is not in mixedCase
Parameter STONKSINU.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._stakingFee (#687) is not in mixedCase
Parameter STONKSINU.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._feeDenominator (#687) is not in mixedCase
Parameter STONKSINU.setFeeReceivers(address,address,address,address,address)._autoLiquidityReceiver (#699) is not in mixedCase
Parameter STONKSINU.setFeeReceivers(address,address,address,address,address)._marketingFeeReceiver (#699) is not in mixedCase
Parameter STONKSINU.setFeeReceivers(address,address,address,address,address)._buybackFeeReceiver (#699) is not in mixedCase
Parameter STONKSINU.setFeeReceivers(address,address,address,address,address)._stakingFeeReceiver (#699) is not in mixedCase
Parameter STONKSINU.setFeeReceivers(address,address,address,address,address)._devFeeReceiver (#699) is not in mixedCase
Parameter STONKSINU.setSwapBackSettings(bool,uint256)._enabled (#707) is not in mixedCase
Parameter STONKSINU.setSwapBackSettings(bool,uint256)._amount (#707) is not in mixedCase
Parameter STONKSINU.setTargetLiquidity(uint256,uint256)._target (#712) is not in mixedCase
Parameter STONKSINU.setTargetLiquidity(uint256,uint256)._denominator (#712) is not in mixedCase
Parameter STONKSINU.setDistributionCriteria(uint256,uint256,bool)._minPeriod (#717) is not in mixedCase
Parameter STONKSINU.setDistributionCriteria(uint256,uint256,bool)._minDistribution (#717) is not in mixedCase
Parameter STONKSINU.setDistributionCriteria(uint256,uint256,bool)._enabled (#717) is not in mixedCase
Variable STONKSINU.WBNB (#337) is not in mixedCase
Variable STONKSINU.DEAD (#338) is not in mixedCase
Variable STONKSINU.ZERO (#339) is not in mixedCase
Constant STONKSINU._name (#341) is not in UPPER_CASE_WITH_UNDERSCORES
Constant STONKSINU._symbol (#342) is not in UPPER_CASE_WITH_UNDERSCORES
Constant STONKSINU._decimals (#343) is not in UPPER_CASE_WITH_UNDERSCORES
Variable STONKSINU._totalSupply (#345) is not in mixedCase
Variable STONKSINU._maxTxAmount (#347) is not in mixedCase
Variable STONKSINU._maxWalletToken (#348) is not in mixedCase
Variable STONKSINU._balances (#350) is not in mixedCase
Variable STONKSINU._allowances (#351) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#112) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#113)
Prevent variables from having similar names.
Additional information: link
STONKSINU.slitherConstructorVariables() (#334-769) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#338)
STONKSINU.slitherConstructorVariables() (#334-769) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#339)
STONKSINU.slitherConstructorVariables() (#334-769) uses literals with too many digits:
- distributorGas = 500000 (#392)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
DividendDistributor.dividendsPerShareAccuracyFactor (#185) should be constant
STONKSINU.DEAD (#338) should be constant
STONKSINU.ZERO (#339) should be constant
STONKSINU._totalSupply (#345) 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) (#76-78)
unauthorize(address) should be declared external:
- Auth.unauthorize(address) (#80-82)
transferOwnership(address) should be declared external:
- Auth.transferOwnership(address) (#92-96)
tradingStatus(bool,uint256) should be declared external:
- STONKSINU.tradingStatus(bool,uint256) (#591-597)
launchStatus(uint256) should be declared external:
- STONKSINU.launchStatus(uint256) (#599-601)
enable_blacklist(bool) should be declared external:
- STONKSINU.enable_blacklist(bool) (#664-666)
manage_blacklist(address[],bool) should be declared external:
- STONKSINU.manage_blacklist(address[],bool) (#668-672)
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