Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
CatKingINU.swapAndLiquify(uint256) (#2127-2162) sends eth to arbitrary user
Dangerous calls:
- marketingWallet.transfer(marketingAmount) (#2152)
CatKingINU.addLiquidity(uint256,uint256) (#2192-2204) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#2195-2202)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in CatKingINU._transfer(address,address,uint256) (#2051-2125):
External calls:
- swapAndLiquify(contractTokenBalance) (#2094)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#2195-2202)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,_to,block.timestamp) (#2177-2183)
- (success) = address(dividendTracker).call{value: dividends}() (#2155)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#2094)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#2195-2202)
- marketingWallet.transfer(marketingAmount) (#2152)
- (success) = address(dividendTracker).call{value: dividends}() (#2155)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (#2107)
- _balances[sender] = senderBalance - amount (#1024)
- _balances[recipient] += amount (#1026)
- super._transfer(from,to,amount) (#2110)
- _balances[sender] = senderBalance - amount (#1024)
- _balances[recipient] += amount (#1026)
Reentrancy in DividendPayingToken._withdrawDividendOfUser(address) (#1413-1429):
External calls:
- (success) = user.call{gas: 3000,value: _withdrawableDividend}() (#1418)
State variables written after the call(s):
- withdrawnDividends[user] = withdrawnDividends[user].sub(_withdrawableDividend) (#1421)
Apply the check-effects-interactions pattern.
Additional information: link
SafeToken.withdraw(address,uint256) (#1731-1734) ignores return value by IERC20(_token).transfer(safeManager,_amount) (#1733)
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.
Not a direct threat, but may indicate unreliable intentions of developer. Widespread names (e.g. Elon, King, Moon, Doge) are common among meme-tokens and scams. The allow to gain free hype and attract unexperienced investors.
CatKingINU.swapAndLiquify(uint256) (#2127-2162) performs a multiplication on the result of a division:
-tokensToAddLiquidityWith = contractTokenBalance.div(totalFees.mul(2)).mul(liquidityFee) (#2130)
CatKingINU.swapAndLiquify(uint256) (#2127-2162) performs a multiplication on the result of a division:
-marketingAmount = deltaBalance.sub(bnbToAddLiquidityWith).div(totalFees.sub(liquidityFee)).mul(marketingFee) (#2151)
Consider ordering multiplication before division.
Additional information: link
CatKingINU._transfer(address,address,uint256).iterations (#2118) is a local variable never initialized
CatKingINU._transfer(address,address,uint256).lastProcessedIndex (#2118) is a local variable never initialized
CatKingINU._transfer(address,address,uint256).claims (#2118) 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
CatKingINU.claim() (#2029-2031) ignores return value by dividendTracker.processAccount(address(msg.sender),false) (#2030)
CatKingINU._transfer(address,address,uint256) (#2051-2125) ignores return value by dividendTracker.process(gas) (#2118-2123)
CatKingINU.addLiquidity(uint256,uint256) (#2192-2204) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#2195-2202)
Ensure that all the return values of the function calls are used.
Additional information: link
DividendPayingToken.constructor(string,string)._name (#1370) shadows:
- ERC20._name (#832) (state variable)
DividendPayingToken.constructor(string,string)._symbol (#1370) shadows:
- ERC20._symbol (#833) (state variable)
Rename the local variables that shadow another component.
Additional information: link
CatKingINU.setFee(uint256,uint256,uint256) (#1837-1843) should emit an event for:
- liquidityFee = _liquidityFee (#1839)
- marketingFee = _marketingFee (#1840)
- totalFees = BNBRewardsFee.add(liquidityFee).add(marketingFee) (#1842)
CatKingINU.setExtraFeeOnSell(uint256) (#1845-1847) should emit an event for:
- extraFeeOnSell = _extraFeeOnSell (#1846)
CatKingINU.setMaxSelltx(uint256) (#1849-1851) should emit an event for:
- maxSellTransactionAmount = _maxSellTxAmount * (10 ** 18) (#1850)
CatKingINU.setMaxWalletToken(uint256) (#1857-1859) should emit an event for:
- maxWalletToken = _maxToken * (10 ** 18) (#1858)
CatKingINU.setSWapToensAtAmount(uint256) (#1948-1950) should emit an event for:
- swapTokensAtAmount = _newAmount * (10 ** 18) (#1949)
Emit an event for critical parameter changes.
Additional information: link
SafeToken.setSafeManager(address)._safeManager (#1727) lacks a zero-check on :
- safeManager = _safeManager (#1728)
CatKingINU.setMarketingWallet(address)._newMarketingWallet (#1853) lacks a zero-check on :
- marketingWallet = _newMarketingWallet (#1854)
Check that the address is not zero.
Additional information: link
DividendPayingToken._withdrawDividendOfUser(address) (#1413-1429) has external calls inside a loop: (success) = user.call{gas: 3000,value: _withdrawableDividend}() (#1418)
Favor pull over push strategy for external calls.
Additional information: link
Variable 'CatKingINU._transfer(address,address,uint256).iterations (#2118)' in CatKingINU._transfer(address,address,uint256) (#2051-2125) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#2119)
Variable 'CatKingINU._transfer(address,address,uint256).lastProcessedIndex (#2118)' in CatKingINU._transfer(address,address,uint256) (#2051-2125) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#2119)
Variable 'CatKingINU._transfer(address,address,uint256).claims (#2118)' in CatKingINU._transfer(address,address,uint256) (#2051-2125) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#2119)
Move all variable declarations prior to any usage of the variable, and ensure that reaching a variable declaration does not depend on some conditional if it is used unconditionally.
Additional information: link
Reentrancy in CatKingINU.constructor() (#1861-1905):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1874-1875)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (#1878)
- uniswapV2Router = _uniswapV2Router (#1877)
Reentrancy in CatKingINU.constructor() (#1861-1905):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1874-1875)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1880)
- dividendTracker.excludeFromDividends(pair) (#1957)
- dividendTracker.excludeFromDividends(address(dividendTracker)) (#1883)
- dividendTracker.excludeFromDividends(address(this)) (#1884)
- dividendTracker.excludeFromDividends(owner()) (#1885)
- dividendTracker.excludeFromDividends(address(_uniswapV2Router)) (#1886)
- dividendTracker.excludeFromDividends(0x000000000000000000000000000000000000dEaD) (#1887)
State variables written after the call(s):
- _mint(owner(),10000000000000 * (10 ** 18)) (#1904)
- _balances[account] += amount (#1048)
- excludeFromFees(owner(),true) (#1890)
- _isExcludedFromFees[account] = excluded (#1919)
- excludeFromFees(marketingWallet,true) (#1891)
- _isExcludedFromFees[account] = excluded (#1919)
- excludeFromFees(address(this),true) (#1892)
- _isExcludedFromFees[account] = excluded (#1919)
- _isExcludedFromMaxTx[owner()] = true (#1895)
- _isExcludedFromMaxTx[address(this)] = true (#1896)
- _isExcludedFromMaxTx[marketingWallet] = true (#1897)
- _mint(owner(),10000000000000 * (10 ** 18)) (#1904)
- _totalSupply += amount (#1047)
Reentrancy in TokenDividendTracker.processAccount(address,bool) (#1707-1717):
External calls:
- amount = _withdrawDividendOfUser(account) (#1708)
- (success) = user.call{gas: 3000,value: _withdrawableDividend}() (#1418)
State variables written after the call(s):
- lastClaimTimes[account] = block.timestamp (#1711)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in CatKingINU._setAutomatedMarketMakerPair(address,bool) (#1952-1961):
External calls:
- dividendTracker.excludeFromDividends(pair) (#1957)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (#1960)
Reentrancy in CatKingINU._transfer(address,address,uint256) (#2051-2125):
External calls:
- swapAndLiquify(contractTokenBalance) (#2094)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#2195-2202)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,_to,block.timestamp) (#2177-2183)
- (success) = address(dividendTracker).call{value: dividends}() (#2155)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#2094)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#2195-2202)
- marketingWallet.transfer(marketingAmount) (#2152)
- (success) = address(dividendTracker).call{value: dividends}() (#2155)
Event emitted after the call(s):
- Transfer(sender,recipient,amount) (#1028)
- super._transfer(from,to,amount) (#2110)
- Transfer(sender,recipient,amount) (#1028)
- super._transfer(from,address(this),fees) (#2107)
Reentrancy in CatKingINU._transfer(address,address,uint256) (#2051-2125):
External calls:
- swapAndLiquify(contractTokenBalance) (#2094)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#2195-2202)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,_to,block.timestamp) (#2177-2183)
- (success) = address(dividendTracker).call{value: dividends}() (#2155)
- dividendTracker.setBalance(address(from),balanceOf(from)) (#2112)
- dividendTracker.setBalance(address(to),balanceOf(to)) (#2113)
- dividendTracker.process(gas) (#2118-2123)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#2094)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#2195-2202)
- marketingWallet.transfer(marketingAmount) (#2152)
- (success) = address(dividendTracker).call{value: dividends}() (#2155)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#2119)
Reentrancy in CatKingINU.constructor() (#1861-1905):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1874-1875)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1880)
- dividendTracker.excludeFromDividends(pair) (#1957)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (#1960)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1880)
Reentrancy in CatKingINU.constructor() (#1861-1905):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1874-1875)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1880)
- dividendTracker.excludeFromDividends(pair) (#1957)
- dividendTracker.excludeFromDividends(address(dividendTracker)) (#1883)
- dividendTracker.excludeFromDividends(address(this)) (#1884)
- dividendTracker.excludeFromDividends(owner()) (#1885)
- dividendTracker.excludeFromDividends(address(_uniswapV2Router)) (#1886)
- dividendTracker.excludeFromDividends(0x000000000000000000000000000000000000dEaD) (#1887)
Event emitted after the call(s):
- ExcludeFromFees(account,excluded) (#1921)
- excludeFromFees(address(this),true) (#1892)
- ExcludeFromFees(account,excluded) (#1921)
- excludeFromFees(marketingWallet,true) (#1891)
- ExcludeFromFees(account,excluded) (#1921)
- excludeFromFees(owner(),true) (#1890)
- Transfer(address(0),account,amount) (#1049)
- _mint(owner(),10000000000000 * (10 ** 18)) (#1904)
Reentrancy in TokenDividendTracker.processAccount(address,bool) (#1707-1717):
External calls:
- amount = _withdrawDividendOfUser(account) (#1708)
- (success) = user.call{gas: 3000,value: _withdrawableDividend}() (#1418)
Event emitted after the call(s):
- Claim(account,amount,automatic) (#1712)
Reentrancy in CatKingINU.processDividendTracker(uint256) (#2024-2027):
External calls:
- (iterations,claims,lastProcessedIndex) = dividendTracker.process(gas) (#2025)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,false,gas,tx.origin) (#2026)
Reentrancy in CatKingINU.swapAndLiquify(uint256) (#2127-2162):
External calls:
- swapTokensForBnb(toSwap,address(this)) (#2140)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,_to,block.timestamp) (#2177-2183)
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#2149)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#2195-2202)
- (success) = address(dividendTracker).call{value: dividends}() (#2155)
External calls sending eth:
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#2149)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#2195-2202)
- marketingWallet.transfer(marketingAmount) (#2152)
- (success) = address(dividendTracker).call{value: dividends}() (#2155)
Event emitted after the call(s):
- SendDividends(toSwap - tokensToAddLiquidityWith,dividends) (#2158)
- SwapAndLiquify(tokensToAddLiquidityWith,deltaBalance) (#2161)
Apply the check-effects-interactions pattern.
Additional information: link
TokenDividendTracker.getAccount(address) (#1571-1614) uses timestamp for comparisons
Dangerous comparisons:
- nextClaimTime > block.timestamp (#1611-1613)
TokenDividendTracker.canAutoClaim(uint256) (#1635-1641) uses timestamp for comparisons
Dangerous comparisons:
- lastClaimTime > block.timestamp (#1636)
- block.timestamp.sub(lastClaimTime) >= claimWait (#1640)
Avoid relying on block.timestamp.
Additional information: link
CatKingINU.swapAndSendBNBToMarketing(uint256) (#2187-2189) is never used and should be removed
Context._msgData() (#696-698) is never used and should be removed
DividendPayingToken._transfer(address,address,uint256) (#1469-1475) is never used and should be removed
SafeCast.toInt128(int256) (#590-593) is never used and should be removed
SafeCast.toInt16(int256) (#644-647) is never used and should be removed
SafeCast.toInt32(int256) (#626-629) is never used and should be removed
SafeCast.toInt64(int256) (#608-611) is never used and should be removed
SafeCast.toInt8(int256) (#662-665) is never used and should be removed
SafeCast.toUint128(uint256) (#485-488) is never used and should be removed
SafeCast.toUint16(uint256) (#545-548) is never used and should be removed
SafeCast.toUint224(uint256) (#470-473) is never used and should be removed
SafeCast.toUint32(uint256) (#530-533) is never used and should be removed
SafeCast.toUint64(uint256) (#515-518) is never used and should be removed
SafeCast.toUint8(uint256) (#560-563) is never used and should be removed
SafeCast.toUint96(uint256) (#500-503) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#406-415) is never used and should be removed
SafeMath.mod(uint256,uint256) (#366-368) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#432-441) is never used and should be removed
SafeMath.sub(uint256,uint256,string) (#383-392) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (#237-243) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (#279-284) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (#291-296) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (#262-272) is never used and should be removed
SafeMath.trySub(uint256,uint256) (#250-255) is never used and should be removed
SignedSafeMath.div(int256,int256) (#188-190) is never used and should be removed
SignedSafeMath.mul(int256,int256) (#174-176) is never used and should be removed
Remove unused functions.
Additional information: link
Low level call in DividendPayingToken._withdrawDividendOfUser(address) (#1413-1429):
- (success) = user.call{gas: 3000,value: _withdrawableDividend}() (#1418)
Low level call in CatKingINU.swapAndLiquify(uint256) (#2127-2162):
- (success) = address(dividendTracker).call{value: dividends}() (#2155)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Function IUniswapV2Router01.WETH() (#8) is not in mixedCase
Parameter DividendPayingToken.dividendOf(address)._owner (#1435) is not in mixedCase
Parameter DividendPayingToken.withdrawableDividendOf(address)._owner (#1442) is not in mixedCase
Parameter DividendPayingToken.withdrawnDividendOf(address)._owner (#1449) is not in mixedCase
Parameter DividendPayingToken.accumulativeDividendOf(address)._owner (#1459) is not in mixedCase
Constant DividendPayingToken.magnitude (#1350) is not in UPPER_CASE_WITH_UNDERSCORES
Parameter TokenDividendTracker.getAccount(address)._account (#1571) is not in mixedCase
Parameter SafeToken.setSafeManager(address)._safeManager (#1727) is not in mixedCase
Parameter SafeToken.withdraw(address,uint256)._token (#1731) is not in mixedCase
Parameter SafeToken.withdraw(address,uint256)._amount (#1731) is not in mixedCase
Parameter SafeToken.withdrawBNB(uint256)._amount (#1736) is not in mixedCase
Parameter LockToken.includeToWhiteList(address[])._users (#1759) is not in mixedCase
Parameter CatKingINU.setFee(uint256,uint256,uint256)._bnbRewardFee (#1837) is not in mixedCase
Parameter CatKingINU.setFee(uint256,uint256,uint256)._liquidityFee (#1837) is not in mixedCase
Parameter CatKingINU.setFee(uint256,uint256,uint256)._marketingFee (#1837) is not in mixedCase
Parameter CatKingINU.setExtraFeeOnSell(uint256)._extraFeeOnSell (#1845) is not in mixedCase
Parameter CatKingINU.setMaxSelltx(uint256)._maxSellTxAmount (#1849) is not in mixedCase
Parameter CatKingINU.setMarketingWallet(address)._newMarketingWallet (#1853) is not in mixedCase
Parameter CatKingINU.setMaxWalletToken(uint256)._maxToken (#1857) is not in mixedCase
Parameter CatKingINU.setExcludeFromMaxTx(address,bool)._address (#1924) is not in mixedCase
Parameter CatKingINU.setExcludeFromAll(address)._address (#1928) is not in mixedCase
Parameter CatKingINU.setSWapToensAtAmount(uint256)._newAmount (#1948) is not in mixedCase
Parameter CatKingINU.setSwapAndLiquifyEnabled(bool)._enabled (#2046) is not in mixedCase
Parameter CatKingINU.swapTokensForBnb(uint256,address)._to (#2164) is not in mixedCase
Variable CatKingINU.BNBRewardsFee (#1782) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Reentrancy in CatKingINU._transfer(address,address,uint256) (#2051-2125):
External calls:
- swapAndLiquify(contractTokenBalance) (#2094)
- marketingWallet.transfer(marketingAmount) (#2152)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#2094)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#2195-2202)
- marketingWallet.transfer(marketingAmount) (#2152)
- (success) = address(dividendTracker).call{value: dividends}() (#2155)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (#2107)
- _balances[sender] = senderBalance - amount (#1024)
- _balances[recipient] += amount (#1026)
- super._transfer(from,to,amount) (#2110)
- _balances[sender] = senderBalance - amount (#1024)
- _balances[recipient] += amount (#1026)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#2119)
- Transfer(sender,recipient,amount) (#1028)
- super._transfer(from,to,amount) (#2110)
- Transfer(sender,recipient,amount) (#1028)
- super._transfer(from,address(this),fees) (#2107)
Reentrancy in CatKingINU.swapAndLiquify(uint256) (#2127-2162):
External calls:
- marketingWallet.transfer(marketingAmount) (#2152)
External calls sending eth:
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#2149)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#2195-2202)
- marketingWallet.transfer(marketingAmount) (#2152)
- (success) = address(dividendTracker).call{value: dividends}() (#2155)
Event emitted after the call(s):
- SendDividends(toSwap - tokensToAddLiquidityWith,dividends) (#2158)
- SwapAndLiquify(tokensToAddLiquidityWith,deltaBalance) (#2161)
Apply the check-effects-interactions pattern.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#13) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#14)
Variable DividendPayingToken._withdrawDividendOfUser(address)._withdrawableDividend (#1414) is too similar to TokenDividendTracker.getAccount(address).withdrawableDividends (#1576)
Variable CatKingINU.BNBRewardsFee (#1782) is too similar to CatKingINU.setFee(uint256,uint256,uint256)._bnbRewardFee (#1837)
Prevent variables from having similar names.
Additional information: link
TokenDividendTracker.getAccountAtIndex(uint256) (#1616-1633) uses literals with too many digits:
- (0x0000000000000000000000000000000000000000,- 1,- 1,0,0,0,0,0) (#1627)
CatKingINU.constructor() (#1861-1905) uses literals with too many digits:
- dividendTracker.excludeFromDividends(0x000000000000000000000000000000000000dEaD) (#1887)
CatKingINU.constructor() (#1861-1905) uses literals with too many digits:
- _mint(owner(),10000000000000 * (10 ** 18)) (#1904)
CatKingINU.updateGasForProcessing(uint256) (#1963-1968) uses literals with too many digits:
- require(bool,string)(newValue >= 200000 && newValue <= 500000,Token: gasForProcessing must be between 200,000 and 500,000) (#1964)
CatKingINU.slitherConstructorVariables() (#1766-2207) uses literals with too many digits:
- maxSellTransactionAmount = 1000000000000 * (10 ** 18) (#1778)
CatKingINU.slitherConstructorVariables() (#1766-2207) uses literals with too many digits:
- maxWalletToken = 2000000000000 * (10 ** 18) (#1779)
CatKingINU.slitherConstructorVariables() (#1766-2207) uses literals with too many digits:
- gasForProcessing = 300000 (#1790)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
name() should be declared external:
- ERC20.name() (#852-854)
symbol() should be declared external:
- ERC20.symbol() (#860-862)
decimals() should be declared external:
- ERC20.decimals() (#877-879)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#903-906)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#922-925)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#940-954)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#968-971)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#987-995)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#1194-1196)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#1202-1205)
get(IterableMapping.Map,address) should be declared external:
- IterableMapping.get(IterableMapping.Map,address) (#1223-1225)
getIndexOfKey(IterableMapping.Map,address) should be declared external:
- IterableMapping.getIndexOfKey(IterableMapping.Map,address) (#1227-1232)
getKeyAtIndex(IterableMapping.Map,uint256) should be declared external:
- IterableMapping.getKeyAtIndex(IterableMapping.Map,uint256) (#1234-1236)
size(IterableMapping.Map) should be declared external:
- IterableMapping.size(IterableMapping.Map) (#1240-1242)
withdrawDividend() should be declared external:
- DividendPayingToken.withdrawDividend() (#1407-1409)
- TokenDividendTracker.withdrawDividend() (#1540-1542)
dividendOf(address) should be declared external:
- DividendPayingToken.dividendOf(address) (#1435-1437)
withdrawnDividendOf(address) should be declared external:
- DividendPayingToken.withdrawnDividendOf(address) (#1449-1451)
getAccountAtIndex(uint256) should be declared external:
- TokenDividendTracker.getAccountAtIndex(uint256) (#1616-1633)
process(uint256) should be declared external:
- TokenDividendTracker.process(uint256) (#1660-1705)
setSafeManager(address) should be declared external:
- SafeToken.setSafeManager(address) (#1727-1729)
setFee(uint256,uint256,uint256) should be declared external:
- CatKingINU.setFee(uint256,uint256,uint256) (#1837-1843)
setExtraFeeOnSell(uint256) should be declared external:
- CatKingINU.setExtraFeeOnSell(uint256) (#1845-1847)
setMaxSelltx(uint256) should be declared external:
- CatKingINU.setMaxSelltx(uint256) (#1849-1851)
setMarketingWallet(address) should be declared external:
- CatKingINU.setMarketingWallet(address) (#1853-1855)
updateUniswapV2Router(address) should be declared external:
- CatKingINU.updateUniswapV2Router(address) (#1911-1915)
setExcludeFromMaxTx(address,bool) should be declared external:
- CatKingINU.setExcludeFromMaxTx(address,bool) (#1924-1926)
setExcludeFromAll(address) should be declared external:
- CatKingINU.setExcludeFromAll(address) (#1928-1932)
excludeMultipleAccountsFromFees(address[],bool) should be declared external:
- CatKingINU.excludeMultipleAccountsFromFees(address[],bool) (#1934-1940)
setAutomatedMarketMakerPair(address,bool) should be declared external:
- CatKingINU.setAutomatedMarketMakerPair(address,bool) (#1942-1946)
setSWapToensAtAmount(uint256) should be declared external:
- CatKingINU.setSWapToensAtAmount(uint256) (#1948-1950)
updateGasForProcessing(uint256) should be declared external:
- CatKingINU.updateGasForProcessing(uint256) (#1963-1968)
isExcludedFromFees(address) should be declared external:
- CatKingINU.isExcludedFromFees(address) (#1982-1984)
isExcludedFromMaxTx(address) should be declared external:
- CatKingINU.isExcludedFromMaxTx(address) (#1986-1988)
withdrawableDividendOf(address) should be declared external:
- CatKingINU.withdrawableDividendOf(address) (#1990-1992)
dividendTokenBalanceOf(address) should be declared external:
- CatKingINU.dividendTokenBalanceOf(address) (#1994-1996)
setSwapAndLiquifyEnabled(bool) should be declared external:
- CatKingINU.setSwapAndLiquifyEnabled(bool) (#2046-2049)
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