🚀Welcome aboard crypto space community to Space Falcon X! 🚀
Space Falcon X is a use case-utility project that features SpaceSwap - our very own DEX with multi chart feature to easily manage your portfolio. Also, a Meme community of spacex rocket launches and falcon (SpaceX's Rocket) of Marvel, invest and watch the attention coming from crypto space. To find a meme community token that symbolizes spacex's multiple launches!!!
SpaceFalconX.rescueStuckBNB() (#763-766) sends eth to arbitrary user
Dangerous calls:
- address(msg.sender).transfer(bnbAmount) (#765)
SpaceFalconX.swapTokens(uint256) (#773-795) sends eth to arbitrary user
Dangerous calls:
- dividendDistributor.deposit{value: BNBForRewards}() (#789)
SpaceFalconX.addLiquidity(uint256,uint256) (#811-821) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#813-820)
SpaceFalconX.buybackStuckBNB(uint256) (#823-835) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amountToBuyBack}(0,path,deadAddress,block.timestamp) (#829-834)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in SpaceFalconX._transfer(address,address,uint256) (#672-678):
External calls:
- swapTokens(swapTokensAtAmount) (#675)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#813-820)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#802-808)
- dividendDistributor.deposit{value: BNBForRewards}() (#789)
External calls sending eth:
- swapTokens(swapTokensAtAmount) (#675)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#813-820)
- address(marketingAddress).transfer(BNBForMarketing) (#785)
- address(devAddress).transfer(BNBForDev) (#786)
- address(treasuryAddress).transfer(BNBForTreasury) (#787)
- dividendDistributor.deposit{value: BNBForRewards}() (#789)
State variables written after the call(s):
- takeFees(from,to,amount) (#676)
- _balances[sender] = _balances[sender] - amount (#177)
- _balances[recipient] = _balances[recipient] + amount (#178)
- takeFees(from,to,amount) (#676)
- swapTimes = swapTimes + uint256(1) (#692)
Apply the check-effects-interactions pattern.
Additional information: link
RDividendDistributor.distributeDividend(address) (#336-351) ignores return value by REWARD.transfer(shareholder,amount) (#344)
SpaceFalconX.rescueBEP20(address) (#768-771) ignores return value by IERC20(_token).transfer(msg.sender,tamt) (#770)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.
Additional information: link
Contract ownership is not renounced (belongs to a wallet)
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.
Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains
RDividendDistributor.distributeDividend(address) (#336-351) has external calls inside a loop: REWARD.transfer(shareholder,amount) (#344)
Favor pull over push strategy for external calls.
Additional information: link
Reentrancy in SpaceFalconX._transfer(address,address,uint256) (#672-678):
External calls:
- swapTokens(swapTokensAtAmount) (#675)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#813-820)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#802-808)
- dividendDistributor.deposit{value: BNBForRewards}() (#789)
External calls sending eth:
- swapTokens(swapTokensAtAmount) (#675)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#813-820)
- address(marketingAddress).transfer(BNBForMarketing) (#785)
- address(devAddress).transfer(BNBForDev) (#786)
- address(treasuryAddress).transfer(BNBForTreasury) (#787)
- dividendDistributor.deposit{value: BNBForRewards}() (#789)
Event emitted after the call(s):
- Transfer(sender,recipient,amount) (#179)
- takeFees(from,to,amount) (#676)
Reentrancy in SpaceFalconX.constructor() (#481-516):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#493-494)
Event emitted after the call(s):
- ExcludeFromDividends(account,shouldExclude) (#576)
- excludeFromDividends(address(uniswapV2Pair),true) (#509)
- ExcludeFromDividends(account,shouldExclude) (#576)
- excludeFromDividends(address(dividendDistributor),true) (#507)
- ExcludeFromDividends(account,shouldExclude) (#576)
- excludeFromDividends(address(this),true) (#506)
- ExcludeFromDividends(account,shouldExclude) (#576)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#504)
- ExcludeFromDividends(account,shouldExclude) (#576)
- excludeFromDividends(address(uniswapV2Router),true) (#508)
- ExcludeFromFees(account,excluded) (#571)
- excludeFromFees(owner(),true) (#513)
- ExcludeFromFees(account,excluded) (#571)
- excludeFromFees(address(this),true) (#512)
- ExcludeFromFees(account,excluded) (#571)
- excludeFromFees(deadAddress,true) (#511)
- SetAutomatedMarketMakerPair(pair,value) (#588)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#504)
- Transfer(address(0),account,amount) (#186)
- _mint(owner(),TOTAL_SUPPLY) (#515)
Reentrancy in RDividendDistributor.deposit() (#280-297):
External calls:
- _uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#284-289)
Event emitted after the call(s):
- DividendDeposited(totalDividends,dividendsPerShare) (#296)
Reentrancy in RDividendDistributor.setShare(address,uint256) (#264-278):
External calls:
- distributeDividend(shareholder) (#266)
- REWARD.transfer(shareholder,amount) (#344)
Event emitted after the call(s):
- SharesSet(shareholder,amount,totalShares) (#277)
Reentrancy in SpaceFalconX.swapTokens(uint256) (#773-795):
External calls:
- swapTokensForEth(swapAmount) (#777)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#802-808)
- dividendDistributor.deposit{value: BNBForRewards}() (#789)
External calls sending eth:
- address(marketingAddress).transfer(BNBForMarketing) (#785)
- address(devAddress).transfer(BNBForDev) (#786)
- address(treasuryAddress).transfer(BNBForTreasury) (#787)
- dividendDistributor.deposit{value: BNBForRewards}() (#789)
Event emitted after the call(s):
- SendDividends(BNBForRewards) (#790)
Reentrancy in SpaceFalconX.swapTokens(uint256) (#773-795):
External calls:
- swapTokensForEth(swapAmount) (#777)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#802-808)
- dividendDistributor.deposit{value: BNBForRewards}() (#789)
- addLiquidity(LPtokens,BNBForLP) (#792)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#813-820)
External calls sending eth:
- address(marketingAddress).transfer(BNBForMarketing) (#785)
- address(devAddress).transfer(BNBForDev) (#786)
- address(treasuryAddress).transfer(BNBForTreasury) (#787)
- dividendDistributor.deposit{value: BNBForRewards}() (#789)
- addLiquidity(LPtokens,BNBForLP) (#792)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#813-820)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#194)
- addLiquidity(LPtokens,BNBForLP) (#792)
- SwapAndLiquify(LPtokens,BNBForLP) (#793)
Apply the check-effects-interactions pattern.
Additional information: link
Contract ticker ($SFX) contains non-alphanumeric characters.
Not a direct threat, but may indicate unreliable intentions of developer. Non-alphanumeric chars (,.;!#*&") are extremely rare among low risk tokens.
Reentrancy in RDividendDistributor.distributeDividend(address) (#336-351):
External calls:
- REWARD.transfer(shareholder,amount) (#344)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised + amount (#346-347)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#348-349)
Reentrancy in RDividendDistributor.process(uint256) (#303-329):
External calls:
- distributeDividend(shareholders[currentIndex]) (#321)
- REWARD.transfer(shareholder,amount) (#344)
State variables written after the call(s):
- currentIndex ++ (#326)
Reentrancy in RDividendDistributor.setShare(address,uint256) (#264-278):
External calls:
- distributeDividend(shareholder) (#266)
- REWARD.transfer(shareholder,amount) (#344)
State variables written after the call(s):
- shares[shareholder].amount = amount (#273)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#274-275)
Apply the check-effects-interactions pattern.
Additional information: link
SpaceFalconX.addLiquidity(uint256,uint256) (#811-821) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#813-820)
Ensure that all the return values of the function calls are used.
Additional information: link
RDividendDistributor.constructor(address,address).owner_ (#249) lacks a zero-check on :
- _owner = owner_ (#252)
SpaceFalconX.updateInternalAddresses(address,address,address,address).marketingAdd (#591) lacks a zero-check on :
- marketingAddress = marketingAdd (#592)
SpaceFalconX.updateInternalAddresses(address,address,address,address).devAdd (#591) lacks a zero-check on :
- devAddress = devAdd (#593)
SpaceFalconX.updateInternalAddresses(address,address,address,address).treasuryAdd (#591) lacks a zero-check on :
- treasuryAddress = treasuryAdd (#594)
SpaceFalconX.updateInternalAddresses(address,address,address,address).liquidityAdd (#591) lacks a zero-check on :
- liquidityAddress = liquidityAdd (#595)
Check that the address is not zero.
Additional information: link
Reentrancy in SpaceFalconX._transfer(address,address,uint256) (#672-678):
External calls:
- swapTokens(swapTokensAtAmount) (#675)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#813-820)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#802-808)
- dividendDistributor.deposit{value: BNBForRewards}() (#789)
External calls sending eth:
- swapTokens(swapTokensAtAmount) (#675)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#813-820)
- address(marketingAddress).transfer(BNBForMarketing) (#785)
- address(devAddress).transfer(BNBForDev) (#786)
- address(treasuryAddress).transfer(BNBForTreasury) (#787)
- dividendDistributor.deposit{value: BNBForRewards}() (#789)
State variables written after the call(s):
- takeFees(from,to,amount) (#676)
- intensify = false (#727)
Reentrancy in SpaceFalconX.constructor() (#481-516):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#493-494)
State variables written after the call(s):
- _mint(owner(),TOTAL_SUPPLY) (#515)
- _balances[account] = _balances[account] + amount (#185)
- _mint(owner(),TOTAL_SUPPLY) (#515)
- _totalSupply = _totalSupply + amount (#184)
- devAddress = address(msg.sender) (#500)
- dividendDistributor = new RDividendDistributor(address(_uniswapV2Router),owner()) (#498)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#504)
- isExcludedFromDividends[account] = shouldExclude (#575)
- excludeFromDividends(address(this),true) (#506)
- isExcludedFromDividends[account] = shouldExclude (#575)
- excludeFromDividends(address(dividendDistributor),true) (#507)
- isExcludedFromDividends[account] = shouldExclude (#575)
- excludeFromDividends(address(uniswapV2Router),true) (#508)
- isExcludedFromDividends[account] = shouldExclude (#575)
- excludeFromDividends(address(uniswapV2Pair),true) (#509)
- isExcludedFromDividends[account] = shouldExclude (#575)
- excludeFromFees(deadAddress,true) (#511)
- isExcludedFromFees[account] = excluded (#570)
- excludeFromFees(address(this),true) (#512)
- isExcludedFromFees[account] = excluded (#570)
- excludeFromFees(owner(),true) (#513)
- isExcludedFromFees[account] = excluded (#570)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#504)
- isPair[pair] = value (#586)
- liquidityAddress = address(deadAddress) (#502)
- marketingAddress = address(msg.sender) (#499)
- treasuryAddress = address(msg.sender) (#501)
- uniswapV2Pair = _uniswapV2Pair (#496)
- uniswapV2Router = _uniswapV2Router (#495)
Reentrancy in RDividendDistributor.deposit() (#280-297):
External calls:
- _uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#284-289)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare + dividendsPerShareAccuracyFactor * newBalance / totalShares (#293-294)
- totalDividends = totalDividends + newBalance (#292)
Reentrancy in RDividendDistributor.distributeDividend(address) (#336-351):
External calls:
- REWARD.transfer(shareholder,amount) (#344)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#345)
Reentrancy in RDividendDistributor.setShare(address,uint256) (#264-278):
External calls:
- distributeDividend(shareholder) (#266)
- REWARD.transfer(shareholder,amount) (#344)
State variables written after the call(s):
- addShareholder(shareholder) (#268)
- shareholderIndexes[shareholder] = shareholders.length (#379)
- removeShareholder(shareholder) (#270)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#387-389)
- addShareholder(shareholder) (#268)
- shareholders.push(shareholder) (#380)
- removeShareholder(shareholder) (#270)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#384-386)
- shareholders.pop() (#390)
- totalShares = totalShares - shares[shareholder].amount + amount (#272)
Reentrancy in SpaceFalconX.swapTokens(uint256) (#773-795):
External calls:
- swapTokensForEth(swapAmount) (#777)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#802-808)
- dividendDistributor.deposit{value: BNBForRewards}() (#789)
- addLiquidity(LPtokens,BNBForLP) (#792)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#813-820)
External calls sending eth:
- address(marketingAddress).transfer(BNBForMarketing) (#785)
- address(devAddress).transfer(BNBForDev) (#786)
- address(treasuryAddress).transfer(BNBForTreasury) (#787)
- dividendDistributor.deposit{value: BNBForRewards}() (#789)
- addLiquidity(LPtokens,BNBForLP) (#792)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#813-820)
State variables written after the call(s):
- addLiquidity(LPtokens,BNBForLP) (#792)
- _allowances[owner][spender] = amount (#193)
- swapTimes = 0 (#794)
Apply the check-effects-interactions pattern.
Additional information: link
RDividendDistributor.shouldDistribute(address) (#331-334) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#332-333)
SpaceFalconX.checkValidTrade(address,address,uint256) (#659-670) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > timeLastTrade[to] + tradeCooldown,Trade too frequent.) (#668)
SpaceFalconX.takeFees(address,address,uint256) (#690-705) uses timestamp for comparisons
Dangerous comparisons:
- (block.number < launchBlock + deadBlocks) || (block.timestamp < launchTime + deadDuration) (#698)
SpaceFalconX.calculateFee(address) (#715-731) uses timestamp for comparisons
Dangerous comparisons:
- block.timestamp < halfTime (#720)
- block.timestamp < fullTime (#723)
Avoid relying on block.timestamp.
Additional information: link
RDividendDistributor.process(uint256) (#303-329) has costly operations inside a loop:
- currentIndex = 0 (#317)
RDividendDistributor.distributeDividend(address) (#336-351) has costly operations inside a loop:
- totalDistributed = totalDistributed + amount (#343)
RDividendDistributor.process(uint256) (#303-329) has costly operations inside a loop:
- currentIndex ++ (#326)
Use a local variable to hold the loop computation result.
Additional information: link
Pragma version0.8.13 (#3) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
solc-0.8.13 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
Function IUniswapV2Router.WETH() (#19) is not in mixedCase
Parameter Ownable.authorize(address,bool)._authorize (#82) is not in mixedCase
Variable Ownable._owner (#66) is not in mixedCase
Variable ERC20._balances (#110) is not in mixedCase
Variable ERC20._allowances (#112) is not in mixedCase
Variable ERC20._totalSupply (#114) is not in mixedCase
Variable ERC20._name (#116) is not in mixedCase
Variable ERC20._symbol (#117) is not in mixedCase
Variable ERC20._decimals (#118) is not in mixedCase
Variable RDividendDistributor._token (#200) is not in mixedCase
Variable RDividendDistributor._owner (#201) is not in mixedCase
Variable RDividendDistributor.REWARD (#210) is not in mixedCase
Variable RDividendDistributor._uniswapV2Router (#212) is not in mixedCase
Constant RDividendDistributor.dividendsPerShareAccuracyFactor (#224) is not in UPPER_CASE_WITH_UNDERSCORES
Parameter SpaceFalconX.launch(uint256,uint256,uint256)._tradeCooldown (#530) is not in mixedCase
Parameter SpaceFalconX.setDistributionCriteria(uint256,uint256)._minPeriod (#605) is not in mixedCase
Parameter SpaceFalconX.setDistributionCriteria(uint256,uint256)._minDistribution (#605) is not in mixedCase
Parameter SpaceFalconX.rescueBEP20(address)._token (#768) is not in mixedCase
Variable SpaceFalconX._maxTxAmount (#398) is not in mixedCase
Variable SpaceFalconX._maxWalletToken (#399) is not in mixedCase
Constant SpaceFalconX.deadAddress (#400) is not in UPPER_CASE_WITH_UNDERSCORES
Follow the Solidity naming convention.
Additional information: link
Reentrancy in SpaceFalconX._transfer(address,address,uint256) (#672-678):
External calls:
- swapTokens(swapTokensAtAmount) (#675)
- address(marketingAddress).transfer(BNBForMarketing) (#785)
- address(devAddress).transfer(BNBForDev) (#786)
- address(treasuryAddress).transfer(BNBForTreasury) (#787)
External calls sending eth:
- swapTokens(swapTokensAtAmount) (#675)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#813-820)
- address(marketingAddress).transfer(BNBForMarketing) (#785)
- address(devAddress).transfer(BNBForDev) (#786)
- address(treasuryAddress).transfer(BNBForTreasury) (#787)
- dividendDistributor.deposit{value: BNBForRewards}() (#789)
State variables written after the call(s):
- takeFees(from,to,amount) (#676)
- _balances[sender] = _balances[sender] - amount (#177)
- _balances[recipient] = _balances[recipient] + amount (#178)
- takeFees(from,to,amount) (#676)
- intensify = false (#727)
- takeFees(from,to,amount) (#676)
- swapTimes = swapTimes + uint256(1) (#692)
Event emitted after the call(s):
- Transfer(sender,recipient,amount) (#179)
- takeFees(from,to,amount) (#676)
Reentrancy in SpaceFalconX.swapTokens(uint256) (#773-795):
External calls:
- address(marketingAddress).transfer(BNBForMarketing) (#785)
- address(devAddress).transfer(BNBForDev) (#786)
- address(treasuryAddress).transfer(BNBForTreasury) (#787)
External calls sending eth:
- address(marketingAddress).transfer(BNBForMarketing) (#785)
- address(devAddress).transfer(BNBForDev) (#786)
- address(treasuryAddress).transfer(BNBForTreasury) (#787)
- dividendDistributor.deposit{value: BNBForRewards}() (#789)
Event emitted after the call(s):
- SendDividends(BNBForRewards) (#790)
Reentrancy in SpaceFalconX.swapTokens(uint256) (#773-795):
External calls:
- address(marketingAddress).transfer(BNBForMarketing) (#785)
- address(devAddress).transfer(BNBForDev) (#786)
- address(treasuryAddress).transfer(BNBForTreasury) (#787)
External calls sending eth:
- address(marketingAddress).transfer(BNBForMarketing) (#785)
- address(devAddress).transfer(BNBForDev) (#786)
- address(treasuryAddress).transfer(BNBForTreasury) (#787)
- dividendDistributor.deposit{value: BNBForRewards}() (#789)
- addLiquidity(LPtokens,BNBForLP) (#792)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,liquidityAddress,block.timestamp) (#813-820)
State variables written after the call(s):
- addLiquidity(LPtokens,BNBForLP) (#792)
- _allowances[owner][spender] = amount (#193)
- swapTimes = 0 (#794)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#194)
- addLiquidity(LPtokens,BNBForLP) (#792)
- SwapAndLiquify(LPtokens,BNBForLP) (#793)
Apply the check-effects-interactions pattern.
Additional information: link
Variable SpaceFalconX.TOTAL_SUPPLY (#397) is too similar to ERC20._totalSupply (#114)
Prevent variables from having similar names.
Additional information: link
SpaceFalconX.updateGasForProcessing(uint256) (#598-603) uses literals with too many digits:
- require(bool,string)(newValue >= 200000 && newValue <= 800000,Test: gasForProcessing must be between 200,000 and 800,000) (#599)
SpaceFalconX.slitherConstructorConstantVariables() (#394-839) uses literals with too many digits:
- TOTAL_SUPPLY = 1000000000000 * (DECIMALS) (#397)
SpaceFalconX.slitherConstructorConstantVariables() (#394-839) uses literals with too many digits:
- deadAddress = address(0x000000000000000000000000000000000000dEaD) (#400)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
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 token on CoinGecko
Additional information: link
Unable to find token on CoinMarketCap
Additional information: link
Token is not listed at Mobula.Finance
Additional information: link
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
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 scam / price dump / death
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account
Twitter account has few posts