Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
EthkingV2.swapBack() (#564-603) sends eth to arbitrary user
Dangerous calls:
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#589)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in EthkingV2._transferFrom(address,address,uint256) (#494-520):
External calls:
- swapBack() (#505)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#575-581)
- distributor.deposit{value: amountBNBReflection}() (#588)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#589)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#593-600)
- triggerAutoBuyback() (#506)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#646-651)
External calls sending eth:
- swapBack() (#505)
- distributor.deposit{value: amountBNBReflection}() (#588)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#589)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#593-600)
- triggerAutoBuyback() (#506)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#646-651)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#508)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#511)
- amountReceived = takeFee(sender,recipient,amount) (#510)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#551)
- triggerAutoBuyback() (#506)
- inSwap = true (#434)
- inSwap = false (#434)
Apply the check-effects-interactions pattern.
Additional information: link
DividendDistributor.distributeDividend(address) (#321-332) ignores return value by rewardsToken.transfer(shareholder,amount) (#327)
DividendDistributor.rescueDividends(address) (#338-340) ignores return value by rewardsToken.transfer(to,rewardsToken.balanceOf(address(this))) (#339)
DividendDistributor.rescueToken(address,address) (#346-348) ignores return value by IBEP20(token).transfer(to,IBEP20(token).balanceOf(address(this))) (#347)
EthkingV2.rescueToken(address,address) (#742-744) ignores return value by IBEP20(token).transfer(to,IBEP20(token).balanceOf(address(this))) (#743)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.
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.
Low level call in EthkingV2.swapBack() (#564-603):
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#589)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Reentrancy in DividendDistributor.distributeDividend(address) (#321-332):
External calls:
- rewardsToken.transfer(shareholder,amount) (#327)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#329)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#330)
Reentrancy in DividendDistributor.process(uint256) (#290-314):
External calls:
- distributeDividend(shareholders[currentIndex]) (#306)
- rewardsToken.transfer(shareholder,amount) (#327)
State variables written after the call(s):
- currentIndex ++ (#311)
Reentrancy in DividendDistributor.setShare(address,uint256) (#254-268):
External calls:
- distributeDividend(shareholder) (#256)
- rewardsToken.transfer(shareholder,amount) (#327)
State variables written after the call(s):
- shares[shareholder].amount = amount (#266)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#267)
Apply the check-effects-interactions pattern.
Additional information: link
EthkingV2.swapBack() (#564-603) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#593-600)
Ensure that all the return values of the function calls are used.
Additional information: link
DividendDistributor.setDistributionCriteria(uint256,uint256) (#249-252) should emit an event for:
- minPeriod = _minPeriod (#250)
- minDistribution = _minDistribution (#251)
EthkingV2.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool) (#654-662) should emit an event for:
- autoBuybackCap = _cap (#656)
- autoBuybackAmount = _amount (#658)
EthkingV2.setBuybackMultiplierSettings(uint256,uint256,uint256) (#664-668) should emit an event for:
- buybackMultiplierNumerator = numerator (#665)
- buybackMultiplierDenominator = denominator (#666)
- buybackMultiplierLength = length (#667)
EthkingV2.setTxLimit(uint256) (#670-673) should emit an event for:
- _maxTxAmount = amount (#672)
EthkingV2.setFees(uint256,uint256,uint256,uint256,uint256) (#693-700) should emit an event for:
- liquidityFee = _liquidityFee (#694)
- reflectionFee = _reflectionFee (#696)
- marketingFee = _marketingFee (#697)
- totalFee = _liquidityFee.add(_buybackFee).add(_reflectionFee).add(_marketingFee) (#698)
- feeDenominator = _feeDenominator (#699)
EthkingV2.setSwapBackSettings(bool,uint256) (#707-710) should emit an event for:
- swapThreshold = _amount (#709)
EthkingV2.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
Auth.transferOwnership(address).adr (#131) lacks a zero-check on :
- owner = adr (#132)
EthkingV2.setFeeReceivers(address,address)._autoLiquidityReceiver (#702) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#703)
EthkingV2.setFeeReceivers(address,address)._marketingFeeReceiver (#702) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#704)
Check that the address is not zero.
Additional information: link
DividendDistributor.distributeDividend(address) (#321-332) has external calls inside a loop: rewardsToken.transfer(shareholder,amount) (#327)
Favor pull over push strategy for external calls.
Additional information: link
Reentrancy in EthkingV2._transferFrom(address,address,uint256) (#494-520):
External calls:
- swapBack() (#505)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#575-581)
- distributor.deposit{value: amountBNBReflection}() (#588)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#589)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#593-600)
- triggerAutoBuyback() (#506)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#646-651)
External calls sending eth:
- swapBack() (#505)
- distributor.deposit{value: amountBNBReflection}() (#588)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#589)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#593-600)
- triggerAutoBuyback() (#506)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#646-651)
State variables written after the call(s):
- triggerAutoBuyback() (#506)
- buybackMultiplierTriggeredAt = block.timestamp (#633)
Reentrancy in EthkingV2.constructor() (#436-455):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#438)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = type()(uint256).max (#439)
- _balances[_presaler] = _totalSupply (#453)
- autoLiquidityReceiver = msg.sender (#450)
- distributor = new DividendDistributor(address(router)) (#441)
- isDividendExempt[pair] = true (#446)
- isDividendExempt[address(this)] = true (#447)
- isDividendExempt[DEAD] = true (#448)
- isFeeExempt[_presaler] = true (#444)
- isTxLimitExempt[_presaler] = true (#445)
- marketingFeeReceiver = msg.sender (#451)
Reentrancy in DividendDistributor.deposit() (#270-288):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#277-282)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#287)
- totalDividends = totalDividends.add(amount) (#286)
Reentrancy in DividendDistributor.distributeDividend(address) (#321-332):
External calls:
- rewardsToken.transfer(shareholder,amount) (#327)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#328)
Reentrancy in DividendDistributor.setShare(address,uint256) (#254-268):
External calls:
- distributeDividend(shareholder) (#256)
- rewardsToken.transfer(shareholder,amount) (#327)
State variables written after the call(s):
- addShareholder(shareholder) (#260)
- shareholderIndexes[shareholder] = shareholders.length (#366)
- removeShareholder(shareholder) (#262)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#372)
- addShareholder(shareholder) (#260)
- shareholders.push(shareholder) (#367)
- removeShareholder(shareholder) (#262)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#371)
- shareholders.pop() (#373)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#265)
Reentrancy in EthkingV2.triggerAutoBuyback() (#630-639):
External calls:
- buyTokens(autoBuybackAmount,DEAD) (#631)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#646-651)
State variables written after the call(s):
- autoBuybackAccumulator = autoBuybackAccumulator.add(autoBuybackAmount) (#637)
- autoBuybackBlockLast = block.number (#636)
- autoBuybackEnabled = false (#638)
- buybackMultiplierTriggeredAt = block.timestamp (#633)
Reentrancy in EthkingV2.triggerManualBuyback(uint256,bool) (#613-619):
External calls:
- buyTokens(amount,DEAD) (#614)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#646-651)
State variables written after the call(s):
- buybackMultiplierTriggeredAt = block.timestamp (#616)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in EthkingV2._transferFrom(address,address,uint256) (#494-520):
External calls:
- swapBack() (#505)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#575-581)
- distributor.deposit{value: amountBNBReflection}() (#588)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#589)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#593-600)
- triggerAutoBuyback() (#506)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#646-651)
External calls sending eth:
- swapBack() (#505)
- distributor.deposit{value: amountBNBReflection}() (#588)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#589)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#593-600)
- triggerAutoBuyback() (#506)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#646-651)
Event emitted after the call(s):
- BuybackMultiplierActive(buybackMultiplierLength) (#634)
- triggerAutoBuyback() (#506)
- Transfer(sender,address(this),feeAmount) (#552)
- amountReceived = takeFee(sender,recipient,amount) (#510)
Reentrancy in EthkingV2._transferFrom(address,address,uint256) (#494-520):
External calls:
- swapBack() (#505)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#575-581)
- distributor.deposit{value: amountBNBReflection}() (#588)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#589)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#593-600)
- triggerAutoBuyback() (#506)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#646-651)
- distributor.setShare(sender,_balances[sender]) (#513)
- distributor.setShare(recipient,_balances[recipient]) (#514)
- distributor.process(distributorGas) (#516)
External calls sending eth:
- swapBack() (#505)
- distributor.deposit{value: amountBNBReflection}() (#588)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#589)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#593-600)
- triggerAutoBuyback() (#506)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#646-651)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived) (#518)
Reentrancy in EthkingV2.constructor() (#436-455):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#438)
Event emitted after the call(s):
- Transfer(address(0),_presaler,_totalSupply) (#454)
Reentrancy in EthkingV2.swapBack() (#564-603):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#575-581)
- distributor.deposit{value: amountBNBReflection}() (#588)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#589)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#593-600)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#588)
- (success) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#589)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#593-600)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#601)
Reentrancy in EthkingV2.triggerAutoBuyback() (#630-639):
External calls:
- buyTokens(autoBuybackAmount,DEAD) (#631)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#646-651)
Event emitted after the call(s):
- BuybackMultiplierActive(buybackMultiplierLength) (#634)
Reentrancy in EthkingV2.triggerManualBuyback(uint256,bool) (#613-619):
External calls:
- buyTokens(amount,DEAD) (#614)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#646-651)
Event emitted after the call(s):
- BuybackMultiplierActive(buybackMultiplierLength) (#617)
Apply the check-effects-interactions pattern.
Additional information: link
DividendDistributor.shouldDistribute(address) (#316-319) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#317-318)
EthkingV2._transferFrom(address,address,uint256) (#494-520) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)((heldTokens + amount) <= _maxWalletToken,Total Holding is currently limited, you can not buy that much.) (#500)
EthkingV2.getTotalFee(bool) (#537-540) uses timestamp for comparisons
Dangerous comparisons:
- selling && buybackMultiplierTriggeredAt.add(buybackMultiplierLength) > block.timestamp (#538)
EthkingV2.shouldSwapBack() (#557-562) uses timestamp for comparisons
Dangerous comparisons:
- msg.sender != pair && ! inSwap && swapEnabled && _balances[address(this)] >= swapThreshold (#558-561)
EthkingV2.isOverLiquified(uint256,uint256) (#763-765) uses timestamp for comparisons
Dangerous comparisons:
- getLiquidityBacking(accuracy) > target (#764)
Avoid relying on block.timestamp.
Additional information: link
DividendDistributor.process(uint256) (#290-314) has costly operations inside a loop:
- currentIndex = 0 (#302)
DividendDistributor.distributeDividend(address) (#321-332) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#326)
DividendDistributor.process(uint256) (#290-314) has costly operations inside a loop:
- currentIndex ++ (#311)
Use a local variable to hold the loop computation result.
Additional information: link
EthkingV2._maxTxAmount (#389) is set pre-construction with a non-constant function or state variable:
- _totalSupply / 100
EthkingV2._maxWalletToken (#390) is set pre-construction with a non-constant function or state variable:
- (_totalSupply * 99) / 100
EthkingV2.swapThreshold (#432) is set pre-construction with a non-constant function or state variable:
- _totalSupply / 100
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
Function IDEXRouter.WETH() (#146) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minPeriod (#249) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minDistribution (#249) is not in mixedCase
Parameter DividendDistributor.setRewardsToken(address)._rewardsToken (#342) is not in mixedCase
Variable DividendDistributor._token (#202) is not in mixedCase
Variable DividendDistributor.WBNB (#211) is not in mixedCase
Parameter EthkingV2.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool)._enabled (#654) is not in mixedCase
Parameter EthkingV2.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool)._cap (#654) is not in mixedCase
Parameter EthkingV2.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool)._amount (#654) is not in mixedCase
Parameter EthkingV2.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool)._period (#654) is not in mixedCase
Parameter EthkingV2.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool)._autoBuybackMultiplier (#654) is not in mixedCase
Parameter EthkingV2.setFees(uint256,uint256,uint256,uint256,uint256)._liquidityFee (#693) is not in mixedCase
Parameter EthkingV2.setFees(uint256,uint256,uint256,uint256,uint256)._buybackFee (#693) is not in mixedCase
Parameter EthkingV2.setFees(uint256,uint256,uint256,uint256,uint256)._reflectionFee (#693) is not in mixedCase
Parameter EthkingV2.setFees(uint256,uint256,uint256,uint256,uint256)._marketingFee (#693) is not in mixedCase
Parameter EthkingV2.setFees(uint256,uint256,uint256,uint256,uint256)._feeDenominator (#693) is not in mixedCase
Parameter EthkingV2.setFeeReceivers(address,address)._autoLiquidityReceiver (#702) is not in mixedCase
Parameter EthkingV2.setFeeReceivers(address,address)._marketingFeeReceiver (#702) is not in mixedCase
Parameter EthkingV2.setSwapBackSettings(bool,uint256)._enabled (#707) is not in mixedCase
Parameter EthkingV2.setSwapBackSettings(bool,uint256)._amount (#707) is not in mixedCase
Parameter EthkingV2.setTargetLiquidity(uint256,uint256)._target (#712) is not in mixedCase
Parameter EthkingV2.setTargetLiquidity(uint256,uint256)._denominator (#712) is not in mixedCase
Parameter EthkingV2.setDistributionCriteria(uint256,uint256)._minPeriod (#722) is not in mixedCase
Parameter EthkingV2.setDistributionCriteria(uint256,uint256)._minDistribution (#722) is not in mixedCase
Parameter EthkingV2.setRewardsToken(address)._rewardsToken (#730) is not in mixedCase
Variable EthkingV2.WBNB (#380) is not in mixedCase
Variable EthkingV2.DEAD (#381) is not in mixedCase
Variable EthkingV2.ZERO (#382) is not in mixedCase
Constant EthkingV2._name (#384) is not in UPPER_CASE_WITH_UNDERSCORES
Constant EthkingV2._symbol (#385) is not in UPPER_CASE_WITH_UNDERSCORES
Constant EthkingV2._decimals (#386) is not in UPPER_CASE_WITH_UNDERSCORES
Variable EthkingV2._totalSupply (#388) is not in mixedCase
Variable EthkingV2._maxTxAmount (#389) is not in mixedCase
Variable EthkingV2._maxWalletToken (#390) is not in mixedCase
Variable EthkingV2._balances (#392) is not in mixedCase
Variable EthkingV2._allowances (#393) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#151) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#152)
Prevent variables from having similar names.
Additional information: link
EthkingV2.slitherConstructorVariables() (#377-770) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#381)
EthkingV2.slitherConstructorVariables() (#377-770) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#382)
EthkingV2.slitherConstructorVariables() (#377-770) uses literals with too many digits:
- _totalSupply = 1000000000000 * (10 ** _decimals) (#388)
EthkingV2.slitherConstructorVariables() (#377-770) uses literals with too many digits:
- distributorGas = 500000 (#429)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
DividendDistributor.WBNB (#211) should be constant
DividendDistributor.dividendsPerShareAccuracyFactor (#224) should be constant
EthkingV2.DEAD (#381) should be constant
EthkingV2.WBNB (#380) should be constant
EthkingV2.ZERO (#382) should be constant
EthkingV2._totalSupply (#388) 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) (#103-105)
unauthorize(address) should be declared external:
- Auth.unauthorize(address) (#110-112)
transferOwnership(address) should be declared external:
- Auth.transferOwnership(address) (#131-135)
getUnpaidEarnings(address) should be declared external:
- EthkingV2.getUnpaidEarnings(address) (#746-748)
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