EstateX Pay Token Logo

ESX [EstateX Pay] Token

About ESX

Listings

Token 2 years

Website

white paper

Our goal is to build an entire ecosystem of real estate tools that will allow users to buy and sell real estate directly in
our ecosystem. ESTATEX has on-boarded Family office investors and will build out the retail investor pools as we grow. We will be able to list thousands of real estate projects which any
investor can buy fractional shares.

This will help them derisk their investment by allowing them to purchase different kinds of real estate assets to place in their portfolios. ESTATEX’ goal is to allow for the access to real estate investment for anybody and not just for the ultra wealthy.

Social

Laser Scorebeta Last Audit: 15 January 2022

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

Anti-Scam

Links


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

CoinToken.addLiquidity(uint256,uint256) (#1090-1103) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1095-1102)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in CoinToken._transfer(address,address,uint256) (#1003-1047):
External calls:
- swapAndLiquify(contractTokenBalance) (#1034)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1095-1102)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1081-1087)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1034)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1095-1102)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1046)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#954)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1137)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1128)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1148)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1129)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#868)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1139)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1149)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#870)
- _tokenTransfer(from,to,amount,takeFee) (#1046)
- _rTotal = _rTotal.sub(rFee) (#909)
- _tokenTransfer(from,to,amount,takeFee) (#1046)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#956)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#867)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1147)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1138)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#869)
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.

Variable Ownable._owner (#394) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#495) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#496) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#513) is not in mixedCase
Function IUniswapV2Router01.WETH() (#535) is not in mixedCase
Parameter CoinToken.setSwapAndLiquifyEnabled(bool)._enabled (#900) is not in mixedCase
Parameter CoinToken.calculateTaxFee(uint256)._amount (#964) is not in mixedCase
Parameter CoinToken.calculateLiquidityFee(uint256)._amount (#970) is not in mixedCase
Variable CoinToken._taxFee (#695) is not in mixedCase
Variable CoinToken._liquidityFee (#698) is not in mixedCase
Variable CoinToken._maxTxAmount (#707) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#237)" inContext (#231-240)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in CoinToken.constructor(string,string,uint256,uint256,uint256,uint256,uint256,uint256,address,address,address) (#724-755):
External calls:
- address(service).transfer(msg.value) (#753)
Event emitted after the call(s):
- Transfer(address(0),tokenOwner,_tTotal) (#754)
Apply the check-effects-interactions pattern.

Additional information: link

CoinToken.addLiquidity(uint256,uint256) (#1090-1103) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1095-1102)
Ensure that all the return values of the function calls are used.

Additional information: link

CoinToken.allowance(address,address).owner (#784) shadows:
- Ownable.owner() (#404-406) (function)
CoinToken._approve(address,address,uint256).owner (#995) shadows:
- Ownable.owner() (#404-406) (function)
Rename the local variables that shadow another component.

Additional information: link

CoinToken.setTaxFeePercent(uint256) (#884-886) should emit an event for:
- _taxFee = taxFee (#885)
CoinToken.setLiquidityFeePercent(uint256) (#888-890) should emit an event for:
- _liquidityFee = liquidityFee (#889)
CoinToken.setNumTokensSellToAddToLiquidity(uint256) (#892-894) should emit an event for:
- numTokensSellToAddToLiquidity = swapNumber * 10 ** _decimals (#893)
CoinToken.setMaxTxPercent(uint256) (#896-898) should emit an event for:
- _maxTxAmount = maxTxPercent * 10 ** _decimals (#897)
Emit an event for critical parameter changes.

Additional information: link

CoinToken.constructor(string,string,uint256,uint256,uint256,uint256,uint256,uint256,address,address,address).tokenOwner (#724) lacks a zero-check on :
- _owner = tokenOwner (#752)
CoinToken.constructor(string,string,uint256,uint256,uint256,uint256,uint256,uint256,address,address,address).service (#724) lacks a zero-check on :
- address(service).transfer(msg.value) (#753)
Check that the address is not zero.

Additional information: link

Reentrancy in CoinToken._transfer(address,address,uint256) (#1003-1047):
External calls:
- swapAndLiquify(contractTokenBalance) (#1034)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1095-1102)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1081-1087)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1034)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1095-1102)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1046)
- _liquidityFee = _previousLiquidityFee (#988)
- _liquidityFee = 0 (#983)
- _tokenTransfer(from,to,amount,takeFee) (#1046)
- _previousLiquidityFee = _liquidityFee (#980)
- _tokenTransfer(from,to,amount,takeFee) (#1046)
- _previousTaxFee = _taxFee (#979)
- _tokenTransfer(from,to,amount,takeFee) (#1046)
- _tFeeTotal = _tFeeTotal.add(tFee) (#910)
- _tokenTransfer(from,to,amount,takeFee) (#1046)
- _taxFee = _previousTaxFee (#987)
- _taxFee = 0 (#982)
Reentrancy in CoinToken.constructor(string,string,uint256,uint256,uint256,uint256,uint256,uint256,address,address,address) (#724-755):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#742-743)
State variables written after the call(s):
- _isExcludedFromFee[tokenOwner] = true (#749)
- _isExcludedFromFee[address(this)] = true (#750)
- _owner = tokenOwner (#752)
- uniswapV2Router = _uniswapV2Router (#746)
Reentrancy in CoinToken.swapAndLiquify(uint256) (#1049-1070):
External calls:
- swapTokensForEth(half) (#1061)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1081-1087)
- addLiquidity(otherHalf,newBalance) (#1067)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1095-1102)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1067)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1095-1102)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1067)
- _allowances[owner][spender] = amount (#999)
Reentrancy in CoinToken.transferFrom(address,address,uint256) (#793-797):
External calls:
- _transfer(sender,recipient,amount) (#794)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1095-1102)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1081-1087)
External calls sending eth:
- _transfer(sender,recipient,amount) (#794)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1095-1102)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#795)
- _allowances[owner][spender] = amount (#999)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in CoinToken._transfer(address,address,uint256) (#1003-1047):
External calls:
- swapAndLiquify(contractTokenBalance) (#1034)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1095-1102)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1081-1087)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1034)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1095-1102)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1132)
- _tokenTransfer(from,to,amount,takeFee) (#1046)
- Transfer(sender,recipient,tTransferAmount) (#1142)
- _tokenTransfer(from,to,amount,takeFee) (#1046)
- Transfer(sender,recipient,tTransferAmount) (#1152)
- _tokenTransfer(from,to,amount,takeFee) (#1046)
- Transfer(sender,recipient,tTransferAmount) (#873)
- _tokenTransfer(from,to,amount,takeFee) (#1046)
Reentrancy in CoinToken.constructor(string,string,uint256,uint256,uint256,uint256,uint256,uint256,address,address,address) (#724-755):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#742-743)
External calls sending eth:
- address(service).transfer(msg.value) (#753)
Event emitted after the call(s):
- Transfer(address(0),tokenOwner,_tTotal) (#754)
Reentrancy in CoinToken.swapAndLiquify(uint256) (#1049-1070):
External calls:
- swapTokensForEth(half) (#1061)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1081-1087)
- addLiquidity(otherHalf,newBalance) (#1067)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1095-1102)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1067)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1095-1102)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1000)
- addLiquidity(otherHalf,newBalance) (#1067)
- SwapAndLiquify(half,newBalance,otherHalf) (#1069)
Reentrancy in CoinToken.transferFrom(address,address,uint256) (#793-797):
External calls:
- _transfer(sender,recipient,amount) (#794)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1095-1102)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1081-1087)
External calls sending eth:
- _transfer(sender,recipient,amount) (#794)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1095-1102)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1000)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#795)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable.unlock() (#451-456) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now > _lockTime,Contract is locked until 7 days) (#453)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#264-273) uses assembly
- INLINE ASM (#271)
Address._functionCallWithValue(address,bytes,uint256,string) (#357-378) uses assembly
- INLINE ASM (#370-373)
Do not use evm assembly.

Additional information: link

CoinToken.includeInReward(address) (#853-864) has costly operations inside a loop:
- _excluded.pop() (#860)
Use a local variable to hold the loop computation result.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#357-378) is never used and should be removed
Address.functionCall(address,bytes) (#317-319) is never used and should be removed
Address.functionCall(address,bytes,string) (#327-329) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#342-344) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#352-355) is never used and should be removed
Address.isContract(address) (#264-273) is never used and should be removed
Address.sendValue(address,uint256) (#291-297) is never used and should be removed
Context._msgData() (#236-239) is never used and should be removed
SafeMath.mod(uint256,uint256) (#209-211) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#225-228) is never used and should be removed
Remove unused functions.

Additional information: link

Low level call in Address.sendValue(address,uint256) (#291-297):
- (success) = recipient.call{value: amount}() (#295)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#357-378):
- (success,returndata) = target.call{value: weiValue}(data) (#361)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#540) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#541)
Variable CoinToken._getValues(uint256).rTransferAmount (#915) is too similar to CoinToken._transferBothExcluded(address,address,uint256).tTransferAmount (#866)
Variable CoinToken._transferStandard(address,address,uint256).rTransferAmount (#1127) is too similar to CoinToken._transferToExcluded(address,address,uint256).tTransferAmount (#1136)
Variable CoinToken._getValues(uint256).rTransferAmount (#915) is too similar to CoinToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1146)
Variable CoinToken.reflectionFromToken(uint256,bool).rTransferAmount (#832) is too similar to CoinToken._transferBothExcluded(address,address,uint256).tTransferAmount (#866)
Variable CoinToken.reflectionFromToken(uint256,bool).rTransferAmount (#832) is too similar to CoinToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1146)
Variable CoinToken._transferToExcluded(address,address,uint256).rTransferAmount (#1136) is too similar to CoinToken._transferBothExcluded(address,address,uint256).tTransferAmount (#866)
Variable CoinToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#930) is too similar to CoinToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1146)
Variable CoinToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#930) is too similar to CoinToken._transferBothExcluded(address,address,uint256).tTransferAmount (#866)
Variable CoinToken._transferToExcluded(address,address,uint256).rTransferAmount (#1136) is too similar to CoinToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1146)
Variable CoinToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1146) is too similar to CoinToken._transferToExcluded(address,address,uint256).tTransferAmount (#1136)
Variable CoinToken._getValues(uint256).rTransferAmount (#915) is too similar to CoinToken._getTValues(uint256).tTransferAmount (#922)
Variable CoinToken.reflectionFromToken(uint256,bool).rTransferAmount (#832) is too similar to CoinToken._getTValues(uint256).tTransferAmount (#922)
Variable CoinToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#930) is too similar to CoinToken._getTValues(uint256).tTransferAmount (#922)
Variable CoinToken._transferStandard(address,address,uint256).rTransferAmount (#1127) is too similar to CoinToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1146)
Variable CoinToken._transferStandard(address,address,uint256).rTransferAmount (#1127) is too similar to CoinToken._transferBothExcluded(address,address,uint256).tTransferAmount (#866)
Variable CoinToken._getValues(uint256).rTransferAmount (#915) is too similar to CoinToken._transferToExcluded(address,address,uint256).tTransferAmount (#1136)
Variable CoinToken._transferBothExcluded(address,address,uint256).rTransferAmount (#866) is too similar to CoinToken._transferBothExcluded(address,address,uint256).tTransferAmount (#866)
Variable CoinToken.reflectionFromToken(uint256,bool).rTransferAmount (#832) is too similar to CoinToken._transferToExcluded(address,address,uint256).tTransferAmount (#1136)
Variable CoinToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1146) is too similar to CoinToken._transferBothExcluded(address,address,uint256).tTransferAmount (#866)
Variable CoinToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#930) is too similar to CoinToken._transferToExcluded(address,address,uint256).tTransferAmount (#1136)
Variable CoinToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1146) is too similar to CoinToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1146)
Variable CoinToken._transferToExcluded(address,address,uint256).rTransferAmount (#1136) is too similar to CoinToken._transferToExcluded(address,address,uint256).tTransferAmount (#1136)
Variable CoinToken._transferStandard(address,address,uint256).rTransferAmount (#1127) is too similar to CoinToken._getTValues(uint256).tTransferAmount (#922)
Variable CoinToken._transferStandard(address,address,uint256).rTransferAmount (#1127) is too similar to CoinToken._getValues(uint256).tTransferAmount (#914)
Variable CoinToken._transferToExcluded(address,address,uint256).rTransferAmount (#1136) is too similar to CoinToken._getTValues(uint256).tTransferAmount (#922)
Variable CoinToken._transferStandard(address,address,uint256).rTransferAmount (#1127) is too similar to CoinToken._transferStandard(address,address,uint256).tTransferAmount (#1127)
Variable CoinToken._transferBothExcluded(address,address,uint256).rTransferAmount (#866) is too similar to CoinToken._transferStandard(address,address,uint256).tTransferAmount (#1127)
Variable CoinToken._transferBothExcluded(address,address,uint256).rTransferAmount (#866) is too similar to CoinToken._getValues(uint256).tTransferAmount (#914)
Variable CoinToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1146) is too similar to CoinToken._transferStandard(address,address,uint256).tTransferAmount (#1127)
Variable CoinToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1146) is too similar to CoinToken._getValues(uint256).tTransferAmount (#914)
Variable CoinToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#930) is too similar to CoinToken._transferStandard(address,address,uint256).tTransferAmount (#1127)
Variable CoinToken.reflectionFromToken(uint256,bool).rTransferAmount (#832) is too similar to CoinToken._getValues(uint256).tTransferAmount (#914)
Variable CoinToken._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#930) is too similar to CoinToken._getValues(uint256).tTransferAmount (#914)
Variable CoinToken.reflectionFromToken(uint256,bool).rTransferAmount (#832) is too similar to CoinToken._transferStandard(address,address,uint256).tTransferAmount (#1127)
Variable CoinToken._transferBothExcluded(address,address,uint256).rTransferAmount (#866) is too similar to CoinToken._transferToExcluded(address,address,uint256).tTransferAmount (#1136)
Variable CoinToken._transferBothExcluded(address,address,uint256).rTransferAmount (#866) is too similar to CoinToken._getTValues(uint256).tTransferAmount (#922)
Variable CoinToken._transferFromExcluded(address,address,uint256).rTransferAmount (#1146) is too similar to CoinToken._getTValues(uint256).tTransferAmount (#922)
Variable CoinToken._getValues(uint256).rTransferAmount (#915) is too similar to CoinToken._transferStandard(address,address,uint256).tTransferAmount (#1127)
Variable CoinToken._getValues(uint256).rTransferAmount (#915) is too similar to CoinToken._getValues(uint256).tTransferAmount (#914)
Variable CoinToken._transferToExcluded(address,address,uint256).rTransferAmount (#1136) is too similar to CoinToken._transferStandard(address,address,uint256).tTransferAmount (#1127)
Variable CoinToken._transferToExcluded(address,address,uint256).rTransferAmount (#1136) is too similar to CoinToken._getValues(uint256).tTransferAmount (#914)
Variable CoinToken._transferBothExcluded(address,address,uint256).rTransferAmount (#866) is too similar to CoinToken._transferFromExcluded(address,address,uint256).tTransferAmount (#1146)
Prevent variables from having similar names.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#423-426)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#432-436)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#438-440)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#443-448)
unlock() should be declared external:
- Ownable.unlock() (#451-456)
name() should be declared external:
- CoinToken.name() (#758-760)
symbol() should be declared external:
- CoinToken.symbol() (#762-764)
decimals() should be declared external:
- CoinToken.decimals() (#766-768)
totalSupply() should be declared external:
- CoinToken.totalSupply() (#770-772)
transfer(address,uint256) should be declared external:
- CoinToken.transfer(address,uint256) (#779-782)
allowance(address,address) should be declared external:
- CoinToken.allowance(address,address) (#784-786)
approve(address,uint256) should be declared external:
- CoinToken.approve(address,uint256) (#788-791)
transferFrom(address,address,uint256) should be declared external:
- CoinToken.transferFrom(address,address,uint256) (#793-797)
increaseAllowance(address,uint256) should be declared external:
- CoinToken.increaseAllowance(address,uint256) (#799-802)
decreaseAllowance(address,uint256) should be declared external:
- CoinToken.decreaseAllowance(address,uint256) (#804-807)
isExcludedFromReward(address) should be declared external:
- CoinToken.isExcludedFromReward(address) (#809-811)
totalFees() should be declared external:
- CoinToken.totalFees() (#813-815)
deliver(uint256) should be declared external:
- CoinToken.deliver(uint256) (#817-824)
reflectionFromToken(uint256,bool) should be declared external:
- CoinToken.reflectionFromToken(uint256,bool) (#826-835)
excludeFromReward(address) should be declared external:
- CoinToken.excludeFromReward(address) (#843-851)
excludeFromFee(address) should be declared external:
- CoinToken.excludeFromFee(address) (#876-878)
includeInFee(address) should be declared external:
- CoinToken.includeInFee(address) (#880-882)
setNumTokensSellToAddToLiquidity(uint256) should be declared external:
- CoinToken.setNumTokensSellToAddToLiquidity(uint256) (#892-894)
setMaxTxPercent(uint256) should be declared external:
- CoinToken.setMaxTxPercent(uint256) (#896-898)
setSwapAndLiquifyEnabled(bool) should be declared external:
- CoinToken.setSwapAndLiquifyEnabled(bool) (#900-903)
claimTokens() should be declared external:
- CoinToken.claimTokens() (#960-962)
isExcludedFromFee(address) should be declared external:
- CoinToken.isExcludedFromFee(address) (#991-993)
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.


Twitter account has relatively few followers


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 contract audit


Unable to verify token contract address on the website


Unable to find audit link on the website


Unable to find Twitter link on the website


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


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death

Price for ESX