FileSystemVideo Token Logo

FSV [FileSystemVideo] Token

About FSV

Listings

Not Found
Token 2 years

Website

white paper

FSV (File System Video), a decentralized video file system based on the blockchain, can transmit data based on GOSSIP protocol. FSV aims to provide a decentralized blockchain video publishing environment for video producers, cast streaming media copyrights with NFT technology, realize governance through DPOS mechanism, and create a new ecology for on-chain economy in the field of streaming media industry.

FSV provides a decentralized copyright registration and trading platform to fix the copyrighter according to the registration timestamp, generate the NFT blockchain copyright certificate, achieve self-governance through the decentralized DPOS mechanism, solve the problems in the field of global streaming media copyright, and promote the full protection of the interests at all aspects in the streaming media industry.

Social

Laser Scorebeta Last Audit: 12 June 2022

report
Token seems to be a scam (type: rug pull scam).

Anti-Scam

Links


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


Contract creator or owner is blacklisted for past scams


Contract ownership is not renounced (belongs to a wallet)

Redundant expression "this (#123)" inContext (#117-127)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in CosmosToken.burnToken(uint256,string,string) (#919-939):
External calls:
- address(feeAddress).transfer(fee) (#931)
Event emitted after the call(s):
- BurnToken(_msgSender(),address(this),_amount,targetAddress,targetChain) (#936)
- BurnTokenFee(_msgSender(),address(this),feeAddress,fee) (#937)
Reentrancy in CosmosToken.drawAllEthBalance() (#860-866):
External calls:
- address(msg.sender).transfer(address(this).balance) (#862)
Event emitted after the call(s):
- TransferInternal(address(0),address(this),_msgSender(),address(this).balance) (#863)
Reentrancy in CosmosToken.drawEthBalance(address,uint256) (#849-857):
External calls:
- address(addr).transfer(amount) (#853)
Event emitted after the call(s):
- TransferInternal(address(0),address(this),addr,amount) (#854)
Apply the check-effects-interactions pattern.

Additional information: link

Variable CosmosToken.setPairAddr(address)._pairAddress (#956) is too similar to ERC20.paireAddress (#169)
Variable CosmosToken.setFeeAddressAndPercent2(address,uint256,uint256)._denominator (#949) is too similar to ERC20.tDenominator (#167)
Prevent variables from having similar names.

Additional information: link

CosmosToken.burnToken(uint256,string,string).fee (#925) is a local variable never initialized
ERC20._transfer(address,address,uint256).fee (#350) 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

CosmosToken.constructor(string,string,uint8) (#830-833) ignores return value by EnumerableSet.add(_minters,_msgSender()) (#832)
Ensure that all the return values of the function calls are used.

Additional information: link

CosmosToken.setTotalMint(uint256) (#839-841) should emit an event for:
- totalMint = _totalMint (#840)
CosmosToken.setFeeAddressAndPercent(address,uint256,uint256) (#942-947) should emit an event for:
- feeNumerator = _feeNumerator (#944)
- feeDenominator = _feeDenominator (#945)
Emit an event for critical parameter changes.

Additional information: link

Context._msgData() (#122-126) is never used and should be removed
EnumerableSet.add(EnumerableSet.Bytes32Set,bytes32) (#658-660) is never used and should be removed
EnumerableSet.add(EnumerableSet.UintSet,uint256) (#767-769) is never used and should be removed
EnumerableSet.at(EnumerableSet.Bytes32Set,uint256) (#696-698) is never used and should be removed
EnumerableSet.at(EnumerableSet.UintSet,uint256) (#805-807) is never used and should be removed
EnumerableSet.contains(EnumerableSet.Bytes32Set,bytes32) (#675-677) is never used and should be removed
EnumerableSet.contains(EnumerableSet.UintSet,uint256) (#784-786) is never used and should be removed
EnumerableSet.length(EnumerableSet.Bytes32Set) (#682-684) is never used and should be removed
EnumerableSet.length(EnumerableSet.UintSet) (#791-793) is never used and should be removed
EnumerableSet.remove(EnumerableSet.Bytes32Set,bytes32) (#668-670) is never used and should be removed
EnumerableSet.remove(EnumerableSet.UintSet,uint256) (#777-779) is never used and should be removed
Remove unused functions.

Additional information: link

Pragma version^0.8.0 (#5) allows old versions
solc-0.8.1 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

Parameter CosmosToken.setTotalMint(uint256)._totalMint (#839) is not in mixedCase
Parameter CosmosToken.addMinter(address)._addMinter (#868) is not in mixedCase
Parameter CosmosToken.delMinter(address)._delMinter (#873) is not in mixedCase
Parameter CosmosToken.getMinter(uint256)._index (#886) is not in mixedCase
Parameter CosmosToken.burnFrom(address,uint256)._from (#897) is not in mixedCase
Parameter CosmosToken.burnFrom(address,uint256)._amount (#897) is not in mixedCase
Parameter CosmosToken.mintToken(address,uint256)._to (#908) is not in mixedCase
Parameter CosmosToken.mintToken(address,uint256)._amount (#908) is not in mixedCase
Parameter CosmosToken.burnToken(uint256,string,string)._amount (#919) is not in mixedCase
Parameter CosmosToken.setFeeAddressAndPercent(address,uint256,uint256)._feeAddress (#942) is not in mixedCase
Parameter CosmosToken.setFeeAddressAndPercent(address,uint256,uint256)._feeNumerator (#942) is not in mixedCase
Parameter CosmosToken.setFeeAddressAndPercent(address,uint256,uint256)._feeDenominator (#942) is not in mixedCase
Parameter CosmosToken.setFeeAddressAndPercent2(address,uint256,uint256)._address (#949) is not in mixedCase
Parameter CosmosToken.setFeeAddressAndPercent2(address,uint256,uint256)._numerator (#949) is not in mixedCase
Parameter CosmosToken.setFeeAddressAndPercent2(address,uint256,uint256)._denominator (#949) is not in mixedCase
Parameter CosmosToken.setPairAddr(address)._pairAddress (#956) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

name() should be declared external:
- ERC20.name() (#188-190)
symbol() should be declared external:
- ERC20.symbol() (#196-198)
balanceOf(address) should be declared external:
- ERC20.balanceOf(address) (#227-229)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#239-242)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#258-261)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#276-284)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#298-301)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#317-323)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#497-500)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#506-510)
getEthBalance() should be declared external:
- CosmosToken.getEthBalance() (#844-846)
drawEthBalance(address,uint256) should be declared external:
- CosmosToken.drawEthBalance(address,uint256) (#849-857)
drawAllEthBalance() should be declared external:
- CosmosToken.drawAllEthBalance() (#860-866)
addMinter(address) should be declared external:
- CosmosToken.addMinter(address) (#868-871)
delMinter(address) should be declared external:
- CosmosToken.delMinter(address) (#873-876)
getMinter(uint256) should be declared external:
- CosmosToken.getMinter(uint256) (#886-889)
burnFrom(address,uint256) should be declared external:
- CosmosToken.burnFrom(address,uint256) (#897-905)
mintToken(address,uint256) should be declared external:
- CosmosToken.mintToken(address,uint256) (#908-916)
burnToken(uint256,string,string) should be declared external:
- CosmosToken.burnToken(uint256,string,string) (#919-939)
setFeeAddressAndPercent(address,uint256,uint256) should be declared external:
- CosmosToken.setFeeAddressAndPercent(address,uint256,uint256) (#942-947)
setFeeAddressAndPercent2(address,uint256,uint256) should be declared external:
- CosmosToken.setFeeAddressAndPercent2(address,uint256,uint256) (#949-954)
setPairAddr(address) should be declared external:
- CosmosToken.setPairAddr(address) (#956-959)
Use the external attribute for functions never called from the contract.

Additional information: link

CosmosToken.setFeeAddressAndPercent(address,uint256,uint256)._feeAddress (#942) lacks a zero-check on :
- feeAddress = _feeAddress (#943)
CosmosToken.setFeeAddressAndPercent2(address,uint256,uint256)._address (#949) lacks a zero-check on :
- platformAddress = _address (#950)
CosmosToken.setPairAddr(address)._pairAddress (#956) lacks a zero-check on :
- paireAddress = _pairAddress (#957)
Check that the address is not zero.

Additional information: link

Holders:


Token is deployed only at one blockchain


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


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


Unable to find token on CoinHunt

Additional information: link


Token is not listed at Mobula.Finance

Additional information: link


Token is marked as scam (rug pull, honeypot, phishing, etc.)

Additional information: link


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

Price for FSV

News for FSV