Gold Guaranteed Coin Token Logo

GGCM [Gold Guaranteed Coin] Token

ALERT: unclassified scam

About GGCM

Listings

Token 3 years
CoinGecko 2 years
CoinMarketCap 2 years

Website

white paper

GGC will create a whole new investment channel, enabling everyone to participate in mining projects and benefit from the cryptocurrency market and the mining industry’s growth.
The GGCM (Gold Guaranteed Coin) growth rate is ensured by strong mining resources, such as gold and other precious metals, based on this potential.
Gold is an important resource in the international financial sector. Many people value its rarity, resistance to corrosion, and status. It has served as a measure of wealth for thousands of years and is still being used today.
Gold is often recommended as a safe investment for investors who prefer to stay diversified, and many people choose it over local currencies in nations where inflation threatens stability.

Laser Scorebeta Last Audit: 18 December 2022

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

Anti-Scam

Links


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

GGCMToken._writeCheckpoint(address,uint32,uint256,uint256) (#1100-1118) uses a dangerous strict equality:
- nCheckpoints > 0 && checkpoints[delegatee][nCheckpoints - 1].fromBlock == blockNumber (#1110)
Don't use strict equality to determine if an account has enough Ether or tokens.

Additional information: link


Contract ownership is not renounced (belongs to a wallet)

Address._functionCallWithValue(address,bytes,uint256,string) (#514-540) uses assembly
- INLINE ASM (#532-535)
Address.isContract(address) (#406-417) uses assembly
- INLINE ASM (#413-415)
GGCMToken.getChainId() (#1125-1129) uses assembly
- INLINE ASM (#1127)
Do not use evm assembly.

Additional information: link

Redundant expression "this (#25)" inContext (#15-28)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Pragma version>=0.4.0 (#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

Constant GGCMToken._initialSupply (#895) is not in UPPER_CASE_WITH_UNDERSCORES
Variable GGCMToken._delegates (#908) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

GGCMToken.slitherConstructorConstantVariables() (#893-1131) uses literals with too many digits:
- _initialSupply = 500000000000 * 10 ** 18 (#895)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

BEP20.allowance(address,address).owner (#655) shadows:
- Ownable.owner() (#59-61) (function)
GGCMToken.burn(uint256).totalSupply (#902) shadows:
- BEP20.totalSupply() (#628-630) (function)
- IBEP20.totalSupply() (#106) (function)
BEP20.constructor(string,string).symbol (#591) shadows:
- BEP20.symbol() (#621-623) (function)
- IBEP20.symbol() (#116) (function)
BEP20._approve(address,address,uint256).owner (#827) shadows:
- Ownable.owner() (#59-61) (function)
BEP20.constructor(string,string).name (#591) shadows:
- BEP20.name() (#607-609) (function)
- IBEP20.name() (#121) (function)
Rename the local variables that shadow another component.

Additional information: link

GGCMToken.delegateBySig(address,uint256,uint256,uint8,bytes32,bytes32) (#966-1007) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now <= expiry,GGCM::delegateBySig: signature expired) (#1005)
Avoid relying on block.timestamp.

Additional information: link

SafeMath.mul(uint256,uint256) (#274-286) is never used and should be removed
Address.sendValue(address,uint256) (#435-441) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#490-496) is never used and should be removed
SafeMath.sqrt(uint256) (#370-381) is never used and should be removed
BEP20._burnFrom(address,uint256) (#844-851) is never used and should be removed
SafeMath.min(uint256,uint256) (#365-367) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#356-363) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#504-512) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#316-326) is never used and should be removed
Context._msgData() (#24-27) is never used and should be removed
SafeMath.mod(uint256,uint256) (#340-342) is never used and should be removed
Roles.remove(Roles.Role,address) (#876-879) is never used and should be removed
Roles.add(Roles.Role,address) (#868-871) is never used and should be removed
SafeMath.div(uint256,uint256) (#300-302) is never used and should be removed
Address._functionCallWithValue(address,bytes,uint256,string) (#514-540) is never used and should be removed
Roles.has(Roles.Role,address) (#885-888) is never used and should be removed
Address.isContract(address) (#406-417) is never used and should be removed
Address.functionCall(address,bytes,string) (#471-477) is never used and should be removed
Address.functionCall(address,bytes) (#461-463) is never used and should be removed
Remove unused functions.

Additional information: link

Low level call in Address.sendValue(address,uint256) (#435-441):
- (success) = recipient.call{value: amount}() (#439)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#514-540):
- (success,returndata) = target.call{value: weiValue}(data) (#523)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

transfer(address,uint256) should be declared external:
- BEP20.transfer(address,uint256) (#647-650)
symbol() should be declared external:
- BEP20.symbol() (#621-623)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#78-81)
approve(address,uint256) should be declared external:
- BEP20.approve(address,uint256) (#666-669)
transferFrom(address,address,uint256) should be declared external:
- BEP20.transferFrom(address,address,uint256) (#683-695)
owner() should be declared external:
- Ownable.owner() (#59-61)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#87-89)
burn(uint256) should be declared external:
- GGCMToken.burn(uint256) (#901-906)
allowance(address,address) should be declared external:
- BEP20.allowance(address,address) (#655-657)
decimals() should be declared external:
- BEP20.decimals() (#614-616)
increaseAllowance(address,uint256) should be declared external:
- BEP20.increaseAllowance(address,uint256) (#709-712)
decreaseAllowance(address,uint256) should be declared external:
- BEP20.decreaseAllowance(address,uint256) (#728-735)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Number of Binance Smart Chain (BSC) token holders is low.


Unable to find PancakeSwap trading pair to compute liquidity.


Unable to find PancakeSwap trading pair to compute number of swaps.


Unable to find Youtube account


Unable to find token contract audit


Unable to find audit link on the website


Token is not listed at Mobula.Finance

Additional information: link


Unable to find token on CoinHunt

Additional information: link


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

Additional information: link


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death


Token has relatively low CoinGecko rank


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death

Price for GGCM

News for GGCM