LUXE Token Logo

LUXE Token

About LUXE

Listings

Token 2 years
CoinMarketCap 2 years
white paper

Introduction
LuxeRacing was founded under the basis of creating a real-feel FT GameFi experience. Players can not only utilize their tokens and NFT's recreationally or for matter of earning, but TRULY feel their FT both inside and out. From fealing the raw power of your virtual vehicle, to experiencing the luxury involved down to the smallest of details such as the shine of a brand new leather.

Brought to you by a professional team of developers and blockchain enthusiasts, with versatile experience in a multitude of industries allowing LuxeRacing to become a product of meticulous development, true technological innovations, and mass marketability.

LuxeRacing NFT's
Regularly Released NFT Content Sets (Cars, Upgrades, Char) In-Game Compatability, Customizable, Upgradeable NFT Purchases via Auction at an affordable price Secondary Markets for resales based on rarity & in-game performance.

The LuxeRacing Game
A First of it's Kind, real-feel racing game brought to you by a professional developer who's worked on games such as: RDD, Forza3, & Midnight Club

Utilization: In-Game Spending, NFT Customization, Race Wagering.
Experience your NFT like never before in a real-feel racing setting.
Players will be able to participate in a variety of race modes, in a multitude of high quality digital environmnets.

Social

Laser Scorebeta Last Audit: 4 February 2022

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

Anti-Scam

Links

