Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
SOM.swapBack() (#573-621) sends eth to arbitrary user
Dangerous calls:
- distributor.deposit{value: amountBNBReflection}() (#602)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#603)
- (tmpSuccess,None) = address(BUYBACKReceiver).call{gas: 30000,value: amountBNBTeam}() (#604)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#605)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in SOM._transferFrom(address,address,uint256) (#457-505):
External calls:
- swapBack() (#484)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#584-590)
- distributor.deposit{value: amountBNBReflection}() (#602)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#603)
- (tmpSuccess,None) = address(BUYBACKReceiver).call{gas: 30000,value: amountBNBTeam}() (#604)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#605)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#611-618)
External calls sending eth:
- swapBack() (#484)
- distributor.deposit{value: amountBNBReflection}() (#602)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#603)
- (tmpSuccess,None) = address(BUYBACKReceiver).call{gas: 30000,value: amountBNBTeam}() (#604)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#605)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#611-618)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#487)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#490)
- amountReceived = takeFee(sender,amount,(recipient == pair)) (#489)
- _balances[address(this)] = _balances[address(this)].add(contractTokens) (#530)
- _balances[burnFeeReceiver] = _balances[burnFeeReceiver].add(burnTokens) (#531)
Apply the check-effects-interactions pattern.
Additional information: link
SOM.swapBack().tmpSuccess (#603) is written in both
(tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#603)
(tmpSuccess,None) = address(BUYBACKReceiver).call{gas: 30000,value: amountBNBTeam}() (#604)
SOM.swapBack().tmpSuccess (#603) is written in both
(tmpSuccess,None) = address(BUYBACKReceiver).call{gas: 30000,value: amountBNBTeam}() (#604)
(tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#605)
SOM.swapBack().tmpSuccess (#603) is written in both
(tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#605)
tmpSuccess = false (#608)
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.
DividendDistributor.dividendsPerShareAccuracyFactor (#192) should be constant
SOM.DEAD (#322) should be constant
SOM.ZERO (#323) should be constant
SOM._totalSupply (#329) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
SOM.takeFee(address,uint256,bool) (#522-539) performs a multiplication on the result of a division:
-feeAmount = amount.mul(totalFee).mul(multiplier).div(feeDenominator * 100) (#525)
-burnTokens = feeAmount.mul(burnFee).div(totalFee) (#527)
Consider ordering multiplication before division.
Additional information: link
SOM.manage_blacklist(address[],bool).i (#639) 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
SOM.swapBack() (#573-621) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#611-618)
Ensure that all the return values of the function calls are used.
Additional information: link
DividendDistributor.setDistributionCriteria(uint256,uint256) (#215-218) should emit an event for:
- minPeriod = _minPeriod (#216)
- minDistribution = _minDistribution (#217)
DividendDistributor.deposit() (#236-239) should emit an event for:
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(msg.value).div(totalShares)) (#238)
SOM.setMaxTxPercent_base1000(uint256) (#448-450) should emit an event for:
- _maxTxAmount = (_totalSupply * maxTXPercentage_base1000) / 1000 (#449)
SOM.setTxLimit(uint256) (#452-454) should emit an event for:
- _maxTxAmount = amount (#453)
SOM.set_sell_multiplier(uint256) (#558-560) should emit an event for:
- sellMultiplier = Multiplier (#559)
SOM.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256) (#657-667) should emit an event for:
- liquidityFee = _liquidityFee (#658)
- reflectionFee = _reflectionFee (#659)
- marketingFee = _marketingFee (#660)
- BUYBACK = _BUYBACK (#661)
- devFee = _devFee (#662)
- burnFee = _burnFee (#663)
- totalFee = _liquidityFee + _reflectionFee + _marketingFee + _BUYBACK + _burnFee + _devFee (#664)
- feeDenominator = _feeDenominator (#665)
SOM.setSwapBackSettings(bool,uint256) (#677-680) should emit an event for:
- swapThreshold = _amount (#679)
SOM.setTargetLiquidity(uint256,uint256) (#682-685) should emit an event for:
- targetLiquidity = _target (#683)
- targetLiquidityDenominator = _denominator (#684)
Emit an event for critical parameter changes.
Additional information: link
DividendDistributor.constructor(address)._tokenowner (#210) lacks a zero-check on :
- _owner = _tokenowner (#212)
Auth.transferOwnership(address).adr (#100) lacks a zero-check on :
- owner = adr (#101)
SOM.setFeeReceivers(address,address,address,address,address)._autoLiquidityReceiver (#669) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#670)
SOM.setFeeReceivers(address,address,address,address,address)._marketingFeeReceiver (#669) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#671)
SOM.setFeeReceivers(address,address,address,address,address)._BUYBACKReceiver (#669) lacks a zero-check on :
- BUYBACKReceiver = _BUYBACKReceiver (#672)
SOM.setFeeReceivers(address,address,address,address,address)._burnFeeReceiver (#669) lacks a zero-check on :
- burnFeeReceiver = _burnFeeReceiver (#673)
SOM.setFeeReceivers(address,address,address,address,address)._devFeeReceiver (#669) lacks a zero-check on :
- devFeeReceiver = _devFeeReceiver (#674)
Check that the address is not zero.
Additional information: link
DividendDistributor.distributeDividend(address) (#272-285) has external calls inside a loop: address(shareholder).transfer(amount) (#279)
SOM.multiTransfer(address,address[],uint256[]) (#711-735) has external calls inside a loop: distributor.setShare(addresses[i_scope_0],_balances[addresses[i_scope_0]]) (#727)
SOM.multiTransfer_fixed(address,address[],uint256) (#737-756) has external calls inside a loop: distributor.setShare(addresses[i],_balances[addresses[i]]) (#748)
Favor pull over push strategy for external calls.
Additional information: link
Reentrancy in SOM.constructor() (#383-411):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#387)
State variables written after the call(s):
- BUYBACKReceiver = 0xDcCc41c85E1ebe6012516558a1464db79d1a5Dd1 (#405)
- _allowances[address(this)][address(router)] = uint256(- 1) (#388)
- _balances[msg.sender] = _totalSupply (#409)
- autoLiquidityReceiver = msg.sender (#403)
- burnFeeReceiver = DEAD (#407)
- devFeeReceiver = msg.sender (#406)
- distributor = new DividendDistributor(address(msg.sender)) (#390)
- isDividendExempt[pair] = true (#399)
- isDividendExempt[address(this)] = true (#400)
- isDividendExempt[DEAD] = true (#401)
- isFeeExempt[msg.sender] = true (#392)
- isTimelockExempt[msg.sender] = true (#395)
- isTimelockExempt[DEAD] = true (#396)
- isTimelockExempt[address(this)] = true (#397)
- isTxLimitExempt[msg.sender] = true (#393)
- marketingFeeReceiver = 0xD9a33f5BFFb9314EC0224A41007693A3338F085e (#404)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in SOM._transferFrom(address,address,uint256) (#457-505):
External calls:
- swapBack() (#484)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#584-590)
- distributor.deposit{value: amountBNBReflection}() (#602)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#603)
- (tmpSuccess,None) = address(BUYBACKReceiver).call{gas: 30000,value: amountBNBTeam}() (#604)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#605)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#611-618)
- distributor.setShare(sender,_balances[sender]) (#494)
- distributor.setShare(recipient,_balances[recipient]) (#498)
- distributor.process(distributorGas) (#501)
External calls sending eth:
- swapBack() (#484)
- distributor.deposit{value: amountBNBReflection}() (#602)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#603)
- (tmpSuccess,None) = address(BUYBACKReceiver).call{gas: 30000,value: amountBNBTeam}() (#604)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#605)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#611-618)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived) (#503)
Reentrancy in SOM._transferFrom(address,address,uint256) (#457-505):
External calls:
- swapBack() (#484)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#584-590)
- distributor.deposit{value: amountBNBReflection}() (#602)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#603)
- (tmpSuccess,None) = address(BUYBACKReceiver).call{gas: 30000,value: amountBNBTeam}() (#604)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#605)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#611-618)
External calls sending eth:
- swapBack() (#484)
- distributor.deposit{value: amountBNBReflection}() (#602)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#603)
- (tmpSuccess,None) = address(BUYBACKReceiver).call{gas: 30000,value: amountBNBTeam}() (#604)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#605)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#611-618)
Event emitted after the call(s):
- Transfer(sender,address(this),contractTokens) (#532)
- amountReceived = takeFee(sender,amount,(recipient == pair)) (#489)
- Transfer(sender,burnFeeReceiver,burnTokens) (#535)
- amountReceived = takeFee(sender,amount,(recipient == pair)) (#489)
Reentrancy in SOM.constructor() (#383-411):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#387)
Event emitted after the call(s):
- Transfer(address(0),msg.sender,_totalSupply) (#410)
Reentrancy in SOM.swapBack() (#573-621):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#584-590)
- distributor.deposit{value: amountBNBReflection}() (#602)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#603)
- (tmpSuccess,None) = address(BUYBACKReceiver).call{gas: 30000,value: amountBNBTeam}() (#604)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#605)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#611-618)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#602)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#603)
- (tmpSuccess,None) = address(BUYBACKReceiver).call{gas: 30000,value: amountBNBTeam}() (#604)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#605)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#611-618)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#619)
Apply the check-effects-interactions pattern.
Additional information: link
DividendDistributor.shouldDistribute(address) (#267-270) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#268-269)
SOM._transferFrom(address,address,uint256) (#457-505) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(cooldownTimer[recipient] < block.timestamp,Please wait for 1min between two buys) (#477)
Avoid relying on block.timestamp.
Additional information: link
DividendDistributor.process(uint256) (#241-265) has costly operations inside a loop:
- currentIndex = 0 (#253)
DividendDistributor.distributeDividend(address) (#272-285) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#277)
DividendDistributor.process(uint256) (#241-265) has costly operations inside a loop:
- currentIndex ++ (#262)
Use a local variable to hold the loop computation result.
Additional information: link
SOM._maxTxAmount (#331) is set pre-construction with a non-constant function or state variable:
- _totalSupply / 100
SOM._maxWalletToken (#332) is set pre-construction with a non-constant function or state variable:
- _totalSupply / 50
SOM.totalFee (#352) is set pre-construction with a non-constant function or state variable:
- marketingFee + reflectionFee + liquidityFee + BUYBACK + burnFee + devFee
SOM.swapThreshold (#379) 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 (#11) allows old versions
solc-0.7.4 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 SOM.swapBack() (#573-621):
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#603)
- (tmpSuccess,None) = address(BUYBACKReceiver).call{gas: 30000,value: amountBNBTeam}() (#604)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#605)
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() (#115) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minPeriod (#215) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minDistribution (#215) is not in mixedCase
Variable DividendDistributor._token (#171) is not in mixedCase
Variable DividendDistributor._owner (#172) is not in mixedCase
Variable DividendDistributor.RWRD (#180) is not in mixedCase
Function SOM.setMaxWalletPercent_base1000(uint256) (#445-447) is not in mixedCase
Parameter SOM.setMaxWalletPercent_base1000(uint256).maxWallPercent_base1000 (#445) is not in mixedCase
Function SOM.setMaxTxPercent_base1000(uint256) (#448-450) is not in mixedCase
Parameter SOM.setMaxTxPercent_base1000(uint256).maxTXPercentage_base1000 (#448) is not in mixedCase
Function SOM.clearStuckBalance_sender(uint256) (#553-556) is not in mixedCase
Function SOM.set_sell_multiplier(uint256) (#558-560) is not in mixedCase
Parameter SOM.set_sell_multiplier(uint256).Multiplier (#558) is not in mixedCase
Parameter SOM.tradingStatus(bool)._status (#563) is not in mixedCase
Parameter SOM.cooldownEnabled(bool,uint8)._status (#568) is not in mixedCase
Parameter SOM.cooldownEnabled(bool,uint8)._interval (#568) is not in mixedCase
Function SOM.enable_blacklist(bool) (#634-636) is not in mixedCase
Parameter SOM.enable_blacklist(bool)._status (#634) is not in mixedCase
Function SOM.manage_blacklist(address[],bool) (#638-642) is not in mixedCase
Parameter SOM.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._liquidityFee (#657) is not in mixedCase
Parameter SOM.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._reflectionFee (#657) is not in mixedCase
Parameter SOM.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._marketingFee (#657) is not in mixedCase
Parameter SOM.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._BUYBACK (#657) is not in mixedCase
Parameter SOM.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._burnFee (#657) is not in mixedCase
Parameter SOM.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._devFee (#657) is not in mixedCase
Parameter SOM.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._feeDenominator (#657) is not in mixedCase
Parameter SOM.setFeeReceivers(address,address,address,address,address)._autoLiquidityReceiver (#669) is not in mixedCase
Parameter SOM.setFeeReceivers(address,address,address,address,address)._marketingFeeReceiver (#669) is not in mixedCase
Parameter SOM.setFeeReceivers(address,address,address,address,address)._BUYBACKReceiver (#669) is not in mixedCase
Parameter SOM.setFeeReceivers(address,address,address,address,address)._burnFeeReceiver (#669) is not in mixedCase
Parameter SOM.setFeeReceivers(address,address,address,address,address)._devFeeReceiver (#669) is not in mixedCase
Parameter SOM.setSwapBackSettings(bool,uint256)._enabled (#677) is not in mixedCase
Parameter SOM.setSwapBackSettings(bool,uint256)._amount (#677) is not in mixedCase
Parameter SOM.setTargetLiquidity(uint256,uint256)._target (#682) is not in mixedCase
Parameter SOM.setTargetLiquidity(uint256,uint256)._denominator (#682) is not in mixedCase
Parameter SOM.setDistributionCriteria(uint256,uint256)._minPeriod (#687) is not in mixedCase
Parameter SOM.setDistributionCriteria(uint256,uint256)._minDistribution (#687) is not in mixedCase
Function SOM.multiTransfer_fixed(address,address[],uint256) (#737-756) is not in mixedCase
Variable SOM.WBNB (#321) is not in mixedCase
Variable SOM.DEAD (#322) is not in mixedCase
Variable SOM.ZERO (#323) is not in mixedCase
Constant SOM._name (#325) is not in UPPER_CASE_WITH_UNDERSCORES
Constant SOM._symbol (#326) is not in UPPER_CASE_WITH_UNDERSCORES
Constant SOM._decimals (#327) is not in UPPER_CASE_WITH_UNDERSCORES
Variable SOM._totalSupply (#329) is not in mixedCase
Variable SOM._maxTxAmount (#331) is not in mixedCase
Variable SOM._maxWalletToken (#332) is not in mixedCase
Variable SOM._balances (#334) is not in mixedCase
Variable SOM._allowances (#335) is not in mixedCase
Variable SOM.BUYBACK (#349) is not in mixedCase
Variable SOM.BUYBACKReceiver (#359) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Reentrancy in DividendDistributor.distributeDividend(address) (#272-285):
External calls:
- address(shareholder).transfer(amount) (#279)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#281)
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#282)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#283)
Reentrancy in DividendDistributor.process(uint256) (#241-265):
External calls:
- distributeDividend(shareholders[currentIndex]) (#257)
- address(shareholder).transfer(amount) (#279)
State variables written after the call(s):
- currentIndex ++ (#262)
Reentrancy in DividendDistributor.setShare(address,uint256) (#220-234):
External calls:
- distributeDividend(shareholder) (#222)
- address(shareholder).transfer(amount) (#279)
State variables written after the call(s):
- addShareholder(shareholder) (#226)
- shareholderIndexes[shareholder] = shareholders.length (#307)
- removeShareholder(shareholder) (#228)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#313)
- addShareholder(shareholder) (#226)
- shareholders.push(shareholder) (#308)
- removeShareholder(shareholder) (#228)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#312)
- shareholders.pop() (#314)
- shares[shareholder].amount = amount (#232)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#233)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#231)
Apply the check-effects-interactions pattern.
Additional information: link
Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#120) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#121)
Prevent variables from having similar names.
Additional information: link
SOM.slitherConstructorVariables() (#318-761) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#322)
SOM.slitherConstructorVariables() (#318-761) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#323)
SOM.slitherConstructorVariables() (#318-761) uses literals with too many digits:
- distributorGas = 500000 (#372)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
DividendDistributor.RWRD (#180) is never used in DividendDistributor (#168-316)
Remove unused state variables.
Additional information: link
authorize(address) should be declared external:
- Auth.authorize(address) (#84-86)
unauthorize(address) should be declared external:
- Auth.unauthorize(address) (#88-90)
transferOwnership(address) should be declared external:
- Auth.transferOwnership(address) (#100-104)
tradingStatus(bool) should be declared external:
- SOM.tradingStatus(bool) (#563-565)
cooldownEnabled(bool,uint8) should be declared external:
- SOM.cooldownEnabled(bool,uint8) (#568-571)
enable_blacklist(bool) should be declared external:
- SOM.enable_blacklist(bool) (#634-636)
manage_blacklist(address[],bool) should be declared external:
- SOM.manage_blacklist(address[],bool) (#638-642)
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