Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
SOM.swapBack() (#565-613) sends eth to arbitrary user
Dangerous calls:
- distributor.deposit{value: amountBNBReflection}() (#594)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#595)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#596)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#597)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in SOM._transferFrom(address,address,uint256) (#449-497):
External calls:
- swapBack() (#476)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#576-582)
- distributor.deposit{value: amountBNBReflection}() (#594)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#595)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#596)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#597)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#603-610)
External calls sending eth:
- swapBack() (#476)
- distributor.deposit{value: amountBNBReflection}() (#594)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#595)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#596)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#597)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#603-610)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#479)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#482)
- amountReceived = takeFee(sender,amount,(recipient == pair)) (#481)
- _balances[address(this)] = _balances[address(this)].add(contractTokens) (#522)
- _balances[burnFeeReceiver] = _balances[burnFeeReceiver].add(burnTokens) (#523)
Apply the check-effects-interactions pattern.
Additional information: link
SOM.swapBack().tmpSuccess (#595) is written in both
(tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#595)
(tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#596)
SOM.swapBack().tmpSuccess (#595) is written in both
(tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#596)
(tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#597)
SOM.swapBack().tmpSuccess (#595) is written in both
(tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#597)
tmpSuccess = false (#600)
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.process(uint256) (#233-257) has costly operations inside a loop:
- currentIndex = 0 (#245)
DividendDistributor.distributeDividend(address) (#264-277) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#269)
DividendDistributor.process(uint256) (#233-257) has costly operations inside a loop:
- currentIndex ++ (#254)
Use a local variable to hold the loop computation result.
Additional information: link
Reentrancy in SOM._transferFrom(address,address,uint256) (#449-497):
External calls:
- swapBack() (#476)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#576-582)
- distributor.deposit{value: amountBNBReflection}() (#594)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#595)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#596)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#597)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#603-610)
- distributor.setShare(sender,_balances[sender]) (#486)
- distributor.setShare(recipient,_balances[recipient]) (#490)
- distributor.process(distributorGas) (#493)
External calls sending eth:
- swapBack() (#476)
- distributor.deposit{value: amountBNBReflection}() (#594)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#595)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#596)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#597)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#603-610)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived) (#495)
Reentrancy in SOM._transferFrom(address,address,uint256) (#449-497):
External calls:
- swapBack() (#476)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#576-582)
- distributor.deposit{value: amountBNBReflection}() (#594)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#595)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#596)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#597)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#603-610)
External calls sending eth:
- swapBack() (#476)
- distributor.deposit{value: amountBNBReflection}() (#594)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#595)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#596)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#597)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#603-610)
Event emitted after the call(s):
- Transfer(sender,address(this),contractTokens) (#524)
- amountReceived = takeFee(sender,amount,(recipient == pair)) (#481)
- Transfer(sender,burnFeeReceiver,burnTokens) (#527)
- amountReceived = takeFee(sender,amount,(recipient == pair)) (#481)
Reentrancy in SOM.constructor() (#375-403):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#379)
Event emitted after the call(s):
- Transfer(address(0),msg.sender,_totalSupply) (#402)
Reentrancy in SOM.swapBack() (#565-613):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#576-582)
- distributor.deposit{value: amountBNBReflection}() (#594)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#595)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#596)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#597)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#603-610)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#594)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#595)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#596)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#597)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#603-610)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#611)
Apply the check-effects-interactions pattern.
Additional information: link
SOM.takeFee(address,uint256,bool) (#514-531) performs a multiplication on the result of a division:
-feeAmount = amount.mul(totalFee).mul(multiplier).div(feeDenominator * 100) (#517)
-burnTokens = feeAmount.mul(burnFee).div(totalFee) (#519)
Consider ordering multiplication before division.
Additional information: link
SOM.manage_blacklist(address[],bool).i (#631) 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() (#565-613) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#603-610)
Ensure that all the return values of the function calls are used.
Additional information: link
DividendDistributor.setDistributionCriteria(uint256,uint256) (#207-210) should emit an event for:
- minPeriod = _minPeriod (#208)
- minDistribution = _minDistribution (#209)
DividendDistributor.deposit() (#228-231) should emit an event for:
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(msg.value).div(totalShares)) (#230)
SOM.setMaxTxPercent_base1000(uint256) (#440-442) should emit an event for:
- _maxTxAmount = (_totalSupply * maxTXPercentage_base1000) / 1000 (#441)
SOM.setTxLimit(uint256) (#444-446) should emit an event for:
- _maxTxAmount = amount (#445)
SOM.set_sell_multiplier(uint256) (#550-552) should emit an event for:
- sellMultiplier = Multiplier (#551)
SOM.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256) (#649-659) should emit an event for:
- liquidityFee = _liquidityFee (#650)
- reflectionFee = _reflectionFee (#651)
- marketingFee = _marketingFee (#652)
- teamFee = _teamFee (#653)
- devFee = _devFee (#654)
- burnFee = _burnFee (#655)
- totalFee = _liquidityFee + _reflectionFee + _marketingFee + _teamFee + _burnFee + _devFee (#656)
- feeDenominator = _feeDenominator (#657)
SOM.setSwapBackSettings(bool,uint256) (#669-672) should emit an event for:
- swapThreshold = _amount (#671)
SOM.setTargetLiquidity(uint256,uint256) (#674-677) should emit an event for:
- targetLiquidity = _target (#675)
- targetLiquidityDenominator = _denominator (#676)
Emit an event for critical parameter changes.
Additional information: link
DividendDistributor.constructor(address)._tokenowner (#202) lacks a zero-check on :
- _owner = _tokenowner (#204)
Auth.transferOwnership(address).adr (#92) lacks a zero-check on :
- owner = adr (#93)
SOM.setFeeReceivers(address,address,address,address,address)._autoLiquidityReceiver (#661) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#662)
SOM.setFeeReceivers(address,address,address,address,address)._marketingFeeReceiver (#661) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#663)
SOM.setFeeReceivers(address,address,address,address,address)._teamFeeReceiver (#661) lacks a zero-check on :
- teamFeeReceiver = _teamFeeReceiver (#664)
SOM.setFeeReceivers(address,address,address,address,address)._burnFeeReceiver (#661) lacks a zero-check on :
- burnFeeReceiver = _burnFeeReceiver (#665)
SOM.setFeeReceivers(address,address,address,address,address)._devFeeReceiver (#661) lacks a zero-check on :
- devFeeReceiver = _devFeeReceiver (#666)
Check that the address is not zero.
Additional information: link
DividendDistributor.distributeDividend(address) (#264-277) has external calls inside a loop: address(shareholder).transfer(amount) (#271)
SOM.multiTransfer(address,address[],uint256[]) (#703-727) has external calls inside a loop: distributor.setShare(addresses[i_scope_0],_balances[addresses[i_scope_0]]) (#719)
SOM.multiTransfer_fixed(address,address[],uint256) (#729-748) has external calls inside a loop: distributor.setShare(addresses[i],_balances[addresses[i]]) (#740)
Favor pull over push strategy for external calls.
Additional information: link
Reentrancy in SOM.constructor() (#375-403):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#379)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = uint256(- 1) (#380)
- _balances[msg.sender] = _totalSupply (#401)
- autoLiquidityReceiver = msg.sender (#395)
- burnFeeReceiver = DEAD (#399)
- devFeeReceiver = msg.sender (#398)
- distributor = new DividendDistributor(address(msg.sender)) (#382)
- isDividendExempt[pair] = true (#391)
- isDividendExempt[address(this)] = true (#392)
- isDividendExempt[DEAD] = true (#393)
- isFeeExempt[msg.sender] = true (#384)
- isTimelockExempt[msg.sender] = true (#387)
- isTimelockExempt[DEAD] = true (#388)
- isTimelockExempt[address(this)] = true (#389)
- isTxLimitExempt[msg.sender] = true (#385)
- marketingFeeReceiver = 0x9f48C7c28299Dc7e85671F351B29a8A037F28EF5 (#396)
- teamFeeReceiver = 0x9f48C7c28299Dc7e85671F351B29a8A037F28EF5 (#397)
Apply the check-effects-interactions pattern.
Additional information: link
DividendDistributor.shouldDistribute(address) (#259-262) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#260-261)
SOM._transferFrom(address,address,uint256) (#449-497) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(cooldownTimer[recipient] < block.timestamp,Please wait for 1min between two buys) (#469)
Avoid relying on block.timestamp.
Additional information: link
SOM._maxTxAmount (#323) is set pre-construction with a non-constant function or state variable:
- _totalSupply / 100
SOM._maxWalletToken (#324) is set pre-construction with a non-constant function or state variable:
- _totalSupply / 50
SOM.totalFee (#344) is set pre-construction with a non-constant function or state variable:
- marketingFee + reflectionFee + liquidityFee + teamFee + burnFee + devFee
SOM.swapThreshold (#371) 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 (#3) 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() (#565-613):
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#595)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#596)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#597)
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)._minPeriod (#207) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minDistribution (#207) is not in mixedCase
Variable DividendDistributor._token (#163) is not in mixedCase
Variable DividendDistributor._owner (#164) is not in mixedCase
Variable DividendDistributor.RWRD (#172) is not in mixedCase
Function SOM.setMaxWalletPercent_base1000(uint256) (#437-439) is not in mixedCase
Parameter SOM.setMaxWalletPercent_base1000(uint256).maxWallPercent_base1000 (#437) is not in mixedCase
Function SOM.setMaxTxPercent_base1000(uint256) (#440-442) is not in mixedCase
Parameter SOM.setMaxTxPercent_base1000(uint256).maxTXPercentage_base1000 (#440) is not in mixedCase
Function SOM.clearStuckBalance_sender(uint256) (#545-548) is not in mixedCase
Function SOM.set_sell_multiplier(uint256) (#550-552) is not in mixedCase
Parameter SOM.set_sell_multiplier(uint256).Multiplier (#550) is not in mixedCase
Parameter SOM.tradingStatus(bool)._status (#555) is not in mixedCase
Parameter SOM.cooldownEnabled(bool,uint8)._status (#560) is not in mixedCase
Parameter SOM.cooldownEnabled(bool,uint8)._interval (#560) is not in mixedCase
Function SOM.enable_blacklist(bool) (#626-628) is not in mixedCase
Parameter SOM.enable_blacklist(bool)._status (#626) is not in mixedCase
Function SOM.manage_blacklist(address[],bool) (#630-634) is not in mixedCase
Parameter SOM.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._liquidityFee (#649) is not in mixedCase
Parameter SOM.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._reflectionFee (#649) is not in mixedCase
Parameter SOM.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._marketingFee (#649) is not in mixedCase
Parameter SOM.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._teamFee (#649) is not in mixedCase
Parameter SOM.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._burnFee (#649) is not in mixedCase
Parameter SOM.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._devFee (#649) is not in mixedCase
Parameter SOM.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._feeDenominator (#649) is not in mixedCase
Parameter SOM.setFeeReceivers(address,address,address,address,address)._autoLiquidityReceiver (#661) is not in mixedCase
Parameter SOM.setFeeReceivers(address,address,address,address,address)._marketingFeeReceiver (#661) is not in mixedCase
Parameter SOM.setFeeReceivers(address,address,address,address,address)._teamFeeReceiver (#661) is not in mixedCase
Parameter SOM.setFeeReceivers(address,address,address,address,address)._burnFeeReceiver (#661) is not in mixedCase
Parameter SOM.setFeeReceivers(address,address,address,address,address)._devFeeReceiver (#661) is not in mixedCase
Parameter SOM.setSwapBackSettings(bool,uint256)._enabled (#669) is not in mixedCase
Parameter SOM.setSwapBackSettings(bool,uint256)._amount (#669) is not in mixedCase
Parameter SOM.setTargetLiquidity(uint256,uint256)._target (#674) is not in mixedCase
Parameter SOM.setTargetLiquidity(uint256,uint256)._denominator (#674) is not in mixedCase
Parameter SOM.setDistributionCriteria(uint256,uint256)._minPeriod (#679) is not in mixedCase
Parameter SOM.setDistributionCriteria(uint256,uint256)._minDistribution (#679) is not in mixedCase
Function SOM.multiTransfer_fixed(address,address[],uint256) (#729-748) is not in mixedCase
Variable SOM.WBNB (#313) is not in mixedCase
Variable SOM.DEAD (#314) is not in mixedCase
Variable SOM.ZERO (#315) is not in mixedCase
Constant SOM._name (#317) is not in UPPER_CASE_WITH_UNDERSCORES
Constant SOM._symbol (#318) is not in UPPER_CASE_WITH_UNDERSCORES
Constant SOM._decimals (#319) is not in UPPER_CASE_WITH_UNDERSCORES
Variable SOM._totalSupply (#321) is not in mixedCase
Variable SOM._maxTxAmount (#323) is not in mixedCase
Variable SOM._maxWalletToken (#324) is not in mixedCase
Variable SOM._balances (#326) is not in mixedCase
Variable SOM._allowances (#327) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Reentrancy in DividendDistributor.distributeDividend(address) (#264-277):
External calls:
- address(shareholder).transfer(amount) (#271)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#273)
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#274)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#275)
Reentrancy in DividendDistributor.process(uint256) (#233-257):
External calls:
- distributeDividend(shareholders[currentIndex]) (#249)
- address(shareholder).transfer(amount) (#271)
State variables written after the call(s):
- currentIndex ++ (#254)
Reentrancy in DividendDistributor.setShare(address,uint256) (#212-226):
External calls:
- distributeDividend(shareholder) (#214)
- address(shareholder).transfer(amount) (#271)
State variables written after the call(s):
- addShareholder(shareholder) (#218)
- shareholderIndexes[shareholder] = shareholders.length (#299)
- removeShareholder(shareholder) (#220)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#305)
- addShareholder(shareholder) (#218)
- shareholders.push(shareholder) (#300)
- removeShareholder(shareholder) (#220)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#304)
- shareholders.pop() (#306)
- shares[shareholder].amount = amount (#224)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#225)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#223)
Apply the check-effects-interactions pattern.
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
SOM.slitherConstructorVariables() (#310-753) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#314)
SOM.slitherConstructorVariables() (#310-753) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#315)
SOM.slitherConstructorVariables() (#310-753) uses literals with too many digits:
- distributorGas = 500000 (#364)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
DividendDistributor.RWRD (#172) is never used in DividendDistributor (#160-308)
Remove unused state variables.
Additional information: link
DividendDistributor.dividendsPerShareAccuracyFactor (#184) should be constant
SOM.DEAD (#314) should be constant
SOM.ZERO (#315) should be constant
SOM._totalSupply (#321) 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) should be declared external:
- SOM.tradingStatus(bool) (#555-557)
cooldownEnabled(bool,uint8) should be declared external:
- SOM.cooldownEnabled(bool,uint8) (#560-563)
enable_blacklist(bool) should be declared external:
- SOM.enable_blacklist(bool) (#626-628)
manage_blacklist(address[],bool) should be declared external:
- SOM.manage_blacklist(address[],bool) (#630-634)
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