Freefinance - DEX on Binance Smart Chain (BSC) with the best farms in DeFi and a lottery for FREE Coin.
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Contract ownership is not renounced (belongs to a wallet)
Stake._intrest(uint256) (contracts/stake.sol#94-111) performs a multiplication on the result of a division:
-index_scope_0 = (stake_percent_lvl3[0] - stake_percent_lvl2[0]).mul(100000).div(stake_percent_lvl3[1].div(OneDay) - stake_percent_lvl2[1].div(OneDay)) (contracts/stake.sol#105-107)
-extra_scope_1 = (_days - stake_percent_lvl2[1].div(OneDay)) * index_scope_0 (contracts/stake.sol#108)
Stake._intrest(uint256) (contracts/stake.sol#94-111) performs a multiplication on the result of a division:
-index = (stake_percent_lvl2[0] - stake_percent_lvl1[0]).mul(100000).div(stake_percent_lvl2[1].div(OneDay) - stake_percent_lvl1[1].div(OneDay)) (contracts/stake.sol#99-101)
-extra = (_days - stake_percent_lvl1[1].div(OneDay)) * index (contracts/stake.sol#102)
Consider ordering multiplication before division.
Additional information: link
Stake.stake_new(uint256,uint256,uint256,uint256,uint256) (contracts/stake.sol#124-151) ignores return value by stakingIdsOf[msg.sender].add(currentStakingId.current()) (contracts/stake.sol#138)
Ensure that all the return values of the function calls are used.
Additional information: link
Stake.set_price_oracle(address)._oracle (contracts/stake.sol#87) lacks a zero-check on :
- price_oracle = _oracle (contracts/stake.sol#88)
Check that the address is not zero.
Additional information: link
Reentrancy in XFree.convert(uint256) (contracts/xfree.sol#53-61):
External calls:
- _burnfree(_amount) (contracts/xfree.sol#54)
- ERC20Burnable(stake_token).burn(_amount) (contracts/xfree.sol#72)
- require(bool,string)(STAKE_TOKEN.transferFrom(msg.sender,address(this),_amount),transferFrom error) (contracts/xfree.sol#81)
State variables written after the call(s):
- mintXFREE(msg.sender,xfree) (contracts/xfree.sol#56)
- _balances[account] += amount (@openzeppelin/contracts/token/ERC20/ERC20.sol#257)
- mintXFREE(msg.sender,xfree) (contracts/xfree.sol#56)
- _totalSupply += amount (@openzeppelin/contracts/token/ERC20/ERC20.sol#256)
Reentrancy in XFree.deposit(uint256,uint256) (contracts/xfree.sol#31-43):
External calls:
- _deposit(_amount) (contracts/xfree.sol#33)
- require(bool,string)(STAKE_TOKEN.transferFrom(msg.sender,address(this),_amount),transferFrom error) (contracts/xfree.sol#81)
State variables written after the call(s):
- mintXFREE(msg.sender,xbonus) (contracts/xfree.sol#42)
- _balances[account] += amount (@openzeppelin/contracts/token/ERC20/ERC20.sol#257)
- mintXFREE(msg.sender,xbonus) (contracts/xfree.sol#42)
- _totalSupply += amount (@openzeppelin/contracts/token/ERC20/ERC20.sol#256)
- stake_new(interest,xfree,xbonus,_days,_amount) (contracts/xfree.sol#39)
- totalStakedXCOIN = totalStakedXCOIN.add(xfree) (contracts/stake.sol#139)
- stake_new(interest,xfree,xbonus,_days,_amount) (contracts/xfree.sol#39)
- userStakingOf[currentStakingId.current()] = UserStaking(msg.sender,_days,currentStakingId.current(),block.timestamp,block.timestamp.add(_days.mul(OneDay)),free,xfree,xbonus,interest,true) (contracts/stake.sol#126-137)
Reentrancy in XFree.withdraw(uint256) (contracts/xfree.sol#45-50):
External calls:
- _withdraw(free) (contracts/xfree.sol#48)
- require(bool,string)(STAKE_TOKEN.transfer(msg.sender,_amount),transfer error) (contracts/xfree.sol#85)
State variables written after the call(s):
- mintXFREE(msg.sender,xfree) (contracts/xfree.sol#49)
- _balances[account] += amount (@openzeppelin/contracts/token/ERC20/ERC20.sol#257)
- mintXFREE(msg.sender,xfree) (contracts/xfree.sol#49)
- _totalSupply += amount (@openzeppelin/contracts/token/ERC20/ERC20.sol#256)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in XFree.convert(uint256) (contracts/xfree.sol#53-61):
External calls:
- _burnfree(_amount) (contracts/xfree.sol#54)
- ERC20Burnable(stake_token).burn(_amount) (contracts/xfree.sol#72)
- require(bool,string)(STAKE_TOKEN.transferFrom(msg.sender,address(this),_amount),transferFrom error) (contracts/xfree.sol#81)
Event emitted after the call(s):
- SWAP_WITH_BURN(msg.sender,_amount,xfree) (contracts/xfree.sol#57-60)
- Transfer(address(0),account,amount) (@openzeppelin/contracts/token/ERC20/ERC20.sol#258)
- mintXFREE(msg.sender,xfree) (contracts/xfree.sol#56)
Reentrancy in XFree.deposit(uint256,uint256) (contracts/xfree.sol#31-43):
External calls:
- _deposit(_amount) (contracts/xfree.sol#33)
- require(bool,string)(STAKE_TOKEN.transferFrom(msg.sender,address(this),_amount),transferFrom error) (contracts/xfree.sol#81)
Event emitted after the call(s):
- STAKE(msg.sender,_days,currentStakingId.current(),block.timestamp,block.timestamp.add(_days.mul(OneDay)),free,xfree,xbonus,interest) (contracts/stake.sol#140-150)
- stake_new(interest,xfree,xbonus,_days,_amount) (contracts/xfree.sol#39)
- Transfer(address(0),account,amount) (@openzeppelin/contracts/token/ERC20/ERC20.sol#258)
- mintXFREE(msg.sender,xbonus) (contracts/xfree.sol#42)
Reentrancy in XFree.withdraw(uint256) (contracts/xfree.sol#45-50):
External calls:
- _withdraw(free) (contracts/xfree.sol#48)
- require(bool,string)(STAKE_TOKEN.transfer(msg.sender,_amount),transfer error) (contracts/xfree.sol#85)
Event emitted after the call(s):
- Transfer(address(0),account,amount) (@openzeppelin/contracts/token/ERC20/ERC20.sol#258)
- mintXFREE(msg.sender,xfree) (contracts/xfree.sol#49)
Apply the check-effects-interactions pattern.
Additional information: link
Stake.unstake(uint256) (contracts/stake.sol#164-180) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(userStaking.unstakeDate <= block.timestamp,unstake date in the future) (contracts/stake.sol#169)
Avoid relying on block.timestamp.
Additional information: link
EnumerableSet.values(EnumerableSet.AddressSet) (@openzeppelin/contracts/utils/structs/EnumerableSet.sol#273-282) uses assembly
- INLINE ASM (@openzeppelin/contracts/utils/structs/EnumerableSet.sol#277-279)
EnumerableSet.values(EnumerableSet.UintSet) (@openzeppelin/contracts/utils/structs/EnumerableSet.sol#346-355) uses assembly
- INLINE ASM (@openzeppelin/contracts/utils/structs/EnumerableSet.sol#350-352)
Do not use evm assembly.
Additional information: link
Different versions of Solidity is used:
- Version used: ['^0.8.0', '^0.8.4']
- ^0.8.0 (@openzeppelin/contracts/token/ERC20/ERC20.sol#3)
- ^0.8.0 (@openzeppelin/contracts/token/ERC20/IERC20.sol#3)
- ^0.8.0 (@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol#3)
- ^0.8.0 (@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol#3)
- ^0.8.0 (@openzeppelin/contracts/utils/Context.sol#3)
- ^0.8.0 (@openzeppelin/contracts/utils/Counters.sol#3)
- ^0.8.0 (@openzeppelin/contracts/utils/math/SafeMath.sol#3)
- ^0.8.0 (@openzeppelin/contracts/utils/structs/EnumerableSet.sol#3)
- ^0.8.4 (contracts/admin.sol#2)
- ^0.8.4 (contracts/interfaces/IFreePriceOracle.sol#2)
- ^0.8.4 (contracts/interfaces/IStake.sol#2)
- ^0.8.4 (contracts/stake.sol#2)
- ^0.8.4 (contracts/treasury.sol#2)
- ^0.8.4 (contracts/xfree.sol#2)
Use one Solidity version.
Additional information: link
Context._msgData() (@openzeppelin/contracts/utils/Context.sol#20-22) is never used and should be removed
Counters.decrement(Counters.Counter) (@openzeppelin/contracts/utils/Counters.sol#31-37) is never used and should be removed
Counters.reset(Counters.Counter) (@openzeppelin/contracts/utils/Counters.sol#39-41) is never used and should be removed
EnumerableSet._at(EnumerableSet.Set,uint256) (@openzeppelin/contracts/utils/structs/EnumerableSet.sol#129-131) is never used and should be removed
EnumerableSet._length(EnumerableSet.Set) (@openzeppelin/contracts/utils/structs/EnumerableSet.sol#115-117) is never used and should be removed
EnumerableSet._remove(EnumerableSet.Set,bytes32) (@openzeppelin/contracts/utils/structs/EnumerableSet.sol#71-103) is never used and should be removed
EnumerableSet._values(EnumerableSet.Set) (@openzeppelin/contracts/utils/structs/EnumerableSet.sol#141-143) is never used and should be removed
EnumerableSet.add(EnumerableSet.AddressSet,address) (@openzeppelin/contracts/utils/structs/EnumerableSet.sol#223-225) is never used and should be removed
EnumerableSet.add(EnumerableSet.Bytes32Set,bytes32) (@openzeppelin/contracts/utils/structs/EnumerableSet.sol#157-159) is never used and should be removed
EnumerableSet.at(EnumerableSet.AddressSet,uint256) (@openzeppelin/contracts/utils/structs/EnumerableSet.sol#261-263) is never used and should be removed
EnumerableSet.at(EnumerableSet.Bytes32Set,uint256) (@openzeppelin/contracts/utils/structs/EnumerableSet.sol#195-197) is never used and should be removed
EnumerableSet.at(EnumerableSet.UintSet,uint256) (@openzeppelin/contracts/utils/structs/EnumerableSet.sol#334-336) is never used and should be removed
EnumerableSet.contains(EnumerableSet.AddressSet,address) (@openzeppelin/contracts/utils/structs/EnumerableSet.sol#240-242) is never used and should be removed
EnumerableSet.contains(EnumerableSet.Bytes32Set,bytes32) (@openzeppelin/contracts/utils/structs/EnumerableSet.sol#174-176) is never used and should be removed
EnumerableSet.contains(EnumerableSet.UintSet,uint256) (@openzeppelin/contracts/utils/structs/EnumerableSet.sol#313-315) is never used and should be removed
EnumerableSet.length(EnumerableSet.AddressSet) (@openzeppelin/contracts/utils/structs/EnumerableSet.sol#247-249) is never used and should be removed
EnumerableSet.length(EnumerableSet.Bytes32Set) (@openzeppelin/contracts/utils/structs/EnumerableSet.sol#181-183) is never used and should be removed
EnumerableSet.length(EnumerableSet.UintSet) (@openzeppelin/contracts/utils/structs/EnumerableSet.sol#320-322) is never used and should be removed
EnumerableSet.remove(EnumerableSet.AddressSet,address) (@openzeppelin/contracts/utils/structs/EnumerableSet.sol#233-235) is never used and should be removed
EnumerableSet.remove(EnumerableSet.Bytes32Set,bytes32) (@openzeppelin/contracts/utils/structs/EnumerableSet.sol#167-169) is never used and should be removed
EnumerableSet.remove(EnumerableSet.UintSet,uint256) (@openzeppelin/contracts/utils/structs/EnumerableSet.sol#306-308) is never used and should be removed
EnumerableSet.values(EnumerableSet.AddressSet) (@openzeppelin/contracts/utils/structs/EnumerableSet.sol#273-282) is never used and should be removed
EnumerableSet.values(EnumerableSet.Bytes32Set) (@openzeppelin/contracts/utils/structs/EnumerableSet.sol#207-209) is never used and should be removed
EnumerableSet.values(EnumerableSet.UintSet) (@openzeppelin/contracts/utils/structs/EnumerableSet.sol#346-355) is never used and should be removed
SafeMath.div(uint256,uint256,string) (@openzeppelin/contracts/utils/math/SafeMath.sol#190-199) is never used and should be removed
SafeMath.mod(uint256,uint256) (@openzeppelin/contracts/utils/math/SafeMath.sol#150-152) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (@openzeppelin/contracts/utils/math/SafeMath.sol#216-225) is never used and should be removed
SafeMath.sub(uint256,uint256,string) (@openzeppelin/contracts/utils/math/SafeMath.sol#167-176) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (@openzeppelin/contracts/utils/math/SafeMath.sol#21-27) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (@openzeppelin/contracts/utils/math/SafeMath.sol#63-68) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (@openzeppelin/contracts/utils/math/SafeMath.sol#75-80) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (@openzeppelin/contracts/utils/math/SafeMath.sol#46-56) is never used and should be removed
SafeMath.trySub(uint256,uint256) (@openzeppelin/contracts/utils/math/SafeMath.sol#34-39) is never used and should be removed
Remove unused functions.
Additional information: link
Stake.stake_min_time (contracts/stake.sol#33) is set pre-construction with a non-constant function or state variable:
- 30 * OneDay
Stake.stake_max_time (contracts/stake.sol#34) is set pre-construction with a non-constant function or state variable:
- 365 * OneDay
Stake.xfree_course (contracts/stake.sol#39) is set pre-construction with a non-constant function or state variable:
- IFreePriceOracle(price_oracle).get_stake_free_price()
Stake.xfree_burn_course (contracts/stake.sol#40) is set pre-construction with a non-constant function or state variable:
- IFreePriceOracle(price_oracle).get_bearn_free_price()
Stake.stake_percent_lvl1 (contracts/stake.sol#49) is set pre-construction with a non-constant function or state variable:
- (1000,stake_min_time)
Stake.stake_percent_lvl2 (contracts/stake.sol#50) is set pre-construction with a non-constant function or state variable:
- (2000,180 * OneDay)
Stake.stake_percent_lvl3 (contracts/stake.sol#51) is set pre-construction with a non-constant function or state variable:
- (4000,stake_max_time)
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.8.0 (@openzeppelin/contracts/token/ERC20/ERC20.sol#3) allows old versions
Pragma version^0.8.0 (@openzeppelin/contracts/token/ERC20/IERC20.sol#3) allows old versions
Pragma version^0.8.0 (@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol#3) allows old versions
Pragma version^0.8.0 (@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol#3) allows old versions
Pragma version^0.8.0 (@openzeppelin/contracts/utils/Context.sol#3) allows old versions
Pragma version^0.8.0 (@openzeppelin/contracts/utils/Counters.sol#3) allows old versions
Pragma version^0.8.0 (@openzeppelin/contracts/utils/math/SafeMath.sol#3) allows old versions
Pragma version^0.8.0 (@openzeppelin/contracts/utils/structs/EnumerableSet.sol#3) allows old versions
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 IFreePriceOracle.get_bearn_free_price() (contracts/interfaces/IFreePriceOracle.sol#4) is not in mixedCase
Function IFreePriceOracle.get_stake_free_price() (contracts/interfaces/IFreePriceOracle.sol#5) is not in mixedCase
Function IStake.set_stake_min_amount(uint256) (contracts/interfaces/IStake.sol#4) is not in mixedCase
Function IStake.set_allow_staking(bool) (contracts/interfaces/IStake.sol#5) is not in mixedCase
Function IStake.set_allow_swap(bool) (contracts/interfaces/IStake.sol#6) is not in mixedCase
Function Stake.set_stake_min_amount(uint256) (contracts/stake.sol#68-70) is not in mixedCase
Parameter Stake.set_stake_min_amount(uint256)._free (contracts/stake.sol#68) is not in mixedCase
Function Stake.set_allow_staking(bool) (contracts/stake.sol#73-75) is not in mixedCase
Parameter Stake.set_allow_staking(bool)._active (contracts/stake.sol#73) is not in mixedCase
Function Stake.set_allow_swap(bool) (contracts/stake.sol#78-80) is not in mixedCase
Parameter Stake.set_allow_swap(bool)._active (contracts/stake.sol#78) is not in mixedCase
Function Stake.set_xfree_bonus(uint256) (contracts/stake.sol#83-85) is not in mixedCase
Parameter Stake.set_xfree_bonus(uint256)._bonus (contracts/stake.sol#83) is not in mixedCase
Function Stake.set_price_oracle(address) (contracts/stake.sol#87-89) is not in mixedCase
Parameter Stake.set_price_oracle(address)._oracle (contracts/stake.sol#87) is not in mixedCase
Function Stake.stake_interest(uint256,uint256) (contracts/stake.sol#112-119) is not in mixedCase
Parameter Stake.stake_interest(uint256,uint256)._days (contracts/stake.sol#112) is not in mixedCase
Parameter Stake.stake_interest(uint256,uint256)._deposit (contracts/stake.sol#112) is not in mixedCase
Function Stake.stake_new(uint256,uint256,uint256,uint256,uint256) (contracts/stake.sol#124-151) is not in mixedCase
Parameter Stake.stake_new(uint256,uint256,uint256,uint256,uint256)._days (contracts/stake.sol#124) is not in mixedCase
Variable Stake.OneDay (contracts/stake.sol#30) is not in mixedCase
Variable Stake.stake_min_amount (contracts/stake.sol#32) is not in mixedCase
Variable Stake.stake_min_time (contracts/stake.sol#33) is not in mixedCase
Variable Stake.stake_max_time (contracts/stake.sol#34) is not in mixedCase
Variable Stake.stake_token (contracts/stake.sol#35) is not in mixedCase
Variable Stake.price_oracle (contracts/stake.sol#36) is not in mixedCase
Variable Stake.xfree_course (contracts/stake.sol#39) is not in mixedCase
Variable Stake.xfree_burn_course (contracts/stake.sol#40) is not in mixedCase
Variable Stake.xfree_bonus (contracts/stake.sol#41) is not in mixedCase
Variable Stake.stake_active (contracts/stake.sol#43) is not in mixedCase
Variable Stake.swap_active (contracts/stake.sol#44) is not in mixedCase
Variable Stake.stake_percent_lvl1 (contracts/stake.sol#49) is not in mixedCase
Variable Stake.stake_percent_lvl2 (contracts/stake.sol#50) is not in mixedCase
Variable Stake.stake_percent_lvl3 (contracts/stake.sol#51) is not in mixedCase
Parameter Treasury.setTreasuryFee(uint256)._percent (contracts/treasury.sol#12) is not in mixedCase
Parameter Treasury.setTreasuryAddress(address)._treasury (contracts/treasury.sol#16) is not in mixedCase
Variable Treasury.TreasuryAddress (contracts/treasury.sol#8) is not in mixedCase
Variable Treasury.TreasuryFee (contracts/treasury.sol#9) is not in mixedCase
Variable Treasury.MaximumFee (contracts/treasury.sol#10) is not in mixedCase
Event XFreeSWAP_WITH_BURN(address,uint256,uint256) (contracts/xfree.sol#62-66) is not in CapWords
Parameter XFree.mintXFREE(address,uint256)._to (contracts/xfree.sol#21) is not in mixedCase
Parameter XFree.mintXFREE(address,uint256)._amount (contracts/xfree.sol#21) is not in mixedCase
Parameter XFree.deposit(uint256,uint256)._amount (contracts/xfree.sol#31) is not in mixedCase
Parameter XFree.deposit(uint256,uint256)._days (contracts/xfree.sol#31) is not in mixedCase
Parameter XFree.convert(uint256)._amount (contracts/xfree.sol#53) is not in mixedCase
Function XFree.stake_token_info(address) (contracts/xfree.sol#89-93) is not in mixedCase
Parameter XFree.stake_token_info(address)._staker (contracts/xfree.sol#89) is not in mixedCase
Variable XFree.STAKE_TOKEN (contracts/xfree.sol#12) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Variable Stake.stake_percent_lvl1 (contracts/stake.sol#49) is too similar to Stake.stake_percent_lvl2 (contracts/stake.sol#50)
Variable Stake.stake_percent_lvl1 (contracts/stake.sol#49) is too similar to Stake.stake_percent_lvl3 (contracts/stake.sol#51)
Variable Stake.stake_percent_lvl2 (contracts/stake.sol#50) is too similar to Stake.stake_percent_lvl3 (contracts/stake.sol#51)
Prevent variables from having similar names.
Additional information: link
Stake._intrest(uint256) (contracts/stake.sol#94-111) uses literals with too many digits:
- index = (stake_percent_lvl2[0] - stake_percent_lvl1[0]).mul(100000).div(stake_percent_lvl2[1].div(OneDay) - stake_percent_lvl1[1].div(OneDay)) (contracts/stake.sol#99-101)
Stake._intrest(uint256) (contracts/stake.sol#94-111) uses literals with too many digits:
- extra.div(100000) + stake_percent_lvl1[0] (contracts/stake.sol#103)
Stake._intrest(uint256) (contracts/stake.sol#94-111) uses literals with too many digits:
- index_scope_0 = (stake_percent_lvl3[0] - stake_percent_lvl2[0]).mul(100000).div(stake_percent_lvl3[1].div(OneDay) - stake_percent_lvl2[1].div(OneDay)) (contracts/stake.sol#105-107)
Stake._intrest(uint256) (contracts/stake.sol#94-111) uses literals with too many digits:
- extra_scope_1.div(100000) + stake_percent_lvl2[0] (contracts/stake.sol#109)
XFree.slitherConstructorVariables() (contracts/xfree.sol#10-94) uses literals with too many digits:
- stake_min_amount = 500000 * (10 ** 18) (contracts/stake.sol#32)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
Stake.OneDay (contracts/stake.sol#30) should be constant
Treasury.MaximumFee (contracts/treasury.sol#10) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
name() should be declared external:
- ERC20.name() (@openzeppelin/contracts/token/ERC20/ERC20.sol#61-63)
symbol() should be declared external:
- ERC20.symbol() (@openzeppelin/contracts/token/ERC20/ERC20.sol#69-71)
decimals() should be declared external:
- ERC20.decimals() (@openzeppelin/contracts/token/ERC20/ERC20.sol#86-88)
totalSupply() should be declared external:
- ERC20.totalSupply() (@openzeppelin/contracts/token/ERC20/ERC20.sol#93-95)
balanceOf(address) should be declared external:
- ERC20.balanceOf(address) (@openzeppelin/contracts/token/ERC20/ERC20.sol#100-102)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (@openzeppelin/contracts/token/ERC20/ERC20.sol#112-115)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (@openzeppelin/contracts/token/ERC20/ERC20.sol#131-134)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (@openzeppelin/contracts/token/ERC20/ERC20.sol#149-163)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (@openzeppelin/contracts/token/ERC20/ERC20.sol#177-180)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (@openzeppelin/contracts/token/ERC20/ERC20.sol#196-204)
burn(uint256) should be declared external:
- ERC20Burnable.burn(uint256) (@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol#19-21)
burnFrom(address,uint256) should be declared external:
- ERC20Burnable.burnFrom(address,uint256) (@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol#34-41)
changeOwner(address) should be declared external:
- Admin.changeOwner(address) (contracts/admin.sol#12-18)
renounceOwnership() should be declared external:
- Admin.renounceOwnership() (contracts/admin.sol#19-23)
set_stake_min_amount(uint256) should be declared external:
- Stake.set_stake_min_amount(uint256) (contracts/stake.sol#68-70)
set_allow_staking(bool) should be declared external:
- Stake.set_allow_staking(bool) (contracts/stake.sol#73-75)
set_allow_swap(bool) should be declared external:
- Stake.set_allow_swap(bool) (contracts/stake.sol#78-80)
set_xfree_bonus(uint256) should be declared external:
- Stake.set_xfree_bonus(uint256) (contracts/stake.sol#83-85)
set_price_oracle(address) should be declared external:
- Stake.set_price_oracle(address) (contracts/stake.sol#87-89)
deposit(uint256,uint256) should be declared external:
- XFree.deposit(uint256,uint256) (contracts/xfree.sol#31-43)
withdraw(uint256) should be declared external:
- XFree.withdraw(uint256) (contracts/xfree.sol#45-50)
convert(uint256) should be declared external:
- XFree.convert(uint256) (contracts/xfree.sol#53-61)
Use the external attribute for functions never called from the contract.
Additional information: link
Average 30d PancakeSwap liquidity is less than $100. Token is either dead or inactive.
Average 30d PancakeSwap volume is less than $100. Token is either dead or inactive.
Average 30d number of PancakeSwap swaps is less than 1. Token is either dead or inactive.
Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.
Token is deployed only at one blockchain
Token has only one trading pair
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/project description on the website or on BscScan, CoinMarketCap
Unable to find token contract audit
Unable to verify token contract address on the website
Unable to find audit link on the website
Unable to find whitepaper link on the website
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
Token has no active CoinGecko listing / rank
Token has a considerable age, but average PancakeSwap 30d trading volume is low
Young tokens have high risks of price dump / death
Token has relatively low CoinMarketCap rank
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account