Freedom is a decentralized and community driven project.
The libertarian foundation is responsible for community formation, joint management, collective summary and implementation of resolutions. At first, it was planned and operated by a group of geek technology enthusiasts, and there was no so-called shareholder founder.
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Reentrancy in Freedom._transfer(address,address,uint256) (#882-919):
External calls:
- swapAndLiquify(contractTokenBalance) (#908)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,blackHole,block.timestamp) (#968-975)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#953-959)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#908)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,blackHole,block.timestamp) (#968-975)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#918)
- _rOwned[sender] = _rOwned[sender].sub(rAmount,sub4 rAmount) (#1011)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#861)
- _rOwned[devReceiver] = _rOwned[devReceiver].add(rDev) (#863)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1013)
- _rOwned[burntReceiver] = _rOwned[burntReceiver].add(rBurnt) (#865)
- _rOwned[sender] = _rOwned[sender].sub(rAmount,sub4 rAmount) (#992)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#994)
- _tokenTransfer(from,to,amount,takeFee) (#918)
- _rTotal = _rTotal.sub(rFee,reflect fee) (#820)
Apply the check-effects-interactions pattern.
Additional information: link
Not a direct threat, but may indicate unreliable intentions of developer. Widespread names (e.g. Elon, King, Moon, Doge) are common among meme-tokens and scams. The allow to gain free hype and attract unexperienced investors.
Freedom.addLiquidity(uint256,uint256) (#963-976) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,blackHole,block.timestamp) (#968-975)
Ensure that all the return values of the function calls are used.
Additional information: link
Freedom._approve(address,address,uint256).owner (#869) shadows:
- Ownable.owner() (#411-413) (function)
Rename the local variables that shadow another component.
Additional information: link
Freedom.setUniswapPair(address).pair (#758) lacks a zero-check on :
- uniswapV2Pair = pair (#760)
Check that the address is not zero.
Additional information: link
Reentrancy in Freedom.transferFrom(address,address,uint256) (#797-801):
External calls:
- _transfer(sender,recipient,amount) (#798)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,blackHole,block.timestamp) (#968-975)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#953-959)
External calls sending eth:
- _transfer(sender,recipient,amount) (#798)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,blackHole,block.timestamp) (#968-975)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#799)
- _allowances[owner][spender] = amount (#873)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in Freedom.transferFrom(address,address,uint256) (#797-801):
External calls:
- _transfer(sender,recipient,amount) (#798)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,blackHole,block.timestamp) (#968-975)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#953-959)
External calls sending eth:
- _transfer(sender,recipient,amount) (#798)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,blackHole,block.timestamp) (#968-975)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#874)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#799)
Apply the check-effects-interactions pattern.
Additional information: link
Ownable.unlock() (#458-463) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now > _lockTime,Contract is locked until 7 days) (#460)
Avoid relying on block.timestamp.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#356-377) uses assembly
- INLINE ASM (#369-372)
Do not use evm assembly.
Additional information: link
SafeMath.mod(uint256,uint256,string) (#224-227) is never used and should be removed
Remove unused functions.
Additional information: link
Freedom.numTokensSellToAddToLiquidity (#701) is set pre-construction with a non-constant function or state variable:
- 5000 * 10 ** 4 * 10 ** uint256(_decimals)
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._functionCallWithValue(address,bytes,uint256,string) (#356-377):
- (success,returndata) = target.call{value: weiValue}(data) (#360)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Variable Freedom.Busd (#709) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#236)" inContext (#230-239)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Variable Freedom._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#836) is too similar to Freedom._transferStandard(address,address,uint256).tTransferAmount (#989)
Prevent variables from having similar names.
Additional information: link
Freedom.slitherConstructorConstantVariables() (#677-1018) uses literals with too many digits:
- burntReceiver = 0x0000000000000000000000000000000000000000 (#706)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
Freedom.treasureReceiver (#705) is never used in Freedom (#677-1018)
Remove unused state variables.
Additional information: link
Freedom.treasureReceiver (#705) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
setBN(uint256) should be declared external:
- Freedom.setBN(uint256) (#877-880)
Use the external attribute for functions never called from the contract.
Additional information: link
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.
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
Token was delisted (assigned to inactive / untracked listing) from CoinMarketCap
Additional information: link
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 token on CoinHunt
Additional information: link
Young tokens have high risks of scam / price dump / death
Young tokens have high risks of scam / price dump / death
Token has no active CoinMarketCap listing / rank
Young tokens have high risks of price dump / death
Token has relatively low CoinGecko rank
Twitter account link seems to be invalid
Telegram account has relatively few subscribers
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account