ACG Token Logo

ACG Token

ALERT: phishing / airdrop scam

About ACG

Listings

Not Found
Token 3 years

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 23 April 2022

report
Token seems to be a scam (type: phishing / airdrop scam).


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


Contract ownership is not renounced (belongs to a wallet)

BEP20.allowance(address,address).owner (contracts/tokens/BEP20Burnable.sol#62) shadows:
- Ownable.owner() (contracts/Context.sol#35-37) (function)
BEP20._approve(address,address,uint256).owner (contracts/tokens/BEP20Burnable.sol#171) shadows:
- Ownable.owner() (contracts/Context.sol#35-37) (function)
Rename the local variables that shadow another component.

Additional information: link

Address.isContract(address) (contracts/Libraries.sol#104-115) uses assembly
- INLINE ASM (contracts/Libraries.sol#111-113)
Address._functionCallWithValue(address,bytes,uint256,string) (contracts/Libraries.sol#173-200) uses assembly
- INLINE ASM (contracts/Libraries.sol#192-195)
Do not use evm assembly.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (contracts/Libraries.sol#173-200) is never used and should be removed
Address.functionCall(address,bytes) (contracts/Libraries.sol#131-136) is never used and should be removed
Address.functionCall(address,bytes,string) (contracts/Libraries.sol#138-144) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (contracts/Libraries.sol#146-158) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (contracts/Libraries.sol#160-171) is never used and should be removed
Address.isContract(address) (contracts/Libraries.sol#104-115) is never used and should be removed
Address.sendValue(address,uint256) (contracts/Libraries.sol#117-129) is never used and should be removed
BEP20._burn(address,uint256) (contracts/tokens/BEP20Burnable.sol#157-168) is never used and should be removed
BEP20._setupDecimals(uint8) (contracts/tokens/BEP20Burnable.sol#182-184) is never used and should be removed
Context._msgData() (contracts/Context.sol#11-14) is never used and should be removed
Math.average(uint256,uint256) (contracts/Libraries.sol#29-32) is never used and should be removed
Math.max(uint256,uint256) (contracts/Libraries.sol#14-16) is never used and should be removed
Math.min(uint256,uint256) (contracts/Libraries.sol#21-23) is never used and should be removed
SafeBEP20._callOptionalReturn(IBEP20,bytes) (contracts/Libraries.sol#309-319) is never used and should be removed
SafeBEP20.safeApprove(IBEP20,address,uint256) (contracts/Libraries.sol#282-291) is never used and should be removed
SafeBEP20.safeDecreaseAllowance(IBEP20,address,uint256) (contracts/Libraries.sol#298-301) is never used and should be removed
SafeBEP20.safeIncreaseAllowance(IBEP20,address,uint256) (contracts/Libraries.sol#293-296) is never used and should be removed
SafeBEP20.safeTransfer(IBEP20,address,uint256) (contracts/Libraries.sol#267-269) is never used and should be removed
SafeBEP20.safeTransferFrom(IBEP20,address,address,uint256) (contracts/Libraries.sol#271-273) is never used and should be removed
SafeERC20._callOptionalReturn(IERC20,bytes) (contracts/Libraries.sol#250-260) is never used and should be removed
SafeERC20.safeApprove(IERC20,address,uint256) (contracts/Libraries.sol#223-232) is never used and should be removed
SafeERC20.safeDecreaseAllowance(IERC20,address,uint256) (contracts/Libraries.sol#239-242) is never used and should be removed
SafeERC20.safeIncreaseAllowance(IERC20,address,uint256) (contracts/Libraries.sol#234-237) is never used and should be removed
SafeERC20.safeTransfer(IERC20,address,uint256) (contracts/Libraries.sol#208-210) is never used and should be removed
SafeERC20.safeTransferFrom(IERC20,address,address,uint256) (contracts/Libraries.sol#212-214) is never used and should be removed
SafeMath.div(uint256,uint256) (contracts/Libraries.sol#73-75) is never used and should be removed
SafeMath.div(uint256,uint256,string) (contracts/Libraries.sol#77-87) is never used and should be removed
SafeMath.mod(uint256,uint256) (contracts/Libraries.sol#89-91) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (contracts/Libraries.sol#93-100) is never used and should be removed
SafeMath.mul(uint256,uint256) (contracts/Libraries.sol#59-71) is never used and should be removed
SafeMath.sub(uint256,uint256) (contracts/Libraries.sol#44-46) is never used and should be removed
Remove unused functions.

Additional information: link

Pragma version>=0.7.0 (contracts/Context.sol#3) allows old versions
Pragma version>=0.7.0 (contracts/IBEP20.sol#2) allows old versions
Pragma version>=0.7.0 (contracts/Interfaces.sol#2) allows old versions
Pragma version>=0.7.0 (contracts/Libraries.sol#2) allows old versions
Pragma version>=0.7.0 (contracts/tokens/ACG.sol#2) allows old versions
Pragma version>=0.7.0 (contracts/tokens/BEP20Burnable.sol#2) 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

Low level call in Address.sendValue(address,uint256) (contracts/Libraries.sol#117-129):
- (success) = recipient.call{value: amount}() (contracts/Libraries.sol#124)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (contracts/Libraries.sol#173-200):
- (success,returndata) = target.call{value: weiValue}(data) (contracts/Libraries.sol#182-183)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Redundant expression "this (contracts/Context.sol#12)" inContext (contracts/Context.sol#6-15)
Remove redundant statements if they congest code but offer no value.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (contracts/Context.sol#54-57)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (contracts/Context.sol#63-67)
operator() should be declared external:
- Operator.operator() (contracts/Context.sol#84-86)
isOperator() should be declared external:
- Operator.isOperator() (contracts/Context.sol#93-95)
transferOperator(address) should be declared external:
- Operator.transferOperator(address) (contracts/Context.sol#97-99)
mint(address,uint256) should be declared external:
- AcycleGovernance.mint(address,uint256) (contracts/tokens/ACG.sol#22-31)
getOwner() should be declared external:
- BEP20.getOwner() (contracts/tokens/BEP20Burnable.sol#28-30)
name() should be declared external:
- BEP20.name() (contracts/tokens/BEP20Burnable.sol#32-34)
symbol() should be declared external:
- BEP20.symbol() (contracts/tokens/BEP20Burnable.sol#36-38)
decimals() should be declared external:
- BEP20.decimals() (contracts/tokens/BEP20Burnable.sol#40-42)
totalSupply() should be declared external:
- BEP20.totalSupply() (contracts/tokens/BEP20Burnable.sol#44-46)
transfer(address,uint256) should be declared external:
- BEP20.transfer(address,uint256) (contracts/tokens/BEP20Burnable.sol#52-60)
increaseAllowance(address,uint256) should be declared external:
- BEP20.increaseAllowance(address,uint256) (contracts/tokens/BEP20Burnable.sol#100-111)
decreaseAllowance(address,uint256) should be declared external:
- BEP20.decreaseAllowance(address,uint256) (contracts/tokens/BEP20Burnable.sol#113-127)
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


Token has a considerable age, but we're still unable to find its website


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank


Token has a considerable age, but social accounts / website are missing or have few users


Token has a considerable age, but average PancakeSwap 30d trading volume is low

Price for ACG