CHIHUAH INU Token Logo

CHI [CHIHUAH INU] Token

About CHI

Listings

Token 2 years

Chihuah Inu is a metaverse built on 4 main features: the $CHI token, a cryptogame where players can earn bitcoin and etherum, NFTs that players can earn and trade in-game and finally, an ecosystem built for our community. Join our adventure to create, exploit our metaverse and be part of an amazing and caring community of investors. 🚀 🔒 100% liquidity locked, 🔒 365 days locked, ✅ Whitepaper, Audit in coming soon

Social

Laser Scorebeta Last Audit: 8 January 2022

report
Token is either risky or in presale. For presale 30+ is a fine score.

CHI.swapAndLiquify(uint256) (#2109-2144) sends eth to arbitrary user
Dangerous calls:
- marketingWallet.transfer(marketingAmount) (#2134)
CHI.addLiquidity(uint256,uint256) (#2174-2186) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#2177-2184)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in CHI._transfer(address,address,uint256) (#2049-2107):
External calls:
- swapAndLiquify(contractTokenBalance) (#2076)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#2177-2184)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,_to,block.timestamp) (#2159-2165)
- (success) = address(dividendTracker).call{value: dividends}() (#2137)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#2076)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#2177-2184)
- marketingWallet.transfer(marketingAmount) (#2134)
- (success) = address(dividendTracker).call{value: dividends}() (#2137)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (#2089)
- _balances[sender] = senderBalance - amount (#1027)
- _balances[recipient] += amount (#1029)
- super._transfer(from,to,amount) (#2092)
- _balances[sender] = senderBalance - amount (#1027)
- _balances[recipient] += amount (#1029)
Reentrancy in DividendPayingToken._withdrawDividendOfUser(address) (#1416-1432):
External calls:
- (success) = user.call{gas: 3000,value: _withdrawableDividend}() (#1421)
State variables written after the call(s):
- withdrawnDividends[user] = withdrawnDividends[user].sub(_withdrawableDividend) (#1424)
Apply the check-effects-interactions pattern.

Additional information: link

SafeToken.withdraw(address,uint256) (#1734-1737) ignores return value by IERC20(_token).transfer(safeManager,_amount) (#1736)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link


Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains


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.

CHI.swapAndLiquify(uint256) (#2109-2144) performs a multiplication on the result of a division:
-tokensToAddLiquidityWith = contractTokenBalance.div(totalFees.mul(2)).mul(liquidityFee) (#2112)
CHI.swapAndLiquify(uint256) (#2109-2144) performs a multiplication on the result of a division:
-marketingAmount = deltaBalance.sub(bnbToAddLiquidityWith).div(totalFees.sub(liquidityFee)).mul(marketingFee) (#2133)
Consider ordering multiplication before division.

Additional information: link

CHI._transfer(address,address,uint256).claims (#2100) is a local variable never initialized
CHI._transfer(address,address,uint256).iterations (#2100) is a local variable never initialized
CHI._transfer(address,address,uint256).lastProcessedIndex (#2100) 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

CHI.claim() (#2027-2029) ignores return value by dividendTracker.processAccount(address(msg.sender),false) (#2028)
CHI._transfer(address,address,uint256) (#2049-2107) ignores return value by dividendTracker.process(gas) (#2100-2105)
CHI.addLiquidity(uint256,uint256) (#2174-2186) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#2177-2184)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendPayingToken.constructor(string,string)._name (#1373) shadows:
- ERC20._name (#835) (state variable)
DividendPayingToken.constructor(string,string)._symbol (#1373) shadows:
- ERC20._symbol (#836) (state variable)
Rename the local variables that shadow another component.

Additional information: link

CHI.setFee(uint256,uint256,uint256) (#1839-1845) should emit an event for:
- liquidityFee = _liquidityFee (#1841)
- marketingFee = _marketingFee (#1842)
- totalFees = BNBRewardsFee.add(liquidityFee).add(marketingFee) (#1844)
CHI.setExtraFeeOnSell(uint256) (#1847-1849) should emit an event for:
- extraFeeOnSell = _extraFeeOnSell (#1848)
CHI.setMaxSelltx(uint256) (#1851-1853) should emit an event for:
- maxSellTransactionAmount = _maxSellTxAmount (#1852)
CHI.setSWapToensAtAmount(uint256) (#1946-1948) should emit an event for:
- swapTokensAtAmount = _newAmount (#1947)
Emit an event for critical parameter changes.

Additional information: link

SafeToken.setSafeManager(address)._safeManager (#1730) lacks a zero-check on :
- safeManager = _safeManager (#1731)
CHI.setMarketingWallet(address)._newMarketingWallet (#1855) lacks a zero-check on :
- marketingWallet = _newMarketingWallet (#1856)
Check that the address is not zero.

Additional information: link

DividendPayingToken._withdrawDividendOfUser(address) (#1416-1432) has external calls inside a loop: (success) = user.call{gas: 3000,value: _withdrawableDividend}() (#1421)
Favor pull over push strategy for external calls.

Additional information: link

Variable 'CHI._transfer(address,address,uint256).iterations (#2100)' in CHI._transfer(address,address,uint256) (#2049-2107) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#2101)
Variable 'CHI._transfer(address,address,uint256).lastProcessedIndex (#2100)' in CHI._transfer(address,address,uint256) (#2049-2107) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#2101)
Variable 'CHI._transfer(address,address,uint256).claims (#2100)' in CHI._transfer(address,address,uint256) (#2049-2107) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#2101)
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 CHI.constructor() (#1859-1903):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1872-1873)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (#1876)
- uniswapV2Router = _uniswapV2Router (#1875)
Reentrancy in CHI.constructor() (#1859-1903):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1872-1873)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1878)
- dividendTracker.excludeFromDividends(pair) (#1955)
- dividendTracker.excludeFromDividends(address(dividendTracker)) (#1881)
- dividendTracker.excludeFromDividends(address(this)) (#1882)
- dividendTracker.excludeFromDividends(owner()) (#1883)
- dividendTracker.excludeFromDividends(address(_uniswapV2Router)) (#1884)
- dividendTracker.excludeFromDividends(0x000000000000000000000000000000000000dEaD) (#1885)
State variables written after the call(s):
- _mint(owner(),1000000000000 * (10 ** 18)) (#1902)
- _balances[account] += amount (#1051)
- excludeFromFees(owner(),true) (#1888)
- _isExcludedFromFees[account] = excluded (#1917)
- excludeFromFees(marketingWallet,true) (#1889)
- _isExcludedFromFees[account] = excluded (#1917)
- excludeFromFees(address(this),true) (#1890)
- _isExcludedFromFees[account] = excluded (#1917)
- _isExcludedFromMaxTx[owner()] = true (#1893)
- _isExcludedFromMaxTx[address(this)] = true (#1894)
- _isExcludedFromMaxTx[marketingWallet] = true (#1895)
- _mint(owner(),1000000000000 * (10 ** 18)) (#1902)
- _totalSupply += amount (#1050)
Reentrancy in CHIDividendTracker.processAccount(address,bool) (#1710-1720):
External calls:
- amount = _withdrawDividendOfUser(account) (#1711)
- (success) = user.call{gas: 3000,value: _withdrawableDividend}() (#1421)
State variables written after the call(s):
- lastClaimTimes[account] = block.timestamp (#1714)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in CHI._setAutomatedMarketMakerPair(address,bool) (#1950-1959):
External calls:
- dividendTracker.excludeFromDividends(pair) (#1955)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (#1958)
Reentrancy in CHI._transfer(address,address,uint256) (#2049-2107):
External calls:
- swapAndLiquify(contractTokenBalance) (#2076)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#2177-2184)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,_to,block.timestamp) (#2159-2165)
- (success) = address(dividendTracker).call{value: dividends}() (#2137)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#2076)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#2177-2184)
- marketingWallet.transfer(marketingAmount) (#2134)
- (success) = address(dividendTracker).call{value: dividends}() (#2137)
Event emitted after the call(s):
- Transfer(sender,recipient,amount) (#1031)
- super._transfer(from,to,amount) (#2092)
- Transfer(sender,recipient,amount) (#1031)
- super._transfer(from,address(this),fees) (#2089)
Reentrancy in CHI._transfer(address,address,uint256) (#2049-2107):
External calls:
- swapAndLiquify(contractTokenBalance) (#2076)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#2177-2184)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,_to,block.timestamp) (#2159-2165)
- (success) = address(dividendTracker).call{value: dividends}() (#2137)
- dividendTracker.setBalance(address(from),balanceOf(from)) (#2094)
- dividendTracker.setBalance(address(to),balanceOf(to)) (#2095)
- dividendTracker.process(gas) (#2100-2105)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#2076)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#2177-2184)
- marketingWallet.transfer(marketingAmount) (#2134)
- (success) = address(dividendTracker).call{value: dividends}() (#2137)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#2101)
Reentrancy in CHI.constructor() (#1859-1903):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1872-1873)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1878)
- dividendTracker.excludeFromDividends(pair) (#1955)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (#1958)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1878)
Reentrancy in CHI.constructor() (#1859-1903):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1872-1873)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1878)
- dividendTracker.excludeFromDividends(pair) (#1955)
- dividendTracker.excludeFromDividends(address(dividendTracker)) (#1881)
- dividendTracker.excludeFromDividends(address(this)) (#1882)
- dividendTracker.excludeFromDividends(owner()) (#1883)
- dividendTracker.excludeFromDividends(address(_uniswapV2Router)) (#1884)
- dividendTracker.excludeFromDividends(0x000000000000000000000000000000000000dEaD) (#1885)
Event emitted after the call(s):
- ExcludeFromFees(account,excluded) (#1919)
- excludeFromFees(address(this),true) (#1890)
- ExcludeFromFees(account,excluded) (#1919)
- excludeFromFees(marketingWallet,true) (#1889)
- ExcludeFromFees(account,excluded) (#1919)
- excludeFromFees(owner(),true) (#1888)
- Transfer(address(0),account,amount) (#1052)
- _mint(owner(),1000000000000 * (10 ** 18)) (#1902)
Reentrancy in CHIDividendTracker.processAccount(address,bool) (#1710-1720):
External calls:
- amount = _withdrawDividendOfUser(account) (#1711)
- (success) = user.call{gas: 3000,value: _withdrawableDividend}() (#1421)
Event emitted after the call(s):
- Claim(account,amount,automatic) (#1715)
Reentrancy in CHI.processDividendTracker(uint256) (#2022-2025):
External calls:
- (iterations,claims,lastProcessedIndex) = dividendTracker.process(gas) (#2023)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,false,gas,tx.origin) (#2024)
Reentrancy in CHI.swapAndLiquify(uint256) (#2109-2144):
External calls:
- swapTokensForBnb(toSwap,address(this)) (#2122)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,_to,block.timestamp) (#2159-2165)
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#2131)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#2177-2184)
- (success) = address(dividendTracker).call{value: dividends}() (#2137)
External calls sending eth:
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#2131)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#2177-2184)
- marketingWallet.transfer(marketingAmount) (#2134)
- (success) = address(dividendTracker).call{value: dividends}() (#2137)
Event emitted after the call(s):
- SendDividends(toSwap - tokensToAddLiquidityWith,dividends) (#2140)
- SwapAndLiquify(tokensToAddLiquidityWith,deltaBalance) (#2143)
Apply the check-effects-interactions pattern.

Additional information: link

CHIDividendTracker.getAccount(address) (#1574-1617) uses timestamp for comparisons
Dangerous comparisons:
- nextClaimTime > block.timestamp (#1614-1616)
CHIDividendTracker.canAutoClaim(uint256) (#1638-1644) uses timestamp for comparisons
Dangerous comparisons:
- lastClaimTime > block.timestamp (#1639)
- block.timestamp.sub(lastClaimTime) >= claimWait (#1643)
Avoid relying on block.timestamp.

Additional information: link

CHI.swapAndSendBNBToMarketing(uint256) (#2169-2171) is never used and should be removed
Context._msgData() (#699-701) is never used and should be removed
DividendPayingToken._transfer(address,address,uint256) (#1472-1478) is never used and should be removed
SafeCast.toInt128(int256) (#593-596) is never used and should be removed
SafeCast.toInt16(int256) (#647-650) is never used and should be removed
SafeCast.toInt32(int256) (#629-632) is never used and should be removed
SafeCast.toInt64(int256) (#611-614) is never used and should be removed
SafeCast.toInt8(int256) (#665-668) is never used and should be removed
SafeCast.toUint128(uint256) (#488-491) is never used and should be removed
SafeCast.toUint16(uint256) (#548-551) is never used and should be removed
SafeCast.toUint224(uint256) (#473-476) is never used and should be removed
SafeCast.toUint32(uint256) (#533-536) is never used and should be removed
SafeCast.toUint64(uint256) (#518-521) is never used and should be removed
SafeCast.toUint8(uint256) (#563-566) is never used and should be removed
SafeCast.toUint96(uint256) (#503-506) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#409-418) is never used and should be removed
SafeMath.mod(uint256,uint256) (#369-371) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#435-444) is never used and should be removed
SafeMath.sub(uint256,uint256,string) (#386-395) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (#240-246) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (#282-287) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (#294-299) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (#265-275) is never used and should be removed
SafeMath.trySub(uint256,uint256) (#253-258) is never used and should be removed
SignedSafeMath.div(int256,int256) (#191-193) is never used and should be removed
SignedSafeMath.mul(int256,int256) (#177-179) is never used and should be removed
Remove unused functions.

Additional information: link

Pragma version^0.8.0 (#7) allows old versions
solc-0.8.0 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 DividendPayingToken._withdrawDividendOfUser(address) (#1416-1432):
- (success) = user.call{gas: 3000,value: _withdrawableDividend}() (#1421)
Low level call in CHI.swapAndLiquify(uint256) (#2109-2144):
- (success) = address(dividendTracker).call{value: dividends}() (#2137)
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() (#11) is not in mixedCase
Parameter DividendPayingToken.dividendOf(address)._owner (#1438) is not in mixedCase
Parameter DividendPayingToken.withdrawableDividendOf(address)._owner (#1445) is not in mixedCase
Parameter DividendPayingToken.withdrawnDividendOf(address)._owner (#1452) is not in mixedCase
Parameter DividendPayingToken.accumulativeDividendOf(address)._owner (#1462) is not in mixedCase
Constant DividendPayingToken.magnitude (#1353) is not in UPPER_CASE_WITH_UNDERSCORES
Parameter CHIDividendTracker.getAccount(address)._account (#1574) is not in mixedCase
Parameter SafeToken.setSafeManager(address)._safeManager (#1730) is not in mixedCase
Parameter SafeToken.withdraw(address,uint256)._token (#1734) is not in mixedCase
Parameter SafeToken.withdraw(address,uint256)._amount (#1734) is not in mixedCase
Parameter SafeToken.withdrawBNB(uint256)._amount (#1739) is not in mixedCase
Parameter LockToken.includeToWhiteList(address[])._users (#1762) is not in mixedCase
Parameter CHI.setFee(uint256,uint256,uint256)._bnbRewardFee (#1839) is not in mixedCase
Parameter CHI.setFee(uint256,uint256,uint256)._liquidityFee (#1839) is not in mixedCase
Parameter CHI.setFee(uint256,uint256,uint256)._marketingFee (#1839) is not in mixedCase
Parameter CHI.setExtraFeeOnSell(uint256)._extraFeeOnSell (#1847) is not in mixedCase
Parameter CHI.setMaxSelltx(uint256)._maxSellTxAmount (#1851) is not in mixedCase
Parameter CHI.setMarketingWallet(address)._newMarketingWallet (#1855) is not in mixedCase
Parameter CHI.setExcludeFromMaxTx(address,bool)._address (#1922) is not in mixedCase
Parameter CHI.setExcludeFromAll(address)._address (#1926) is not in mixedCase
Parameter CHI.setSWapToensAtAmount(uint256)._newAmount (#1946) is not in mixedCase
Parameter CHI.setSwapAndLiquifyEnabled(bool)._enabled (#2044) is not in mixedCase
Parameter CHI.swapTokensForBnb(uint256,address)._to (#2146) is not in mixedCase
Variable CHI.BNBRewardsFee (#1784) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Reentrancy in CHI._transfer(address,address,uint256) (#2049-2107):
External calls:
- swapAndLiquify(contractTokenBalance) (#2076)
- marketingWallet.transfer(marketingAmount) (#2134)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#2076)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#2177-2184)
- marketingWallet.transfer(marketingAmount) (#2134)
- (success) = address(dividendTracker).call{value: dividends}() (#2137)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (#2089)
- _balances[sender] = senderBalance - amount (#1027)
- _balances[recipient] += amount (#1029)
- super._transfer(from,to,amount) (#2092)
- _balances[sender] = senderBalance - amount (#1027)
- _balances[recipient] += amount (#1029)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#2101)
- Transfer(sender,recipient,amount) (#1031)
- super._transfer(from,to,amount) (#2092)
- Transfer(sender,recipient,amount) (#1031)
- super._transfer(from,address(this),fees) (#2089)
Reentrancy in CHI.swapAndLiquify(uint256) (#2109-2144):
External calls:
- marketingWallet.transfer(marketingAmount) (#2134)
External calls sending eth:
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#2131)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#2177-2184)
- marketingWallet.transfer(marketingAmount) (#2134)
- (success) = address(dividendTracker).call{value: dividends}() (#2137)
Event emitted after the call(s):
- SendDividends(toSwap - tokensToAddLiquidityWith,dividends) (#2140)
- SwapAndLiquify(tokensToAddLiquidityWith,deltaBalance) (#2143)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#16) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#17)
Variable DividendPayingToken._withdrawDividendOfUser(address)._withdrawableDividend (#1417) is too similar to CHIDividendTracker.getAccount(address).withdrawableDividends (#1579)
Variable CHI.BNBRewardsFee (#1784) is too similar to CHI.setFee(uint256,uint256,uint256)._bnbRewardFee (#1839)
Prevent variables from having similar names.

Additional information: link

CHIDividendTracker.constructor() (#1534-1537) uses literals with too many digits:
- minimumTokenBalanceForDividends = 160000000 * (10 ** 18) (#1536)
CHIDividendTracker.getAccountAtIndex(uint256) (#1619-1636) uses literals with too many digits:
- (0x0000000000000000000000000000000000000000,- 1,- 1,0,0,0,0,0) (#1630)
CHI.constructor() (#1859-1903) uses literals with too many digits:
- dividendTracker.excludeFromDividends(0x000000000000000000000000000000000000dEaD) (#1885)
CHI.constructor() (#1859-1903) uses literals with too many digits:
- _mint(owner(),1000000000000 * (10 ** 18)) (#1902)
CHI.updateGasForProcessing(uint256) (#1961-1966) uses literals with too many digits:
- require(bool,string)(newValue >= 200000 && newValue <= 500000,CHI: gasForProcessing must be between 200,000 and 500,000) (#1962)
CHI.slitherConstructorVariables() (#1769-2189) uses literals with too many digits:
- maxSellTransactionAmount = 10000000000 * (10 ** 18) (#1781)
CHI.slitherConstructorVariables() (#1769-2189) uses literals with too many digits:
- swapTokensAtAmount = 100000000 * (10 ** 18) (#1782)
CHI.slitherConstructorVariables() (#1769-2189) uses literals with too many digits:
- gasForProcessing = 300000 (#1792)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

name() should be declared external:
- ERC20.name() (#855-857)
symbol() should be declared external:
- ERC20.symbol() (#863-865)
decimals() should be declared external:
- ERC20.decimals() (#880-882)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#906-909)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#925-928)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#943-957)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#971-974)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#990-998)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#1197-1199)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#1205-1208)
get(IterableMapping.Map,address) should be declared external:
- IterableMapping.get(IterableMapping.Map,address) (#1226-1228)
getIndexOfKey(IterableMapping.Map,address) should be declared external:
- IterableMapping.getIndexOfKey(IterableMapping.Map,address) (#1230-1235)
getKeyAtIndex(IterableMapping.Map,uint256) should be declared external:
- IterableMapping.getKeyAtIndex(IterableMapping.Map,uint256) (#1237-1239)
size(IterableMapping.Map) should be declared external:
- IterableMapping.size(IterableMapping.Map) (#1243-1245)
withdrawDividend() should be declared external:
- CHIDividendTracker.withdrawDividend() (#1543-1545)
- DividendPayingToken.withdrawDividend() (#1410-1412)
dividendOf(address) should be declared external:
- DividendPayingToken.dividendOf(address) (#1438-1440)
withdrawnDividendOf(address) should be declared external:
- DividendPayingToken.withdrawnDividendOf(address) (#1452-1454)
getAccountAtIndex(uint256) should be declared external:
- CHIDividendTracker.getAccountAtIndex(uint256) (#1619-1636)
process(uint256) should be declared external:
- CHIDividendTracker.process(uint256) (#1663-1708)
setSafeManager(address) should be declared external:
- SafeToken.setSafeManager(address) (#1730-1732)
setFee(uint256,uint256,uint256) should be declared external:
- CHI.setFee(uint256,uint256,uint256) (#1839-1845)
setExtraFeeOnSell(uint256) should be declared external:
- CHI.setExtraFeeOnSell(uint256) (#1847-1849)
setMaxSelltx(uint256) should be declared external:
- CHI.setMaxSelltx(uint256) (#1851-1853)
setMarketingWallet(address) should be declared external:
- CHI.setMarketingWallet(address) (#1855-1857)
updateUniswapV2Router(address) should be declared external:
- CHI.updateUniswapV2Router(address) (#1909-1913)
setExcludeFromMaxTx(address,bool) should be declared external:
- CHI.setExcludeFromMaxTx(address,bool) (#1922-1924)
setExcludeFromAll(address) should be declared external:
- CHI.setExcludeFromAll(address) (#1926-1930)
excludeMultipleAccountsFromFees(address[],bool) should be declared external:
- CHI.excludeMultipleAccountsFromFees(address[],bool) (#1932-1938)
setAutomatedMarketMakerPair(address,bool) should be declared external:
- CHI.setAutomatedMarketMakerPair(address,bool) (#1940-1944)
setSWapToensAtAmount(uint256) should be declared external:
- CHI.setSWapToensAtAmount(uint256) (#1946-1948)
updateGasForProcessing(uint256) should be declared external:
- CHI.updateGasForProcessing(uint256) (#1961-1966)
isExcludedFromFees(address) should be declared external:
- CHI.isExcludedFromFees(address) (#1980-1982)
isExcludedFromMaxTx(address) should be declared external:
- CHI.isExcludedFromMaxTx(address) (#1984-1986)
withdrawableDividendOf(address) should be declared external:
- CHI.withdrawableDividendOf(address) (#1988-1990)
dividendTokenBalanceOf(address) should be declared external:
- CHI.dividendTokenBalanceOf(address) (#1992-1994)
setSwapAndLiquifyEnabled(bool) should be declared external:
- CHI.setSwapAndLiquifyEnabled(bool) (#2044-2047)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.


Number of Binance Smart Chain (BSC) token holders is low.


Token is deployed only at one blockchain


Token has only one trading pair


Unable to find PancakeSwap trading pair to compute liquidity.


Unable to find PancakeSwap trading pair to compute volume.


Unable to find PancakeSwap trading pair to compute number of swaps.


Last post in Twitter was more than 30 days ago


Unable to find Youtube account


Unable to find Discord account


BscScan page for the token does not contain additional info: website, socials, description, etc.

Additional information: link


Unable to find token on CoinGecko

Additional information: link


Unable to find token on CoinMarketCap

Additional information: link


Unable to find token/project description on the website or on BscScan, CoinMarketCap


Unable to find whitepaper link on the website


Unable to find code repository for the project


Young tokens have high risks of price dump / death


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death

Price for CHI

News for CHI