FalconX Token Logo

FALCX [FalconX] Token

ALERT: rug pull scam

About FALCX

Listings

Token 2 years
CoinMarketCap 2 years

The FalconX Spaceship is on its third and final mission to conquer the blockchain universe. Captain Falcon and his 50 crew members are about to set in orbit the first non-art, morphing NFT Space Station that will forever change the BSC Galaxy. We need your help Cadet! Join the mission and we’ll together dominate the BSC space & beyond!

Social

Laser Scorebeta Last Audit: 29 January 2022

report
Token seems to be a scam (type: rug pull scam).

Anti-Scam

Links

FalconX.sendETHToFee(uint256) (#541-545) sends eth to arbitrary user
Dangerous calls:
- _marketingAddress.transfer(amount.mul(_marketingPercent).div(100)) (#542)
- _teamAddress.transfer(amount.mul(_teamPercent).div(100)) (#543)
- _communityAddress.transfer(amount.mul(_communityPercent).div(100)) (#544)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in FalconX._transfer(address,address,uint256) (#415-494):
External calls:
- swapAndLiquify(contractTokenBalance) (#468)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#508-515)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#501)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#468)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#508-515)
- sendETHToFee(address(this).balance) (#473)
- _marketingAddress.transfer(amount.mul(_marketingPercent).div(100)) (#542)
- _teamAddress.transfer(amount.mul(_teamPercent).div(100)) (#543)
- _communityAddress.transfer(amount.mul(_communityPercent).div(100)) (#544)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#492)
- _balances[sender] = _balances[sender].sub(amount) (#587)
- _balances[recipient] = _balances[recipient].add(fees.tAmount) (#588)
- _balances[address(this)] = _balances[address(this)].add(fees.tMarketing.add(fees.tLiquidity).add(fees.tTeam).add(fees.tCommunity)) (#589)
- _balances[_burnAddress] = _balances[_burnAddress].add(fees.tBurn) (#590)
- setBotFee() (#484)
- _communityFee = 18 (#378)
- _tokenTransfer(from,to,amount,takeFee) (#492)
- _communityFee = _previousCommunityFee (#386)
- _communityFee = 0 (#364)
- restoreAllFee() (#493)
- _communityFee = _previousCommunityFee (#386)
- setBotFee() (#484)
- _liquidityFee = 180 (#376)
- _tokenTransfer(from,to,amount,takeFee) (#492)
- _liquidityFee = _previousLiquidityFee (#384)
- _liquidityFee = 0 (#362)
- restoreAllFee() (#493)
- _liquidityFee = _previousLiquidityFee (#384)
- setBotFee() (#484)
- _marketingFee = 180 (#375)
- _tokenTransfer(from,to,amount,takeFee) (#492)
- _marketingFee = _previousMarketingFee (#383)
- _marketingFee = 0 (#361)
- restoreAllFee() (#493)
- _marketingFee = _previousMarketingFee (#383)
- setBotFee() (#484)
- _teamFee = 18 (#377)
- _tokenTransfer(from,to,amount,takeFee) (#492)
- _teamFee = _previousTeamFee (#385)
- _teamFee = 0 (#363)
- restoreAllFee() (#493)
- _teamFee = _previousTeamFee (#385)
Apply the check-effects-interactions pattern.

Additional information: link


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


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.

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#97-99)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#105-108)
isBot(address) should be declared external:
- FalconX.isBot(address) (#325-327)
Use the external attribute for functions never called from the contract.

Additional information: link

FalconX.swapAndLiquify(uint256) (#518-539) performs a multiplication on the result of a division:
-half = autoLPamount.div(2) (#522)
-newBalance = ((address(this).balance.sub(initialBalance)).mul(half)).div(otherHalf) (#535)
Consider ordering multiplication before division.

Additional information: link

FalconX._transferStandard(address,address,uint256).fees (#578) 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

FalconX.constructor() (#288-303) ignores return value by IERC20(uniswapV2Pair).approve(address(uniswapV2Router),type()(uint256).max) (#293)
FalconX.addLiquidity(uint256,uint256) (#504-516) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#508-515)
Ensure that all the return values of the function calls are used.

Additional information: link

FalconX.allowance(address,address).owner (#338) shadows:
- Ownable.owner() (#88-90) (function)
FalconX._approve(address,address,uint256).owner (#390) shadows:
- Ownable.owner() (#88-90) (function)
Rename the local variables that shadow another component.

Additional information: link

FalconX.setMaxWalletAmount(uint256) (#620-624) should emit an event for:
- _maxWalletAmount = maxWalletAmount (#623)
FalconX.updateMinBuySellBNB(uint256,uint256) (#676-681) should emit an event for:
- _minBuyBNB = minBuyBNB (#679)
- _minSellBNB = minSellBNB (#680)
FalconX.updateMaxSellAmountBNB(uint256) (#683-686) should emit an event for:
- _maxSellAmountBNB = maxSellBNB (#685)
Emit an event for critical parameter changes.

Additional information: link

FalconX.setBridge(address)._bridge (#329) lacks a zero-check on :
- bridge = _bridge (#330)
FalconX.setPresaleRouterAndAddress(address,address).router (#658) lacks a zero-check on :
- presaleRouter = router (#659)
FalconX.setPresaleRouterAndAddress(address,address).wallet (#658) lacks a zero-check on :
- presaleAddress = wallet (#660)
FalconX.updateCommunityAddress(address).communityAddress (#688) lacks a zero-check on :
- _communityAddress = communityAddress (#689)
FalconX.updateMarketingAddress(address).marketingAddress (#692) lacks a zero-check on :
- _marketingAddress = marketingAddress (#693)
FalconX.updateTeamAddress(address).teamAddress (#696) lacks a zero-check on :
- _teamAddress = teamAddress (#697)
Check that the address is not zero.

Additional information: link

Reentrancy in FalconX._transfer(address,address,uint256) (#415-494):
External calls:
- swapAndLiquify(contractTokenBalance) (#468)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#508-515)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#501)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#468)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#508-515)
- sendETHToFee(address(this).balance) (#473)
- _marketingAddress.transfer(amount.mul(_marketingPercent).div(100)) (#542)
- _teamAddress.transfer(amount.mul(_teamPercent).div(100)) (#543)
- _communityAddress.transfer(amount.mul(_communityPercent).div(100)) (#544)
State variables written after the call(s):
- setBotFee() (#484)
- _burnFee = 180 (#379)
- _tokenTransfer(from,to,amount,takeFee) (#492)
- _burnFee = _previousBurnFee (#387)
- _burnFee = 0 (#365)
- restoreAllFee() (#493)
- _burnFee = _previousBurnFee (#387)
- setBotFee() (#484)
- _previousBurnFee = _burnFee (#373)
- _tokenTransfer(from,to,amount,takeFee) (#492)
- _previousBurnFee = _burnFee (#359)
- setBotFee() (#484)
- _previousCommunityFee = _communityFee (#372)
- _tokenTransfer(from,to,amount,takeFee) (#492)
- _previousCommunityFee = _communityFee (#358)
- setBotFee() (#484)
- _previousLiquidityFee = _liquidityFee (#370)
- _tokenTransfer(from,to,amount,takeFee) (#492)
- _previousLiquidityFee = _liquidityFee (#356)
- setBotFee() (#484)
- _previousMarketingFee = _marketingFee (#369)
- _tokenTransfer(from,to,amount,takeFee) (#492)
- _previousMarketingFee = _marketingFee (#355)
- setBotFee() (#484)
- _previousTeamFee = _teamFee (#371)
- _tokenTransfer(from,to,amount,takeFee) (#492)
- _previousTeamFee = _teamFee (#357)
Reentrancy in FalconX.constructor() (#288-303):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#292)
- IERC20(uniswapV2Pair).approve(address(uniswapV2Router),type()(uint256).max) (#293)
State variables written after the call(s):
- _balances[_msgSender()] = _tTotal (#299)
- _isExcludedFromFee[owner()] = true (#300)
- _isExcludedFromFee[address(this)] = true (#301)
- _maxTxAmount = _tTotal (#295)
- _maxWalletAmount = _tTotal.div(1) (#296)
- _priceImpact = 100 (#297)
Reentrancy in FalconX.swapAndLiquify(uint256) (#518-539):
External calls:
- swapTokensForEth(otherHalf) (#532)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#501)
- addLiquidity(half,newBalance) (#538)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#508-515)
External calls sending eth:
- addLiquidity(half,newBalance) (#538)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#508-515)
State variables written after the call(s):
- addLiquidity(half,newBalance) (#538)
- _allowances[owner][spender] = amount (#393)
Reentrancy in FalconX.transferFrom(address,address,uint256) (#347-351):
External calls:
- _transfer(sender,recipient,amount) (#348)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#508-515)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#501)
External calls sending eth:
- _transfer(sender,recipient,amount) (#348)
- _marketingAddress.transfer(amount.mul(_marketingPercent).div(100)) (#542)
- _teamAddress.transfer(amount.mul(_teamPercent).div(100)) (#543)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#508-515)
- _communityAddress.transfer(amount.mul(_communityPercent).div(100)) (#544)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#349)
- _allowances[owner][spender] = amount (#393)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in FalconX._transfer(address,address,uint256) (#415-494):
External calls:
- swapAndLiquify(contractTokenBalance) (#468)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#508-515)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#501)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#468)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#508-515)
- sendETHToFee(address(this).balance) (#473)
- _marketingAddress.transfer(amount.mul(_marketingPercent).div(100)) (#542)
- _teamAddress.transfer(amount.mul(_teamPercent).div(100)) (#543)
- _communityAddress.transfer(amount.mul(_communityPercent).div(100)) (#544)
Event emitted after the call(s):
- Transfer(sender,recipient,fees.tAmount) (#592)
- _tokenTransfer(from,to,amount,takeFee) (#492)
Reentrancy in FalconX.constructor() (#288-303):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#292)
- IERC20(uniswapV2Pair).approve(address(uniswapV2Router),type()(uint256).max) (#293)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#302)
Reentrancy in FalconX.swapAndLiquify(uint256) (#518-539):
External calls:
- swapTokensForEth(otherHalf) (#532)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#501)
- addLiquidity(half,newBalance) (#538)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#508-515)
External calls sending eth:
- addLiquidity(half,newBalance) (#538)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#508-515)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#394)
- addLiquidity(half,newBalance) (#538)
Reentrancy in FalconX.transferFrom(address,address,uint256) (#347-351):
External calls:
- _transfer(sender,recipient,amount) (#348)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#508-515)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#501)
External calls sending eth:
- _transfer(sender,recipient,amount) (#348)
- _marketingAddress.transfer(amount.mul(_marketingPercent).div(100)) (#542)
- _teamAddress.transfer(amount.mul(_teamPercent).div(100)) (#543)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#508-515)
- _communityAddress.transfer(amount.mul(_communityPercent).div(100)) (#544)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#394)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#349)
Apply the check-effects-interactions pattern.

Additional information: link

FalconX._transfer(address,address,uint256) (#415-494) uses timestamp for comparisons
Dangerous comparisons:
- block.timestamp <= _firstBlock.add(_botBlocks) && from != presaleRouter && from != presaleAddress (#429)
Avoid relying on block.timestamp.

Additional information: link

FalconX.endPresale(uint256) (#665-670) compares to a boolean constant:
-require(bool,string)(presale == true,presale already ended) (#666)
FalconX.enableBNBsellLimit() (#700-704) compares to a boolean constant:
-require(bool,string)(_BNBsellLimitEnabled == false,already enabled) (#701)
FalconX.disableBNBsellLimit() (#706-709) compares to a boolean constant:
-require(bool,string)(_BNBsellLimitEnabled == true,already disabled) (#707)
FalconX.enablePriceImpactSellLimit() (#711-715) compares to a boolean constant:
-require(bool,string)(_priceImpactSellLimitEnabled == false,already enabled) (#712)
FalconX.disablePriceImpactSellLimit() (#717-720) compares to a boolean constant:
-require(bool,string)(_priceImpactSellLimitEnabled == true,already disabled) (#718)
Remove the equality to the boolean constant.

Additional information: link

FalconX._previousLiquidityFee (#234) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
FalconX._previousMarketingFee (#236) is set pre-construction with a non-constant function or state variable:
- _marketingFee
FalconX._previousTeamFee (#238) is set pre-construction with a non-constant function or state variable:
- _teamFee
FalconX._previousCommunityFee (#240) is set pre-construction with a non-constant function or state variable:
- _communityFee
FalconX._previousBurnFee (#242) is set pre-construction with a non-constant function or state variable:
- _burnFee
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() (#136) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#137) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#154) is not in mixedCase
Function IUniswapV2Router02.WETH() (#192) is not in mixedCase
Parameter FalconX.setBridge(address)._bridge (#329) is not in mixedCase
Constant FalconX._name (#216) is not in UPPER_CASE_WITH_UNDERSCORES
Constant FalconX._symbol (#217) is not in UPPER_CASE_WITH_UNDERSCORES
Constant FalconX._decimals (#218) is not in UPPER_CASE_WITH_UNDERSCORES
Constant FalconX._tTotal (#223) is not in UPPER_CASE_WITH_UNDERSCORES
Variable FalconX._priceImpact (#224) is not in mixedCase
Variable FalconX._maxWalletAmount (#227) is not in mixedCase
Variable FalconX._liquidityFee (#233) is not in mixedCase
Variable FalconX._marketingFee (#235) is not in mixedCase
Variable FalconX._teamFee (#237) is not in mixedCase
Variable FalconX._communityFee (#239) is not in mixedCase
Variable FalconX._burnFee (#241) is not in mixedCase
Constant FalconX._burnAddress (#261) is not in UPPER_CASE_WITH_UNDERSCORES
Variable FalconX._priceImpactSellLimitEnabled (#272) is not in mixedCase
Variable FalconX._BNBsellLimitEnabled (#273) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Reentrancy in FalconX._transfer(address,address,uint256) (#415-494):
External calls:
- sendETHToFee(address(this).balance) (#473)
- _marketingAddress.transfer(amount.mul(_marketingPercent).div(100)) (#542)
- _teamAddress.transfer(amount.mul(_teamPercent).div(100)) (#543)
- _communityAddress.transfer(amount.mul(_communityPercent).div(100)) (#544)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#468)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#508-515)
- sendETHToFee(address(this).balance) (#473)
- _marketingAddress.transfer(amount.mul(_marketingPercent).div(100)) (#542)
- _teamAddress.transfer(amount.mul(_teamPercent).div(100)) (#543)
- _communityAddress.transfer(amount.mul(_communityPercent).div(100)) (#544)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#492)
- _balances[sender] = _balances[sender].sub(amount) (#587)
- _balances[recipient] = _balances[recipient].add(fees.tAmount) (#588)
- _balances[address(this)] = _balances[address(this)].add(fees.tMarketing.add(fees.tLiquidity).add(fees.tTeam).add(fees.tCommunity)) (#589)
- _balances[_burnAddress] = _balances[_burnAddress].add(fees.tBurn) (#590)
- setBotFee() (#484)
- _burnFee = 180 (#379)
- _tokenTransfer(from,to,amount,takeFee) (#492)
- _burnFee = _previousBurnFee (#387)
- _burnFee = 0 (#365)
- restoreAllFee() (#493)
- _burnFee = _previousBurnFee (#387)
- setBotFee() (#484)
- _communityFee = 18 (#378)
- _tokenTransfer(from,to,amount,takeFee) (#492)
- _communityFee = _previousCommunityFee (#386)
- _communityFee = 0 (#364)
- restoreAllFee() (#493)
- _communityFee = _previousCommunityFee (#386)
- setBotFee() (#484)
- _liquidityFee = 180 (#376)
- _tokenTransfer(from,to,amount,takeFee) (#492)
- _liquidityFee = _previousLiquidityFee (#384)
- _liquidityFee = 0 (#362)
- restoreAllFee() (#493)
- _liquidityFee = _previousLiquidityFee (#384)
- setBotFee() (#484)
- _marketingFee = 180 (#375)
- _tokenTransfer(from,to,amount,takeFee) (#492)
- _marketingFee = _previousMarketingFee (#383)
- _marketingFee = 0 (#361)
- restoreAllFee() (#493)
- _marketingFee = _previousMarketingFee (#383)
- setBotFee() (#484)
- _previousBurnFee = _burnFee (#373)
- _tokenTransfer(from,to,amount,takeFee) (#492)
- _previousBurnFee = _burnFee (#359)
- setBotFee() (#484)
- _previousCommunityFee = _communityFee (#372)
- _tokenTransfer(from,to,amount,takeFee) (#492)
- _previousCommunityFee = _communityFee (#358)
- setBotFee() (#484)
- _previousLiquidityFee = _liquidityFee (#370)
- _tokenTransfer(from,to,amount,takeFee) (#492)
- _previousLiquidityFee = _liquidityFee (#356)
- setBotFee() (#484)
- _previousMarketingFee = _marketingFee (#369)
- _tokenTransfer(from,to,amount,takeFee) (#492)
- _previousMarketingFee = _marketingFee (#355)
- setBotFee() (#484)
- _previousTeamFee = _teamFee (#371)
- _tokenTransfer(from,to,amount,takeFee) (#492)
- _previousTeamFee = _teamFee (#357)
- setBotFee() (#484)
- _teamFee = 18 (#377)
- _tokenTransfer(from,to,amount,takeFee) (#492)
- _teamFee = _previousTeamFee (#385)
- _teamFee = 0 (#363)
- restoreAllFee() (#493)
- _teamFee = _previousTeamFee (#385)
Event emitted after the call(s):
- Transfer(sender,recipient,fees.tAmount) (#592)
- _tokenTransfer(from,to,amount,takeFee) (#492)
Reentrancy in FalconX.transferFrom(address,address,uint256) (#347-351):
External calls:
- _transfer(sender,recipient,amount) (#348)
- _marketingAddress.transfer(amount.mul(_marketingPercent).div(100)) (#542)
- _teamAddress.transfer(amount.mul(_teamPercent).div(100)) (#543)
- _communityAddress.transfer(amount.mul(_communityPercent).div(100)) (#544)
External calls sending eth:
- _transfer(sender,recipient,amount) (#348)
- _marketingAddress.transfer(amount.mul(_marketingPercent).div(100)) (#542)
- _teamAddress.transfer(amount.mul(_teamPercent).div(100)) (#543)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#508-515)
- _communityAddress.transfer(amount.mul(_communityPercent).div(100)) (#544)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#349)
- _allowances[owner][spender] = amount (#393)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#394)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#349)
Apply the check-effects-interactions pattern.

Additional information: link

FalconX.updateMinBuySellBNB(uint256,uint256) (#676-681) uses literals with too many digits:
- require(bool,string)(minBuyBNB <= 100000000000000000,cant make the limit higher than 0.1 BNB) (#677)
FalconX.updateMinBuySellBNB(uint256,uint256) (#676-681) uses literals with too many digits:
- require(bool,string)(minSellBNB <= 100000000000000000,cant make the limit higher than 0.1 BNB) (#678)
FalconX.updateMaxSellAmountBNB(uint256) (#683-686) uses literals with too many digits:
- require(bool,string)(maxSellBNB >= 1000000000000000000,cant make the limit lower than 1 BNB) (#684)
FalconX.slitherConstructorVariables() (#214-721) uses literals with too many digits:
- _maxSellAmountBNB = 5000000000000000000 (#228)
FalconX.slitherConstructorConstantVariables() (#214-721) uses literals with too many digits:
- _tTotal = 1000000000000 * 10 ** 9 (#223)
FalconX.slitherConstructorConstantVariables() (#214-721) uses literals with too many digits:
- _burnAddress = address(0x000000000000000000000000000000000000dEaD) (#261)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Ownable._previousOwner (#79) is never used in FalconX (#214-721)
Remove unused state variables.

Additional information: link

Ownable._previousOwner (#79) should be constant
Add the constant attributes to state variables that never change.

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.


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


Token is deployed only at one blockchain


Twitter account has less than 100 followers


Telegram account has relatively few subscribers


Unable to find Youtube account


Unable to find Discord account


Twitter account has few posts


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

Additional information: link


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


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 whitepaper link on the website


Unable to find Telegram link on the website


Unable to find Twitter link on the website


Token is marked as scam (rug pull, honeypot, phishing, etc.)

Additional information: link


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


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death


Token has relatively low CoinMarketCap rank

Price for FALCX

News for FALCX