RACE Token Token Logo

RACE Token

About RACE

Listings

Token 2 years
CoinGecko 23 months
CoinMarketCap 23 months

Website

white paper

Race.Top is an integrated platform based on DAO, Swap, Mining, and other functions.

The users can initiate community proposals, participate in Swap dividends, and play dog racing competitions on Race.Top platform.

Race is the governance token of Race.Top platform, which adopts the latest token initial issue method and enables token with the greatest community governance capabilities.

Laser Scorebeta Last Audit: 17 May 2022

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


Contract ownership is not renounced (belongs to a wallet)

Reentrancy in RACE._transfer(address,address,uint256) (#1268-1309):
External calls:
- IReward(rewardPool).addReward(cumulativeRewardAmount) (#1293)
State variables written after the call(s):
- cumulativeRewardAmount = 0 (#1295)
- cumulativeRewardAmount += rewardAmount (#1304)
Apply the check-effects-interactions pattern.

Additional information: link

RACE.constructor(string,string,uint256,address,address,address)._rewardPool (#1255) lacks a zero-check on :
- rewardPool = _rewardPool (#1260)
RACE.constructor(string,string,uint256,address,address,address)._racePool (#1255) lacks a zero-check on :
- racePool = _racePool (#1261)
RACE.updateRewardPool(address).addr (#1329) lacks a zero-check on :
- rewardPool = addr (#1330)
RACE.updateRacePool(address).addr (#1335) lacks a zero-check on :
- racePool = addr (#1336)
Check that the address is not zero.

Additional information: link

Reentrancy in RACE._transfer(address,address,uint256) (#1268-1309):
External calls:
- IReward(rewardPool).addReward(cumulativeRewardAmount) (#1293)
State variables written after the call(s):
- super._transfer(address(this),rewardPool,cumulativeRewardAmount) (#1294)
- _balances[sender] = senderBalance - amount (#273)
- _balances[recipient] += amount (#274)
- super._transfer(from,burnAddress,burnAmount) (#1301)
- _balances[sender] = senderBalance - amount (#273)
- _balances[recipient] += amount (#274)
- super._transfer(from,racePool,raceAmount) (#1302)
- _balances[sender] = senderBalance - amount (#273)
- _balances[recipient] += amount (#274)
- super._transfer(from,address(this),rewardAmount) (#1303)
- _balances[sender] = senderBalance - amount (#273)
- _balances[recipient] += amount (#274)
- super._transfer(from,to,amount) (#1307)
- _balances[sender] = senderBalance - amount (#273)
- _balances[recipient] += amount (#274)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in RACE._transfer(address,address,uint256) (#1268-1309):
External calls:
- IReward(rewardPool).addReward(cumulativeRewardAmount) (#1293)
Event emitted after the call(s):
- Transfer(sender,recipient,amount) (#276)
- super._transfer(address(this),rewardPool,cumulativeRewardAmount) (#1294)
- Transfer(sender,recipient,amount) (#276)
- super._transfer(from,racePool,raceAmount) (#1302)
- Transfer(sender,recipient,amount) (#276)
- super._transfer(from,burnAddress,burnAmount) (#1301)
- Transfer(sender,recipient,amount) (#276)
- super._transfer(from,address(this),rewardAmount) (#1303)
- Transfer(sender,recipient,amount) (#276)
- super._transfer(from,to,amount) (#1307)
Apply the check-effects-interactions pattern.

Additional information: link

Address.isContract(address) (#768-777) uses assembly
- INLINE ASM (#775)
Address._verifyCallResult(bool,bytes,string) (#913-930) uses assembly
- INLINE ASM (#922-925)
Do not use evm assembly.

Additional information: link

Address.functionCall(address,bytes) (#821-823) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#846-848) is never used and should be removed
Address.functionDelegateCall(address,bytes) (#895-897) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (#905-911) is never used and should be removed
Address.functionStaticCall(address,bytes) (#871-873) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (#881-887) is never used and should be removed
Address.sendValue(address,uint256) (#795-801) is never used and should be removed
Context._msgData() (#9-12) is never used and should be removed
Math.average(uint256,uint256) (#685-688) is never used and should be removed
Math.max(uint256,uint256) (#670-672) is never used and should be removed
Math.min(uint256,uint256) (#677-679) is never used and should be removed
SafeERC20.safeApprove(IERC20,address,uint256) (#414-423) is never used and should be removed
SafeERC20.safeDecreaseAllowance(IERC20,address,uint256) (#430-437) is never used and should be removed
SafeERC20.safeIncreaseAllowance(IERC20,address,uint256) (#425-428) is never used and should be removed
SafeERC20.safeTransferFrom(IERC20,address,address,uint256) (#403-405) is never used and should be removed
SafeMath.add(uint256,uint256) (#537-539) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#635-640) is never used and should be removed
SafeMath.mod(uint256,uint256) (#595-597) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#657-662) is never used and should be removed
SafeMath.sub(uint256,uint256,string) (#612-617) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (#466-472) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (#508-513) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (#520-525) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (#491-501) is never used and should be removed
SafeMath.trySub(uint256,uint256) (#479-484) is never used and should be removed
Remove unused functions.

Additional information: link

Pragma version^0.8.0 (#2) allows old versions
solc-0.8.0 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

Low level call in Address.sendValue(address,uint256) (#795-801):
- (success) = recipient.call{value: amount}() (#799)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (#856-863):
- (success,returndata) = target.call{value: value}(data) (#861)
Low level call in Address.functionStaticCall(address,bytes,string) (#881-887):
- (success,returndata) = target.staticcall(data) (#885)
Low level call in Address.functionDelegateCall(address,bytes,string) (#905-911):
- (success,returndata) = target.delegatecall(data) (#909)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IUniswapV2Router01.WETH() (#973) is not in mixedCase
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#1192) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#1193) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#1210) is not in mixedCase
Variable RACE._isExcludedFromFees (#1250) is not in mixedCase
Variable RACE._blackList (#1251) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#10)" inContext (#4-13)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#978) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#979)
Prevent variables from having similar names.

Additional information: link

RACE.slitherConstructorVariables() (#1233-1351) uses literals with too many digits:
- burnAddress = 0x000000000000000000000000000000000000dEaD (#1249)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

RACE.burnAddress (#1249) should be constant
RACE.burnFee (#1240) should be constant
RACE.raceFee (#1242) should be constant
RACE.rewardFee (#1241) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

name() should be declared external:
- ERC20.name() (#114-116)
symbol() should be declared external:
- ERC20.symbol() (#122-124)
decimals() should be declared external:
- ERC20.decimals() (#139-141)
totalSupply() should be declared external:
- ERC20.totalSupply() (#146-148)
balanceOf(address) should be declared external:
- ERC20.balanceOf(address) (#153-155)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#165-168)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#184-187)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#202-210)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#224-227)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#243-249)
burn(uint256) should be declared external:
- ERC20Burnable.burn(uint256) (#372-374)
burnFrom(address,uint256) should be declared external:
- ERC20Burnable.burnFrom(address,uint256) (#387-392)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#730-733)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#739-743)
excludeFromFees(address,bool) should be declared external:
- RACE.excludeFromFees(address,bool) (#1312-1320)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:

Contract has 12% buy tax and 12% sell tax.
Taxes are suspiciously high (over 10%) and contract ownership is not renounced. Token has a high risk of becoming a honeypot.


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 Youtube account


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

Additional information: link


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 Telegram link on the website


Unable to find Twitter link on the website


Token is not listed at Mobula.Finance

Additional information: link


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


Token has relatively low CoinGecko rank


Young tokens have high risks of price dump / death

Price for RACE

News for RACE