FREE coin BSC Token Logo

FREE [FREE coin BSC] Token

About FREE

Listings

Token 3 years
CoinGecko 5 years
CoinMarketCap 5 years
white paper

The FREE coin is the ideal coin for starters in Crypto : low introduction price so real growth potential, friendly community to support you and a wide range of Exchanges and Wallets. For every starter the FREE is the ideal coin to learn all aspects of crypto trading with very low financial risk. But also for the experienced crypto user the FREE coin offers a nice diversification of your current crypto wallet..

The FREE Coin is a utility coin to support the digital transformation of the global money market: from Fiat to crypto. The FREE coin is circulating on the Ethereum Blockchain, Binance Smart Chain and on the TRON blockchain. This makes the FREE coin one of the few cross-blockchain coins (another example of a cross-blockchain coin is USDT)

Social

Laser Scorebeta Last Audit: 2 April 2023

report
Token seems to be legit.

Anti-Scam

Links


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


Contract ownership is not renounced (belongs to a wallet)

FreezableToken.toKey(address,uint256) (#519-526) uses literals with too many digits:
- result = 0x5749534800000000000000000000000000000000000000000000000000000000 (#521)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

FreezableToken.freeze(address,uint64) (#528-559) uses timestamp for comparisons
Dangerous comparisons:
- require(bool)(_until > block.timestamp) (#529)
FreezableToken.releaseOnce() (#480-502) uses timestamp for comparisons
Dangerous comparisons:
- require(bool)(uint64(block.timestamp) > head) (#484)
FreezableToken.releaseAll() (#508-517) uses timestamp for comparisons
Dangerous comparisons:
- release != 0 && block.timestamp > release (#512)
Avoid relying on block.timestamp.

Additional information: link

FreezableToken.releaseOnce() (#480-502) has costly operations inside a loop:
- delete chains[headKey] (#496)
FreezableToken.releaseOnce() (#480-502) has costly operations inside a loop:
- delete freezings[currentKey] (#490)
FreezableToken.releaseOnce() (#480-502) has costly operations inside a loop:
- delete chains[currentKey] (#499)
Use a local variable to hold the loop computation result.

Additional information: link

SafeMath.mul(uint256,uint256) (#45-56) is never used and should be removed
SafeMath.div(uint256,uint256) (#61-66) is never used and should be removed
Remove unused functions.

Additional information: link

solc-0.4.24 is not recommended for deployment
Pragma version^0.4.24 (#19) 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

Parameter BurnableToken.burn(uint256)._value (#575) is not in mixedCase
Parameter FreezableMintableToken.mintAndFreeze(address,uint256,uint64)._to (#648) is not in mixedCase
Parameter FreezableToken.freeze(address,uint64)._to (#528) is not in mixedCase
Parameter StandardToken.allowance(address,address)._spender (#214) is not in mixedCase
Parameter StandardToken.approve(address,uint256)._value (#200) is not in mixedCase
Parameter MainToken.transferFrom(address,address,uint256)._from (#706) is not in mixedCase
Parameter FreezableToken.getFreezing(address,uint256)._index (#444) is not in mixedCase
Parameter BasicToken.transfer(address,uint256)._value (#111) is not in mixedCase
Parameter StandardToken.allowance(address,address)._owner (#213) is not in mixedCase
Parameter MainToken.transferFrom(address,address,uint256)._value (#706) is not in mixedCase
Parameter MintableToken.mint(address,uint256)._to (#367) is not in mixedCase
Parameter FreezableToken.actualBalanceOf(address)._owner (#419) is not in mixedCase
Parameter FreezableToken.freezingCount(address)._addr (#431) is not in mixedCase
Parameter StandardToken.transferFrom(address,address,uint256)._from (#172) is not in mixedCase
Parameter FreezableToken.freezeTo(address,uint256,uint64)._amount (#462) is not in mixedCase
Parameter FreezableToken.getFreezing(address,uint256)._addr (#444) is not in mixedCase
Parameter FreezableToken.freezeTo(address,uint256,uint64)._until (#462) is not in mixedCase
Parameter FreezableToken.freezingBalanceOf(address)._owner (#423) is not in mixedCase
Parameter StandardToken.transferFrom(address,address,uint256)._to (#173) is not in mixedCase
Parameter MainToken.transfer(address,uint256)._value (#711) is not in mixedCase
Parameter MainToken.transferFrom(address,address,uint256)._to (#706) is not in mixedCase
Parameter StandardToken.approve(address,uint256)._spender (#200) is not in mixedCase
Parameter FreezableMintableToken.mintAndFreeze(address,uint256,uint64)._amount (#648) is not in mixedCase
Parameter FreezableToken.freeze(address,uint64)._until (#528) is not in mixedCase
Parameter StandardToken.increaseApproval(address,uint256)._spender (#234) is not in mixedCase
Parameter BasicToken.transfer(address,uint256)._to (#111) is not in mixedCase
Parameter StandardToken.decreaseApproval(address,uint256)._spender (#257) is not in mixedCase
Parameter FreezableToken.freezeTo(address,uint256,uint64)._to (#462) is not in mixedCase
Parameter BasicToken.balanceOf(address)._owner (#126) is not in mixedCase
Parameter MintableToken.mint(address,uint256)._amount (#368) is not in mixedCase
Parameter StandardToken.increaseApproval(address,uint256)._addedValue (#235) is not in mixedCase
Parameter StandardToken.decreaseApproval(address,uint256)._subtractedValue (#258) is not in mixedCase
Parameter MainToken.transfer(address,uint256)._to (#711) is not in mixedCase
Parameter Ownable.transferOwnership(address)._newOwner (#321) is not in mixedCase
Parameter FreezableMintableToken.mintAndFreeze(address,uint256,uint64)._until (#648) is not in mixedCase
Parameter StandardToken.transferFrom(address,address,uint256)._value (#174) is not in mixedCase
Parameter FreezableToken.balanceOf(address)._owner (#410) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

FreezableToken.toKey(address,uint256) (#519-526) is declared view but contains assembly code
Ensure the attributes of contracts compiled prior to Solidity 0.5.0 are correct.

Additional information: link

FreezableToken.toKey(address,uint256) (#519-526) uses assembly
- INLINE ASM (#522-526)
Do not use evm assembly.

Additional information: link

totalSupply() should be declared external:
- BasicToken.totalSupply() (#102-104)
- ERC20Basic.totalSupply() (#28)
increaseApproval(address,uint256) should be declared external:
- StandardToken.increaseApproval(address,uint256) (#233-244)
burn(uint256) should be declared external:
- BurnableToken.burn(uint256) (#575-577)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#312-315)
actualBalanceOf(address) should be declared external:
- FreezableToken.actualBalanceOf(address) (#419-421)
mintAndFreeze(address,uint256,uint64) should be declared external:
- FreezableMintableToken.mintAndFreeze(address,uint256,uint64) (#648-660)
freezingCount(address) should be declared external:
- FreezableToken.freezingCount(address) (#431-437)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#144)
- StandardToken.approve(address,uint256) (#200-204)
unpause() should be declared external:
- Pausable.unpause() (#631-634)
freezingBalanceOf(address) should be declared external:
- FreezableToken.freezingBalanceOf(address) (#423-425)
releaseAll() should be declared external:
- FreezableToken.releaseAll() (#508-517)
symbol() should be declared external:
- MainToken.symbol() (#698-700)
mint(address,uint256) should be declared external:
- MintableToken.mint(address,uint256) (#366-380)
decreaseApproval(address,uint256) should be declared external:
- StandardToken.decreaseApproval(address,uint256) (#256-271)
freezeTo(address,uint256,uint64) should be declared external:
- FreezableToken.freezeTo(address,uint256,uint64) (#462-475)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (#138-139)
- StandardToken.allowance(address,address) (#212-221)
decimals() should be declared external:
- MainToken.decimals() (#702-704)
name() should be declared external:
- MainToken.name() (#694-696)
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 number of PancakeSwap swaps is less than 1. Token is either dead or inactive.


Twitter account link seems to be invalid


Unable to find Youtube account


Unable to find Discord account


Unable to find Blog account (Reddit or Medium)


Unable to find audit link on the website


Token is not listed at Mobula.Finance

Additional information: link

No disclosed threats

Price for FREE