Legend Of Galaxy Token Logo

GAE [Legend Of Galaxy] Token

About GAE

Listings

Token 19 months
CoinMarketCap 19 months
white paper

Game Legend Of Galaxy (GAE) - An appealing blockchain game with personalized NFT integrated in LFW Gamehub and ecosystem toward a true metaverse for the community.

Social

Laser Scorebeta Last Audit: 30 April 2022

report
Token is either risky or in presale. For presale 30+ is a fine score.

GAEToken._balances (contracts/GAEToken.sol#998) shadows:
- ERC20._balances (contracts/GAEToken.sol#162)
GAEToken._allowances (contracts/GAEToken.sol#997) shadows:
- ERC20._allowances (contracts/GAEToken.sol#164)
GAEToken._totalSupply (contracts/GAEToken.sol#990) shadows:
- ERC20._totalSupply (contracts/GAEToken.sol#166)
Remove the state variable shadowing.

Additional information: link

GAEToken.emergencyWithdraw(address) (contracts/GAEToken.sol#1173-1176) ignores return value by ERC20(_token).transfer(owner(),_amount) (contracts/GAEToken.sol#1175)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link


Contract ownership is not renounced (belongs to a wallet)


Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains

GAEToken.allowance(address,address).owner (contracts/GAEToken.sol#1009) shadows:
- Ownable.owner() (contracts/GAEToken.sol#512-514) (function)
GAEToken._approve(address,address,uint256).owner (contracts/GAEToken.sol#1028) shadows:
- Ownable.owner() (contracts/GAEToken.sol#512-514) (function)
GAEToken.balanceOf(address).owner (contracts/GAEToken.sol#1139) shadows:
- Ownable.owner() (contracts/GAEToken.sol#512-514) (function)
Rename the local variables that shadow another component.

Additional information: link

GAEToken.changeFee(uint256) (contracts/GAEToken.sol#1149-1151) should emit an event for:
- _feeTransfer = feeTransfer (contracts/GAEToken.sol#1150)
Emit an event for critical parameter changes.

Additional information: link

GAEToken.setFeeWallet(address)._wallet (contracts/GAEToken.sol#1153) lacks a zero-check on :
- _feeWallet = _wallet (contracts/GAEToken.sol#1154)
Check that the address is not zero.

Additional information: link

Address.isContract(address) (contracts/GAEToken.sol#571-581) uses assembly
- INLINE ASM (contracts/GAEToken.sol#577-579)
Address.verifyCallResult(bool,bytes,string) (contracts/GAEToken.sol#740-760) uses assembly
- INLINE ASM (contracts/GAEToken.sol#752-755)
Do not use evm assembly.

Additional information: link

Address.functionCall(address,bytes) (contracts/GAEToken.sol#624-626) is never used and should be removed
Address.functionCall(address,bytes,string) (contracts/GAEToken.sol#634-640) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (contracts/GAEToken.sol#653-659) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (contracts/GAEToken.sol#667-678) is never used and should be removed
Address.functionDelegateCall(address,bytes) (contracts/GAEToken.sol#713-715) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (contracts/GAEToken.sol#723-732) is never used and should be removed
Address.functionStaticCall(address,bytes) (contracts/GAEToken.sol#686-688) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (contracts/GAEToken.sol#696-705) is never used and should be removed
Address.isContract(address) (contracts/GAEToken.sol#571-581) is never used and should be removed
Address.sendValue(address,uint256) (contracts/GAEToken.sol#599-604) is never used and should be removed
Address.verifyCallResult(bool,bytes,string) (contracts/GAEToken.sol#740-760) is never used and should be removed
Context._msgData() (contracts/GAEToken.sol#131-133) is never used and should be removed
ERC20._afterTokenTransfer(address,address,uint256) (contracts/GAEToken.sol#477-481) is never used and should be removed
ERC20._approve(address,address,uint256) (contracts/GAEToken.sol#431-441) is never used and should be removed
ERC20._beforeTokenTransfer(address,address,uint256) (contracts/GAEToken.sol#457-461) is never used and should be removed
ERC20._burn(address,uint256) (contracts/GAEToken.sol#401-416) is never used and should be removed
ERC20._mint(address,uint256) (contracts/GAEToken.sol#378-388) is never used and should be removed
ERC20._transfer(address,address,uint256) (contracts/GAEToken.sol#347-367) is never used and should be removed
SafeMath.div(uint256,uint256,string) (contracts/GAEToken.sol#948-957) is never used and should be removed
SafeMath.mod(uint256,uint256) (contracts/GAEToken.sol#908-910) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (contracts/GAEToken.sol#974-983) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (contracts/GAEToken.sol#779-785) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (contracts/GAEToken.sol#821-826) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (contracts/GAEToken.sol#833-838) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (contracts/GAEToken.sol#804-814) is never used and should be removed
SafeMath.trySub(uint256,uint256) (contracts/GAEToken.sol#792-797) is never used and should be removed
Remove unused functions.

Additional information: link

Pragma version^0.8.2 (contracts/GAEToken.sol#14) 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/GAEToken.sol#599-604):
- (success) = recipient.call{value: amount}() (contracts/GAEToken.sol#602)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (contracts/GAEToken.sol#667-678):
- (success,returndata) = target.call{value: value}(data) (contracts/GAEToken.sol#676)
Low level call in Address.functionStaticCall(address,bytes,string) (contracts/GAEToken.sol#696-705):
- (success,returndata) = target.staticcall(data) (contracts/GAEToken.sol#703)
Low level call in Address.functionDelegateCall(address,bytes,string) (contracts/GAEToken.sol#723-732):
- (success,returndata) = target.delegatecall(data) (contracts/GAEToken.sol#730)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Parameter GAEToken.setLiquidPair(address)._lp (contracts/GAEToken.sol#1143) is not in mixedCase
Parameter GAEToken.setFeeWallet(address)._wallet (contracts/GAEToken.sol#1153) is not in mixedCase
Parameter GAEToken.setWhitelist(address,bool)._addr (contracts/GAEToken.sol#1157) is not in mixedCase
Parameter GAEToken.setWhitelist(address,bool)._isWL (contracts/GAEToken.sol#1157) is not in mixedCase
Parameter GAEToken.emergencyWithdraw(address)._token (contracts/GAEToken.sol#1173) is not in mixedCase
Constant GAEToken._decimals (contracts/GAEToken.sol#989) is not in UPPER_CASE_WITH_UNDERSCORES
Variable GAEToken._feeTransfer (contracts/GAEToken.sol#991) is not in mixedCase
Variable GAEToken._feeWallet (contracts/GAEToken.sol#993) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

GAEToken._totalSupply (contracts/GAEToken.sol#990) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

name() should be declared external:
- ERC20.name() (contracts/GAEToken.sol#188-190)
symbol() should be declared external:
- ERC20.symbol() (contracts/GAEToken.sol#196-198)
decimals() should be declared external:
- ERC20.decimals() (contracts/GAEToken.sol#213-215)
totalSupply() should be declared external:
- ERC20.totalSupply() (contracts/GAEToken.sol#220-222)
- GAEToken.totalSupply() (contracts/GAEToken.sol#1135-1137)
balanceOf(address) should be declared external:
- ERC20.balanceOf(address) (contracts/GAEToken.sol#227-229)
- GAEToken.balanceOf(address) (contracts/GAEToken.sol#1139-1141)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (contracts/GAEToken.sol#239-242)
- GAEToken.transfer(address,uint256) (contracts/GAEToken.sol#1070-1087)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (contracts/GAEToken.sol#247-249)
- GAEToken.allowance(address,address) (contracts/GAEToken.sol#1009-1016)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (contracts/GAEToken.sol#258-261)
- GAEToken.approve(address,uint256) (contracts/GAEToken.sol#1018-1025)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (contracts/GAEToken.sol#276-290)
- GAEToken.transferFrom(address,address,uint256) (contracts/GAEToken.sol#1089-1115)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (contracts/GAEToken.sol#304-307)
- GAEToken.increaseAllowance(address,uint256) (contracts/GAEToken.sol#1039-1051)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (contracts/GAEToken.sol#323-331)
- GAEToken.decreaseAllowance(address,uint256) (contracts/GAEToken.sol#1053-1068)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (contracts/GAEToken.sol#531-533)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (contracts/GAEToken.sol#539-542)
changeFee(uint256) should be declared external:
- GAEToken.changeFee(uint256) (contracts/GAEToken.sol#1149-1151)
setFeeWallet(address) should be declared external:
- GAEToken.setFeeWallet(address) (contracts/GAEToken.sol#1153-1155)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:

Contract has 0% buy tax and 8% sell tax.
Taxes are low but contract ownership is not renounced. Token has a high risk of becoming a honeypot.


Average 30d PancakeSwap liquidity is low.


Average 30d number of PancakeSwap swaps is low.


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


Token is deployed only at one blockchain


Token has only one trading pair


Unable to find Blog account (Reddit or Medium)


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 CoinHunt

Additional information: link


Unable to find code repository for the project


Unable to verify token contract address on the website


Unable to find audit link on the website


Unable to find whitepaper link on the website


Young tokens have high risks of scam / price dump / death


Alexa traffic rank is very low

Additional information: link


Young tokens have high risks of scam / price dump / death


Young tokens have high risks of scam / price dump / death


Token has no active CoinGecko listing / rank


Young tokens have high risks of price dump / death

Price for GAE

News for GAE