Nevada Token Logo

NEVADA Token

About NEVADA

Listings

Token 2 years
CoinMarketCap 2 years
white paper

The Nevada team is developing a Binance Smart Chain project based on casino games and lottery concepts inspired by the casinos in the Las Vegas scene. Regular community activities are held on Nevada's socials such as Professional Poker Player Get-to-Know Sessions as well as Singing Competitions to promote community bonding.

The Nevada ecosystem is powered by its own $NEVADA token. The platform is funded and marketed through transaction taxes. Each transaction is subject to a 9% tax, of which 3% goes to the casino development, 2% to marketing and 3% to the weekly lottery. The final 2% is used for auto-LP, a function that adds BNB to the token reserves and makes the price floor more stable.

Social

Laser Scorebeta Last Audit: 18 August 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...)

Reentrancy in Nevada._transferFrom(address,address,uint256) (Nevada.sol#167-182):
External calls:
- swapBack() (Nevada.sol#174)
- ROUTER.swapExactTokensForETH(amountToSwap,0,path,address(this),block.timestamp) (Nevada.sol#246-252)
- ROUTER.addLiquidityETH{value: amountBNBLiquidity}(address(this),liquidityTokens,0,0,LOCKER,block.timestamp) (Nevada.sol#263-270)
External calls sending eth:
- swapBack() (Nevada.sol#174)
- ROUTER.addLiquidityETH{value: amountBNBLiquidity}(address(this),liquidityTokens,0,0,LOCKER,block.timestamp) (Nevada.sol#263-270)
State variables written after the call(s):
- _balances[sender] = senderBalance - amount (Nevada.sol#176)
- _balances[recipient] += amountReceived (Nevada.sol#178)
- amountReceived = takeFee(sender,recipient,amount) (Nevada.sol#177)
- _balances[address(this)] += feeAmount (Nevada.sol#209)
Apply the check-effects-interactions pattern.

Additional information: link


Contract ownership is not renounced (belongs to a wallet)

Nevada.updateTransferGas(uint256) (Nevada.sol#365-370) uses literals with too many digits:
- require(bool)(newGas >= 21000 && newGas <= 100000) (Nevada.sol#366)
Nevada.slitherConstructorVariables() (Nevada.sol#27-393) uses literals with too many digits:
- swapThreshold = 300000 * 10 ** DECIMALS (Nevada.sol#42)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

balanceOf(address) should be declared external:
- Nevada.balanceOf(address) (Nevada.sol#114)
Use the external attribute for functions never called from the contract.

Additional information: link

Nevada.selmaTaxDiscount(address).diamondBalance (Nevada.sol#223) is a local variable never initialized
Nevada.selmaTaxDiscount(address).platinumBalance (Nevada.sol#219) is a local variable never initialized
Nevada.selmaTaxDiscount(address).discountMultiplier (Nevada.sol#217) is a local variable never initialized
Initialize all the variables. If a variable is meant to be initialized to zero, explicitly set it to zero to improve code readability.

Additional information: link

Nevada.selmaTaxDiscount(address) (Nevada.sol#216-228) ignores return value by SELMA_NFT.balanceOf(account,1) (Nevada.sol#219-221)
Nevada.selmaTaxDiscount(address) (Nevada.sol#216-228) ignores return value by SELMA_NFT.balanceOf(account,2) (Nevada.sol#223-225)
Nevada.swapBack() (Nevada.sol#237-274) ignores return value by ROUTER.swapExactTokensForETH(amountToSwap,0,path,address(this),block.timestamp) (Nevada.sol#246-252)
Nevada.swapBack() (Nevada.sol#237-274) ignores return value by ROUTER.addLiquidityETH{value: amountBNBLiquidity}(address(this),liquidityTokens,0,0,LOCKER,block.timestamp) (Nevada.sol#263-270)
Ensure that all the return values of the function calls are used.

Additional information: link

Nevada.initPresale(address).newPresale (Nevada.sol#386) lacks a zero-check on :
- presale = newPresale (Nevada.sol#389)
Check that the address is not zero.

Additional information: link

Variable 'Nevada.selmaTaxDiscount(address).platinumBalance (Nevada.sol#219)' in Nevada.selmaTaxDiscount(address) (Nevada.sol#216-228) potentially used before declaration: platinumBalance > 0 (Nevada.sol#220)
Variable 'Nevada.selmaTaxDiscount(address).diamondBalance (Nevada.sol#223)' in Nevada.selmaTaxDiscount(address) (Nevada.sol#216-228) potentially used before declaration: diamondBalance > 0 (Nevada.sol#224)
Move all variable declarations prior to any usage of the variable, and ensure that reaching a variable declaration does not depend on some conditional if it is used unconditionally.

Additional information: link

Reentrancy in Nevada.constructor() (Nevada.sol#92-105):
External calls:
- pair = IDexFactory(ROUTER.factory()).createPair(ROUTER.WETH(),address(this)) (Nevada.sol#93)
State variables written after the call(s):
- _allowances[address(this)][address(ROUTER)] = type()(uint256).max (Nevada.sol#94)
- _balances[MARKETING_WALLET] = TOTAL_SUPPLY (Nevada.sol#103)
- isFeeExempt[OWNER] = true (Nevada.sol#97)
- isFeeExempt[MARKETING_WALLET] = true (Nevada.sol#98)
- isFeeExempt[LOTTERY_WALLET] = true (Nevada.sol#99)
- isFeeExempt[DEVELOPMENT_WALLET] = true (Nevada.sol#100)
- isFeeExempt[address(this)] = true (Nevada.sol#101)
- isMarketMaker[pair] = true (Nevada.sol#96)
Reentrancy in Nevada.swapBack() (Nevada.sol#237-274):
External calls:
- ROUTER.swapExactTokensForETH(amountToSwap,0,path,address(this),block.timestamp) (Nevada.sol#246-252)
State variables written after the call(s):
- developmentShare += amountBNB * developmentFee / totalBNBFee (Nevada.sol#260)
- lotteryShare += amountBNB * lotteryFee / totalBNBFee (Nevada.sol#258)
- marketingShare += amountBNB * marketingFee / totalBNBFee (Nevada.sol#259)
Reentrancy in Nevada.transferFrom(address,address,uint256) (Nevada.sol#126-134):
External calls:
- _transferFrom(sender,recipient,amount) (Nevada.sol#127)
- ROUTER.swapExactTokensForETH(amountToSwap,0,path,address(this),block.timestamp) (Nevada.sol#246-252)
- ROUTER.addLiquidityETH{value: amountBNBLiquidity}(address(this),liquidityTokens,0,0,LOCKER,block.timestamp) (Nevada.sol#263-270)
External calls sending eth:
- _transferFrom(sender,recipient,amount) (Nevada.sol#127)
- ROUTER.addLiquidityETH{value: amountBNBLiquidity}(address(this),liquidityTokens,0,0,LOCKER,block.timestamp) (Nevada.sol#263-270)
State variables written after the call(s):
- _approve(sender,msg.sender,currentAllowance - amount) (Nevada.sol#132)
- _allowances[owner][spender] = amount (Nevada.sol#163)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in Nevada._transferFrom(address,address,uint256) (Nevada.sol#167-182):
External calls:
- swapBack() (Nevada.sol#174)
- ROUTER.swapExactTokensForETH(amountToSwap,0,path,address(this),block.timestamp) (Nevada.sol#246-252)
- ROUTER.addLiquidityETH{value: amountBNBLiquidity}(address(this),liquidityTokens,0,0,LOCKER,block.timestamp) (Nevada.sol#263-270)
External calls sending eth:
- swapBack() (Nevada.sol#174)
- ROUTER.addLiquidityETH{value: amountBNBLiquidity}(address(this),liquidityTokens,0,0,LOCKER,block.timestamp) (Nevada.sol#263-270)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (Nevada.sol#210)
- amountReceived = takeFee(sender,recipient,amount) (Nevada.sol#177)
- Transfer(sender,recipient,amountReceived) (Nevada.sol#180)
Reentrancy in Nevada.claimDevelopment() (Nevada.sol#306-318):
External calls:
- (sent) = address(DEVELOPMENT_WALLET).call{gas: transferGas,value: developmentAmount}() (Nevada.sol#313)
Event emitted after the call(s):
- ClaimDevelopment(developmentAmount) (Nevada.sol#316)
Reentrancy in Nevada.claimLottery() (Nevada.sol#292-304):
External calls:
- (sent) = address(LOTTERY_WALLET).call{gas: transferGas,value: lotteryAmount}() (Nevada.sol#299)
Event emitted after the call(s):
- ClaimLottery(lotteryAmount) (Nevada.sol#302)
Reentrancy in Nevada.claimMarketing() (Nevada.sol#278-290):
External calls:
- (sent) = address(MARKETING_WALLET).call{gas: transferGas,value: marketingAmount}() (Nevada.sol#285)
Event emitted after the call(s):
- ClaimMarketing(marketingAmount) (Nevada.sol#288)
Reentrancy in Nevada.constructor() (Nevada.sol#92-105):
External calls:
- pair = IDexFactory(ROUTER.factory()).createPair(ROUTER.WETH(),address(this)) (Nevada.sol#93)
Event emitted after the call(s):
- Transfer(address(0),MARKETING_WALLET,TOTAL_SUPPLY) (Nevada.sol#104)
Reentrancy in Nevada.recover() (Nevada.sol#320-326):
External calls:
- (sent) = address(OWNER).call{gas: transferGas,value: recoverAmount}() (Nevada.sol#322)
Event emitted after the call(s):
- Recover(recoverAmount) (Nevada.sol#325)
Reentrancy in Nevada.swapBack() (Nevada.sol#237-274):
External calls:
- ROUTER.swapExactTokensForETH(amountToSwap,0,path,address(this),block.timestamp) (Nevada.sol#246-252)
- ROUTER.addLiquidityETH{value: amountBNBLiquidity}(address(this),liquidityTokens,0,0,LOCKER,block.timestamp) (Nevada.sol#263-270)
External calls sending eth:
- ROUTER.addLiquidityETH{value: amountBNBLiquidity}(address(this),liquidityTokens,0,0,LOCKER,block.timestamp) (Nevada.sol#263-270)
Event emitted after the call(s):
- AutoLiquidity(amountBNBLiquidity,liquidityTokens) (Nevada.sol#272)
Reentrancy in Nevada.transferFrom(address,address,uint256) (Nevada.sol#126-134):
External calls:
- _transferFrom(sender,recipient,amount) (Nevada.sol#127)
- ROUTER.swapExactTokensForETH(amountToSwap,0,path,address(this),block.timestamp) (Nevada.sol#246-252)
- ROUTER.addLiquidityETH{value: amountBNBLiquidity}(address(this),liquidityTokens,0,0,LOCKER,block.timestamp) (Nevada.sol#263-270)
External calls sending eth:
- _transferFrom(sender,recipient,amount) (Nevada.sol#127)
- ROUTER.addLiquidityETH{value: amountBNBLiquidity}(address(this),liquidityTokens,0,0,LOCKER,block.timestamp) (Nevada.sol#263-270)
Event emitted after the call(s):
- Approval(owner,spender,amount) (Nevada.sol#164)
- _approve(sender,msg.sender,currentAllowance - amount) (Nevada.sol#132)
Reentrancy in Nevada.triggerSwapBack() (Nevada.sol#372-375):
External calls:
- swapBack() (Nevada.sol#373)
- ROUTER.swapExactTokensForETH(amountToSwap,0,path,address(this),block.timestamp) (Nevada.sol#246-252)
- ROUTER.addLiquidityETH{value: amountBNBLiquidity}(address(this),liquidityTokens,0,0,LOCKER,block.timestamp) (Nevada.sol#263-270)
External calls sending eth:
- swapBack() (Nevada.sol#373)
- ROUTER.addLiquidityETH{value: amountBNBLiquidity}(address(this),liquidityTokens,0,0,LOCKER,block.timestamp) (Nevada.sol#263-270)
Event emitted after the call(s):
- TriggerSwapBack() (Nevada.sol#374)
Apply the check-effects-interactions pattern.

Additional information: link

Pragma version^0.8.0 (IBEP20.sol#3) allows old versions
Pragma version^0.8.0 (IDex.sol#3) allows old versions
Pragma version^0.8.0 (ISelmaNFT.sol#3) allows old versions
Pragma version^0.8.0 (Nevada.sol#21) allows old versions
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 Nevada.claimMarketing() (Nevada.sol#278-290):
- (sent) = address(MARKETING_WALLET).call{gas: transferGas,value: marketingAmount}() (Nevada.sol#285)
Low level call in Nevada.claimLottery() (Nevada.sol#292-304):
- (sent) = address(LOTTERY_WALLET).call{gas: transferGas,value: lotteryAmount}() (Nevada.sol#299)
Low level call in Nevada.claimDevelopment() (Nevada.sol#306-318):
- (sent) = address(DEVELOPMENT_WALLET).call{gas: transferGas,value: developmentAmount}() (Nevada.sol#313)
Low level call in Nevada.recover() (Nevada.sol#320-326):
- (sent) = address(OWNER).call{gas: transferGas,value: recoverAmount}() (Nevada.sol#322)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IDexRouter.WETH() (IDex.sol#11) is not in mixedCase
Parameter Nevada.allowance(address,address)._owner (Nevada.sol#115) is not in mixedCase
Parameter Nevada.setFees(uint256,uint256,uint256,uint256)._lotteryFee (Nevada.sol#343) is not in mixedCase
Parameter Nevada.setFees(uint256,uint256,uint256,uint256)._liquidityFee (Nevada.sol#344) is not in mixedCase
Parameter Nevada.setFees(uint256,uint256,uint256,uint256)._marketingFee (Nevada.sol#345) is not in mixedCase
Parameter Nevada.setFees(uint256,uint256,uint256,uint256)._developmentFee (Nevada.sol#346) is not in mixedCase
Variable Nevada._sniperRekt (Nevada.sol#37) is not in mixedCase
Variable Nevada._inSwap (Nevada.sol#38) is not in mixedCase
Variable Nevada._balances (Nevada.sol#44) is not in mixedCase
Variable Nevada._allowances (Nevada.sol#45) is not in mixedCase
Variable Nevada._totalFee (Nevada.sol#54) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Holders:

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


Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.


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.


Unable to find PancakeSwap trading pair to compute volume.


Twitter account link seems to be invalid


Unable to find Youtube account


Unable to find Discord account


Token was delisted from CoinGecko

Additional information: link


Unable to find token contract audit


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


Unable to find code repository for the project


Token has no active CoinGecko listing / rank


Token has a considerable age, but social accounts / website are missing or have few users


Token has a considerable age, but average PancakeSwap 30d trading volume is low


Token has relatively low CoinMarketCap rank


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death

Price for NEVADA