TopManager Token Token Logo

TMT [TopManager] Token

About TMT

Listings

Token 2 years
CoinMarketCap 2 years

Website

TopGoal is an officially licensed digital collectibles with NFT and blockchain empowered GameFi of football metaverse.

Social

Laser Scorebeta Last Audit: 16 February 2022

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

Anti-Scam

Links


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

TmtToken._writeCheckpoint(address,uint32,uint256,uint256) (contracts/TmtToken.sol#1069-1087) uses a dangerous strict equality:
- nCheckpoints > 0 && checkpoints[delegatee][nCheckpoints - 1].fromBlock == blockNumber (contracts/TmtToken.sol#1079)
Don't use strict equality to determine if an account has enough Ether or tokens.

Additional information: link

BEP20.constructor(string,string).name (contracts/TmtToken.sol#593) shadows:
- BEP20.name() (contracts/TmtToken.sol#609-611) (function)
- IBEP20.name() (contracts/TmtToken.sol#123) (function)
BEP20.constructor(string,string).symbol (contracts/TmtToken.sol#593) shadows:
- BEP20.symbol() (contracts/TmtToken.sol#623-625) (function)
- IBEP20.symbol() (contracts/TmtToken.sol#118) (function)
BEP20.allowance(address,address).owner (contracts/TmtToken.sol#657) shadows:
- Ownable.owner() (contracts/TmtToken.sol#61-63) (function)
BEP20._approve(address,address,uint256).owner (contracts/TmtToken.sol#829) shadows:
- Ownable.owner() (contracts/TmtToken.sol#61-63) (function)
Rename the local variables that shadow another component.

Additional information: link

TmtToken.delegateBySig(address,uint256,uint256,uint8,bytes32,bytes32) (contracts/TmtToken.sol#935-976) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now <= expiry,TMT::delegateBySig: signature expired) (contracts/TmtToken.sol#974)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (contracts/TmtToken.sol#408-419) uses assembly
- INLINE ASM (contracts/TmtToken.sol#415-417)
Address._functionCallWithValue(address,bytes,uint256,string) (contracts/TmtToken.sol#516-542) uses assembly
- INLINE ASM (contracts/TmtToken.sol#534-537)
TmtToken.getChainId() (contracts/TmtToken.sol#1094-1098) uses assembly
- INLINE ASM (contracts/TmtToken.sol#1096)
Do not use evm assembly.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (contracts/TmtToken.sol#516-542) is never used and should be removed
Address.functionCall(address,bytes) (contracts/TmtToken.sol#463-465) is never used and should be removed
Address.functionCall(address,bytes,string) (contracts/TmtToken.sol#473-479) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (contracts/TmtToken.sol#492-498) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (contracts/TmtToken.sol#506-514) is never used and should be removed
Address.isContract(address) (contracts/TmtToken.sol#408-419) is never used and should be removed
Address.sendValue(address,uint256) (contracts/TmtToken.sol#437-443) is never used and should be removed
BEP20._burn(address,uint256) (contracts/TmtToken.sol#807-813) is never used and should be removed
BEP20._burnFrom(address,uint256) (contracts/TmtToken.sol#846-853) is never used and should be removed
Context._msgData() (contracts/TmtToken.sol#25-28) is never used and should be removed
SafeMath.div(uint256,uint256) (contracts/TmtToken.sol#302-304) is never used and should be removed
SafeMath.div(uint256,uint256,string) (contracts/TmtToken.sol#318-328) is never used and should be removed
SafeMath.min(uint256,uint256) (contracts/TmtToken.sol#367-369) is never used and should be removed
SafeMath.mod(uint256,uint256) (contracts/TmtToken.sol#342-344) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (contracts/TmtToken.sol#358-365) is never used and should be removed
SafeMath.mul(uint256,uint256) (contracts/TmtToken.sol#276-288) is never used and should be removed
SafeMath.sqrt(uint256) (contracts/TmtToken.sol#372-383) is never used and should be removed
Remove unused functions.

Additional information: link

Low level call in Address.sendValue(address,uint256) (contracts/TmtToken.sol#437-443):
- (success) = recipient.call{value: amount}() (contracts/TmtToken.sol#441)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (contracts/TmtToken.sol#516-542):
- (success,returndata) = target.call{value: weiValue}(data) (contracts/TmtToken.sol#525)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Parameter TmtToken.mint(address,uint256)._to (contracts/TmtToken.sol#865) is not in mixedCase
Parameter TmtToken.mint(address,uint256)._amount (contracts/TmtToken.sol#865) is not in mixedCase
Variable TmtToken._delegates (contracts/TmtToken.sol#877) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (contracts/TmtToken.sol#26)" inContext (contracts/TmtToken.sol#16-29)
Remove redundant statements if they congest code but offer no value.

Additional information: link

TmtToken.constructor() (contracts/TmtToken.sol#858-862) uses literals with too many digits:
- _mint(msg.sender,100000000 * 10 ** 18) (contracts/TmtToken.sol#861)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (contracts/TmtToken.sol#80-83)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (contracts/TmtToken.sol#89-91)
decimals() should be declared external:
- BEP20.decimals() (contracts/TmtToken.sol#616-618)
symbol() should be declared external:
- BEP20.symbol() (contracts/TmtToken.sol#623-625)
totalSupply() should be declared external:
- BEP20.totalSupply() (contracts/TmtToken.sol#630-632)
transfer(address,uint256) should be declared external:
- BEP20.transfer(address,uint256) (contracts/TmtToken.sol#649-652)
allowance(address,address) should be declared external:
- BEP20.allowance(address,address) (contracts/TmtToken.sol#657-659)
approve(address,uint256) should be declared external:
- BEP20.approve(address,uint256) (contracts/TmtToken.sol#668-671)
transferFrom(address,address,uint256) should be declared external:
- BEP20.transferFrom(address,address,uint256) (contracts/TmtToken.sol#685-697)
increaseAllowance(address,uint256) should be declared external:
- BEP20.increaseAllowance(address,uint256) (contracts/TmtToken.sol#711-714)
decreaseAllowance(address,uint256) should be declared external:
- BEP20.decreaseAllowance(address,uint256) (contracts/TmtToken.sol#730-737)
mint(uint256) should be declared external:
- BEP20.mint(uint256) (contracts/TmtToken.sol#747-750)
mint(address,uint256) should be declared external:
- TmtToken.mint(address,uint256) (contracts/TmtToken.sol#865-868)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Token is deployed only at one blockchain


Unable to find PancakeSwap trading pair to compute liquidity.


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


Last post in Twitter was more than 30 days ago


Unable to find Youtube account


BscScan page for the token does not contain additional info: website, socials, description, etc.

Additional information: link


Unable to find token/project description on the website or on BscScan, CoinMarketCap


Unable to find token contract audit


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


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


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


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


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death


Token has relatively low CoinGecko rank

Price for TMT

News for TMT