FISHGUN TOKEN Token Logo

FGC [FISHGUN] Token

About FGC

Listings

Not Found
Token 4 years

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 22 April 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...)


Contract ownership is not renounced (belongs to a wallet)

BEP20Token_FGC_v3._transfer(address,address,uint256) (crytic-export/etherscan-contracts/0xcd4a1afcaa4bd69b08d7c36218d990247223b061.bscscan.com-BEP20Token_FGC_v3.sol#575-597) performs a multiplication on the result of a division:
-_balances[masterWallet] = _balances[masterWallet].add(amount / 100 * tax) (crytic-export/etherscan-contracts/0xcd4a1afcaa4bd69b08d7c36218d990247223b061.bscscan.com-BEP20Token_FGC_v3.sol#589)
BEP20Token_FGC_v3._transfer(address,address,uint256) (crytic-export/etherscan-contracts/0xcd4a1afcaa4bd69b08d7c36218d990247223b061.bscscan.com-BEP20Token_FGC_v3.sol#575-597) performs a multiplication on the result of a division:
-_balances[recipient] = _balances[recipient].add(amount / 100 * (100 - tax)) (crytic-export/etherscan-contracts/0xcd4a1afcaa4bd69b08d7c36218d990247223b061.bscscan.com-BEP20Token_FGC_v3.sol#590)
Consider ordering multiplication before division.

Additional information: link

BEP20Token_FGC_v3.constructor(string,string,uint256,address).name (crytic-export/etherscan-contracts/0xcd4a1afcaa4bd69b08d7c36218d990247223b061.bscscan.com-BEP20Token_FGC_v3.sol#354) shadows:
- BEP20Token_FGC_v3.name() (crytic-export/etherscan-contracts/0xcd4a1afcaa4bd69b08d7c36218d990247223b061.bscscan.com-BEP20Token_FGC_v3.sol#389-391) (function)
- IBEP20.name() (crytic-export/etherscan-contracts/0xcd4a1afcaa4bd69b08d7c36218d990247223b061.bscscan.com-BEP20Token_FGC_v3.sol#22) (function)
BEP20Token_FGC_v3.constructor(string,string,uint256,address).symbol (crytic-export/etherscan-contracts/0xcd4a1afcaa4bd69b08d7c36218d990247223b061.bscscan.com-BEP20Token_FGC_v3.sol#354) shadows:
- BEP20Token_FGC_v3.symbol() (crytic-export/etherscan-contracts/0xcd4a1afcaa4bd69b08d7c36218d990247223b061.bscscan.com-BEP20Token_FGC_v3.sol#382-384) (function)
- IBEP20.symbol() (crytic-export/etherscan-contracts/0xcd4a1afcaa4bd69b08d7c36218d990247223b061.bscscan.com-BEP20Token_FGC_v3.sol#17) (function)
BEP20Token_FGC_v3.constructor(string,string,uint256,address).totalSupply (crytic-export/etherscan-contracts/0xcd4a1afcaa4bd69b08d7c36218d990247223b061.bscscan.com-BEP20Token_FGC_v3.sol#354) shadows:
- BEP20Token_FGC_v3.totalSupply() (crytic-export/etherscan-contracts/0xcd4a1afcaa4bd69b08d7c36218d990247223b061.bscscan.com-BEP20Token_FGC_v3.sol#396-398) (function)
- IBEP20.totalSupply() (crytic-export/etherscan-contracts/0xcd4a1afcaa4bd69b08d7c36218d990247223b061.bscscan.com-BEP20Token_FGC_v3.sol#7) (function)
BEP20Token_FGC_v3.allowance(address,address).owner (crytic-export/etherscan-contracts/0xcd4a1afcaa4bd69b08d7c36218d990247223b061.bscscan.com-BEP20Token_FGC_v3.sol#423) shadows:
- Ownable.owner() (crytic-export/etherscan-contracts/0xcd4a1afcaa4bd69b08d7c36218d990247223b061.bscscan.com-BEP20Token_FGC_v3.sol#297-299) (function)
BEP20Token_FGC_v3._approve(address,address,uint256).owner (crytic-export/etherscan-contracts/0xcd4a1afcaa4bd69b08d7c36218d990247223b061.bscscan.com-BEP20Token_FGC_v3.sol#476) shadows:
- Ownable.owner() (crytic-export/etherscan-contracts/0xcd4a1afcaa4bd69b08d7c36218d990247223b061.bscscan.com-BEP20Token_FGC_v3.sol#297-299) (function)
Rename the local variables that shadow another component.

Additional information: link

BEP20Token_FGC_v3.update_Max_Token_Amount(uint256,uint256) (crytic-export/etherscan-contracts/0xcd4a1afcaa4bd69b08d7c36218d990247223b061.bscscan.com-BEP20Token_FGC_v3.sol#599-602) should emit an event for:
- maxSellAmount = _maxSell (crytic-export/etherscan-contracts/0xcd4a1afcaa4bd69b08d7c36218d990247223b061.bscscan.com-BEP20Token_FGC_v3.sol#600)
- maxBuyAmount = _maxBuy (crytic-export/etherscan-contracts/0xcd4a1afcaa4bd69b08d7c36218d990247223b061.bscscan.com-BEP20Token_FGC_v3.sol#601)
BEP20Token_FGC_v3.update_Tax(uint256) (crytic-export/etherscan-contracts/0xcd4a1afcaa4bd69b08d7c36218d990247223b061.bscscan.com-BEP20Token_FGC_v3.sol#618-620) should emit an event for:
- tax = newTax (crytic-export/etherscan-contracts/0xcd4a1afcaa4bd69b08d7c36218d990247223b061.bscscan.com-BEP20Token_FGC_v3.sol#619)
Emit an event for critical parameter changes.

Additional information: link

BEP20Token_FGC_v3.constructor(string,string,uint256,address)._masterWallet (crytic-export/etherscan-contracts/0xcd4a1afcaa4bd69b08d7c36218d990247223b061.bscscan.com-BEP20Token_FGC_v3.sol#354) lacks a zero-check on :
- masterWallet = _masterWallet (crytic-export/etherscan-contracts/0xcd4a1afcaa4bd69b08d7c36218d990247223b061.bscscan.com-BEP20Token_FGC_v3.sol#360)
Check that the address is not zero.

Additional information: link

BEP20Token_FGC_v3._transfer(address,address,uint256) (crytic-export/etherscan-contracts/0xcd4a1afcaa4bd69b08d7c36218d990247223b061.bscscan.com-BEP20Token_FGC_v3.sol#575-597) compares to a boolean constant:
-taxStatus == true && sender == taxAddress && tax > 0 (crytic-export/etherscan-contracts/0xcd4a1afcaa4bd69b08d7c36218d990247223b061.bscscan.com-BEP20Token_FGC_v3.sol#587)
Remove the equality to the boolean constant.

Additional information: link

BEP20Token_FGC_v3._burn(address,uint256) (crytic-export/etherscan-contracts/0xcd4a1afcaa4bd69b08d7c36218d990247223b061.bscscan.com-BEP20Token_FGC_v3.sol#455-461) is never used and should be removed
BEP20Token_FGC_v3._burnFrom(address,uint256) (crytic-export/etherscan-contracts/0xcd4a1afcaa4bd69b08d7c36218d990247223b061.bscscan.com-BEP20Token_FGC_v3.sol#490-493) is never used and should be removed
BEP20Token_FGC_v3._mint(address,uint256) (crytic-export/etherscan-contracts/0xcd4a1afcaa4bd69b08d7c36218d990247223b061.bscscan.com-BEP20Token_FGC_v3.sol#436-442) is never used and should be removed
Context._msgData() (crytic-export/etherscan-contracts/0xcd4a1afcaa4bd69b08d7c36218d990247223b061.bscscan.com-BEP20Token_FGC_v3.sol#113-116) is never used and should be removed
SafeMath.div(uint256,uint256) (crytic-export/etherscan-contracts/0xcd4a1afcaa4bd69b08d7c36218d990247223b061.bscscan.com-BEP20Token_FGC_v3.sol#212-214) is never used and should be removed
SafeMath.div(uint256,uint256,string) (crytic-export/etherscan-contracts/0xcd4a1afcaa4bd69b08d7c36218d990247223b061.bscscan.com-BEP20Token_FGC_v3.sol#227-234) is never used and should be removed
SafeMath.mod(uint256,uint256) (crytic-export/etherscan-contracts/0xcd4a1afcaa4bd69b08d7c36218d990247223b061.bscscan.com-BEP20Token_FGC_v3.sol#247-249) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (crytic-export/etherscan-contracts/0xcd4a1afcaa4bd69b08d7c36218d990247223b061.bscscan.com-BEP20Token_FGC_v3.sol#262-265) is never used and should be removed
SafeMath.mul(uint256,uint256) (crytic-export/etherscan-contracts/0xcd4a1afcaa4bd69b08d7c36218d990247223b061.bscscan.com-BEP20Token_FGC_v3.sol#187-199) is never used and should be removed
SafeMath.sub(uint256,uint256) (crytic-export/etherscan-contracts/0xcd4a1afcaa4bd69b08d7c36218d990247223b061.bscscan.com-BEP20Token_FGC_v3.sol#158-160) is never used and should be removed
Remove unused functions.

Additional information: link

Contract BEP20Token_FGC_v3 (crytic-export/etherscan-contracts/0xcd4a1afcaa4bd69b08d7c36218d990247223b061.bscscan.com-BEP20Token_FGC_v3.sol#339-623) is not in CapWords
Function BEP20Token_FGC_v3.update_Max_Token_Amount(uint256,uint256) (crytic-export/etherscan-contracts/0xcd4a1afcaa4bd69b08d7c36218d990247223b061.bscscan.com-BEP20Token_FGC_v3.sol#599-602) is not in mixedCase
Parameter BEP20Token_FGC_v3.update_Max_Token_Amount(uint256,uint256)._maxBuy (crytic-export/etherscan-contracts/0xcd4a1afcaa4bd69b08d7c36218d990247223b061.bscscan.com-BEP20Token_FGC_v3.sol#599) is not in mixedCase
Parameter BEP20Token_FGC_v3.update_Max_Token_Amount(uint256,uint256)._maxSell (crytic-export/etherscan-contracts/0xcd4a1afcaa4bd69b08d7c36218d990247223b061.bscscan.com-BEP20Token_FGC_v3.sol#599) is not in mixedCase
Function BEP20Token_FGC_v3.update_tax_Address(address) (crytic-export/etherscan-contracts/0xcd4a1afcaa4bd69b08d7c36218d990247223b061.bscscan.com-BEP20Token_FGC_v3.sol#604-607) is not in mixedCase
Parameter BEP20Token_FGC_v3.update_tax_Address(address)._newAddress (crytic-export/etherscan-contracts/0xcd4a1afcaa4bd69b08d7c36218d990247223b061.bscscan.com-BEP20Token_FGC_v3.sol#604) is not in mixedCase
Function BEP20Token_FGC_v3.update_master_Wallet(address) (crytic-export/etherscan-contracts/0xcd4a1afcaa4bd69b08d7c36218d990247223b061.bscscan.com-BEP20Token_FGC_v3.sol#609-612) is not in mixedCase
Function BEP20Token_FGC_v3.update_tax_Status(bool) (crytic-export/etherscan-contracts/0xcd4a1afcaa4bd69b08d7c36218d990247223b061.bscscan.com-BEP20Token_FGC_v3.sol#614-616) is not in mixedCase
Function BEP20Token_FGC_v3.update_Tax(uint256) (crytic-export/etherscan-contracts/0xcd4a1afcaa4bd69b08d7c36218d990247223b061.bscscan.com-BEP20Token_FGC_v3.sol#618-620) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (crytic-export/etherscan-contracts/0xcd4a1afcaa4bd69b08d7c36218d990247223b061.bscscan.com-BEP20Token_FGC_v3.sol#114)" inContext (crytic-export/etherscan-contracts/0xcd4a1afcaa4bd69b08d7c36218d990247223b061.bscscan.com-BEP20Token_FGC_v3.sol#104-117)
Remove redundant statements if they congest code but offer no value.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (crytic-export/etherscan-contracts/0xcd4a1afcaa4bd69b08d7c36218d990247223b061.bscscan.com-BEP20Token_FGC_v3.sol#316-319)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (crytic-export/etherscan-contracts/0xcd4a1afcaa4bd69b08d7c36218d990247223b061.bscscan.com-BEP20Token_FGC_v3.sol#325-327)
increaseAllowance(address,uint256) should be declared external:
- BEP20Token_FGC_v3.increaseAllowance(address,uint256) (crytic-export/etherscan-contracts/0xcd4a1afcaa4bd69b08d7c36218d990247223b061.bscscan.com-BEP20Token_FGC_v3.sol#537-540)
decreaseAllowance(address,uint256) should be declared external:
- BEP20Token_FGC_v3.decreaseAllowance(address,uint256) (crytic-export/etherscan-contracts/0xcd4a1afcaa4bd69b08d7c36218d990247223b061.bscscan.com-BEP20Token_FGC_v3.sol#556-559)
update_Max_Token_Amount(uint256,uint256) should be declared external:
- BEP20Token_FGC_v3.update_Max_Token_Amount(uint256,uint256) (crytic-export/etherscan-contracts/0xcd4a1afcaa4bd69b08d7c36218d990247223b061.bscscan.com-BEP20Token_FGC_v3.sol#599-602)
update_tax_Address(address) should be declared external:
- BEP20Token_FGC_v3.update_tax_Address(address) (crytic-export/etherscan-contracts/0xcd4a1afcaa4bd69b08d7c36218d990247223b061.bscscan.com-BEP20Token_FGC_v3.sol#604-607)
update_master_Wallet(address) should be declared external:
- BEP20Token_FGC_v3.update_master_Wallet(address) (crytic-export/etherscan-contracts/0xcd4a1afcaa4bd69b08d7c36218d990247223b061.bscscan.com-BEP20Token_FGC_v3.sol#609-612)
update_tax_Status(bool) should be declared external:
- BEP20Token_FGC_v3.update_tax_Status(bool) (crytic-export/etherscan-contracts/0xcd4a1afcaa4bd69b08d7c36218d990247223b061.bscscan.com-BEP20Token_FGC_v3.sol#614-616)
update_Tax(uint256) should be declared external:
- BEP20Token_FGC_v3.update_Tax(uint256) (crytic-export/etherscan-contracts/0xcd4a1afcaa4bd69b08d7c36218d990247223b061.bscscan.com-BEP20Token_FGC_v3.sol#618-620)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Token seems to be untradeable: there is no PancakeSwap trading pair and no trading volumes. Ignore for presale.


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 FGC