MoonFlip Token Logo

MFLIP [MoonFlip] Token

About MFLIP

Listings

Not Found
Token 4 years

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 2 March 2022

report
Token seems to be anonymous. As long as we are unable to find website score is limited.


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

Token._tFeeTotal (contracts/Token.sol#50) is never initialized. It is used in:
- Token.totalFees() (contracts/Token.sol#149-151)
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

Token._transfer(address,address,uint256) (contracts/Token.sol#171-198) uses a dangerous strict equality:
- block.timestamp == launchTime && reward.isIncludedInFee(from) && to != address(0x10ED43C718714eb63d5aA57B78B54704E256024E) (contracts/Token.sol#179)
Don't use strict equality to determine if an account has enough Ether or tokens.

Additional information: link

Reentrancy in Token._tokenTransfer(address,address,uint256,bool) (contracts/Token.sol#201-221):
External calls:
- _transferStandard(sender,recipient,amount) (contracts/Token.sol#211)
- rand = reward.random(_maxRand) (contracts/Token.sol#460)
- _transferStandard(sender,recipient,amount) (contracts/Token.sol#215)
- rand = reward.random(_maxRand) (contracts/Token.sol#460)
State variables written after the call(s):
- restoreAllFee() (contracts/Token.sol#219)
- _taxFee = _previousTaxFee (contracts/Token.sol#370)
Reentrancy in Token.rewardTransfer(address,uint256) (contracts/Token.sol#457-472):
External calls:
- rand = reward.random(_maxRand) (contracts/Token.sol#460)
- _transfer(address(this),_to,awarded) (contracts/Token.sol#471)
- rand = reward.random(_maxRand) (contracts/Token.sol#460)
State variables written after the call(s):
- _transfer(address(this),_to,awarded) (contracts/Token.sol#471)
- _rOwned[address(this)] = _rOwned[address(this)].add(rTax) (contracts/Token.sol#325)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (contracts/Token.sol#244)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (contracts/Token.sol#226)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (contracts/Token.sol#227)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (contracts/Token.sol#273)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (contracts/Token.sol#259)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (contracts/Token.sol#260)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (contracts/Token.sol#246)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (contracts/Token.sol#275)
- _transfer(address(this),_to,awarded) (contracts/Token.sol#471)
- _tOwned[address(this)] = _tOwned[address(this)].add(tTax) (contracts/Token.sol#327)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (contracts/Token.sol#272)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (contracts/Token.sol#258)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (contracts/Token.sol#245)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (contracts/Token.sol#274)
Apply the check-effects-interactions pattern.

Additional information: link

Token.addToBlackList(address[]).i (contracts/Token.sol#420) 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

Token.allowance(address,address).owner (contracts/Token.sol#124) shadows:
- Ownable.owner() (contracts/misc/Ownable.sol#40-42) (function)
Token._approve(address,address,uint256).owner (contracts/Token.sol#163) shadows:
- Ownable.owner() (contracts/misc/Ownable.sol#40-42) (function)
Rename the local variables that shadow another component.

Additional information: link

Token.setMaxTxPercent(uint256) (contracts/Token.sol#400-404) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (contracts/Token.sol#401-403)
Token.setMaxTxAmount(uint256) (contracts/Token.sol#406-408) should emit an event for:
- _maxTxAmount = maxTxAmount (contracts/Token.sol#407)
Token.setTaxFee(uint256) (contracts/Token.sol#430-432) should emit an event for:
- _taxFee = amount (contracts/Token.sol#431)
Emit an event for critical parameter changes.

Additional information: link

Ownable.constructor().msgSender (contracts/misc/Ownable.sol#32) lacks a zero-check on :
- _owner = msgSender (contracts/misc/Ownable.sol#33)
Check that the address is not zero.

Additional information: link

Reentrancy in Token.transferFrom(address,address,uint256) (contracts/Token.sol#133-137):
External calls:
- _transfer(sender,recipient,amount) (contracts/Token.sol#134)
- rand = reward.random(_maxRand) (contracts/Token.sol#460)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (contracts/Token.sol#135)
- _allowances[owner][spender] = amount (contracts/Token.sol#167)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in Token.rewardTransfer(address,uint256) (contracts/Token.sol#457-472):
External calls:
- rand = reward.random(_maxRand) (contracts/Token.sol#460)
- _transfer(address(this),_to,awarded) (contracts/Token.sol#471)
- rand = reward.random(_maxRand) (contracts/Token.sol#460)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (contracts/Token.sol#230)
- _transfer(address(this),_to,awarded) (contracts/Token.sol#471)
- Transfer(sender,recipient,tTransferAmount.add(tFee)) (contracts/Token.sol#262)
- _transfer(address(this),_to,awarded) (contracts/Token.sol#471)
- Transfer(sender,recipient,tTransferAmount.add(tFee)) (contracts/Token.sol#248)
- _transfer(address(this),_to,awarded) (contracts/Token.sol#471)
- Transfer(sender,address(this),tFee) (contracts/Token.sol#233)
- _transfer(address(this),_to,awarded) (contracts/Token.sol#471)
- Transfer(sender,recipient,tTransferAmount.add(tFee)) (contracts/Token.sol#277)
- _transfer(address(this),_to,awarded) (contracts/Token.sol#471)
- Transfer(sender,address(this),tFee) (contracts/Token.sol#251)
- _transfer(address(this),_to,awarded) (contracts/Token.sol#471)
- Transfer(sender,address(this),tFee) (contracts/Token.sol#265)
- _transfer(address(this),_to,awarded) (contracts/Token.sol#471)
- Transfer(sender,address(this),tFee) (contracts/Token.sol#280)
- _transfer(address(this),_to,awarded) (contracts/Token.sol#471)
Reentrancy in Token.transferFrom(address,address,uint256) (contracts/Token.sol#133-137):
External calls:
- _transfer(sender,recipient,amount) (contracts/Token.sol#134)
- rand = reward.random(_maxRand) (contracts/Token.sol#460)
Event emitted after the call(s):
- Approval(owner,spender,amount) (contracts/Token.sol#168)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (contracts/Token.sol#135)
Apply the check-effects-interactions pattern.

Additional information: link

Token._transfer(address,address,uint256) (contracts/Token.sol#171-198) uses timestamp for comparisons
Dangerous comparisons:
- block.timestamp == launchTime && reward.isIncludedInFee(from) && to != address(0x10ED43C718714eb63d5aA57B78B54704E256024E) (contracts/Token.sol#179)
Ownable.unlockOwner() (contracts/misc/Ownable.sol#87-92) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is still locked) (contracts/misc/Ownable.sol#89)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (contracts/library/Address.sol#9-18) uses assembly
- INLINE ASM (contracts/library/Address.sol#16)
Address._verifyCallResult(bool,bytes,string) (contracts/library/Address.sol#90-108) uses assembly
- INLINE ASM (contracts/library/Address.sol#100-103)
Do not use evm assembly.

Additional information: link

Token.isBlackedListed(address,address) (contracts/Token.sol#90-96) compares to a boolean constant:
-require(bool,string)(_isBlacklisted[from] == false && _isBlacklisted[to] == false,BEP20: Account is blacklisted from transferring) (contracts/Token.sol#91-94)
Remove the equality to the boolean constant.

Additional information: link

Different versions of Solidity is used:
- Version used: ['>=0.6.12', '>=0.6.2']
- >=0.6.12 (contracts/Token.sol#25)
- >=0.6.12 (contracts/interfaces/IERC20.sol#3)
- >=0.6.12 (contracts/interfaces/IRewards.sol#3)
- >=0.6.2 (contracts/interfaces/IRouter.sol#3)
- >=0.6.2 (contracts/interfaces/IUniswapV2Pair.sol#3)
- >=0.6.2 (contracts/library/Address.sol#3)
- >=0.6.2 (contracts/library/SafeMath.sol#3)
- >=0.6.2 (contracts/misc/Context.sol#3)
- >=0.6.12 (contracts/misc/ERC20.sol#3)
- >=0.6.12 (contracts/misc/Ownable.sol#6)
Use one Solidity version.

Additional information: link

Token.includeInReward(address) (contracts/Token.sol#345-356) has costly operations inside a loop:
- _excluded.pop() (contracts/Token.sol#352)
Use a local variable to hold the loop computation result.

Additional information: link

Address._verifyCallResult(bool,bytes,string) (contracts/library/Address.sol#90-108) is never used and should be removed
Address.functionCall(address,bytes) (contracts/library/Address.sol#27-29) is never used and should be removed
Address.functionCall(address,bytes,string) (contracts/library/Address.sol#31-37) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (contracts/library/Address.sol#39-45) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (contracts/library/Address.sol#47-58) is never used and should be removed
Address.functionDelegateCall(address,bytes) (contracts/library/Address.sol#75-77) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (contracts/library/Address.sol#79-88) is never used and should be removed
Address.functionStaticCall(address,bytes) (contracts/library/Address.sol#60-62) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (contracts/library/Address.sol#64-73) is never used and should be removed
Address.isContract(address) (contracts/library/Address.sol#9-18) is never used and should be removed
Address.sendValue(address,uint256) (contracts/library/Address.sol#20-25) is never used and should be removed
Context._msgData() (contracts/misc/Context.sol#21-24) is never used and should be removed
ERC20._afterTokenTransfer(address,address,uint256) (contracts/misc/ERC20.sol#12-16) is never used and should be removed
ERC20._beforeTokenTransfer(address,address,uint256) (contracts/misc/ERC20.sol#6-10) is never used and should be removed
SafeMath.mod(uint256,uint256) (contracts/library/SafeMath.sol#133-135) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (contracts/library/SafeMath.sol#148-151) is never used and should be removed
Remove unused functions.

Additional information: link

Token._rTotal (contracts/Token.sol#49) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
Token._previousTaxFee (contracts/Token.sol#65) is set pre-construction with a non-constant function or state variable:
- _taxFee
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

Pragma version>=0.6.2 (contracts/interfaces/IRouter.sol#3) allows old versions
Pragma version>=0.6.2 (contracts/interfaces/IUniswapV2Pair.sol#3) allows old versions
Pragma version>=0.6.2 (contracts/library/Address.sol#3) allows old versions
Pragma version>=0.6.2 (contracts/library/SafeMath.sol#3) allows old versions
Pragma version>=0.6.2 (contracts/misc/Context.sol#3) allows old versions
solc-0.8.0 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

Low level call in Address.sendValue(address,uint256) (contracts/library/Address.sol#20-25):
- (success) = recipient.call{value: amount}() (contracts/library/Address.sol#23)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (contracts/library/Address.sol#47-58):
- (success,returndata) = target.call{value: value}(data) (contracts/library/Address.sol#56)
Low level call in Address.functionStaticCall(address,bytes,string) (contracts/library/Address.sol#64-73):
- (success,returndata) = target.staticcall(data) (contracts/library/Address.sol#71)
Low level call in Address.functionDelegateCall(address,bytes,string) (contracts/library/Address.sol#79-88):
- (success,returndata) = target.delegatecall(data) (contracts/library/Address.sol#86)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Parameter Token.calculateTaxFee(uint256)._amount (contracts/Token.sol#330) is not in mixedCase
Parameter Token.setGlobalTax(bool)._enabled (contracts/Token.sol#373) is not in mixedCase
Parameter Token.setTaxBuy(bool)._enabled (contracts/Token.sol#377) is not in mixedCase
Parameter Token.setTaxSell(bool)._enabled (contracts/Token.sol#381) is not in mixedCase
Parameter Token.rewardTransfer(address,uint256)._to (contracts/Token.sol#457) is not in mixedCase
Parameter Token.rewardTransfer(address,uint256)._amount (contracts/Token.sol#457) is not in mixedCase
Variable Token._isBlacklisted (contracts/Token.sol#39) is not in mixedCase
Constant Token._maxSupply (contracts/Token.sol#47) is not in UPPER_CASE_WITH_UNDERSCORES
Variable Token._maxPoolRewardDivider (contracts/Token.sol#62) is not in mixedCase
Variable Token._taxFee (contracts/Token.sol#64) is not in mixedCase
Variable Token._maxTxAmount (contracts/Token.sol#67) is not in mixedCase
Function IUniswapV2Router01.WETH() (contracts/interfaces/IRouter.sol#7) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (contracts/interfaces/IUniswapV2Pair.sol#20) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (contracts/interfaces/IUniswapV2Pair.sol#21) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (contracts/interfaces/IUniswapV2Pair.sol#38) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (contracts/misc/Context.sol#22)" inContext (contracts/misc/Context.sol#16-26)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable Token._transferFromExcluded(address,address,uint256).rTransferAmount (contracts/Token.sol#256) is too similar to Token._getValues(uint256).tTransferAmount (contracts/Token.sol#287)
Variable Token._transferBothExcluded(address,address,uint256).rTransferAmount (contracts/Token.sol#270) is too similar to Token._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/Token.sol#270)
Variable Token._transferBothExcluded(address,address,uint256).rTransferAmount (contracts/Token.sol#270) is too similar to Token._getTValues(uint256).tTransferAmount (contracts/Token.sol#294)
Variable Token._getRValues(uint256,uint256,uint256).rTransferAmount (contracts/Token.sol#301) is too similar to Token._transferStandard(address,address,uint256).tTransferAmount (contracts/Token.sol#224)
Variable Token._transferToExcluded(address,address,uint256).rTransferAmount (contracts/Token.sol#242) is too similar to Token._transferToExcluded(address,address,uint256).tTransferAmount (contracts/Token.sol#242)
Variable Token._transferToExcluded(address,address,uint256).rTransferAmount (contracts/Token.sol#242) is too similar to Token._transferStandard(address,address,uint256).tTransferAmount (contracts/Token.sol#224)
Variable Token._transferFromExcluded(address,address,uint256).rTransferAmount (contracts/Token.sol#256) is too similar to Token._transferStandard(address,address,uint256).tTransferAmount (contracts/Token.sol#224)
Variable Token._getRValues(uint256,uint256,uint256).rTransferAmount (contracts/Token.sol#301) is too similar to Token._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/Token.sol#270)
Variable Token._transferBothExcluded(address,address,uint256).rTransferAmount (contracts/Token.sol#270) is too similar to Token._getValues(uint256).tTransferAmount (contracts/Token.sol#287)
Variable Token._getRValues(uint256,uint256,uint256).rTransferAmount (contracts/Token.sol#301) is too similar to Token._getTValues(uint256).tTransferAmount (contracts/Token.sol#294)
Variable Token._transferToExcluded(address,address,uint256).rTransferAmount (contracts/Token.sol#242) is too similar to Token._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/Token.sol#256)
Variable Token._transferToExcluded(address,address,uint256).rTransferAmount (contracts/Token.sol#242) is too similar to Token._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/Token.sol#270)
Variable Token._transferToExcluded(address,address,uint256).rTransferAmount (contracts/Token.sol#242) is too similar to Token._getTValues(uint256).tTransferAmount (contracts/Token.sol#294)
Variable Token._transferFromExcluded(address,address,uint256).rTransferAmount (contracts/Token.sol#256) is too similar to Token._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/Token.sol#256)
Variable Token._transferFromExcluded(address,address,uint256).rTransferAmount (contracts/Token.sol#256) is too similar to Token._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/Token.sol#270)
Variable Token._transferFromExcluded(address,address,uint256).rTransferAmount (contracts/Token.sol#256) is too similar to Token._getTValues(uint256).tTransferAmount (contracts/Token.sol#294)
Variable Token._getRValues(uint256,uint256,uint256).rTransferAmount (contracts/Token.sol#301) is too similar to Token._getValues(uint256).tTransferAmount (contracts/Token.sol#287)
Variable Token._transferToExcluded(address,address,uint256).rTransferAmount (contracts/Token.sol#242) is too similar to Token._getValues(uint256).tTransferAmount (contracts/Token.sol#287)
Variable Token._transferStandard(address,address,uint256).rTransferAmount (contracts/Token.sol#224) is too similar to Token._getValues(uint256).tTransferAmount (contracts/Token.sol#287)
Variable Token._getRValues(uint256,uint256,uint256).rTransferAmount (contracts/Token.sol#301) is too similar to Token._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/Token.sol#256)
Variable Token._getValues(uint256).rTransferAmount (contracts/Token.sol#288) is too similar to Token._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/Token.sol#270)
Variable Token._transferStandard(address,address,uint256).rTransferAmount (contracts/Token.sol#224) is too similar to Token._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/Token.sol#270)
Variable Token._getValues(uint256).rTransferAmount (contracts/Token.sol#288) is too similar to Token._transferStandard(address,address,uint256).tTransferAmount (contracts/Token.sol#224)
Variable Token._transferStandard(address,address,uint256).rTransferAmount (contracts/Token.sol#224) is too similar to Token._transferStandard(address,address,uint256).tTransferAmount (contracts/Token.sol#224)
Variable Token._getValues(uint256).rTransferAmount (contracts/Token.sol#288) is too similar to Token._transferToExcluded(address,address,uint256).tTransferAmount (contracts/Token.sol#242)
Variable Token._transferBothExcluded(address,address,uint256).rTransferAmount (contracts/Token.sol#270) is too similar to Token._transferStandard(address,address,uint256).tTransferAmount (contracts/Token.sol#224)
Variable Token._getValues(uint256).rTransferAmount (contracts/Token.sol#288) is too similar to Token._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/Token.sol#256)
Variable Token._transferStandard(address,address,uint256).rTransferAmount (contracts/Token.sol#224) is too similar to Token._transferToExcluded(address,address,uint256).tTransferAmount (contracts/Token.sol#242)
Variable Token._getValues(uint256).rTransferAmount (contracts/Token.sol#288) is too similar to Token._getTValues(uint256).tTransferAmount (contracts/Token.sol#294)
Variable Token._transferStandard(address,address,uint256).rTransferAmount (contracts/Token.sol#224) is too similar to Token._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/Token.sol#256)
Variable Token._transferFromExcluded(address,address,uint256).rTransferAmount (contracts/Token.sol#256) is too similar to Token._transferToExcluded(address,address,uint256).tTransferAmount (contracts/Token.sol#242)
Variable Token._getValues(uint256).rTransferAmount (contracts/Token.sol#288) is too similar to Token._getValues(uint256).tTransferAmount (contracts/Token.sol#287)
Variable Token._transferStandard(address,address,uint256).rTransferAmount (contracts/Token.sol#224) is too similar to Token._getTValues(uint256).tTransferAmount (contracts/Token.sol#294)
Variable Token._transferBothExcluded(address,address,uint256).rTransferAmount (contracts/Token.sol#270) is too similar to Token._transferToExcluded(address,address,uint256).tTransferAmount (contracts/Token.sol#242)
Variable Token._getRValues(uint256,uint256,uint256).rTransferAmount (contracts/Token.sol#301) is too similar to Token._transferToExcluded(address,address,uint256).tTransferAmount (contracts/Token.sol#242)
Variable Token._transferBothExcluded(address,address,uint256).rTransferAmount (contracts/Token.sol#270) is too similar to Token._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/Token.sol#256)
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (contracts/interfaces/IRouter.sol#12) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (contracts/interfaces/IRouter.sol#13)
Prevent variables from having similar names.

Additional information: link

Token.slitherConstructorVariables() (contracts/Token.sol#27-473) uses literals with too many digits:
- _maxRand = 1000000 (contracts/Token.sol#56)
Token.slitherConstructorVariables() (contracts/Token.sol#27-473) uses literals with too many digits:
- _maxTxAmount = 50000000 * 10 ** 18 (contracts/Token.sol#67)
Token.slitherConstructorConstantVariables() (contracts/Token.sol#27-473) uses literals with too many digits:
- BURN_ADDRESS = 0x000000000000000000000000000000000000dEaD (contracts/Token.sol#33)
Token.slitherConstructorConstantVariables() (contracts/Token.sol#27-473) uses literals with too many digits:
- _maxSupply = 10000000000 * 10 ** 18 (contracts/Token.sol#47)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Token._decimals (contracts/Token.sol#55) should be constant
Token._maxPoolRewardDivider (contracts/Token.sol#62) should be constant
Token._maxRand (contracts/Token.sol#56) should be constant
Token._tFeeTotal (contracts/Token.sol#50) should be constant
Token._tTotal (contracts/Token.sol#48) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

name() should be declared external:
- Token.name() (contracts/Token.sol#98-100)
symbol() should be declared external:
- Token.symbol() (contracts/Token.sol#102-104)
decimals() should be declared external:
- Token.decimals() (contracts/Token.sol#106-108)
transfer(address,uint256) should be declared external:
- Token.transfer(address,uint256) (contracts/Token.sol#119-122)
allowance(address,address) should be declared external:
- Token.allowance(address,address) (contracts/Token.sol#124-126)
approve(address,uint256) should be declared external:
- Token.approve(address,uint256) (contracts/Token.sol#128-131)
transferFrom(address,address,uint256) should be declared external:
- Token.transferFrom(address,address,uint256) (contracts/Token.sol#133-137)
increaseAllowance(address,uint256) should be declared external:
- Token.increaseAllowance(address,uint256) (contracts/Token.sol#139-142)
decreaseAllowance(address,uint256) should be declared external:
- Token.decreaseAllowance(address,uint256) (contracts/Token.sol#144-147)
totalFees() should be declared external:
- Token.totalFees() (contracts/Token.sol#149-151)
totalBurnt() should be declared external:
- Token.totalBurnt() (contracts/Token.sol#153-155)
excludeFromReward(address) should be declared external:
- Token.excludeFromReward(address) (contracts/Token.sol#336-343)
includeInReward(address) should be declared external:
- Token.includeInReward(address) (contracts/Token.sol#345-356)
isExcludedFromReward(address) should be declared external:
- Token.isExcludedFromReward(address) (contracts/Token.sol#358-360)
setGlobalTax(bool) should be declared external:
- Token.setGlobalTax(bool) (contracts/Token.sol#373-375)
setTaxBuy(bool) should be declared external:
- Token.setTaxBuy(bool) (contracts/Token.sol#377-379)
setTaxSell(bool) should be declared external:
- Token.setTaxSell(bool) (contracts/Token.sol#381-383)
burnTokens(uint256) should be declared external:
- Token.burnTokens(uint256) (contracts/Token.sol#385-398)
excludeFromFee(address) should be declared external:
- Token.excludeFromFee(address) (contracts/Token.sol#410-412)
includeInFee(address) should be declared external:
- Token.includeInFee(address) (contracts/Token.sol#414-416)
setTaxFee(uint256) should be declared external:
- Token.setTaxFee(uint256) (contracts/Token.sol#430-432)
updateRewardAddress(address) should be declared external:
- Token.updateRewardAddress(address) (contracts/Token.sol#434-436)
foundationBNBWithdraw() should be declared external:
- Token.foundationBNBWithdraw() (contracts/Token.sol#453-455)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (contracts/misc/Ownable.sol#59-62)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (contracts/misc/Ownable.sol#68-72)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (contracts/misc/Ownable.sol#74-76)
lockOwner(uint256) should be declared external:
- Ownable.lockOwner(uint256) (contracts/misc/Ownable.sol#79-84)
unlockOwner() should be declared external:
- Ownable.unlockOwner() (contracts/misc/Ownable.sol#87-92)
Use the external attribute for functions never called from the contract.

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.


Number of Binance Smart Chain (BSC) token holders is low.


Token is deployed only at one blockchain

Contract has -20% buy tax and 4% sell tax.
Taxes are low and contract ownership is renounced.


Unable to find Telegram and Twitter accounts


Unable to find website, listings and other project-related information


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


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for MFLIP