A #Metaverse Gaming project based on Greek Mythology, a #fantasy universe along with turn-based RPG mechanism
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
TAU._symbol (contracts/TAU.sol#20) shadows:
- ERC20._symbol (@openzeppelin/contracts/token/ERC20/ERC20.sol#43)
TAU._balances (contracts/TAU.sol#38) shadows:
- ERC20._balances (@openzeppelin/contracts/token/ERC20/ERC20.sol#36)
TAU._name (contracts/TAU.sol#19) shadows:
- ERC20._name (@openzeppelin/contracts/token/ERC20/ERC20.sol#42)
TAU._allowances (contracts/TAU.sol#37) shadows:
- ERC20._allowances (@openzeppelin/contracts/token/ERC20/ERC20.sol#38)
TAU._totalSupply (contracts/TAU.sol#23) shadows:
- ERC20._totalSupply (@openzeppelin/contracts/token/ERC20/ERC20.sol#40)
Remove the state variable shadowing.
Additional information: link
Contract ownership is not renounced (belongs to a wallet)
TAU._approve(address,address,uint256).owner (contracts/TAU.sol#87) shadows:
- Ownable.owner() (@openzeppelin/contracts/access/Ownable.sol#35-37) (function)
TAU.balanceOf(address).owner (contracts/TAU.sol#198) shadows:
- Ownable.owner() (@openzeppelin/contracts/access/Ownable.sol#35-37) (function)
TAU.allowance(address,address).owner (contracts/TAU.sol#68) shadows:
- Ownable.owner() (@openzeppelin/contracts/access/Ownable.sol#35-37) (function)
Rename the local variables that shadow another component.
Additional information: link
TAU.setMaxBuy(uint256) (contracts/TAU.sol#265-267) should emit an event for:
- maxBuy = _maxBuy (contracts/TAU.sol#266)
TAU.setMaxSell(uint256) (contracts/TAU.sol#269-271) should emit an event for:
- maxSell = _maxSell (contracts/TAU.sol#270)
TAU.setSellCooldown(uint256) (contracts/TAU.sol#261-263) should emit an event for:
- sellCooldown = _duration (contracts/TAU.sol#262)
TAU.setBuyCooldown(uint256) (contracts/TAU.sol#257-259) should emit an event for:
- buyCooldown = _duration (contracts/TAU.sol#258)
Emit an event for critical parameter changes.
Additional information: link
TAU.setLiquidPair(address)._lp (contracts/TAU.sol#273) lacks a zero-check on :
- pancakeLiquidPair = _lp (contracts/TAU.sol#274)
Check that the address is not zero.
Additional information: link
TAU.antiWhale(address,address,uint256) (contracts/TAU.sol#210-255) uses timestamp for comparisons
Dangerous comparisons:
- traders[_recipient][BUY].lastTrade + buyCooldown > curTime (contracts/TAU.sol#225)
- traders[_sender][SELL].lastTrade + sellCooldown > curTime (contracts/TAU.sol#242)
Avoid relying on block.timestamp.
Additional information: link
Address.isContract(address) (@openzeppelin/contracts/utils/Address.sol#27-37) uses assembly
- INLINE ASM (@openzeppelin/contracts/utils/Address.sol#33-35)
Address.verifyCallResult(bool,bytes,string) (@openzeppelin/contracts/utils/Address.sol#196-216) uses assembly
- INLINE ASM (@openzeppelin/contracts/utils/Address.sol#208-211)
Do not use evm assembly.
Additional information: link
Different versions of Solidity are used:
- Version used: ['^0.8.0', '^0.8.2']
- ^0.8.0 (@openzeppelin/contracts/access/Ownable.sol#4)
- ^0.8.0 (@openzeppelin/contracts/token/ERC20/ERC20.sol#4)
- ^0.8.0 (@openzeppelin/contracts/token/ERC20/IERC20.sol#4)
- ^0.8.0 (@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol#4)
- ^0.8.0 (@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol#4)
- ^0.8.0 (@openzeppelin/contracts/utils/Address.sol#4)
- ^0.8.0 (@openzeppelin/contracts/utils/Context.sol#4)
- ^0.8.0 (@openzeppelin/contracts/utils/math/SafeMath.sol#4)
- ^0.8.2 (contracts/TAU.sol#2)
Use one Solidity version.
Additional information: link
SafeMath.mul(uint256,uint256) (@openzeppelin/contracts/utils/math/SafeMath.sol#121-123) is never used and should be removed
Address.verifyCallResult(bool,bytes,string) (@openzeppelin/contracts/utils/Address.sol#196-216) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (@openzeppelin/contracts/utils/math/SafeMath.sol#64-69) is never used and should be removed
Address.sendValue(address,uint256) (@openzeppelin/contracts/utils/Address.sol#55-60) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (@openzeppelin/contracts/utils/Address.sol#109-115) is never used and should be removed
ERC20._afterTokenTransfer(address,address,uint256) (@openzeppelin/contracts/token/ERC20/ERC20.sol#351-355) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (@openzeppelin/contracts/utils/math/SafeMath.sol#76-81) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (@openzeppelin/contracts/utils/Address.sol#179-188) is never used and should be removed
Address.functionDelegateCall(address,bytes) (@openzeppelin/contracts/utils/Address.sol#169-171) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (@openzeppelin/contracts/utils/math/SafeMath.sol#22-28) is never used and should be removed
ERC20._burn(address,uint256) (@openzeppelin/contracts/token/ERC20/ERC20.sol#275-290) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (@openzeppelin/contracts/utils/math/SafeMath.sol#217-226) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (@openzeppelin/contracts/utils/Address.sol#123-134) is never used and should be removed
SafeMath.div(uint256,uint256,string) (@openzeppelin/contracts/utils/math/SafeMath.sol#191-200) is never used and should be removed
Context._msgData() (@openzeppelin/contracts/utils/Context.sol#21-23) is never used and should be removed
Address.functionStaticCall(address,bytes) (@openzeppelin/contracts/utils/Address.sol#142-144) is never used and should be removed
SafeMath.mod(uint256,uint256) (@openzeppelin/contracts/utils/math/SafeMath.sol#151-153) is never used and should be removed
SafeMath.div(uint256,uint256) (@openzeppelin/contracts/utils/math/SafeMath.sol#135-137) is never used and should be removed
ERC20._transfer(address,address,uint256) (@openzeppelin/contracts/token/ERC20/ERC20.sol#221-241) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (@openzeppelin/contracts/utils/math/SafeMath.sol#47-57) is never used and should be removed
SafeMath.trySub(uint256,uint256) (@openzeppelin/contracts/utils/math/SafeMath.sol#35-40) is never used and should be removed
ERC20._approve(address,address,uint256) (@openzeppelin/contracts/token/ERC20/ERC20.sol#305-315) is never used and should be removed
Address.isContract(address) (@openzeppelin/contracts/utils/Address.sol#27-37) is never used and should be removed
Address.functionCall(address,bytes,string) (@openzeppelin/contracts/utils/Address.sol#90-96) is never used and should be removed
ERC20._mint(address,uint256) (@openzeppelin/contracts/token/ERC20/ERC20.sol#252-262) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (@openzeppelin/contracts/utils/Address.sol#152-161) is never used and should be removed
ERC20._beforeTokenTransfer(address,address,uint256) (@openzeppelin/contracts/token/ERC20/ERC20.sol#331-335) is never used and should be removed
Address.functionCall(address,bytes) (@openzeppelin/contracts/utils/Address.sol#80-82) is never used and should be removed
Remove unused functions.
Additional information: link
Pragma version^0.8.0 (@openzeppelin/contracts/token/ERC20/IERC20.sol#4) allows old versions
solc-0.8.8 is known to contain severe issues (https://solidity.readthedocs.io/en/latest/bugs.html)
Pragma version^0.8.0 (@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol#4) allows old versions
Pragma version^0.8.0 (@openzeppelin/contracts/utils/Address.sol#4) allows old versions
Pragma version^0.8.0 (@openzeppelin/contracts/token/ERC20/extensions/IERC20Metadata.sol#4) allows old versions
Pragma version^0.8.0 (@openzeppelin/contracts/token/ERC20/ERC20.sol#4) allows old versions
Pragma version^0.8.2 (contracts/TAU.sol#2) allows old versions
Pragma version^0.8.0 (@openzeppelin/contracts/utils/math/SafeMath.sol#4) allows old versions
Pragma version^0.8.0 (@openzeppelin/contracts/access/Ownable.sol#4) allows old versions
Pragma version^0.8.0 (@openzeppelin/contracts/utils/Context.sol#4) 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.functionDelegateCall(address,bytes,string) (@openzeppelin/contracts/utils/Address.sol#179-188):
- (success,returndata) = target.delegatecall(data) (@openzeppelin/contracts/utils/Address.sol#186)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (@openzeppelin/contracts/utils/Address.sol#123-134):
- (success,returndata) = target.call{value: value}(data) (@openzeppelin/contracts/utils/Address.sol#132)
Low level call in Address.functionStaticCall(address,bytes,string) (@openzeppelin/contracts/utils/Address.sol#152-161):
- (success,returndata) = target.staticcall(data) (@openzeppelin/contracts/utils/Address.sol#159)
Low level call in Address.sendValue(address,uint256) (@openzeppelin/contracts/utils/Address.sol#55-60):
- (success) = recipient.call{value: amount}() (@openzeppelin/contracts/utils/Address.sol#58)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Constant TAU._symbol (contracts/TAU.sol#20) is not in UPPER_CASE_WITH_UNDERSCORES
Parameter TAU.antiWhale(address,address,uint256)._amount (contracts/TAU.sol#213) is not in mixedCase
Constant TAU._decimals (contracts/TAU.sol#21) is not in UPPER_CASE_WITH_UNDERSCORES
Parameter TAU.antiWhale(address,address,uint256)._recipient (contracts/TAU.sol#212) is not in mixedCase
Parameter TAU.setLiquidPair(address)._lp (contracts/TAU.sol#273) is not in mixedCase
Parameter TAU.setMaxBuy(uint256)._maxBuy (contracts/TAU.sol#265) is not in mixedCase
Parameter TAU.setMaxSell(uint256)._maxSell (contracts/TAU.sol#269) is not in mixedCase
Constant TAU._name (contracts/TAU.sol#19) is not in UPPER_CASE_WITH_UNDERSCORES
Parameter TAU.setBuyCooldown(uint256)._duration (contracts/TAU.sol#257) is not in mixedCase
Parameter TAU.setSellCooldown(uint256)._duration (contracts/TAU.sol#261) is not in mixedCase
Parameter TAU.antiWhale(address,address,uint256)._sender (contracts/TAU.sol#211) is not in mixedCase
Parameter TAU.setAntiWhale(bool)._isAntiWhale (contracts/TAU.sol#206) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
TAU.slitherConstructorVariables() (contracts/TAU.sol#10-276) uses literals with too many digits:
- maxSell = 150000000000000000000 (contracts/TAU.sol#29)
TAU.slitherConstructorVariables() (contracts/TAU.sol#10-276) uses literals with too many digits:
- maxBuy = 300000000000000000000 (contracts/TAU.sol#28)
TAU.slitherConstructorVariables() (contracts/TAU.sol#10-276) uses literals with too many digits:
- _totalSupply = 200000000 * 10 ** uint256(_decimals) (contracts/TAU.sol#23)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
TAU._tFeeTotal (contracts/TAU.sol#24) is never used in TAU (contracts/TAU.sol#10-276)
Remove unused state variables.
Additional information: link
TAU._tFeeTotal (contracts/TAU.sol#24) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
burnFrom(address,uint256) should be declared external:
- ERC20Burnable.burnFrom(address,uint256) (@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol#35-42)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (@openzeppelin/contracts/access/Ownable.sol#54-56)
totalSupply() should be declared external:
- ERC20.totalSupply() (@openzeppelin/contracts/token/ERC20/ERC20.sol#94-96)
- TAU.totalSupply() (contracts/TAU.sol#194-196)
decimals() should be declared external:
- ERC20.decimals() (@openzeppelin/contracts/token/ERC20/ERC20.sol#87-89)
burn(uint256) should be declared external:
- ERC20Burnable.burn(uint256) (@openzeppelin/contracts/token/ERC20/extensions/ERC20Burnable.sol#20-22)
- TAU.burn(uint256) (contracts/TAU.sol#181-183)
symbol() should be declared external:
- ERC20.symbol() (@openzeppelin/contracts/token/ERC20/ERC20.sol#70-72)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (@openzeppelin/contracts/token/ERC20/ERC20.sol#150-164)
- TAU.transferFrom(address,address,uint256) (contracts/TAU.sol#138-155)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (@openzeppelin/contracts/token/ERC20/ERC20.sol#132-135)
- TAU.approve(address,uint256) (contracts/TAU.sol#77-84)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (@openzeppelin/contracts/token/ERC20/ERC20.sol#197-205)
- TAU.decreaseAllowance(address,uint256) (contracts/TAU.sol#112-127)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (@openzeppelin/contracts/access/Ownable.sol#62-65)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (@openzeppelin/contracts/token/ERC20/ERC20.sol#178-181)
- TAU.increaseAllowance(address,uint256) (contracts/TAU.sol#98-110)
balanceOf(address) should be declared external:
- ERC20.balanceOf(address) (@openzeppelin/contracts/token/ERC20/ERC20.sol#101-103)
- TAU.balanceOf(address) (contracts/TAU.sol#198-200)
name() should be declared external:
- ERC20.name() (@openzeppelin/contracts/token/ERC20/ERC20.sol#62-64)
totalBurn() should be declared external:
- TAU.totalBurn() (contracts/TAU.sol#202-204)
multiTransfer(address[],uint256[]) should be declared external:
- TAU.multiTransfer(address[],uint256[]) (contracts/TAU.sol#60-66)
Use the external attribute for functions never called from the contract.
Additional information: link
Attempt to swap token was unsuccessful. For some reason it is untradeable. If token is not in presale stage and is not traded outside PancakeSwap, then it's a scam
Additional information: link
Average 30d PancakeSwap liquidity is less than $100. Token is either dead or inactive.
Average 30d PancakeSwap volume is less than $100. Token is either dead or inactive.
Average 30d number of PancakeSwap swaps is less than 1. Token is either dead or inactive.
Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.
Token is deployed only at one blockchain
Unable to find token contract audit
Unable to find audit link on the website
Unable to find token on CoinHunt
Additional information: link
Unable to find code repository for the project
Token is marked as scam (rug pull, honeypot, phishing, etc.)
Additional information: link
Token has a considerable age, but average PancakeSwap 30d trading volume is low
Token has relatively low CoinMarketCap rank
Token has relatively low CoinGecko rank
Last post in Twitter was more than 30 days ago
Unable to find Discord account