Reentrancy in LUXE._transfer(address,address,uint256) (#1087-1196):
External calls:
- swapBack() (#1152)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#1225-1232)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1208-1214)
- (success) = address(marketingWallet).call{value: ethForMarketing}() (#1262)
- (success,None) = address(buyBackWallet).call{value: address(this).balance}() (#1269)
External calls sending eth:
- swapBack() (#1152)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#1225-1232)
- (success) = address(marketingWallet).call{value: ethForMarketing}() (#1262)
- (success,None) = address(buyBackWallet).call{value: address(this).balance}() (#1269)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (#1189)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#371)
- _balances[recipient] = _balances[recipient].add(amount) (#372)
- super._transfer(from,to,amount) (#1195)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#371)
- _balances[recipient] = _balances[recipient].add(amount) (#372)
- swapping = false (#1154)
- tokensForBuyBack += fees * 33 / 99 (#1170)
- tokensForBuyBack += fees * sellBuyBackFee / sellTotalFees (#1177)
- tokensForBuyBack += fees * buyBuyBackFee / buyTotalFees (#1184)
- tokensForLiquidity += fees * 33 / 99 (#1169)
- tokensForLiquidity += fees * sellLiquidityFee / sellTotalFees (#1176)
- tokensForLiquidity += fees * buyLiquidityFee / buyTotalFees (#1183)
- tokensForMarketing += fees * 33 / 99 (#1171)
- tokensForMarketing += fees * sellMarketingFee / sellTotalFees (#1178)
- tokensForMarketing += fees * buyMarketingFee / buyTotalFees (#1185)
Apply the check-effects-interactions pattern.

Additional information: link


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

LUXE._transfer(address,address,uint256) (#1087-1196) performs a multiplication on the result of a division:
-fees = amount.mul(99).div(100) (#1168)
-tokensForLiquidity += fees * 33 / 99 (#1169)
LUXE._transfer(address,address,uint256) (#1087-1196) performs a multiplication on the result of a division:
-fees = amount.mul(99).div(100) (#1168)
-tokensForBuyBack += fees * 33 / 99 (#1170)
LUXE._transfer(address,address,uint256) (#1087-1196) performs a multiplication on the result of a division:
-fees = amount.mul(99).div(100) (#1168)
-tokensForMarketing += fees * 33 / 99 (#1171)
LUXE._transfer(address,address,uint256) (#1087-1196) performs a multiplication on the result of a division:
-tokensForLiquidity += fees * sellLiquidityFee / sellTotalFees (#1176)
-fees = amount.mul(buyTotalFees).div(100) (#1182)
LUXE._transfer(address,address,uint256) (#1087-1196) performs a multiplication on the result of a division:
-fees = amount.mul(buyTotalFees).div(100) (#1182)
-tokensForLiquidity += fees * buyLiquidityFee / buyTotalFees (#1183)
LUXE._transfer(address,address,uint256) (#1087-1196) performs a multiplication on the result of a division:
-tokensForBuyBack += fees * sellBuyBackFee / sellTotalFees (#1177)
-fees = amount.mul(buyTotalFees).div(100) (#1182)
LUXE._transfer(address,address,uint256) (#1087-1196) performs a multiplication on the result of a division:
-fees = amount.mul(buyTotalFees).div(100) (#1182)
-tokensForBuyBack += fees * buyBuyBackFee / buyTotalFees (#1184)
LUXE._transfer(address,address,uint256) (#1087-1196) performs a multiplication on the result of a division:
-tokensForMarketing += fees * sellMarketingFee / sellTotalFees (#1178)
-fees = amount.mul(buyTotalFees).div(100) (#1182)
LUXE._transfer(address,address,uint256) (#1087-1196) performs a multiplication on the result of a division:
-fees = amount.mul(buyTotalFees).div(100) (#1182)
-tokensForMarketing += fees * buyMarketingFee / buyTotalFees (#1185)
Consider ordering multiplication before division.

Additional information: link

Reentrancy in LUXE.constructor() (#931-990):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#940)
State variables written after the call(s):
- transferOwnership(newOwner) (#989)
- _owner = newOwner (#653)
Reentrancy in LUXE.swapBack() (#1235-1270):
External calls:
- swapTokensForEth(amountToSwapForETH) (#1247)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1208-1214)
State variables written after the call(s):
- tokensForBuyBack = 0 (#1260)
- tokensForLiquidity = 0 (#1258)
- tokensForMarketing = 0 (#1259)
Apply the check-effects-interactions pattern.

Additional information: link

LUXE._transfer(address,address,uint256) (#1087-1196) uses tx.origin for authorization: require(bool,string)(_holderLastTransferTimestamp[tx.origin] < block.number,_transfer:: Transfer Delay enabled. Only one purchase per block allowed.) (#1115)
Do not use tx.origin for authorization.

Additional information: link

LUXE.addLiquidity(uint256,uint256) (#1220-1233) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#1225-1232)
Ensure that all the return values of the function calls are used.

Additional information: link

LUXE.constructor().totalSupply (#954) shadows:
- ERC20.totalSupply() (#245-247) (function)
- IERC20.totalSupply() (#95) (function)
Rename the local variables that shadow another component.

Additional information: link

LUXE.updateSwapTokensAtAmount(uint256) (#1016-1021) should emit an event for:
- swapTokensAtAmount = newAmount (#1019)
LUXE.updateMaxAmount(uint256) (#1023-1026) should emit an event for:
- maxTransactionAmount = newNum * (10 ** 18) (#1025)
LUXE.updateBuyFees(uint256,uint256,uint256) (#1037-1043) should emit an event for:
- buyMarketingFee = _marketingFee (#1038)
- buyLiquidityFee = _liquidityFee (#1039)
- buyBuyBackFee = _buyBackFee (#1040)
- buyTotalFees = buyMarketingFee + buyLiquidityFee + buyBuyBackFee (#1041)
LUXE.updateSellFees(uint256,uint256,uint256) (#1045-1051) should emit an event for:
- sellMarketingFee = _marketingFee (#1046)
- sellLiquidityFee = _liquidityFee (#1047)
- sellBuyBackFee = _buyBackFee (#1048)
- sellTotalFees = sellMarketingFee + sellLiquidityFee + sellBuyBackFee (#1049)
Emit an event for critical parameter changes.

Additional information: link

LUXE.updateMarketingWallet(address).newMarketingWallet (#1070) lacks a zero-check on :
- marketingWallet = newMarketingWallet (#1072)
LUXE.updateBuyBackWallet(address).newWallet (#1075) lacks a zero-check on :
- buyBackWallet = newWallet (#1077)
Check that the address is not zero.

Additional information: link

Reentrancy in LUXE.constructor() (#931-990):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#940)
State variables written after the call(s):
- _mint(newOwner,totalSupply) (#988)
- _balances[account] = _balances[account].add(amount) (#391)
- excludeFromFees(newOwner,true) (#974)
- _isExcludedFromFees[account] = excluded (#1054)
- excludeFromFees(address(this),true) (#975)
- _isExcludedFromFees[account] = excluded (#1054)
- excludeFromFees(address(0xdead),true) (#976)
- _isExcludedFromFees[account] = excluded (#1054)
- excludeFromFees(buyBackWallet,true) (#977)
- _isExcludedFromFees[account] = excluded (#1054)
- excludeFromMaxTransaction(address(uniswapV2Pair),true) (#941)
- _isExcludedMaxTransactionAmount[updAds] = isEx (#1029)
- excludeFromMaxTransaction(newOwner,true) (#979)
- _isExcludedMaxTransactionAmount[updAds] = isEx (#1029)
- excludeFromMaxTransaction(address(this),true) (#980)
- _isExcludedMaxTransactionAmount[updAds] = isEx (#1029)
- excludeFromMaxTransaction(buyBackWallet,true) (#981)
- _isExcludedMaxTransactionAmount[updAds] = isEx (#1029)
- excludeFromMaxTransaction(address(0xdead),true) (#982)
- _isExcludedMaxTransactionAmount[updAds] = isEx (#1029)
- _mint(newOwner,totalSupply) (#988)
- _totalSupply = _totalSupply.add(amount) (#390)
- _setAutomatedMarketMakerPair(address(uniswapV2Pair),true) (#942)
- automatedMarketMakerPairs[pair] = value (#1065)
- buyBackWallet = address(0x1Aef2e32563B98480173014509352532D9a507a9) (#971)
- buyBuyBackFee = _buyBuyBackFee (#962)
- buyLiquidityFee = _buyLiquidityFee (#961)
- buyMarketingFee = _buyMarketingFee (#960)
- buyTotalFees = buyMarketingFee + buyLiquidityFee + buyBuyBackFee (#963)
- marketingWallet = address(0xa957A7F4d684966909680119a0CB06a593dC0645) (#970)
- maxTransactionAmount = totalSupply * 1 / 1000 (#956)
- maxWallet = totalSupply * 25 / 1000 (#958)
- sellBuyBackFee = _sellBuyBackFee (#967)
- sellLiquidityFee = _sellLiquidityFee (#966)
- sellMarketingFee = _sellMarketingFee (#965)
- sellTotalFees = sellMarketingFee + sellLiquidityFee + sellBuyBackFee (#968)
- swapTokensAtAmount = totalSupply * 5 / 10000 (#957)
Reentrancy in LUXE.swapBack() (#1235-1270):
External calls:
- swapTokensForEth(amountToSwapForETH) (#1247)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1208-1214)
- (success) = address(marketingWallet).call{value: ethForMarketing}() (#1262)
- addLiquidity(liquidityTokens,ethForLiquidity) (#1264)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#1225-1232)
External calls sending eth:
- (success) = address(marketingWallet).call{value: ethForMarketing}() (#1262)
- addLiquidity(liquidityTokens,ethForLiquidity) (#1264)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#1225-1232)
State variables written after the call(s):
- addLiquidity(liquidityTokens,ethForLiquidity) (#1264)
- _allowances[owner][spender] = amount (#437)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in LUXE._transfer(address,address,uint256) (#1087-1196):
External calls:
- swapBack() (#1152)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#1225-1232)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1208-1214)
- (success) = address(marketingWallet).call{value: ethForMarketing}() (#1262)
- (success,None) = address(buyBackWallet).call{value: address(this).balance}() (#1269)
External calls sending eth:
- swapBack() (#1152)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#1225-1232)
- (success) = address(marketingWallet).call{value: ethForMarketing}() (#1262)
- (success,None) = address(buyBackWallet).call{value: address(this).balance}() (#1269)
Event emitted after the call(s):
- Transfer(sender,recipient,amount) (#373)
- super._transfer(from,to,amount) (#1195)
- Transfer(sender,recipient,amount) (#373)
- super._transfer(from,address(this),fees) (#1189)
Reentrancy in LUXE.buyBackTokens(uint256) (#1273-1287):
External calls:
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: bnbAmountInWei}(0,path,address(0xdead),block.timestamp) (#1280-1285)
Event emitted after the call(s):
- BuyBackTriggered(bnbAmountInWei) (#1286)
Reentrancy in LUXE.constructor() (#931-990):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#940)
Event emitted after the call(s):
- ExcludeFromFees(account,excluded) (#1055)
- excludeFromFees(newOwner,true) (#974)
- ExcludeFromFees(account,excluded) (#1055)
- excludeFromFees(buyBackWallet,true) (#977)
- ExcludeFromFees(account,excluded) (#1055)
- excludeFromFees(address(0xdead),true) (#976)
- ExcludeFromFees(account,excluded) (#1055)
- excludeFromFees(address(this),true) (#975)
- OwnershipTransferred(_owner,newOwner) (#652)
- transferOwnership(newOwner) (#989)
- SetAutomatedMarketMakerPair(pair,value) (#1067)
- _setAutomatedMarketMakerPair(address(uniswapV2Pair),true) (#942)
- Transfer(address(0),account,amount) (#392)
- _mint(newOwner,totalSupply) (#988)
Reentrancy in LUXE.swapBack() (#1235-1270):
External calls:
- swapTokensForEth(amountToSwapForETH) (#1247)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1208-1214)
- (success) = address(marketingWallet).call{value: ethForMarketing}() (#1262)
- addLiquidity(liquidityTokens,ethForLiquidity) (#1264)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#1225-1232)
External calls sending eth:
- (success) = address(marketingWallet).call{value: ethForMarketing}() (#1262)
- addLiquidity(liquidityTokens,ethForLiquidity) (#1264)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,deadAddress,block.timestamp) (#1225-1232)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#438)
- addLiquidity(liquidityTokens,ethForLiquidity) (#1264)
- SwapAndLiquify(amountToSwapForETH,ethForLiquidity,tokensForLiquidity) (#1265)
Apply the check-effects-interactions pattern.

Additional information: link

Context._msgData() (#18-21) is never used and should be removed
ERC20._burn(address,uint256) (#406-414) is never used and should be removed
SafeMath.mod(uint256,uint256) (#583-585) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#599-602) is never used and should be removed
SafeMathInt.abs(int256) (#707-710) is never used and should be removed
SafeMathInt.add(int256,int256) (#698-702) is never used and should be removed
SafeMathInt.div(int256,int256) (#678-684) is never used and should be removed
SafeMathInt.mul(int256,int256) (#666-673) is never used and should be removed
SafeMathInt.sub(int256,int256) (#689-693) is never used and should be removed
SafeMathInt.toUint256Safe(int256) (#713-716) is never used and should be removed
SafeMathUint.toInt256Safe(uint256) (#720-724) is never used and should be removed
Remove unused functions.

Additional information: link

Pragma version0.8.9 (#11) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
solc-0.8.9 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 LUXE.swapBack() (#1235-1270):
- (success) = address(marketingWallet).call{value: ethForMarketing}() (#1262)
- (success,None) = address(buyBackWallet).call{value: address(this).balance}() (#1269)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#39) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#40) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#57) is not in mixedCase
Function IUniswapV2Router01.WETH() (#730) is not in mixedCase
Event LUXEmarketingWalletUpdated(address,address) (#919) is not in CapWords
Event LUXEbuyBackWalletUpdated(address,address) (#921) is not in CapWords
Parameter LUXE.updateBuyFees(uint256,uint256,uint256)._marketingFee (#1037) is not in mixedCase
Parameter LUXE.updateBuyFees(uint256,uint256,uint256)._liquidityFee (#1037) is not in mixedCase
Parameter LUXE.updateBuyFees(uint256,uint256,uint256)._buyBackFee (#1037) is not in mixedCase
Parameter LUXE.updateSellFees(uint256,uint256,uint256)._marketingFee (#1045) is not in mixedCase
Parameter LUXE.updateSellFees(uint256,uint256,uint256)._liquidityFee (#1045) is not in mixedCase
Parameter LUXE.updateSellFees(uint256,uint256,uint256)._buyBackFee (#1045) is not in mixedCase
Constant LUXE.deadAddress (#868) is not in UPPER_CASE_WITH_UNDERSCORES
Variable LUXE._isExcludedMaxTransactionAmount (#907) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#19)" inContext (#13-22)
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 (#735) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#736)
Prevent variables from having similar names.

Additional information: link

LUXE.updateSwapTokensAtAmount(uint256) (#1016-1021) uses literals with too many digits:
- require(bool,string)(newAmount >= totalSupply() * 1 / 100000,Swap amount cannot be lower than 0.001% total supply.) (#1017)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SafeMathInt.MAX_INT256 (#661) is never used in SafeMathInt (#659-717)
Remove unused state variables.

Additional information: link

name() should be declared external:
- ERC20.name() (#213-215)
symbol() should be declared external:
- ERC20.symbol() (#221-223)
decimals() should be declared external:
- ERC20.decimals() (#238-240)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#264-267)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (#272-274)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#283-286)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#301-309)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#323-326)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#342-345)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#641-644)
setAutomatedMarketMakerPair(address,bool) should be declared external:
- LUXE.setAutomatedMarketMakerPair(address,bool) (#1058-1062)
isExcludedFromFees(address) should be declared external:
- LUXE.isExcludedFromFees(address) (#1081-1083)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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 PancakeSwap trading pair to compute liquidity.


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


Telegram account link seems to be invalid


Twitter account link seems to be invalid


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to crawl data from the website


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

Additional information: link


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


Unable to find Twitter 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


Token has relatively low CoinGecko rank

Price for LUXE