NUTGAIN Token Logo

NUTGV2 [NUTGAIN] Token

About NUTGV2

Listings

Token 2 years
CoinGecko 23 months
CoinMarketCap 18 months

Website

white paper

Nutgain (NUTGV2) is a crypto project that focuses on NFT Marketplace to accommodate raffles. So, users can get up to 15% discounts for purchasing NFTs with $NUTGV2. Also, developers build a decentralized exchange (DEX). As a result, users can swap, provide liquidity, farm, make spins and win.

Social

Laser Scorebeta Last Audit: 25 October 2022

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

NUTGAIN.addLiquidity(uint256,uint256) (#750-763) sends eth to arbitrary user
Dangerous calls:
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#755-762)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

NUTGAIN.rescueAnyBEP20Tokens(address,address,uint256) (#857-863) ignores return value by IERC20(_tokenAddr).transfer(_to,_amount) (#862)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link

Reentrancy in NUTGAIN._transfer(address,address,uint256) (#606-667):
External calls:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#658)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#755-762)
- (success) = recipient.call{value: amount}() (#109)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#774-780)
- address(marketingWallet).sendValue(marketingAmt) (#737)
- address(devWallet).sendValue(devAmt) (#741)
- address(utilityWallet).sendValue(utilityAmt) (#746)
- swapAndLiquify(swapTokensAtAmount,taxes) (#659)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#755-762)
- (success) = recipient.call{value: amount}() (#109)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#774-780)
- address(marketingWallet).sendValue(marketingAmt) (#737)
- address(devWallet).sendValue(devAmt) (#741)
- address(utilityWallet).sendValue(utilityAmt) (#746)
External calls sending eth:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#658)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#755-762)
- (success) = recipient.call{value: amount}() (#109)
- swapAndLiquify(swapTokensAtAmount,taxes) (#659)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#755-762)
- (success) = recipient.call{value: amount}() (#109)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee,isSell) (#666)
- _rOwned[deadWallet] += rBurn (#439)
- _rOwned[address(this)] += rMarketing (#430)
- _rOwned[address(this)] += rLiquidity (#421)
- _rOwned[address(this)] += rUtility (#457)
- _rOwned[address(this)] += rDev (#448)
- _rOwned[sender] = _rOwned[sender] - s.rAmount (#692)
- _rOwned[recipient] = _rOwned[recipient] + s.rTransferAmount (#693)
- _tokenTransfer(from,to,amount,takeFee,isSell) (#666)
- _rTotal -= rRfi (#411)
- _tokenTransfer(from,to,amount,takeFee,isSell) (#666)
- _tOwned[deadWallet] += tBurn (#437)
- _tOwned[address(this)] += tDev (#446)
- _tOwned[address(this)] += tMarketing (#428)
- _tOwned[address(this)] += tLiquidity (#419)
- _tOwned[address(this)] += tUtility (#455)
- _tOwned[sender] = _tOwned[sender] - tAmount (#685)
- _tOwned[recipient] = _tOwned[recipient] + s.tTransferAmount (#689)
Apply the check-effects-interactions pattern.

Additional information: link


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


Contract ownership is not renounced (belongs to a wallet)


Combination 1: Reentrancy vulnerabilities + Functions that send Ether to arbitraty destination. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.


Combination 2: Unchecked transfer + Functions that send Ether to arbitraty destination. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.


Combination 3: Reentrancy vulnerabilities + Unchecked transfer vulnerability. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.

Context._msgData() (#31-34) is never used and should be removed
Remove unused functions.

Additional information: link

Redundant expression "this (#32)" inContext (#26-35)
Remove redundant statements if they congest code but offer no value.

Additional information: link

NUTGAIN.swapAndLiquify(uint256,NUTGAIN.Taxes) (#714-748) performs a multiplication on the result of a division:
-unitBalance = deltaBalance / (denominator - temp.liquidity) (#727)
-devAmt = unitBalance * 2 * temp.dev (#739)
NUTGAIN.swapAndLiquify(uint256,NUTGAIN.Taxes) (#714-748) performs a multiplication on the result of a division:
-unitBalance = deltaBalance / (denominator - temp.liquidity) (#727)
-marketingAmt = unitBalance * 2 * temp.marketing (#735)
NUTGAIN.swapAndLiquify(uint256,NUTGAIN.Taxes) (#714-748) performs a multiplication on the result of a division:
-unitBalance = deltaBalance / (denominator - temp.liquidity) (#727)
-utilityAmt = unitBalance * 2 * temp.utility (#744)
NUTGAIN.swapAndLiquify(uint256,NUTGAIN.Taxes) (#714-748) performs a multiplication on the result of a division:
-unitBalance = deltaBalance / (denominator - temp.liquidity) (#727)
-bnbToAddLiquidityWith = unitBalance * temp.liquidity (#728)
Consider ordering multiplication before division.

Additional information: link

NUTGAIN.addLiquidity(uint256,uint256) (#750-763) ignores return value by router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#755-762)
Ensure that all the return values of the function calls are used.

Additional information: link

NUTGAIN.updateRouterAndPair(address,address).newPair (#846) lacks a zero-check on :
- pair = newPair (#848)
NUTGAIN.updateDevWallet(address).newWallet (#793) lacks a zero-check on :
- devWallet = newWallet (#794)
NUTGAIN.updateMarketingWallet(address).newWallet (#789) lacks a zero-check on :
- marketingWallet = newWallet (#790)
NUTGAIN.constructor(address)._pair (#214) lacks a zero-check on :
- pair = _pair (#217)
NUTGAIN.updateUtilityWallet(address).newWallet (#797) lacks a zero-check on :
- utilityWallet = newWallet (#798)
Check that the address is not zero.

Additional information: link

NUTGAIN.updateMaxWalletlimit(uint256) (#841-844) should emit an event for:
- maxWalletLimit = amount * 10 ** decimals() (#842)
NUTGAIN.updateMaxTxLimit(uint256,uint256) (#834-839) should emit an event for:
- maxBuyLimit = maxBuy * 10 ** decimals() (#835)
- maxSellLimit = maxSell * 10 ** decimals() (#836)
NUTGAIN.updateSwapTokensAtAmount(uint256) (#806-808) should emit an event for:
- swapTokensAtAmount = amount * 10 ** _decimals (#807)
NUTGAIN.updateCooldown(bool,uint256) (#801-804) should emit an event for:
- coolDownTime = time * 1 (#802)
NUTGAIN.setTradingStatus(bool,uint256,uint256,uint256,uint256,uint256,uint256,uint256) (#326-341) should emit an event for:
- deadline = _deadline (#338)
Emit an event for critical parameter changes.

Additional information: link

NUTGAIN._approve(address,address,uint256).owner (#596) shadows:
- Ownable.owner() (#46-48) (function)
NUTGAIN.allowance(address,address).owner (#263) shadows:
- Ownable.owner() (#46-48) (function)
Rename the local variables that shadow another component.

Additional information: link

NUTGAIN.includeInReward(address) (#359-370) has costly operations inside a loop:
- _excluded.pop() (#366)
Use a local variable to hold the loop computation result.

Additional information: link

NUTGAIN._rTotal (#143) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
Remove any initialization of state variables via non-constant state variables or function calls. If variables must be set upon contract deployment, locate initialization in the constructor instead.

Additional information: link

Low level call in Address.sendValue(address,uint256) (#106-111):
- (success) = recipient.call{value: amount}() (#109)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Reentrancy in NUTGAIN._transfer(address,address,uint256) (#606-667):
External calls:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#658)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#755-762)
- (success) = recipient.call{value: amount}() (#109)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#774-780)
- address(marketingWallet).sendValue(marketingAmt) (#737)
- address(devWallet).sendValue(devAmt) (#741)
- address(utilityWallet).sendValue(utilityAmt) (#746)
- swapAndLiquify(swapTokensAtAmount,taxes) (#659)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#755-762)
- (success) = recipient.call{value: amount}() (#109)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#774-780)
- address(marketingWallet).sendValue(marketingAmt) (#737)
- address(devWallet).sendValue(devAmt) (#741)
- address(utilityWallet).sendValue(utilityAmt) (#746)
External calls sending eth:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#658)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#755-762)
- (success) = recipient.call{value: amount}() (#109)
- swapAndLiquify(swapTokensAtAmount,taxes) (#659)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#755-762)
- (success) = recipient.call{value: amount}() (#109)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee,isSell) (#666)
- totFeesPaid.dev += tDev (#443)
- totFeesPaid.burn += tBurn (#434)
- totFeesPaid.marketing += tMarketing (#425)
- totFeesPaid.utility += tUtility (#452)
- totFeesPaid.liquidity += tLiquidity (#416)
- totFeesPaid.rfi += tRfi (#412)
Reentrancy in NUTGAIN.swapAndLiquify(uint256,NUTGAIN.Taxes) (#714-748):
External calls:
- swapTokensForBNB(toSwap) (#724)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#774-780)
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#732)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#755-762)
External calls sending eth:
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#732)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#755-762)
State variables written after the call(s):
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#732)
- _allowances[owner][spender] = amount (#602)
Reentrancy in NUTGAIN.transferFrom(address,address,uint256) (#272-284):
External calls:
- _transfer(sender,recipient,amount) (#277)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#755-762)
- (success) = recipient.call{value: amount}() (#109)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#774-780)
- address(marketingWallet).sendValue(marketingAmt) (#737)
- address(devWallet).sendValue(devAmt) (#741)
- address(utilityWallet).sendValue(utilityAmt) (#746)
External calls sending eth:
- _transfer(sender,recipient,amount) (#277)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#755-762)
- (success) = recipient.call{value: amount}() (#109)
State variables written after the call(s):
- _approve(sender,_msgSender(),currentAllowance - amount) (#281)
- _allowances[owner][spender] = amount (#602)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in NUTGAIN.swapAndLiquify(uint256,NUTGAIN.Taxes) (#714-748):
External calls:
- swapTokensForBNB(toSwap) (#724)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#774-780)
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#732)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#755-762)
External calls sending eth:
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#732)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#755-762)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#603)
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#732)
Reentrancy in NUTGAIN._transfer(address,address,uint256) (#606-667):
External calls:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#658)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#755-762)
- (success) = recipient.call{value: amount}() (#109)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#774-780)
- address(marketingWallet).sendValue(marketingAmt) (#737)
- address(devWallet).sendValue(devAmt) (#741)
- address(utilityWallet).sendValue(utilityAmt) (#746)
- swapAndLiquify(swapTokensAtAmount,taxes) (#659)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#755-762)
- (success) = recipient.call{value: amount}() (#109)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#774-780)
- address(marketingWallet).sendValue(marketingAmt) (#737)
- address(devWallet).sendValue(devAmt) (#741)
- address(utilityWallet).sendValue(utilityAmt) (#746)
External calls sending eth:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#658)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#755-762)
- (success) = recipient.call{value: amount}() (#109)
- swapAndLiquify(swapTokensAtAmount,taxes) (#659)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#755-762)
- (success) = recipient.call{value: amount}() (#109)
Event emitted after the call(s):
- Transfer(sender,address(this),s.tLiquidity + s.tMarketing + s.tDev + s.tUtility) (#698-702)
- _tokenTransfer(from,to,amount,takeFee,isSell) (#666)
- Transfer(sender,deadWallet,s.tBurn) (#707)
- _tokenTransfer(from,to,amount,takeFee,isSell) (#666)
- Transfer(sender,recipient,s.tTransferAmount) (#711)
- _tokenTransfer(from,to,amount,takeFee,isSell) (#666)
Reentrancy in NUTGAIN.transferFrom(address,address,uint256) (#272-284):
External calls:
- _transfer(sender,recipient,amount) (#277)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#755-762)
- (success) = recipient.call{value: amount}() (#109)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#774-780)
- address(marketingWallet).sendValue(marketingAmt) (#737)
- address(devWallet).sendValue(devAmt) (#741)
- address(utilityWallet).sendValue(utilityAmt) (#746)
External calls sending eth:
- _transfer(sender,recipient,amount) (#277)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#755-762)
- (success) = recipient.call{value: amount}() (#109)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#603)
- _approve(sender,_msgSender(),currentAllowance - amount) (#281)
Apply the check-effects-interactions pattern.

Additional information: link

NUTGAIN._transfer(address,address,uint256) (#606-667) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(timePassed >= coolDownTime,Cooldown enabled) (#644)
Avoid relying on block.timestamp.

Additional information: link

NUTGAIN.setTradingStatus(bool,uint256,uint256,uint256,uint256,uint256,uint256,uint256) (#326-341) compares to a boolean constant:
-state == true (#340)
Remove the equality to the boolean constant.

Additional information: link

Parameter NUTGAIN.setTaxes(uint256,uint256,uint256,uint256,uint256,uint256)._burn (#390) is not in mixedCase
Parameter NUTGAIN.setSellTaxes(uint256,uint256,uint256,uint256,uint256,uint256)._burn (#403) is not in mixedCase
Parameter NUTGAIN.setSellTaxes(uint256,uint256,uint256,uint256,uint256,uint256)._dev (#401) is not in mixedCase
Parameter NUTGAIN.rescueAnyBEP20Tokens(address,address,uint256)._amount (#860) is not in mixedCase
Parameter NUTGAIN.setTaxes(uint256,uint256,uint256,uint256,uint256,uint256)._dev (#388) is not in mixedCase
Parameter NUTGAIN.setTaxes(uint256,uint256,uint256,uint256,uint256,uint256)._liquidity (#387) is not in mixedCase
Parameter NUTGAIN.rescueAnyBEP20Tokens(address,address,uint256)._to (#859) is not in mixedCase
Constant NUTGAIN._symbol (#159) is not in UPPER_CASE_WITH_UNDERSCORES
Parameter NUTGAIN.setSellTaxes(uint256,uint256,uint256,uint256,uint256,uint256)._liquidity (#400) is not in mixedCase
Parameter NUTGAIN.rescueAnyBEP20Tokens(address,address,uint256)._tokenAddr (#858) is not in mixedCase
Parameter NUTGAIN.setSellTaxes(uint256,uint256,uint256,uint256,uint256,uint256)._rfi (#398) is not in mixedCase
Parameter NUTGAIN.updateSwapEnabled(bool)._enabled (#810) is not in mixedCase
Parameter NUTGAIN.setSellTaxes(uint256,uint256,uint256,uint256,uint256,uint256)._utility (#402) is not in mixedCase
Function IRouter.WETH() (#78) is not in mixedCase
Parameter NUTGAIN.setTradingStatus(bool,uint256,uint256,uint256,uint256,uint256,uint256,uint256)._deadline (#328) is not in mixedCase
Constant NUTGAIN._name (#158) is not in UPPER_CASE_WITH_UNDERSCORES
Parameter NUTGAIN.setTaxes(uint256,uint256,uint256,uint256,uint256,uint256)._marketing (#386) is not in mixedCase
Constant NUTGAIN._decimals (#139) is not in UPPER_CASE_WITH_UNDERSCORES
Parameter NUTGAIN.setTaxes(uint256,uint256,uint256,uint256,uint256,uint256)._utility (#389) is not in mixedCase
Struct NUTGAIN.valuesFromGetValues (#185-201) is not in CapWords
Parameter NUTGAIN.setTaxes(uint256,uint256,uint256,uint256,uint256,uint256)._rfi (#385) is not in mixedCase
Variable NUTGAIN.genesis_block (#150) is not in mixedCase
Parameter NUTGAIN.setSellTaxes(uint256,uint256,uint256,uint256,uint256,uint256)._marketing (#399) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

NUTGAIN.slitherConstructorVariables() (#114-867) uses literals with too many digits:
- _tTotal = 1500000000 * 10 ** _decimals (#142)
NUTGAIN.updateMaxTxLimit(uint256,uint256) (#834-839) uses literals with too many digits:
- require(bool,string)(maxSell >= 1500000,Cannot set max sell amount lower than 0.1%) (#838)
NUTGAIN.updateMaxWalletlimit(uint256) (#841-844) uses literals with too many digits:
- require(bool,string)(amount >= 1500000,Cannot set max wallet amount lower than 0.1%) (#843)
NUTGAIN.slitherConstructorVariables() (#114-867) uses literals with too many digits:
- deadWallet = 0x000000000000000000000000000000000000dEaD (#153)
NUTGAIN.updateMaxTxLimit(uint256,uint256) (#834-839) uses literals with too many digits:
- require(bool,string)(maxBuy >= 1500000,Cannot set max buy amount lower than 0.1%) (#837)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

NUTGAIN._tTotal (#142) should be constant
NUTGAIN.deadWallet (#153) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

setTaxes(uint256,uint256,uint256,uint256,uint256,uint256) should be declared external:
- NUTGAIN.setTaxes(uint256,uint256,uint256,uint256,uint256,uint256) (#384-395)
transfer(address,uint256) should be declared external:
- NUTGAIN.transfer(address,uint256) (#302-305)
excludeFromFee(address) should be declared external:
- NUTGAIN.excludeFromFee(address) (#372-374)
increaseAllowance(address,uint256) should be declared external:
- NUTGAIN.increaseAllowance(address,uint256) (#286-289)
decreaseAllowance(address,uint256) should be declared external:
- NUTGAIN.decreaseAllowance(address,uint256) (#291-300)
transferFrom(address,address,uint256) should be declared external:
- NUTGAIN.transferFrom(address,address,uint256) (#272-284)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#55-57)
rescueAnyBEP20Tokens(address,address,uint256) should be declared external:
- NUTGAIN.rescueAnyBEP20Tokens(address,address,uint256) (#857-863)
isExcludedFromFee(address) should be declared external:
- NUTGAIN.isExcludedFromFee(address) (#380-382)
totalSupply() should be declared external:
- NUTGAIN.totalSupply() (#254-256)
includeInFee(address) should be declared external:
- NUTGAIN.includeInFee(address) (#376-378)
allowance(address,address) should be declared external:
- NUTGAIN.allowance(address,address) (#263-265)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#59-62)
reflectionFromToken(uint256,bool) should be declared external:
- NUTGAIN.reflectionFromToken(uint256,bool) (#311-324)
setSellTaxes(uint256,uint256,uint256,uint256,uint256,uint256) should be declared external:
- NUTGAIN.setSellTaxes(uint256,uint256,uint256,uint256,uint256,uint256) (#397-408)
symbol() should be declared external:
- NUTGAIN.symbol() (#245-247)
name() should be declared external:
- NUTGAIN.name() (#241-243)
isExcludedFromReward(address) should be declared external:
- NUTGAIN.isExcludedFromReward(address) (#307-309)
approve(address,uint256) should be declared external:
- NUTGAIN.approve(address,uint256) (#267-270)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Average 30d PancakeSwap liquidity is less than $100. Token is either dead or inactive.


Average 30d number of PancakeSwap swaps is less than 1. Token is either dead or inactive.


Token is deployed only at one blockchain

Contract has 8% buy tax and 8% sell tax.
Taxes are low but contract ownership is not renounced. Token has a high risk of becoming a honeypot.


Average 30d PancakeSwap volume is low.


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


Last post in Twitter was more than 30 days ago


Unable to find Discord account


Unable to find Youtube account


Token was delisted from CoinHunt

Additional information: link


Unable to find whitepaper link on the website


Token is not listed at Mobula.Finance

Additional information: link


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


Young tokens have high risks of price dump / death

Price for NUTGV2

News for NUTGV2