SpaceX falcon is a landmark project based on blockchain in the webc3.0 era. Many communities participate in it and it is very popular
Reentrancy in Token._transfer(address,address,uint256) (#1120-1166):
External calls:
- swapAndLiquifyV1(haveAmount.div(5).mul(4)) (#1144)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1181-1187)
- swapAndLiquifyV3(haveAmount.div(5)) (#1145)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1206-1212)
External calls sending eth:
- swapAndLiquifyV1(haveAmount.div(5).mul(4)) (#1144)
- _receive.transfer(balance) (#1171)
State variables written after the call(s):
- swapping = false (#1146)
Reentrancy in Token._transfer(address,address,uint256) (#1120-1166):
External calls:
- swapAndLiquifyV1(haveAmount.div(5).mul(4)) (#1144)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1181-1187)
- swapAndLiquifyV3(haveAmount.div(5)) (#1145)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1206-1212)
- _splitOtherToken() (#1150)
- doge.transfer(user,thisAmount.mul(rate).div(1000000)) (#1256)
- doge.transfer(user,thisAmount.mul(rate).div(1000000)) (#1267)
External calls sending eth:
- swapAndLiquifyV1(haveAmount.div(5).mul(4)) (#1144)
- _receive.transfer(balance) (#1171)
State variables written after the call(s):
- super._transfer(from,address(this),amount.div(10)) (#1157)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#558-561)
- _balances[recipient] = _balances[recipient].add(amount) (#562)
- super._transfer(from,to,amount) (#1160)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#558-561)
- _balances[recipient] = _balances[recipient].add(amount) (#562)
- buyUser.push(to) (#1164)
Apply the check-effects-interactions pattern.
Additional information: link
Token._splitOtherToken() (#1227-1274) ignores return value by doge.transfer(user,thisAmount.mul(rate).div(1000000)) (#1256)
Token._splitOtherToken() (#1227-1274) ignores return value by doge.transfer(user,thisAmount.mul(rate).div(1000000)) (#1267)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.
Additional information: link
Token.startTime (#1034) is never initialized. It is used in:
- Token.isIn3minter() (#1116-1118)
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
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
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.
Contract ownership is not renounced (belongs to a wallet)
Token._transfer(address,address,uint256) (#1120-1166) performs a multiplication on the result of a division:
-swapAndLiquifyV1(haveAmount.div(5).mul(4)) (#1144)
Token._transfer(address,address,uint256) (#1120-1166) performs a multiplication on the result of a division:
-amount = amount.div(100).mul(90) (#1158)
Token._splitOtherToken() (#1227-1274) performs a multiplication on the result of a division:
-thisAmount = thisAmount.div(5).mul(3) (#1231)
Token._splitOtherToken() (#1227-1274) performs a multiplication on the result of a division:
-doge.transfer(user,thisAmount.mul(rate).div(1000000)) (#1256)
-rate = balanceOf(user).mul(1000000).div(totalAmount) (#1265)
Token._splitOtherToken() (#1227-1274) performs a multiplication on the result of a division:
-rate = balanceOf(user).mul(1000000).div(totalAmount) (#1265)
-doge.transfer(user,thisAmount.mul(rate).div(1000000)) (#1267)
Consider ordering multiplication before division.
Additional information: link
Token._splitOtherToken().startIndex (#1234) 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
ERC20.allowance(address,address).owner (#414) shadows:
- Ownable.owner() (#277-279) (function)
ERC20._approve(address,address,uint256).owner (#625) shadows:
- Ownable.owner() (#277-279) (function)
Rename the local variables that shadow another component.
Additional information: link
Token.setSwapTokensAtAmount(uint256) (#1100-1102) should emit an event for:
- swapTokensAtAmount = _swapTokensAtAmount (#1101)
Emit an event for critical parameter changes.
Additional information: link
Ownable.constructor().msgSender (#269) lacks a zero-check on :
- _owner = msgSender (#270)
Token.constructor(address).tokenOwner (#1056) lacks a zero-check on :
- _tokenOwner = tokenOwner (#1070)
Check that the address is not zero.
Additional information: link
Token._splitOtherToken() (#1227-1274) has external calls inside a loop: doge.transfer(user,thisAmount.mul(rate).div(1000000)) (#1256)
Token._splitOtherToken() (#1227-1274) has external calls inside a loop: doge.transfer(user,thisAmount.mul(rate).div(1000000)) (#1267)
Favor pull over push strategy for external calls.
Additional information: link
Reentrancy in Token._transfer(address,address,uint256) (#1120-1166):
External calls:
- swapAndLiquifyV1(haveAmount.div(5).mul(4)) (#1144)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1181-1187)
- swapAndLiquifyV3(haveAmount.div(5)) (#1145)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1206-1212)
- _splitOtherToken() (#1150)
- doge.transfer(user,thisAmount.mul(rate).div(1000000)) (#1256)
- doge.transfer(user,thisAmount.mul(rate).div(1000000)) (#1267)
External calls sending eth:
- swapAndLiquifyV1(haveAmount.div(5).mul(4)) (#1144)
- _receive.transfer(balance) (#1171)
State variables written after the call(s):
- havePush[to] = true (#1163)
Reentrancy in Token.constructor(address) (#1056-1076):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1061-1062)
State variables written after the call(s):
- _approve(address(this),address(0x10ED43C718714eb63d5aA57B78B54704E256024E),10 ** 26) (#1063)
- _allowances[owner][spender] = amount (#632)
- _mint(tokenOwner,total) (#1075)
- _balances[account] = _balances[account].add(amount) (#581)
- excludeFromFees(tokenOwner,true) (#1068)
- _isExcludedFromFees[account] = excluded (#1088)
- excludeFromFees(address(this),true) (#1069)
- _isExcludedFromFees[account] = excluded (#1088)
- _tokenOwner = tokenOwner (#1070)
- _mint(tokenOwner,total) (#1075)
- _totalSupply = _totalSupply.add(amount) (#580)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1067)
- automatedMarketMakerPairs[pair] = value (#1109)
- doge = IERC20(0xbA2aE424d960c26247Dd6c32edC70B295c744C43) (#1071)
- minBuyAmount = total.div(1000) (#1074)
- swapTokensAtAmount = total.div(10000) (#1073)
- uniswapV2Pair = _uniswapV2Pair (#1065)
- uniswapV2Router = _uniswapV2Router (#1064)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in Token._transfer(address,address,uint256) (#1120-1166):
External calls:
- swapAndLiquifyV1(haveAmount.div(5).mul(4)) (#1144)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1181-1187)
- swapAndLiquifyV3(haveAmount.div(5)) (#1145)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1206-1212)
- _splitOtherToken() (#1150)
- doge.transfer(user,thisAmount.mul(rate).div(1000000)) (#1256)
- doge.transfer(user,thisAmount.mul(rate).div(1000000)) (#1267)
External calls sending eth:
- swapAndLiquifyV1(haveAmount.div(5).mul(4)) (#1144)
- _receive.transfer(balance) (#1171)
Event emitted after the call(s):
- Transfer(sender,recipient,amount) (#563)
- super._transfer(from,to,amount) (#1160)
- Transfer(sender,recipient,amount) (#563)
- super._transfer(from,address(this),amount.div(10)) (#1157)
Reentrancy in Token.constructor(address) (#1056-1076):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1061-1062)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#633)
- _approve(address(this),address(0x10ED43C718714eb63d5aA57B78B54704E256024E),10 ** 26) (#1063)
- ExcludeFromFees(account,excluded) (#1089)
- excludeFromFees(address(this),true) (#1069)
- ExcludeFromFees(account,excluded) (#1089)
- excludeFromFees(tokenOwner,true) (#1068)
- Transfer(address(0),account,amount) (#582)
- _mint(tokenOwner,total) (#1075)
Apply the check-effects-interactions pattern.
Additional information: link
Token.isIn3minter() (#1116-1118) uses timestamp for comparisons
Dangerous comparisons:
- startTime.add(180) > block.timestamp (#1117)
Avoid relying on block.timestamp.
Additional information: link
Context._msgData() (#9-13) is never used and should be removed
ERC20._burn(address,uint256) (#596-607) is never used and should be removed
SafeMath.sub(uint256,uint256) (#686-688) is never used and should be removed
Remove unused functions.
Additional information: link
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#49) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#51) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#82) is not in mixedCase
Function IUniswapV2Router01.WETH() (#816) is not in mixedCase
Parameter Token.setSwapTokensAtAmount(uint256)._swapTokensAtAmount (#1100) is not in mixedCase
Parameter Token.setSwapAndLiquifyEnabled(bool)._enabled (#1104) is not in mixedCase
Function Token._splitOtherToken() (#1227-1274) is not in mixedCase
Variable Token._tokenOwner (#1024) is not in mixedCase
Variable Token._receive (#1028) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#10)" inContext (#4-14)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Reentrancy in Token._transfer(address,address,uint256) (#1120-1166):
External calls:
- swapAndLiquifyV1(haveAmount.div(5).mul(4)) (#1144)
- _receive.transfer(balance) (#1171)
State variables written after the call(s):
- super._transfer(from,address(this),amount.div(10)) (#1157)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#558-561)
- _balances[recipient] = _balances[recipient].add(amount) (#562)
- super._transfer(from,to,amount) (#1160)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#558-561)
- _balances[recipient] = _balances[recipient].add(amount) (#562)
- buyUser.push(to) (#1164)
- havePush[to] = true (#1163)
- swapping = false (#1146)
Event emitted after the call(s):
- Transfer(sender,recipient,amount) (#563)
- super._transfer(from,to,amount) (#1160)
- Transfer(sender,recipient,amount) (#563)
- super._transfer(from,address(this),amount.div(10)) (#1157)
Apply the check-effects-interactions pattern.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#821) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#822)
Prevent variables from having similar names.
Additional information: link
Token._splitOtherToken() (#1227-1274) uses literals with too many digits:
- rate = balanceOf(user).mul(1000000).div(totalAmount) (#1254)
Token._splitOtherToken() (#1227-1274) uses literals with too many digits:
- doge.transfer(user,thisAmount.mul(rate).div(1000000)) (#1256)
Token._splitOtherToken() (#1227-1274) uses literals with too many digits:
- rate = balanceOf(user).mul(1000000).div(totalAmount) (#1265)
Token._splitOtherToken() (#1227-1274) uses literals with too many digits:
- doge.transfer(user,thisAmount.mul(rate).div(1000000)) (#1267)
Token.slitherConstructorVariables() (#1019-1281) uses literals with too many digits:
- _destroyAddress = address(0x000000000000000000000000000000000000dEaD) (#1029)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
Token._destroyAddress (#1029) is never used in Token (#1019-1281)
Remove unused state variables.
Additional information: link
Token._destroyAddress (#1029) should be constant
Token._receive (#1028) should be constant
Token.startTime (#1034) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
owner() should be declared external:
- Ownable.owner() (#277-279)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#296-299)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#305-312)
name() should be declared external:
- ERC20.name() (#344-346)
symbol() should be declared external:
- ERC20.symbol() (#352-354)
decimals() should be declared external:
- ERC20.decimals() (#369-371)
totalSupply() should be declared external:
- ERC20.totalSupply() (#376-378)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#401-409)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (#414-422)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#431-439)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#454-469)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#483-494)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#510-524)
updateUniswapV2Router(address) should be declared external:
- Token.updateUniswapV2Router(address) (#1082-1085)
excludeMultipleAccountsFromFees(address[],bool) should be declared external:
- Token.excludeMultipleAccountsFromFees(address[],bool) (#1092-1098)
setSwapTokensAtAmount(uint256) should be declared external:
- Token.setSwapTokensAtAmount(uint256) (#1100-1102)
setSwapAndLiquifyEnabled(bool) should be declared external:
- Token.setSwapAndLiquifyEnabled(bool) (#1104-1106)
isExcludedFromFees(address) should be declared external:
- Token.isExcludedFromFees(address) (#1112-1114)
isIn3minter() should be declared external:
- Token.isIn3minter() (#1116-1118)
swapAndLiquifyV4() should be declared external:
- Token.swapAndLiquifyV4() (#1195-1197)
rescueToken(address,uint256) should be declared external:
- Token.rescueToken(address,uint256) (#1217-1223)
getBuysize() should be declared external:
- Token.getBuysize() (#1276-1278)
Use the external attribute for functions never called from the contract.
Additional information: link
Contract ticker (SpaceX Falcon) 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.
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 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 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
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account
Twitter account has few posts