Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
KINGTAMA.swapBack() (#599-647) sends eth to arbitrary user
Dangerous calls:
- distributor.deposit{value: amountBNBReflection}() (#628)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#629)
- (tmpSuccess,None) = address(buybackFeeReceiver).call{gas: 30000,value: amountBNBbuyback}() (#630)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBdev}() (#631)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in KINGTAMA._transferFrom(address,address,uint256) (#473-520):
External calls:
- swapBack() (#496)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#610-616)
- distributor.deposit{value: amountBNBReflection}() (#628)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#629)
- (tmpSuccess,None) = address(buybackFeeReceiver).call{gas: 30000,value: amountBNBbuyback}() (#630)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBdev}() (#631)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#637-644)
External calls sending eth:
- swapBack() (#496)
- distributor.deposit{value: amountBNBReflection}() (#628)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#629)
- (tmpSuccess,None) = address(buybackFeeReceiver).call{gas: 30000,value: amountBNBbuyback}() (#630)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBdev}() (#631)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#637-644)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#499)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#502)
- amountReceived = takeFee(sender,amount,(recipient == pair)) (#501)
- _balances[address(this)] = _balances[address(this)].add(contractTokens) (#549)
- _balances[burnFeeReceiver] = _balances[burnFeeReceiver].add(burnTokens) (#550)
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.
KINGTAMA.swapBack().tmpSuccess (#629) is written in both
(tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#629)
(tmpSuccess,None) = address(buybackFeeReceiver).call{gas: 30000,value: amountBNBbuyback}() (#630)
KINGTAMA.swapBack().tmpSuccess (#629) is written in both
(tmpSuccess,None) = address(buybackFeeReceiver).call{gas: 30000,value: amountBNBbuyback}() (#630)
(tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBdev}() (#631)
KINGTAMA.swapBack().tmpSuccess (#629) is written in both
(tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBdev}() (#631)
tmpSuccess = false (#634)
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.
DividendDistributor.distributeDividend(address) (#283-294) has external calls inside a loop: RWRD.transfer(shareholder,amount) (#289)
KINGTAMA.multiTransfer(address,address[],uint256[]) (#735-759) has external calls inside a loop: distributor.setShare(addresses[i_scope_0],_balances[addresses[i_scope_0]]) (#751)
Favor pull over push strategy for external calls.
Additional information: link
KINGTAMA.takeFee(address,uint256,bool) (#537-558) performs a multiplication on the result of a division:
-feeAmount = amount.mul(totalFee).mul(multiplier).div(feeDenominator * 100) (#540)
-burnTokens = feeAmount.mul(burnFee).div(totalFee) (#546)
KINGTAMA.takeFee(address,uint256,bool) (#537-558) performs a multiplication on the result of a division:
-feeAmount = amount.div(100).mul(99) (#543)
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
KINGTAMA.manage_blacklist(address[],bool).i (#665) 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
KINGTAMA.swapBack() (#599-647) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#637-644)
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)
KINGTAMA.setMaxTxPercent_base1000(uint256) (#464-466) should emit an event for:
- _maxTxAmount = (_totalSupply * maxTXPercentage_base1000) / 1000 (#465)
KINGTAMA.setMaxTxAmount(uint256) (#468-470) should emit an event for:
- _maxTxAmount = amount (#469)
KINGTAMA.set_sell_multiplier(uint256) (#579-581) should emit an event for:
- sellMultiplier = Multiplier (#580)
KINGTAMA.tradingStatus(bool,uint256) (#584-590) should emit an event for:
- deadBlocks = _deadBlocks (#588)
KINGTAMA.launchStatus(uint256) (#592-594) should emit an event for:
- launchedAt = _launchblock (#593)
KINGTAMA.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256) (#683-693) should emit an event for:
- liquidityFee = _liquidityFee (#684)
- reflectionFee = _reflectionFee (#685)
- marketingFee = _marketingFee (#686)
- buybackFee = _buybackFee (#687)
- devFee = _devFee (#688)
- burnFee = _burnFee (#689)
- totalFee = _liquidityFee + _reflectionFee + _marketingFee + _buybackFee + _burnFee + _devFee (#690)
- feeDenominator = _feeDenominator (#691)
KINGTAMA.setSwapBackSettings(bool,uint256) (#703-706) should emit an event for:
- swapThreshold = _amount (#705)
KINGTAMA.setTargetLiquidity(uint256,uint256) (#708-711) should emit an event for:
- targetLiquidity = _target (#709)
- targetLiquidityDenominator = _denominator (#710)
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)
KINGTAMA.setFeeReceivers(address,address,address,address,address)._autoLiquidityReceiver (#695) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#696)
KINGTAMA.setFeeReceivers(address,address,address,address,address)._marketingFeeReceiver (#695) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#697)
KINGTAMA.setFeeReceivers(address,address,address,address,address)._buybackFeeReceiver (#695) lacks a zero-check on :
- buybackFeeReceiver = _buybackFeeReceiver (#698)
KINGTAMA.setFeeReceivers(address,address,address,address,address)._burnFeeReceiver (#695) lacks a zero-check on :
- burnFeeReceiver = _burnFeeReceiver (#699)
KINGTAMA.setFeeReceivers(address,address,address,address,address)._devFeeReceiver (#695) lacks a zero-check on :
- devFeeReceiver = _devFeeReceiver (#700)
Check that the address is not zero.
Additional information: link
Reentrancy in KINGTAMA.constructor() (#398-426):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#402)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = type()(uint256).max (#403)
- _balances[msg.sender] = _totalSupply (#424)
- autoLiquidityReceiver = msg.sender (#418)
- burnFeeReceiver = DEAD (#422)
- buybackFeeReceiver = 0x2d2D2520939c331049b273CfCBf53F8bDED76696 (#420)
- devFeeReceiver = msg.sender (#421)
- distributor = new DividendDistributor(address(router),msg.sender) (#405)
- isDividendExempt[pair] = true (#414)
- isDividendExempt[address(this)] = true (#415)
- isDividendExempt[DEAD] = true (#416)
- isFeeExempt[msg.sender] = true (#407)
- isTimelockExempt[msg.sender] = true (#410)
- isTimelockExempt[DEAD] = true (#411)
- isTimelockExempt[address(this)] = true (#412)
- isTxLimitExempt[msg.sender] = true (#408)
- marketingFeeReceiver = 0x49770EA7BeC0a3daEF67d1fFe095C1026F682a83 (#419)
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 KINGTAMA._transferFrom(address,address,uint256) (#473-520):
External calls:
- swapBack() (#496)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#610-616)
- distributor.deposit{value: amountBNBReflection}() (#628)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#629)
- (tmpSuccess,None) = address(buybackFeeReceiver).call{gas: 30000,value: amountBNBbuyback}() (#630)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBdev}() (#631)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#637-644)
- distributor.setShare(sender,_balances[sender]) (#506)
- distributor.setShare(recipient,_balances[recipient]) (#510)
- distributor.process(distributorGas) (#514)
External calls sending eth:
- swapBack() (#496)
- distributor.deposit{value: amountBNBReflection}() (#628)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#629)
- (tmpSuccess,None) = address(buybackFeeReceiver).call{gas: 30000,value: amountBNBbuyback}() (#630)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBdev}() (#631)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#637-644)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived) (#518)
Reentrancy in KINGTAMA._transferFrom(address,address,uint256) (#473-520):
External calls:
- swapBack() (#496)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#610-616)
- distributor.deposit{value: amountBNBReflection}() (#628)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#629)
- (tmpSuccess,None) = address(buybackFeeReceiver).call{gas: 30000,value: amountBNBbuyback}() (#630)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBdev}() (#631)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#637-644)
External calls sending eth:
- swapBack() (#496)
- distributor.deposit{value: amountBNBReflection}() (#628)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#629)
- (tmpSuccess,None) = address(buybackFeeReceiver).call{gas: 30000,value: amountBNBbuyback}() (#630)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBdev}() (#631)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#637-644)
Event emitted after the call(s):
- Transfer(sender,address(this),contractTokens) (#551)
- amountReceived = takeFee(sender,amount,(recipient == pair)) (#501)
- Transfer(sender,burnFeeReceiver,burnTokens) (#554)
- amountReceived = takeFee(sender,amount,(recipient == pair)) (#501)
Reentrancy in KINGTAMA.constructor() (#398-426):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#402)
Event emitted after the call(s):
- Transfer(address(0),msg.sender,_totalSupply) (#425)
Reentrancy in KINGTAMA.swapBack() (#599-647):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#610-616)
- distributor.deposit{value: amountBNBReflection}() (#628)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#629)
- (tmpSuccess,None) = address(buybackFeeReceiver).call{gas: 30000,value: amountBNBbuyback}() (#630)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBdev}() (#631)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#637-644)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#628)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#629)
- (tmpSuccess,None) = address(buybackFeeReceiver).call{gas: 30000,value: amountBNBbuyback}() (#630)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBdev}() (#631)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#637-644)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#645)
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
KINGTAMA._maxTxAmount (#347) is set pre-construction with a non-constant function or state variable:
- _totalSupply / 100
KINGTAMA._maxWalletToken (#348) is set pre-construction with a non-constant function or state variable:
- _totalSupply / 50
KINGTAMA.totalFee (#368) is set pre-construction with a non-constant function or state variable:
- marketingFee + reflectionFee + liquidityFee + buybackFee + burnFee + devFee
KINGTAMA.swapThreshold (#394) 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
solc-0.8.9 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 KINGTAMA.swapBack() (#599-647):
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#629)
- (tmpSuccess,None) = address(buybackFeeReceiver).call{gas: 30000,value: amountBNBbuyback}() (#630)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBdev}() (#631)
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 KINGTAMA.setMaxWalletPercent_base1000(uint256) (#460-462) is not in mixedCase
Parameter KINGTAMA.setMaxWalletPercent_base1000(uint256).maxWallPercent_base1000 (#460) is not in mixedCase
Function KINGTAMA.setMaxTxPercent_base1000(uint256) (#464-466) is not in mixedCase
Parameter KINGTAMA.setMaxTxPercent_base1000(uint256).maxTXPercentage_base1000 (#464) is not in mixedCase
Function KINGTAMA.set_sell_multiplier(uint256) (#579-581) is not in mixedCase
Parameter KINGTAMA.set_sell_multiplier(uint256).Multiplier (#579) is not in mixedCase
Parameter KINGTAMA.tradingStatus(bool,uint256)._status (#584) is not in mixedCase
Parameter KINGTAMA.tradingStatus(bool,uint256)._deadBlocks (#584) is not in mixedCase
Parameter KINGTAMA.launchStatus(uint256)._launchblock (#592) is not in mixedCase
Parameter KINGTAMA.dowefuckbots(bool)._status (#595) is not in mixedCase
Function KINGTAMA.enable_blacklist(bool) (#660-662) is not in mixedCase
Parameter KINGTAMA.enable_blacklist(bool)._status (#660) is not in mixedCase
Function KINGTAMA.manage_blacklist(address[],bool) (#664-668) is not in mixedCase
Parameter KINGTAMA.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._liquidityFee (#683) is not in mixedCase
Parameter KINGTAMA.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._reflectionFee (#683) is not in mixedCase
Parameter KINGTAMA.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._marketingFee (#683) is not in mixedCase
Parameter KINGTAMA.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._buybackFee (#683) is not in mixedCase
Parameter KINGTAMA.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._devFee (#683) is not in mixedCase
Parameter KINGTAMA.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._burnFee (#683) is not in mixedCase
Parameter KINGTAMA.setFees(uint256,uint256,uint256,uint256,uint256,uint256,uint256)._feeDenominator (#683) is not in mixedCase
Parameter KINGTAMA.setFeeReceivers(address,address,address,address,address)._autoLiquidityReceiver (#695) is not in mixedCase
Parameter KINGTAMA.setFeeReceivers(address,address,address,address,address)._marketingFeeReceiver (#695) is not in mixedCase
Parameter KINGTAMA.setFeeReceivers(address,address,address,address,address)._buybackFeeReceiver (#695) is not in mixedCase
Parameter KINGTAMA.setFeeReceivers(address,address,address,address,address)._burnFeeReceiver (#695) is not in mixedCase
Parameter KINGTAMA.setFeeReceivers(address,address,address,address,address)._devFeeReceiver (#695) is not in mixedCase
Parameter KINGTAMA.setSwapBackSettings(bool,uint256)._enabled (#703) is not in mixedCase
Parameter KINGTAMA.setSwapBackSettings(bool,uint256)._amount (#703) is not in mixedCase
Parameter KINGTAMA.setTargetLiquidity(uint256,uint256)._target (#708) is not in mixedCase
Parameter KINGTAMA.setTargetLiquidity(uint256,uint256)._denominator (#708) is not in mixedCase
Parameter KINGTAMA.setDistributionCriteria(uint256,uint256,bool)._minPeriod (#713) is not in mixedCase
Parameter KINGTAMA.setDistributionCriteria(uint256,uint256,bool)._minDistribution (#713) is not in mixedCase
Parameter KINGTAMA.setDistributionCriteria(uint256,uint256,bool)._enabled (#713) is not in mixedCase
Variable KINGTAMA.WBNB (#337) is not in mixedCase
Variable KINGTAMA.DEAD (#338) is not in mixedCase
Variable KINGTAMA.ZERO (#339) is not in mixedCase
Constant KINGTAMA._name (#341) is not in UPPER_CASE_WITH_UNDERSCORES
Constant KINGTAMA._symbol (#342) is not in UPPER_CASE_WITH_UNDERSCORES
Constant KINGTAMA._decimals (#343) is not in UPPER_CASE_WITH_UNDERSCORES
Variable KINGTAMA._totalSupply (#345) is not in mixedCase
Variable KINGTAMA._maxTxAmount (#347) is not in mixedCase
Variable KINGTAMA._maxWalletToken (#348) is not in mixedCase
Variable KINGTAMA._balances (#350) is not in mixedCase
Variable KINGTAMA._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
KINGTAMA.slitherConstructorVariables() (#334-765) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#338)
KINGTAMA.slitherConstructorVariables() (#334-765) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#339)
KINGTAMA.slitherConstructorVariables() (#334-765) uses literals with too many digits:
- distributorGas = 500000 (#391)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
DividendDistributor.dividendsPerShareAccuracyFactor (#185) should be constant
KINGTAMA.DEAD (#338) should be constant
KINGTAMA.ZERO (#339) should be constant
KINGTAMA._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:
- KINGTAMA.tradingStatus(bool,uint256) (#584-590)
launchStatus(uint256) should be declared external:
- KINGTAMA.launchStatus(uint256) (#592-594)
dowefuckbots(bool) should be declared external:
- KINGTAMA.dowefuckbots(bool) (#595-597)
enable_blacklist(bool) should be declared external:
- KINGTAMA.enable_blacklist(bool) (#660-662)
manage_blacklist(address[],bool) should be declared external:
- KINGTAMA.manage_blacklist(address[],bool) (#664-668)
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