The T99 offers an attractive Defi ecosystem around T99 Tokens. We are creating platforms that provides exceptional user experience. T99NFT token is created by highly experienced developer team, Rock n Block. T99 Management team consists of experienced members in diverse fields.
Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains
Contract ownership is not renounced (belongs to a wallet)
T99NFTToken.constructor(address[],uint256[],address)._burntAddrs (contracts/T99NFT.sol#30) lacks a zero-check on :
- burntAddr = _burntAddrs (contracts/T99NFT.sol#43)
Check that the address is not zero.
Additional information: link
T99NFTToken.transfer(address,uint256) (contracts/T99NFT.sol#56-79) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > startLock + 63072000,Lock up period is not over) (contracts/T99NFT.sol#64-67)
- require(bool,string)(block.timestamp > startLock + 7862400,Lock up period is not over) (contracts/T99NFT.sol#70-73)
T99NFTToken.transferFrom(address,address,uint256) (contracts/T99NFT.sol#81-104) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > startLock + 63072000,Lock up period is not over) (contracts/T99NFT.sol#88-91)
- require(bool,string)(block.timestamp > startLock + 7862400,Lock up period is not over) (contracts/T99NFT.sol#94-97)
Avoid relying on block.timestamp.
Additional information: link
T99NFTToken.transfer(address,uint256) (contracts/T99NFT.sol#56-79) compares to a boolean constant:
-isExcludedFromFee[_msgSender()] == true (contracts/T99NFT.sol#75)
T99NFTToken.transferFrom(address,address,uint256) (contracts/T99NFT.sol#81-104) compares to a boolean constant:
-isExcludedFromFee[from] == true (contracts/T99NFT.sol#100)
Remove the equality to the boolean constant.
Additional information: link
Different versions of Solidity is used:
- Version used: ['0.8.13', '^0.8.0']
- ^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/IERC20Metadata.sol#4)
- ^0.8.0 (@openzeppelin/contracts/utils/Context.sol#4)
- 0.8.13 (contracts/T99NFT.sol#3)
Use one Solidity version.
Additional information: link
ERC20._mint(address,uint256) (@openzeppelin/contracts/token/ERC20/ERC20.sol#257-267) has costly operations inside a loop:
- _totalSupply += amount (@openzeppelin/contracts/token/ERC20/ERC20.sol#262)
Use a local variable to hold the loop computation result.
Additional information: link
Context._msgData() (@openzeppelin/contracts/utils/Context.sol#21-23) is never used and should be removed
Remove unused functions.
Additional information: link
Pragma version^0.8.0 (@openzeppelin/contracts/access/Ownable.sol#4) allows old versions
Pragma version^0.8.0 (@openzeppelin/contracts/token/ERC20/ERC20.sol#4) allows old versions
Pragma version^0.8.0 (@openzeppelin/contracts/token/ERC20/IERC20.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/utils/Context.sol#4) allows old versions
Pragma version0.8.13 (contracts/T99NFT.sol#3) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
solc-0.8.13 is not recommended for deployment
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
T99NFTToken.burntFee (contracts/T99NFT.sol#13) should be constant
T99NFTToken.developmentFee (contracts/T99NFT.sol#12) should be constant
T99NFTToken.marketingFee (contracts/T99NFT.sol#11) should be constant
T99NFTToken.poolFee (contracts/T99NFT.sol#14) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (@openzeppelin/contracts/access/Ownable.sol#54-56)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (@openzeppelin/contracts/access/Ownable.sol#62-65)
name() should be declared external:
- ERC20.name() (@openzeppelin/contracts/token/ERC20/ERC20.sol#62-64)
symbol() should be declared external:
- ERC20.symbol() (@openzeppelin/contracts/token/ERC20/ERC20.sol#70-72)
decimals() should be declared external:
- ERC20.decimals() (@openzeppelin/contracts/token/ERC20/ERC20.sol#87-89)
totalSupply() should be declared external:
- ERC20.totalSupply() (@openzeppelin/contracts/token/ERC20/ERC20.sol#94-96)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (@openzeppelin/contracts/token/ERC20/ERC20.sol#113-117)
- T99NFTToken.transfer(address,uint256) (contracts/T99NFT.sol#56-79)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (@openzeppelin/contracts/token/ERC20/ERC20.sol#136-140)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (@openzeppelin/contracts/token/ERC20/ERC20.sol#158-167)
- T99NFTToken.transferFrom(address,address,uint256) (contracts/T99NFT.sol#81-104)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (@openzeppelin/contracts/token/ERC20/ERC20.sol#181-185)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (@openzeppelin/contracts/token/ERC20/ERC20.sol#201-210)
changeExcludedFromFee(address) should be declared external:
- T99NFTToken.changeExcludedFromFee(address) (contracts/T99NFT.sol#52-54)
burn(uint256) should be declared external:
- T99NFTToken.burn(uint256) (contracts/T99NFT.sol#106-113)
Use the external attribute for functions never called from the contract.
Additional information: link
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
Unable to find audit link on the website
Unable to find Telegram link on the website
Unable to find Twitter link on the website
Unable to find token on CoinGecko
Additional information: link
Unable to find token on CoinMarketCap
Additional information: link
Unable to find token on CoinHunt
Additional information: link
Unable to find code repository for the project
Young tokens have high risks of scam / price dump / death
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Young tokens have high risks of price dump / death
Young tokens have high risks of price dump / death
Telegram account link seems to be invalid
Unable to find Discord account