MoonFlight Token Logo

FLIGHT [MoonFlight] Token

About FLIGHT

Listings

Not Found
Token 2 years
white paper

MoonFlight is a fully decentralised launchpad which allows anyone to launch new projects and provides FLIGHT holders passive income. Holding FLIGHT tokens grant

Social

Laser Scorebeta Last Audit: 30 December 2021

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

Anti-Scam

Links


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

Reentrancy in MoonFlight._transfer(address,address,uint256) (#990-1034):
External calls:
- swapAndLiquify(contractTokenBalance) (#1021)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,lptReceiver,block.timestamp) (#1082-1089)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1068-1074)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1021)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,lptReceiver,block.timestamp) (#1082-1089)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1033)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#946)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1115)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1124)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1135)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1116)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#857)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1126)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1136)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#859)
- _tokenTransfer(from,to,amount,takeFee) (#1033)
- _rTotal = _rTotal.sub(rFee) (#901)
- _tokenTransfer(from,to,amount,takeFee) (#1033)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#948)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#856)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1134)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1125)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#858)
Apply the check-effects-interactions pattern.

Additional information: link

MoonFlight.addLiquidity(uint256,uint256) (#1077-1090) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,lptReceiver,block.timestamp) (#1082-1089)
Ensure that all the return values of the function calls are used.

Additional information: link

MoonFlight.allowance(address,address).owner (#750) shadows:
- Ownable.owner() (#364-366) (function)
MoonFlight.permit(address,address,uint256,uint256,uint8,bytes32,bytes32).owner (#759) shadows:
- Ownable.owner() (#364-366) (function)
MoonFlight._approve(address,address,uint256).owner (#982) shadows:
- Ownable.owner() (#364-366) (function)
Rename the local variables that shadow another component.

Additional information: link

MoonFlight.setTaxFeePercent(uint256) (#873-875) should emit an event for:
- _taxFee = taxFee (#874)
MoonFlight.setLiquidityFeePercent(uint256) (#877-879) should emit an event for:
- _liquidityFee = liquidityFee (#878)
MoonFlight.setMaxTxPercent(uint256) (#881-885) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (#882-884)
Emit an event for critical parameter changes.

Additional information: link

MoonFlight.setLPTReceiver(address).account (#827) lacks a zero-check on :
- lptReceiver = account (#828)
Check that the address is not zero.

Additional information: link

Reentrancy in MoonFlight._transfer(address,address,uint256) (#990-1034):
External calls:
- swapAndLiquify(contractTokenBalance) (#1021)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,lptReceiver,block.timestamp) (#1082-1089)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1068-1074)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1021)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,lptReceiver,block.timestamp) (#1082-1089)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1033)
- _liquidityFee = _previousLiquidityFee (#975)
- _liquidityFee = 0 (#970)
- _tokenTransfer(from,to,amount,takeFee) (#1033)
- _previousLiquidityFee = _liquidityFee (#967)
- _tokenTransfer(from,to,amount,takeFee) (#1033)
- _previousTaxFee = _taxFee (#966)
- _tokenTransfer(from,to,amount,takeFee) (#1033)
- _tFeeTotal = _tFeeTotal.add(tFee) (#902)
- _tokenTransfer(from,to,amount,takeFee) (#1033)
- _taxFee = _previousTaxFee (#974)
- _taxFee = 0 (#969)
Reentrancy in MoonFlight.constructor() (#691-722):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#696-697)
State variables written after the call(s):
- DOMAIN_SEPARATOR = keccak256(bytes)(abi.encode(keccak256(bytes)(EIP712Domain(string name,string version,uint256 chainId,address verifyingContract)),keccak256(bytes)(bytes(_name)),keccak256(bytes)(bytes(1)),chainId,address(this))) (#711-719)
- _isExcludedFromFee[owner()] = true (#702)
- _isExcludedFromFee[address(this)] = true (#703)
- lptReceiver = _msgSender() (#705)
- uniswapV2Router = _uniswapV2Router (#699)
Reentrancy in MoonFlight.swapAndLiquify(uint256) (#1036-1057):
External calls:
- swapTokensForEth(half) (#1048)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1068-1074)
- addLiquidity(otherHalf,newBalance) (#1054)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,lptReceiver,block.timestamp) (#1082-1089)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1054)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,lptReceiver,block.timestamp) (#1082-1089)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1054)
- _allowances[owner][spender] = amount (#986)
Reentrancy in MoonFlight.transferFrom(address,address,uint256) (#777-781):
External calls:
- _transfer(sender,recipient,amount) (#778)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,lptReceiver,block.timestamp) (#1082-1089)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1068-1074)
External calls sending eth:
- _transfer(sender,recipient,amount) (#778)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,lptReceiver,block.timestamp) (#1082-1089)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#779)
- _allowances[owner][spender] = amount (#986)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in MoonFlight._transfer(address,address,uint256) (#990-1034):
External calls:
- swapAndLiquify(contractTokenBalance) (#1021)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,lptReceiver,block.timestamp) (#1082-1089)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1068-1074)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1021)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,lptReceiver,block.timestamp) (#1082-1089)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1119)
- _tokenTransfer(from,to,amount,takeFee) (#1033)
- Transfer(sender,recipient,tTransferAmount) (#1129)
- _tokenTransfer(from,to,amount,takeFee) (#1033)
- Transfer(sender,recipient,tTransferAmount) (#1139)
- _tokenTransfer(from,to,amount,takeFee) (#1033)
- Transfer(sender,recipient,tTransferAmount) (#862)
- _tokenTransfer(from,to,amount,takeFee) (#1033)
Reentrancy in MoonFlight.constructor() (#691-722):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#696-697)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#721)
Reentrancy in MoonFlight.swapAndLiquify(uint256) (#1036-1057):
External calls:
- swapTokensForEth(half) (#1048)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1068-1074)
- addLiquidity(otherHalf,newBalance) (#1054)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,lptReceiver,block.timestamp) (#1082-1089)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1054)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,lptReceiver,block.timestamp) (#1082-1089)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#987)
- addLiquidity(otherHalf,newBalance) (#1054)
- SwapAndLiquify(half,newBalance,otherHalf) (#1056)
Reentrancy in MoonFlight.transferFrom(address,address,uint256) (#777-781):
External calls:
- _transfer(sender,recipient,amount) (#778)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,lptReceiver,block.timestamp) (#1082-1089)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1068-1074)
External calls sending eth:
- _transfer(sender,recipient,amount) (#778)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,lptReceiver,block.timestamp) (#1082-1089)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#987)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#779)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable.unlock() (#411-416) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now > _lockTime,Contract is locked until 7 days) (#413)
MoonFlight.permit(address,address,uint256,uint256,uint8,bytes32,bytes32) (#759-775) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(deadline >= block.timestamp,MoonFlight: Permit Expired!) (#761)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#216-225) uses assembly
- INLINE ASM (#223)
Address._functionCallWithValue(address,bytes,uint256,string) (#309-330) uses assembly
- INLINE ASM (#322-325)
MoonFlight.constructor() (#691-722) uses assembly
- INLINE ASM (#708-710)
Do not use evm assembly.

Additional information: link

MoonFlight.includeInReward(address) (#841-852) has costly operations inside a loop:
- _excluded.pop() (#848)
Use a local variable to hold the loop computation result.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#309-330) is never used and should be removed
Address.functionCall(address,bytes) (#269-271) is never used and should be removed
Address.functionCall(address,bytes,string) (#279-281) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#294-296) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#304-307) is never used and should be removed
Address.isContract(address) (#216-225) is never used and should be removed
Address.sendValue(address,uint256) (#243-249) is never used and should be removed
Context._msgData() (#188-191) is never used and should be removed
SafeMath.mod(uint256,uint256) (#161-163) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#177-180) is never used and should be removed
Remove unused functions.

Additional information: link

MoonFlight._previousTaxFee (#656) is set pre-construction with a non-constant function or state variable:
- _taxFee
MoonFlight._previousLiquidityFee (#659) 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

Low level call in Address.sendValue(address,uint256) (#243-249):
- (success) = recipient.call{value: amount}() (#247)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#309-330):
- (success,returndata) = target.call{value: weiValue}(data) (#313)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#455) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#456) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#473) is not in mixedCase
Function IUniswapV2Router01.WETH() (#495) is not in mixedCase
Parameter MoonFlight.setSwapAndLiquifyEnabled(bool)._enabled (#887) is not in mixedCase
Parameter MoonFlight.calculateTaxFee(uint256)._amount (#951) is not in mixedCase
Parameter MoonFlight.calculateLiquidityFee(uint256)._amount (#957) is not in mixedCase
Constant MoonFlight._tTotal (#647) is not in UPPER_CASE_WITH_UNDERSCORES
Constant MoonFlight._name (#651) is not in UPPER_CASE_WITH_UNDERSCORES
Constant MoonFlight._symbol (#652) is not in UPPER_CASE_WITH_UNDERSCORES
Constant MoonFlight._decimals (#653) is not in UPPER_CASE_WITH_UNDERSCORES
Variable MoonFlight._taxFee (#655) is not in mixedCase
Variable MoonFlight._liquidityFee (#658) is not in mixedCase
Variable MoonFlight._maxTxAmount (#667) is not in mixedCase
Variable MoonFlight.DOMAIN_SEPARATOR (#672) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#189)" inContext (#183-192)
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 (#500) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#501)
Variable MoonFlight._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#922) is too similar to MoonFlight._getTValues(uint256).tTransferAmount (#914)
Variable MoonFlight._transferBothExcluded(address,address,uint256).rTransferAmount (#855) is too similar to MoonFlight._transferToExcluded(address,address,uint256).tTransferAmount (#1123)
Variable MoonFlight._transferFromExcluded(address,address,uint256).rTransferAmount (#1133) is too similar to MoonFlight._transferStandard(address,address,uint256).tTransferAmount (#1114)
Variable MoonFlight._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#922) is too similar to MoonFlight._transferStandard(address,address,uint256).tTransferAmount (#1114)
Variable MoonFlight._getValues(uint256).rTransferAmount (#907) is too similar to MoonFlight._getValues(uint256).tTransferAmount (#906)
Variable MoonFlight._transferBothExcluded(address,address,uint256).rTransferAmount (#855) is too similar to MoonFlight._getTValues(uint256).tTransferAmount (#914)
Variable MoonFlight._getValues(uint256).rTransferAmount (#907) is too similar to MoonFlight._transferFromExcluded(address,address,uint256).tTransferAmount (#1133)
Variable MoonFlight.reflectionFromToken(uint256,bool).rTransferAmount (#816) is too similar to MoonFlight._getValues(uint256).tTransferAmount (#906)
Variable MoonFlight._transferBothExcluded(address,address,uint256).rTransferAmount (#855) is too similar to MoonFlight._transferStandard(address,address,uint256).tTransferAmount (#1114)
Variable MoonFlight._transferFromExcluded(address,address,uint256).rTransferAmount (#1133) is too similar to MoonFlight._getValues(uint256).tTransferAmount (#906)
Variable MoonFlight._transferFromExcluded(address,address,uint256).rTransferAmount (#1133) is too similar to MoonFlight._transferFromExcluded(address,address,uint256).tTransferAmount (#1133)
Variable MoonFlight._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#922) is too similar to MoonFlight._getValues(uint256).tTransferAmount (#906)
Variable MoonFlight._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#922) is too similar to MoonFlight._transferFromExcluded(address,address,uint256).tTransferAmount (#1133)
Variable MoonFlight._transferStandard(address,address,uint256).rTransferAmount (#1114) is too similar to MoonFlight._transferToExcluded(address,address,uint256).tTransferAmount (#1123)
Variable MoonFlight._getValues(uint256).rTransferAmount (#907) is too similar to MoonFlight._transferBothExcluded(address,address,uint256).tTransferAmount (#855)
Variable MoonFlight._transferBothExcluded(address,address,uint256).rTransferAmount (#855) is too similar to MoonFlight._getValues(uint256).tTransferAmount (#906)
Variable MoonFlight._transferBothExcluded(address,address,uint256).rTransferAmount (#855) is too similar to MoonFlight._transferFromExcluded(address,address,uint256).tTransferAmount (#1133)
Variable MoonFlight._getValues(uint256).rTransferAmount (#907) is too similar to MoonFlight._transferToExcluded(address,address,uint256).tTransferAmount (#1123)
Variable MoonFlight._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#922) is too similar to MoonFlight._transferBothExcluded(address,address,uint256).tTransferAmount (#855)
Variable MoonFlight.reflectionFromToken(uint256,bool).rTransferAmount (#816) is too similar to MoonFlight._transferToExcluded(address,address,uint256).tTransferAmount (#1123)
Variable MoonFlight._transferStandard(address,address,uint256).rTransferAmount (#1114) is too similar to MoonFlight._transferStandard(address,address,uint256).tTransferAmount (#1114)
Variable MoonFlight._transferToExcluded(address,address,uint256).rTransferAmount (#1123) is too similar to MoonFlight._transferToExcluded(address,address,uint256).tTransferAmount (#1123)
Variable MoonFlight._transferFromExcluded(address,address,uint256).rTransferAmount (#1133) is too similar to MoonFlight._transferToExcluded(address,address,uint256).tTransferAmount (#1123)
Variable MoonFlight._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#922) is too similar to MoonFlight._transferToExcluded(address,address,uint256).tTransferAmount (#1123)
Variable MoonFlight._getValues(uint256).rTransferAmount (#907) is too similar to MoonFlight._getTValues(uint256).tTransferAmount (#914)
Variable MoonFlight._transferBothExcluded(address,address,uint256).rTransferAmount (#855) is too similar to MoonFlight._transferBothExcluded(address,address,uint256).tTransferAmount (#855)
Variable MoonFlight._getValues(uint256).rTransferAmount (#907) is too similar to MoonFlight._transferStandard(address,address,uint256).tTransferAmount (#1114)
Variable MoonFlight.reflectionFromToken(uint256,bool).rTransferAmount (#816) is too similar to MoonFlight._transferStandard(address,address,uint256).tTransferAmount (#1114)
Variable MoonFlight._transferToExcluded(address,address,uint256).rTransferAmount (#1123) is too similar to MoonFlight._transferFromExcluded(address,address,uint256).tTransferAmount (#1133)
Variable MoonFlight._transferFromExcluded(address,address,uint256).rTransferAmount (#1133) is too similar to MoonFlight._getTValues(uint256).tTransferAmount (#914)
Variable MoonFlight._transferToExcluded(address,address,uint256).rTransferAmount (#1123) is too similar to MoonFlight._transferBothExcluded(address,address,uint256).tTransferAmount (#855)
Variable MoonFlight._transferStandard(address,address,uint256).rTransferAmount (#1114) is too similar to MoonFlight._transferFromExcluded(address,address,uint256).tTransferAmount (#1133)
Variable MoonFlight.reflectionFromToken(uint256,bool).rTransferAmount (#816) is too similar to MoonFlight._getTValues(uint256).tTransferAmount (#914)
Variable MoonFlight._transferToExcluded(address,address,uint256).rTransferAmount (#1123) is too similar to MoonFlight._transferStandard(address,address,uint256).tTransferAmount (#1114)
Variable MoonFlight._transferStandard(address,address,uint256).rTransferAmount (#1114) is too similar to MoonFlight._transferBothExcluded(address,address,uint256).tTransferAmount (#855)
Variable MoonFlight._transferToExcluded(address,address,uint256).rTransferAmount (#1123) is too similar to MoonFlight._getValues(uint256).tTransferAmount (#906)
Variable MoonFlight.reflectionFromToken(uint256,bool).rTransferAmount (#816) is too similar to MoonFlight._transferFromExcluded(address,address,uint256).tTransferAmount (#1133)
Variable MoonFlight._transferToExcluded(address,address,uint256).rTransferAmount (#1123) is too similar to MoonFlight._getTValues(uint256).tTransferAmount (#914)
Variable MoonFlight._transferFromExcluded(address,address,uint256).rTransferAmount (#1133) is too similar to MoonFlight._transferBothExcluded(address,address,uint256).tTransferAmount (#855)
Variable MoonFlight._transferStandard(address,address,uint256).rTransferAmount (#1114) is too similar to MoonFlight._getValues(uint256).tTransferAmount (#906)
Variable MoonFlight.reflectionFromToken(uint256,bool).rTransferAmount (#816) is too similar to MoonFlight._transferBothExcluded(address,address,uint256).tTransferAmount (#855)
Variable MoonFlight._transferStandard(address,address,uint256).rTransferAmount (#1114) is too similar to MoonFlight._getTValues(uint256).tTransferAmount (#914)
Prevent variables from having similar names.

Additional information: link

MoonFlight.slitherConstructorVariables() (#633-1143) uses literals with too many digits:
- _maxTxAmount = 800000 * 10 ** 9 (#667)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

MoonFlight.numTokensSellToAddToLiquidity (#668) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#383-386)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#392-396)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#398-400)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#403-408)
unlock() should be declared external:
- Ownable.unlock() (#411-416)
name() should be declared external:
- MoonFlight.name() (#724-726)
symbol() should be declared external:
- MoonFlight.symbol() (#728-730)
decimals() should be declared external:
- MoonFlight.decimals() (#732-734)
totalSupply() should be declared external:
- MoonFlight.totalSupply() (#736-738)
transfer(address,uint256) should be declared external:
- MoonFlight.transfer(address,uint256) (#745-748)
allowance(address,address) should be declared external:
- MoonFlight.allowance(address,address) (#750-752)
approve(address,uint256) should be declared external:
- MoonFlight.approve(address,uint256) (#754-757)
transferFrom(address,address,uint256) should be declared external:
- MoonFlight.transferFrom(address,address,uint256) (#777-781)
increaseAllowance(address,uint256) should be declared external:
- MoonFlight.increaseAllowance(address,uint256) (#783-786)
decreaseAllowance(address,uint256) should be declared external:
- MoonFlight.decreaseAllowance(address,uint256) (#788-791)
isExcludedFromReward(address) should be declared external:
- MoonFlight.isExcludedFromReward(address) (#793-795)
totalFees() should be declared external:
- MoonFlight.totalFees() (#797-799)
deliver(uint256) should be declared external:
- MoonFlight.deliver(uint256) (#801-808)
reflectionFromToken(uint256,bool) should be declared external:
- MoonFlight.reflectionFromToken(uint256,bool) (#810-819)
setLPTReceiver(address) should be declared external:
- MoonFlight.setLPTReceiver(address) (#827-829)
excludeFromReward(address) should be declared external:
- MoonFlight.excludeFromReward(address) (#831-839)
excludeFromFee(address) should be declared external:
- MoonFlight.excludeFromFee(address) (#865-867)
includeInFee(address) should be declared external:
- MoonFlight.includeInFee(address) (#869-871)
setSwapAndLiquifyEnabled(bool) should be declared external:
- MoonFlight.setSwapAndLiquifyEnabled(bool) (#887-890)
recoverBNB() should be declared external:
- MoonFlight.recoverBNB() (#893-895)
isExcludedFromFee(address) should be declared external:
- MoonFlight.isExcludedFromFee(address) (#978-980)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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


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.


Last post in Twitter was more than 180 days ago


Telegram account has relatively few subscribers


Twitter account has relatively few followers


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


Unable to find token on CoinHunt

Additional information: link


Unable to find code repository for the project


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


Young tokens have high risks of price dump / death

Price for FLIGHT

News for FLIGHT