Greenlyght Coin and its ground-breaking technology will bring much needed real-world utilities to bridge the gap between Crypto & Cannabis.
GREENLYGHTCOIN.addLiquidity(uint256,uint256) (#605-618) sends eth to arbitrary user
Dangerous calls:
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#610-617)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
GREENLYGHTCOIN.rescueAnyBEP20Tokens(address,address,uint256) (#706-708) ignores return value by IERC20(_tokenAddr).transfer(_to,_amount) (#707)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.
Additional information: link
Reentrancy in GREENLYGHTCOIN._transfer(address,address,uint256) (#494-541):
External calls:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#532)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#610-617)
- (success) = recipient.call{value: amount}() (#105)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#629-635)
- address(marketingWallet).sendValue(marketingAmt) (#591)
- address(nftWallet).sendValue(nftAmt) (#595)
- address(buybackWallet).sendValue(buybackAmt) (#600)
- swapAndLiquify(swapTokensAtAmount,taxes) (#533)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#610-617)
- (success) = recipient.call{value: amount}() (#105)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#629-635)
- address(marketingWallet).sendValue(marketingAmt) (#591)
- address(nftWallet).sendValue(nftAmt) (#595)
- address(buybackWallet).sendValue(buybackAmt) (#600)
External calls sending eth:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#532)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#610-617)
- (success) = recipient.call{value: amount}() (#105)
- swapAndLiquify(swapTokensAtAmount,taxes) (#533)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#610-617)
- (success) = recipient.call{value: amount}() (#105)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee,isSell) (#540)
- _rOwned[address(this)] += rBuyback (#413)
- _rOwned[address(this)] += rLiquidity (#382)
- _rOwned[address(this)] += rnft (#402)
- _rOwned[address(this)] += rMarketing (#392)
- _rOwned[sender] = _rOwned[sender] - s.rAmount (#556)
- _rOwned[recipient] = _rOwned[recipient] + s.rTransferAmount (#557)
- _tokenTransfer(from,to,amount,takeFee,isSell) (#540)
- _rTotal -= rRfi (#371)
- _tokenTransfer(from,to,amount,takeFee,isSell) (#540)
- _tOwned[address(this)] += tnft (#400)
- _tOwned[address(this)] += tMarketing (#390)
- _tOwned[address(this)] += tBuyback (#411)
- _tOwned[address(this)] += tLiquidity (#380)
- _tOwned[sender] = _tOwned[sender] - tAmount (#550)
- _tOwned[recipient] = _tOwned[recipient] + s.tTransferAmount (#553)
Apply the check-effects-interactions pattern.
Additional information: link
Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains
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.
GREENLYGHTCOIN.swapAndLiquify(uint256,GREENLYGHTCOIN.Taxes) (#571-603) performs a multiplication on the result of a division:
-unitBalance = deltaBalance / (denominator - temp.liquidity) (#581)
-bnbToAddLiquidityWith = unitBalance * temp.liquidity (#582)
GREENLYGHTCOIN.swapAndLiquify(uint256,GREENLYGHTCOIN.Taxes) (#571-603) performs a multiplication on the result of a division:
-unitBalance = deltaBalance / (denominator - temp.liquidity) (#581)
-marketingAmt = unitBalance * 2 * temp.marketing (#589)
GREENLYGHTCOIN.swapAndLiquify(uint256,GREENLYGHTCOIN.Taxes) (#571-603) performs a multiplication on the result of a division:
-unitBalance = deltaBalance / (denominator - temp.liquidity) (#581)
-nftAmt = unitBalance * 2 * temp.nft (#593)
GREENLYGHTCOIN.swapAndLiquify(uint256,GREENLYGHTCOIN.Taxes) (#571-603) performs a multiplication on the result of a division:
-unitBalance = deltaBalance / (denominator - temp.liquidity) (#581)
-buybackAmt = unitBalance * 2 * temp.buyback (#598)
Consider ordering multiplication before division.
Additional information: link
GREENLYGHTCOIN.addLiquidity(uint256,uint256) (#605-618) ignores return value by router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#610-617)
Ensure that all the return values of the function calls are used.
Additional information: link
GREENLYGHTCOIN.allowance(address,address).owner (#257) shadows:
- Ownable.owner() (#52-54) (function)
GREENLYGHTCOIN._approve(address,address,uint256).owner (#487) shadows:
- Ownable.owner() (#52-54) (function)
Rename the local variables that shadow another component.
Additional information: link
GREENLYGHTCOIN.updateCooldown(bool,uint256) (#657-660) should emit an event for:
- coolDownTime = time * 1 (#658)
GREENLYGHTCOIN.updateSwapTokensAtAmount(uint256) (#662-664) should emit an event for:
- swapTokensAtAmount = amount * 10 ** _decimals (#663)
GREENLYGHTCOIN.updateMaxTxLimit(uint256,uint256) (#685-688) should emit an event for:
- maxBuyLimit = maxBuy * 10 ** decimals() (#686)
- maxSellLimit = maxSell * 10 ** decimals() (#687)
GREENLYGHTCOIN.updateMaxWalletlimit(uint256) (#690-692) should emit an event for:
- maxWalletLimit = amount * 10 ** decimals() (#691)
Emit an event for critical parameter changes.
Additional information: link
GREENLYGHTCOIN.constructor(address)._pair (#211-212) lacks a zero-check on :
- pair = _pair (#215)
GREENLYGHTCOIN.updateMarketingWallet(address).newWallet (#645) lacks a zero-check on :
- marketingWallet = newWallet (#646)
GREENLYGHTCOIN.updatenftWallet(address).newWallet (#649) lacks a zero-check on :
- nftWallet = newWallet (#650)
GREENLYGHTCOIN.updateBuybackWallet(address).newWallet (#653) lacks a zero-check on :
- buybackWallet = newWallet (#654)
GREENLYGHTCOIN.updateRouterAndPair(address,address).newPair (#694) lacks a zero-check on :
- pair = newPair (#696)
Check that the address is not zero.
Additional information: link
Reentrancy in GREENLYGHTCOIN._transfer(address,address,uint256) (#494-541):
External calls:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#532)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#610-617)
- (success) = recipient.call{value: amount}() (#105)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#629-635)
- address(marketingWallet).sendValue(marketingAmt) (#591)
- address(nftWallet).sendValue(nftAmt) (#595)
- address(buybackWallet).sendValue(buybackAmt) (#600)
- swapAndLiquify(swapTokensAtAmount,taxes) (#533)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#610-617)
- (success) = recipient.call{value: amount}() (#105)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#629-635)
- address(marketingWallet).sendValue(marketingAmt) (#591)
- address(nftWallet).sendValue(nftAmt) (#595)
- address(buybackWallet).sendValue(buybackAmt) (#600)
External calls sending eth:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#532)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#610-617)
- (success) = recipient.call{value: amount}() (#105)
- swapAndLiquify(swapTokensAtAmount,taxes) (#533)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#610-617)
- (success) = recipient.call{value: amount}() (#105)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee,isSell) (#540)
- totFeesPaid.marketing += tMarketing (#386)
- totFeesPaid.buyback += tBuyback (#407)
- totFeesPaid.liquidity += tLiquidity (#376)
- totFeesPaid.nft += tnft (#396)
- totFeesPaid.rfi += tRfi (#372)
Reentrancy in GREENLYGHTCOIN.constructor(address) (#209-234):
External calls:
- _pair = IFactory(_router.factory()).createPair(address(this),_router.WETH()) (#211-212)
State variables written after the call(s):
- excludeFromReward(pair) (#217)
- _excluded.push(account) (#330)
- excludeFromReward(pair) (#217)
- _isExcluded[account] = true (#329)
- _isExcludedFromFee[address(this)] = true (#220)
- _isExcludedFromFee[owner()] = true (#221)
- _isExcludedFromFee[marketingWallet] = true (#222)
- _isExcludedFromFee[nftWallet] = true (#223)
- _isExcludedFromFee[buybackWallet] = true (#224)
- _rOwned[owner()] = _rTotal (#219)
- excludeFromReward(pair) (#217)
- _tOwned[account] = tokenFromReflection(_rOwned[account]) (#327)
- allowedTransfer[address(this)] = true (#226)
- allowedTransfer[owner()] = true (#227)
- allowedTransfer[pair] = true (#228)
- allowedTransfer[marketingWallet] = true (#229)
- allowedTransfer[nftWallet] = true (#230)
- allowedTransfer[buybackWallet] = true (#231)
- pair = _pair (#215)
- router = _router (#214)
Reentrancy in GREENLYGHTCOIN.swapAndLiquify(uint256,GREENLYGHTCOIN.Taxes) (#571-603):
External calls:
- swapTokensForBNB(toSwap) (#578)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#629-635)
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#586)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#610-617)
External calls sending eth:
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#586)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#610-617)
State variables written after the call(s):
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#586)
- _allowances[owner][spender] = amount (#490)
Reentrancy in GREENLYGHTCOIN.transferFrom(address,address,uint256) (#266-274):
External calls:
- _transfer(sender,recipient,amount) (#267)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#610-617)
- (success) = recipient.call{value: amount}() (#105)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#629-635)
- address(marketingWallet).sendValue(marketingAmt) (#591)
- address(nftWallet).sendValue(nftAmt) (#595)
- address(buybackWallet).sendValue(buybackAmt) (#600)
External calls sending eth:
- _transfer(sender,recipient,amount) (#267)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#610-617)
- (success) = recipient.call{value: amount}() (#105)
State variables written after the call(s):
- _approve(sender,_msgSender(),currentAllowance - amount) (#271)
- _allowances[owner][spender] = amount (#490)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in GREENLYGHTCOIN._transfer(address,address,uint256) (#494-541):
External calls:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#532)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#610-617)
- (success) = recipient.call{value: amount}() (#105)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#629-635)
- address(marketingWallet).sendValue(marketingAmt) (#591)
- address(nftWallet).sendValue(nftAmt) (#595)
- address(buybackWallet).sendValue(buybackAmt) (#600)
- swapAndLiquify(swapTokensAtAmount,taxes) (#533)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#610-617)
- (success) = recipient.call{value: amount}() (#105)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#629-635)
- address(marketingWallet).sendValue(marketingAmt) (#591)
- address(nftWallet).sendValue(nftAmt) (#595)
- address(buybackWallet).sendValue(buybackAmt) (#600)
External calls sending eth:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#532)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#610-617)
- (success) = recipient.call{value: amount}() (#105)
- swapAndLiquify(swapTokensAtAmount,taxes) (#533)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#610-617)
- (success) = recipient.call{value: amount}() (#105)
Event emitted after the call(s):
- Transfer(sender,address(this),s.tLiquidity + s.tMarketing + s.tnft + s.tBuyback) (#562)
- _tokenTransfer(from,to,amount,takeFee,isSell) (#540)
- Transfer(sender,recipient,s.tTransferAmount) (#567)
- _tokenTransfer(from,to,amount,takeFee,isSell) (#540)
Reentrancy in GREENLYGHTCOIN.constructor(address) (#209-234):
External calls:
- _pair = IFactory(_router.factory()).createPair(address(this),_router.WETH()) (#211-212)
Event emitted after the call(s):
- Transfer(address(0),owner(),_tTotal) (#233)
Reentrancy in GREENLYGHTCOIN.swapAndLiquify(uint256,GREENLYGHTCOIN.Taxes) (#571-603):
External calls:
- swapTokensForBNB(toSwap) (#578)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#629-635)
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#586)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#610-617)
External calls sending eth:
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#586)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#610-617)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#491)
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#586)
Reentrancy in GREENLYGHTCOIN.transferFrom(address,address,uint256) (#266-274):
External calls:
- _transfer(sender,recipient,amount) (#267)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#610-617)
- (success) = recipient.call{value: amount}() (#105)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#629-635)
- address(marketingWallet).sendValue(marketingAmt) (#591)
- address(nftWallet).sendValue(nftAmt) (#595)
- address(buybackWallet).sendValue(buybackAmt) (#600)
External calls sending eth:
- _transfer(sender,recipient,amount) (#267)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#610-617)
- (success) = recipient.call{value: amount}() (#105)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#491)
- _approve(sender,_msgSender(),currentAllowance - amount) (#271)
Apply the check-effects-interactions pattern.
Additional information: link
GREENLYGHTCOIN._transfer(address,address,uint256) (#494-541) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(timePassed >= coolDownTime,Cooldown enabled) (#521)
Avoid relying on block.timestamp.
Additional information: link
GREENLYGHTCOIN.setTradingStatus(bool) (#311-315) compares to a boolean constant:
-state == true && genesis_block == 0 (#314)
Remove the equality to the boolean constant.
Additional information: link
GREENLYGHTCOIN.includeInReward(address) (#333-344) has costly operations inside a loop:
- _excluded.pop() (#340)
Use a local variable to hold the loop computation result.
Additional information: link
Context._msgData() (#37-40) is never used and should be removed
Remove unused functions.
Additional information: link
GREENLYGHTCOIN._rTotal (#147) 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
solc-0.8.11 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) (#102-107):
- (success) = recipient.call{value: amount}() (#105)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Function IRouter.WETH() (#83) is not in mixedCase
Struct GREENLYGHTCOIN.valuesFromGetValues (#184-198) is not in CapWords
Parameter GREENLYGHTCOIN.setTaxes(uint256,uint256,uint256,uint256,uint256)._rfi (#360) is not in mixedCase
Parameter GREENLYGHTCOIN.setTaxes(uint256,uint256,uint256,uint256,uint256)._marketing (#360) is not in mixedCase
Parameter GREENLYGHTCOIN.setTaxes(uint256,uint256,uint256,uint256,uint256)._liquidity (#360) is not in mixedCase
Parameter GREENLYGHTCOIN.setTaxes(uint256,uint256,uint256,uint256,uint256)._nft (#360) is not in mixedCase
Parameter GREENLYGHTCOIN.setTaxes(uint256,uint256,uint256,uint256,uint256)._buyback (#360) is not in mixedCase
Parameter GREENLYGHTCOIN.setSellTaxes(uint256,uint256,uint256,uint256,uint256)._rfi (#365) is not in mixedCase
Parameter GREENLYGHTCOIN.setSellTaxes(uint256,uint256,uint256,uint256,uint256)._marketing (#365) is not in mixedCase
Parameter GREENLYGHTCOIN.setSellTaxes(uint256,uint256,uint256,uint256,uint256)._liquidity (#365) is not in mixedCase
Parameter GREENLYGHTCOIN.setSellTaxes(uint256,uint256,uint256,uint256,uint256)._nft (#365) is not in mixedCase
Parameter GREENLYGHTCOIN.setSellTaxes(uint256,uint256,uint256,uint256,uint256)._buyback (#365) is not in mixedCase
Parameter GREENLYGHTCOIN.updateSwapEnabled(bool)._enabled (#666) is not in mixedCase
Parameter GREENLYGHTCOIN.rescueAnyBEP20Tokens(address,address,uint256)._tokenAddr (#706) is not in mixedCase
Parameter GREENLYGHTCOIN.rescueAnyBEP20Tokens(address,address,uint256)._to (#706) is not in mixedCase
Parameter GREENLYGHTCOIN.rescueAnyBEP20Tokens(address,address,uint256)._amount (#706) is not in mixedCase
Constant GREENLYGHTCOIN._decimals (#143) is not in UPPER_CASE_WITH_UNDERSCORES
Variable GREENLYGHTCOIN.genesis_block (#154) is not in mixedCase
Constant GREENLYGHTCOIN._name (#160) is not in UPPER_CASE_WITH_UNDERSCORES
Constant GREENLYGHTCOIN._symbol (#161) is not in UPPER_CASE_WITH_UNDERSCORES
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#38)" inContext (#32-41)
Remove redundant statements if they congest code but offer no value.
Additional information: link
GREENLYGHTCOIN._tTotal (#146) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#61-63)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#65-68)
name() should be declared external:
- GREENLYGHTCOIN.name() (#237-239)
symbol() should be declared external:
- GREENLYGHTCOIN.symbol() (#240-242)
totalSupply() should be declared external:
- GREENLYGHTCOIN.totalSupply() (#248-250)
allowance(address,address) should be declared external:
- GREENLYGHTCOIN.allowance(address,address) (#257-259)
approve(address,uint256) should be declared external:
- GREENLYGHTCOIN.approve(address,uint256) (#261-264)
transferFrom(address,address,uint256) should be declared external:
- GREENLYGHTCOIN.transferFrom(address,address,uint256) (#266-274)
increaseAllowance(address,uint256) should be declared external:
- GREENLYGHTCOIN.increaseAllowance(address,uint256) (#276-279)
decreaseAllowance(address,uint256) should be declared external:
- GREENLYGHTCOIN.decreaseAllowance(address,uint256) (#281-287)
transfer(address,uint256) should be declared external:
- GREENLYGHTCOIN.transfer(address,uint256) (#289-293)
isExcludedFromReward(address) should be declared external:
- GREENLYGHTCOIN.isExcludedFromReward(address) (#295-297)
reflectionFromToken(uint256,bool) should be declared external:
- GREENLYGHTCOIN.reflectionFromToken(uint256,bool) (#299-308)
excludeFromFee(address) should be declared external:
- GREENLYGHTCOIN.excludeFromFee(address) (#347-349)
includeInFee(address) should be declared external:
- GREENLYGHTCOIN.includeInFee(address) (#351-353)
isExcludedFromFee(address) should be declared external:
- GREENLYGHTCOIN.isExcludedFromFee(address) (#356-358)
setTaxes(uint256,uint256,uint256,uint256,uint256) should be declared external:
- GREENLYGHTCOIN.setTaxes(uint256,uint256,uint256,uint256,uint256) (#360-363)
setSellTaxes(uint256,uint256,uint256,uint256,uint256) should be declared external:
- GREENLYGHTCOIN.setSellTaxes(uint256,uint256,uint256,uint256,uint256) (#365-368)
rescueAnyBEP20Tokens(address,address,uint256) should be declared external:
- GREENLYGHTCOIN.rescueAnyBEP20Tokens(address,address,uint256) (#706-708)
Use the external attribute for functions never called from the contract.
Additional information: link
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
Unable to find token on CoinGecko
Additional information: link
Unable to find token on CoinMarketCap
Additional information: link
Unable to find token/project description on the website or on BscScan, CoinMarketCap
Unable to find whitepaper link on the website
Unable to find code repository for the project
Young tokens have high risks of scam / price dump / death
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Alexa traffic rank is relatively low
Additional information: link
Young tokens have high risks of price dump / death
Young tokens have high risks of price dump / death
Twitter account has relatively few followers