ChillChat Token Logo

CHILL [ChillChat] Token

About CHILL

Listings

Not Found
Token 2 years
white paper

🗨ChillChat🗨ChillChat LIVE on the BSC network.
Recreate yourself, one pixel at a time.
Chillchat is a pixel art NFT metaverse, a vast collection of virtual worlds, made entirely by its players, where you can jump into adventure with a new identity created by you or another player, pixel by pixel.

There is no limit to who you can be or what you can create. If you can imagine it, you can be it. Our Pixel Editor, World System, and the Solana blockchain power it all. Create and mint Worlds, Characters, Stories, and take them to life with other players.

Chillchat is built by our community
🖼Chillchat is a living NFT marketplace
Chillchat is a metaverse gaming platform
🖼Chillchat is Roblox meets pixel art and NFTs

Social

Laser Scorebeta Last Audit: 1 March 2022

report
Token has too many issues. Scam probability is high.

Anti-Scam

Links


Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)

ChillChat.addLiquidity(uint256,uint256) (#704-717) sends eth to arbitrary user
Dangerous calls:
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#709-716)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in ChillChat._transfer(address,address,uint256) (#613-662):
External calls:
- swapAndLiquify(contractTokenBalance) (#652)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#709-716)
- _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#696-702)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#652)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#709-716)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#661)
- _rOwned[to] = _rOwned[to].add(rAmount) (#888)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#795)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#774)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#757)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#758)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#815)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#816)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#797)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#776)
- _tokenTransfer(from,to,amount,takeFee) (#661)
- _rTotal = _rTotal.sub(rFee) (#824)
- _tokenTransfer(from,to,amount,takeFee) (#661)
- _tOwned[to] = _tOwned[to].add(tAmount) (#890)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#773)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#814)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#796)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#775)
Apply the check-effects-interactions pattern.

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.

ChillChat.multiTransfer(address[]).i (#505) is a local variable never initialized
ChillChat.reflectionFromToken(uint256,bool).tLiquidity_scope_1 (#539) is a local variable never initialized
ChillChat.reflectionFromToken(uint256,bool).tMarketing_scope_2 (#539) is a local variable never initialized
ChillChat.reflectionFromToken(uint256,bool).tFee_scope_0 (#539) 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

ChillChat.addLiquidity(uint256,uint256) (#704-717) ignores return value by _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#709-716)
Ensure that all the return values of the function calls are used.

Additional information: link

ChillChat.allowance(address,address).owner (#466) shadows:
- Ownable.owner() (#125-127) (function)
ChillChat._approve(address,address,uint256).owner (#475) shadows:
- Ownable.owner() (#125-127) (function)
Rename the local variables that shadow another component.

Additional information: link

Ownable.constructor(address).initialOwner (#120) lacks a zero-check on :
- _owner = initialOwner (#121)
ChillChat.constructor(address,address).marketingWallet (#420) lacks a zero-check on :
- _marketingWallet = marketingWallet (#421)
ChillChat.setUniswapPair(address).p (#608) lacks a zero-check on :
- _uniswapV2Pair = p (#609)
Check that the address is not zero.

Additional information: link

Variable 'ChillChat.reflectionFromToken(uint256,bool).tFee (#530)' in ChillChat.reflectionFromToken(uint256,bool) (#525-547) potentially used before declaration: (tFee,tLiquidity,tMarketing) = _getTValues(tAmount) (#539-540)
Variable 'ChillChat.reflectionFromToken(uint256,bool).tMarketing (#530)' in ChillChat.reflectionFromToken(uint256,bool) (#525-547) potentially used before declaration: (tFee,tLiquidity,tMarketing) = _getTValues(tAmount) (#539-540)
Variable 'ChillChat.reflectionFromToken(uint256,bool).tLiquidity (#530)' in ChillChat.reflectionFromToken(uint256,bool) (#525-547) potentially used before declaration: (tFee,tLiquidity,tMarketing) = _getTValues(tAmount) (#539-540)
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 ChillChat._transfer(address,address,uint256) (#613-662):
External calls:
- swapAndLiquify(contractTokenBalance) (#652)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#709-716)
- _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#696-702)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#652)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#709-716)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#661)
- _liquidityFee = _previousLiquidityFee (#842)
- _liquidityFee = 0 (#836)
- _tokenTransfer(from,to,amount,takeFee) (#661)
- _marketingFee = _previousMarketingFee (#841)
- _marketingFee = 0 (#835)
- _tokenTransfer(from,to,amount,takeFee) (#661)
- _previousLiquidityFee = _liquidityFee (#832)
- _tokenTransfer(from,to,amount,takeFee) (#661)
- _previousMarketingFee = _marketingFee (#831)
- _tokenTransfer(from,to,amount,takeFee) (#661)
- _previousTaxFee = _taxFee (#830)
- _tokenTransfer(from,to,amount,takeFee) (#661)
- _tFeeTotal = _tFeeTotal.add(tFee) (#825)
- _tokenTransfer(from,to,amount,takeFee) (#661)
- _taxFee = _previousTaxFee (#840)
- _taxFee = 0 (#834)
Reentrancy in ChillChat.constructor(address,address) (#420-440):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (#427-429)
State variables written after the call(s):
- _isExcludedFromAutoLiquidity[_uniswapV2Pair] = true (#436)
- _isExcludedFromAutoLiquidity[address(_uniswapV2Router)] = true (#437)
- _isExcludedFromFee[owner()] = true (#432)
- _isExcludedFromFee[address(this)] = true (#433)
- _isExcludedFromFee[_marketingWallet] = true (#434)
- _uniswapV2Router = uniswapV2Router (#430)
Reentrancy in ChillChat.swapAndLiquify(uint256) (#663-686):
External calls:
- swapTokensForBnb(half) (#677)
- _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#696-702)
- addLiquidity(otherHalf,newBalance) (#683)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#709-716)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#683)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#709-716)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#683)
- _allowances[owner][spender] = amount (#479)
Reentrancy in ChillChat.transferFrom(address,address,uint256) (#482-487):
External calls:
- _transfer(sender,recipient,amount) (#484)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#709-716)
- _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#696-702)
External calls sending eth:
- _transfer(sender,recipient,amount) (#484)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#709-716)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,BEP20: transfer amount exceeds allowance)) (#485)
- _allowances[owner][spender] = amount (#479)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in ChillChat._transfer(address,address,uint256) (#613-662):
External calls:
- swapAndLiquify(contractTokenBalance) (#652)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#709-716)
- _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#696-702)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#652)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#709-716)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#763)
- _tokenTransfer(from,to,amount,takeFee) (#661)
- Transfer(sender,recipient,tTransferAmount) (#781)
- _tokenTransfer(from,to,amount,takeFee) (#661)
- Transfer(sender,recipient,tTransferAmount) (#802)
- _tokenTransfer(from,to,amount,takeFee) (#661)
- Transfer(sender,recipient,tTransferAmount) (#821)
- _tokenTransfer(from,to,amount,takeFee) (#661)
Reentrancy in ChillChat.constructor(address,address) (#420-440):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (#427-429)
Event emitted after the call(s):
- Transfer(address(0),cOwner,_tTotal) (#439)
Reentrancy in ChillChat.swapAndLiquify(uint256) (#663-686):
External calls:
- swapTokensForBnb(half) (#677)
- _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#696-702)
- addLiquidity(otherHalf,newBalance) (#683)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#709-716)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#683)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#709-716)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#480)
- addLiquidity(otherHalf,newBalance) (#683)
- SwapAndLiquify(half,newBalance,otherHalf) (#685)
Reentrancy in ChillChat.transferFrom(address,address,uint256) (#482-487):
External calls:
- _transfer(sender,recipient,amount) (#484)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#709-716)
- _uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#696-702)
External calls sending eth:
- _transfer(sender,recipient,amount) (#484)
- _uniswapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#709-716)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#480)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,BEP20: transfer amount exceeds allowance)) (#485)
Apply the check-effects-interactions pattern.

Additional information: link

ChillChat.includeInReward(address) (#563-575) has costly operations inside a loop:
- _excluded.pop() (#571)
Use a local variable to hold the loop computation result.

Additional information: link

Context._msgData() (#34-38) is never used and should be removed
SafeMath.mod(uint256,uint256) (#99-101) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#103-107) is never used and should be removed
Remove unused functions.

Additional information: link

ChillChat._rTotal (#382) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
ChillChat._previousTaxFee (#393) is set pre-construction with a non-constant function or state variable:
- _taxFee
ChillChat._previousMarketingFee (#394) is set pre-construction with a non-constant function or state variable:
- _marketingFee
ChillChat._previousLiquidityFee (#395) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
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 IUniswapV2Pair.DOMAIN_SEPARATOR() (#182) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#183) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#201) is not in mixedCase
Function IUniswapV2Router01.WETH() (#222) is not in mixedCase
Variable ChillChat._isMultiTransfer (#372) is not in mixedCase
Variable ChillChat._isExcludedFromAutoLiquidity (#374) is not in mixedCase
Variable ChillChat._isExcludedToAutoLiquidity (#375) is not in mixedCase
Variable ChillChat._marketingWallet (#378) is not in mixedCase
Constant ChillChat._name (#385) is not in UPPER_CASE_WITH_UNDERSCORES
Constant ChillChat._symbol (#386) is not in UPPER_CASE_WITH_UNDERSCORES
Constant ChillChat._decimals (#387) is not in UPPER_CASE_WITH_UNDERSCORES
Variable ChillChat._taxFee (#389) is not in mixedCase
Variable ChillChat._marketingFee (#390) is not in mixedCase
Variable ChillChat._liquidityFee (#391) is not in mixedCase
Variable ChillChat._maxTxAmount (#397) is not in mixedCase
Variable ChillChat._numTokensSellToAddToLiquidity (#398) is not in mixedCase
Variable ChillChat._swapAndLiquifyEnabled (#402) is not in mixedCase
Variable ChillChat._uniswapV2Router (#404) is not in mixedCase
Variable ChillChat._uniswapV2Pair (#405) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#35)" inContext (#29-39)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#227) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#228)
Variable ChillChat._transferStandard(address,address,uint256).rTransferAmount (#752) is too similar to ChillChat._getTValues(uint256).tTransferAmount (#849)
Variable ChillChat._transferStandard(address,address,uint256).rTransferAmount (#752) is too similar to ChillChat._transferFromExcluded(address,address,uint256).tTransferAmount (#806)
Variable ChillChat._transferBothExcluded(address,address,uint256).rTransferAmount (#770) is too similar to ChillChat._getTValues(uint256).tTransferAmount (#849)
Variable ChillChat._transferBothExcluded(address,address,uint256).rTransferAmount (#770) is too similar to ChillChat._transferFromExcluded(address,address,uint256).tTransferAmount (#806)
Variable ChillChat._transferToExcluded(address,address,uint256).rTransferAmount (#790) is too similar to ChillChat._getTValues(uint256).tTransferAmount (#849)
Variable ChillChat._transferToExcluded(address,address,uint256).rTransferAmount (#790) is too similar to ChillChat._transferFromExcluded(address,address,uint256).tTransferAmount (#806)
Variable ChillChat._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#861) is too similar to ChillChat._transferFromExcluded(address,address,uint256).tTransferAmount (#806)
Variable ChillChat.reflectionFromToken(uint256,bool).rTransferAmount (#542) is too similar to ChillChat._transferToExcluded(address,address,uint256).tTransferAmount (#787)
Variable ChillChat._transferBothExcluded(address,address,uint256).rTransferAmount (#770) is too similar to ChillChat._transferToExcluded(address,address,uint256).tTransferAmount (#787)
Variable ChillChat._transferStandard(address,address,uint256).rTransferAmount (#752) is too similar to ChillChat._transferBothExcluded(address,address,uint256).tTransferAmount (#767)
Variable ChillChat._transferFromExcluded(address,address,uint256).rTransferAmount (#809) is too similar to ChillChat._transferBothExcluded(address,address,uint256).tTransferAmount (#767)
Variable ChillChat.reflectionFromToken(uint256,bool).rTransferAmount (#542) is too similar to ChillChat._transferStandard(address,address,uint256).tTransferAmount (#749)
Variable ChillChat._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#861) is too similar to ChillChat._transferBothExcluded(address,address,uint256).tTransferAmount (#767)
Variable ChillChat._transferBothExcluded(address,address,uint256).rTransferAmount (#770) is too similar to ChillChat._transferStandard(address,address,uint256).tTransferAmount (#749)
Variable ChillChat._transferToExcluded(address,address,uint256).rTransferAmount (#790) is too similar to ChillChat._transferToExcluded(address,address,uint256).tTransferAmount (#787)
Variable ChillChat._transferToExcluded(address,address,uint256).rTransferAmount (#790) is too similar to ChillChat._transferStandard(address,address,uint256).tTransferAmount (#749)
Variable ChillChat.reflectionFromToken(uint256,bool).rTransferAmount (#542) is too similar to ChillChat._getTValues(uint256).tTransferAmount (#849)
Variable ChillChat._transferFromExcluded(address,address,uint256).rTransferAmount (#809) is too similar to ChillChat._transferToExcluded(address,address,uint256).tTransferAmount (#787)
Variable ChillChat._transferStandard(address,address,uint256).rTransferAmount (#752) is too similar to ChillChat._transferToExcluded(address,address,uint256).tTransferAmount (#787)
Variable ChillChat.reflectionFromToken(uint256,bool).rTransferAmount (#542) is too similar to ChillChat._transferFromExcluded(address,address,uint256).tTransferAmount (#806)
Variable ChillChat._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#861) is too similar to ChillChat._transferToExcluded(address,address,uint256).tTransferAmount (#787)
Variable ChillChat._transferStandard(address,address,uint256).rTransferAmount (#752) is too similar to ChillChat._transferStandard(address,address,uint256).tTransferAmount (#749)
Variable ChillChat._transferFromExcluded(address,address,uint256).rTransferAmount (#809) is too similar to ChillChat._transferStandard(address,address,uint256).tTransferAmount (#749)
Variable ChillChat._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#861) is too similar to ChillChat._transferStandard(address,address,uint256).tTransferAmount (#749)
Variable ChillChat.reflectionFromToken(uint256,bool).rTransferAmount (#542) is too similar to ChillChat._transferBothExcluded(address,address,uint256).tTransferAmount (#767)
Variable ChillChat._transferFromExcluded(address,address,uint256).rTransferAmount (#809) is too similar to ChillChat._getTValues(uint256).tTransferAmount (#849)
Variable ChillChat._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#861) is too similar to ChillChat._getTValues(uint256).tTransferAmount (#849)
Variable ChillChat._transferBothExcluded(address,address,uint256).rTransferAmount (#770) is too similar to ChillChat._transferBothExcluded(address,address,uint256).tTransferAmount (#767)
Variable ChillChat._transferToExcluded(address,address,uint256).rTransferAmount (#790) is too similar to ChillChat._transferBothExcluded(address,address,uint256).tTransferAmount (#767)
Variable ChillChat._transferFromExcluded(address,address,uint256).rTransferAmount (#809) is too similar to ChillChat._transferFromExcluded(address,address,uint256).tTransferAmount (#806)
Prevent variables from having similar names.

Additional information: link

ChillChat.slitherConstructorVariables() (#365-894) uses literals with too many digits:
- _tTotal = 1000000000000 * 10 ** 9 (#381)
ChillChat.slitherConstructorVariables() (#365-894) uses literals with too many digits:
- _maxTxAmount = 1000000000000 * 10 ** 9 (#397)
ChillChat.slitherConstructorVariables() (#365-894) uses literals with too many digits:
- _numTokensSellToAddToLiquidity = 1000000000000 * 10 ** 9 (#398)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Ownable._previousOwner (#112) is never used in ChillChat (#365-894)
Remove unused state variables.

Additional information: link

ChillChat._maxTxAmount (#397) should be constant
ChillChat._numTokensSellToAddToLiquidity (#398) should be constant
ChillChat._tTotal (#381) should be constant
Ownable._previousOwner (#112) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#134-137)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#139-143)
name() should be declared external:
- ChillChat.name() (#445-447)
symbol() should be declared external:
- ChillChat.symbol() (#448-450)
decimals() should be declared external:
- ChillChat.decimals() (#451-453)
totalSupply() should be declared external:
- ChillChat.totalSupply() (#454-456)
transfer(address,uint256) should be declared external:
- ChillChat.transfer(address,uint256) (#461-465)
allowance(address,address) should be declared external:
- ChillChat.allowance(address,address) (#466-469)
approve(address,uint256) should be declared external:
- ChillChat.approve(address,uint256) (#470-474)
transferFrom(address,address,uint256) should be declared external:
- ChillChat.transferFrom(address,address,uint256) (#482-487)
increaseAllowance(address,uint256) should be declared external:
- ChillChat.increaseAllowance(address,uint256) (#488-493)
decreaseAllowance(address,uint256) should be declared external:
- ChillChat.decreaseAllowance(address,uint256) (#494-498)
deliver(uint256) should be declared external:
- ChillChat.deliver(uint256) (#511-524)
reflectionFromToken(uint256,bool) should be declared external:
- ChillChat.reflectionFromToken(uint256,bool) (#525-547)
excludeFromReward(address) should be declared external:
- ChillChat.excludeFromReward(address) (#554-562)
totalFees() should be declared external:
- ChillChat.totalFees() (#576-578)
excludeFromFee(address) should be declared external:
- ChillChat.excludeFromFee(address) (#579-581)
includeInFee(address) should be declared external:
- ChillChat.includeInFee(address) (#582-584)
setSwapAndLiquifyEnabled(bool) should be declared external:
- ChillChat.setSwapAndLiquifyEnabled(bool) (#586-589)
isExcludedFromFee(address) should be declared external:
- ChillChat.isExcludedFromFee(address) (#591-593)
isExcludedFromReward(address) should be declared external:
- ChillChat.isExcludedFromReward(address) (#594-596)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Average 30d PancakeSwap liquidity is less than $100. Token is either dead or inactive.


Average 30d PancakeSwap volume is less than $100. Token is either dead or inactive.


Average 30d number of PancakeSwap swaps is less than 1. Token is either dead or inactive.


Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.


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


Token is deployed only at one blockchain


Token has only one trading pair

Contract has 4% buy tax and 2% sell tax.
Taxes are low and contract ownership is renounced.


Telegram account link seems to be invalid


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube 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 contract audit


Unable to verify that token and website are owned by the same team (no listings + unable to find contract on website)


Unable to verify token contract address on the website


Unable to find audit link on the website


Unable to find whitepaper link on the website


Unable to find Telegram link on the website


Unable to find token on CoinHunt

Additional information: link


Unable to find code repository for the project


Young tokens have high risks of scam / price dump / death


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for CHILL

News for CHILL