MetaDrace Token Logo

Drace [MetaDrace] Token (2)

About Drace

Listings

Token 2 years
CoinMarketCap 2 years
white paper

MetaDrace is a blockchain-based NFT gift for speed sports and enthusiasts fans, dog lovers, and the E-sports community.

In MetaDrace you will own powerful virtual Greyhound dogs. You will nurture and train them in your own way to victory in the fiercest tournaments. Or you only need to predict which dogs will win the race and collect your reward. With the training room system, no other dog will have the same strength as the other on the MetaDrace World.

Social

Laser Scorebeta Last Audit: 2 March 2022

report
Token seems to be (relatively) fine. It still become a scam, but probability is moderate.


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

Token.constructor(string,string).name (Token.sol#29) shadows:
- ERC20.name() (ERC20.sol#62-64) (function)
- IERC20Metadata.name() (IERC20Metadata.sol#17) (function)
Token.constructor(string,string).symbol (Token.sol#29) shadows:
- ERC20.symbol() (ERC20.sol#70-72) (function)
- IERC20Metadata.symbol() (IERC20Metadata.sol#22) (function)
Rename the local variables that shadow another component.

Additional information: link

Token.updateRewardWalletLimit(uint256) (Token.sol#40-42) should emit an event for:
- limitTxForRewardWallet = newLimitation (Token.sol#41)
Emit an event for critical parameter changes.

Additional information: link

Token.updateRewardWallet(address).newWallet (Token.sol#37) lacks a zero-check on :
- rewardWallet = newWallet (Token.sol#38)
Token.setRewardsPool(address)._rewardsPool (Token.sol#80) lacks a zero-check on :
- rewardsPool = _rewardsPool (Token.sol#81)
Check that the address is not zero.

Additional information: link

Token._transfer(address,address,uint256) (Token.sol#85-112) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(lastTrade[sender] < (block.timestamp - tradeCooldown),string(No consecutive sells allowed. Please wait.)) (Token.sol#99)
Avoid relying on block.timestamp.

Additional information: link

Token._transfer(address,address,uint256) (Token.sol#85-112) compares to a boolean constant:
-liquidityPool[receiver] == true (Token.sol#95)
Token._transfer(address,address,uint256) (Token.sol#85-112) compares to a boolean constant:
-liquidityPool[sender] == true (Token.sol#92)
Remove the equality to the boolean constant.

Additional information: link

Context._msgData() (Context.sol#21-23) is never used and should be removed
ERC20._burn(address,uint256) (ERC20.sol#275-290) is never used and should be removed
Remove unused functions.

Additional information: link

Pragma version^0.8.0 (Context.sol#4) allows old versions
Pragma version^0.8.0 (ERC20.sol#4) allows old versions
Pragma version^0.8.0 (IERC20.sol#4) allows old versions
Pragma version^0.8.0 (IERC20Metadata.sol#4) allows old versions
Pragma version^0.8.0 (Ownable.sol#4) allows old versions
Pragma version^0.8.0 (Token.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

Event TokenchangeTax(uint8,uint8,uint8) (Token.sol#23) is not in CapWords
Event TokenchangeCooldown(uint8) (Token.sol#24) is not in CapWords
Event TokenchangeLiquidityPoolStatus(address,bool) (Token.sol#25) is not in CapWords
Event TokenchangeWhitelistTax(address,bool) (Token.sol#26) is not in CapWords
Event TokenchangeRewardsPool(address) (Token.sol#27) is not in CapWords
Parameter Token.setTaxes(uint8,uint8,uint8)._sellTax (Token.sol#51) is not in mixedCase
Parameter Token.setTaxes(uint8,uint8,uint8)._buyTax (Token.sol#51) is not in mixedCase
Parameter Token.setTaxes(uint8,uint8,uint8)._transferTax (Token.sol#51) is not in mixedCase
Parameter Token.setCooldownForTrades(uint8)._tradeCooldown (Token.sol#65) is not in mixedCase
Parameter Token.setLiquidityPoolStatus(address,bool)._lpAddress (Token.sol#70) is not in mixedCase
Parameter Token.setLiquidityPoolStatus(address,bool)._status (Token.sol#70) is not in mixedCase
Parameter Token.setWhitelist(address,bool)._address (Token.sol#75) is not in mixedCase
Parameter Token.setWhitelist(address,bool)._status (Token.sol#75) is not in mixedCase
Parameter Token.setRewardsPool(address)._rewardsPool (Token.sol#80) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Token.constructor(string,string) (Token.sol#29-35) uses literals with too many digits:
- _mint(msg.sender,100000000 * 1000000000000000000) (Token.sol#30)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

name() should be declared external:
- ERC20.name() (ERC20.sol#62-64)
symbol() should be declared external:
- ERC20.symbol() (ERC20.sol#70-72)
decimals() should be declared external:
- ERC20.decimals() (ERC20.sol#87-89)
totalSupply() should be declared external:
- ERC20.totalSupply() (ERC20.sol#94-96)
balanceOf(address) should be declared external:
- ERC20.balanceOf(address) (ERC20.sol#101-103)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (ERC20.sol#113-116)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (ERC20.sol#121-123)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (ERC20.sol#132-135)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (ERC20.sol#150-164)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (ERC20.sol#178-181)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (ERC20.sol#197-205)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (Ownable.sol#54-56)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (Ownable.sol#62-65)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Token is deployed only at one blockchain


Token has only one trading pair

Contract has 0% buy tax and 5% sell tax.
Taxes are low and contract ownership is renounced.


Last post in Twitter was more than 30 days ago


Unable to find Blog account (Reddit or Medium)


Unable to find whitepaper link on the website


Unable to find token on CoinHunt

Additional information: link


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


Token has relatively low CoinGecko rank


Token has relatively low CoinMarketCap rank

Price for Drace

News for Drace