Grimace Whales Token Logo

Whales [Grimace Whales] Token

ALERT: honeypot scam

About Whales

Listings

Not Found
Token 2 years

Website

Not Found

Description

Not Found

Social

Laser Scorebeta Last Audit: 4 February 2022

report
Token seems to be a scam (type: honeypot scam).


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

GrimaceWhales.swapBack() (#697-740) sends eth to arbitrary user
Dangerous calls:
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#724)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in GrimaceWhales._transferFrom(address,address,uint256) (#535-583):
External calls:
- swapBack() (#562)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#708-714)
- distributor.deposit{value: amountBNBReflection}() (#723)
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#724)
- (successDev) = address(DEV).call{gas: 30000,value: amountBNBDev}() (#725)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#730-737)
External calls sending eth:
- swapBack() (#562)
- distributor.deposit{value: amountBNBReflection}() (#723)
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#724)
- (successDev) = address(DEV).call{gas: 30000,value: amountBNBDev}() (#725)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#730-737)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#565)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#568)
- amountReceived = takeFee(sender,amount) (#567)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#664)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.distributeDividend(address) (#317-328) ignores return value by BETH.transfer(shareholder,amount) (#323)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link


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.

Reentrancy in DividendDistributor.distributeDividend(address) (#317-328):
External calls:
- BETH.transfer(shareholder,amount) (#323)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#325)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#326)
Reentrancy in DividendDistributor.process(uint256) (#286-310):
External calls:
- distributeDividend(shareholders[currentIndex]) (#302)
- BETH.transfer(shareholder,amount) (#323)
State variables written after the call(s):
- currentIndex ++ (#307)
Reentrancy in DividendDistributor.setShare(address,uint256) (#250-264):
External calls:
- distributeDividend(shareholder) (#252)
- BETH.transfer(shareholder,amount) (#323)
State variables written after the call(s):
- shares[shareholder].amount = amount (#262)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#263)
Apply the check-effects-interactions pattern.

Additional information: link

GrimaceWhales.swapBack() (#697-740) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#730-737)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendDistributor.setDistributionCriteria(uint256,uint256) (#245-248) should emit an event for:
- minPeriod = _minPeriod (#246)
- minDistribution = _minDistribution (#247)
GrimaceWhales.setMaxWalletPercent(uint256) (#529-532) should emit an event for:
- _maxWalletToken = _totalSupply.mul(maxWallPercent).div(10000) (#530)
GrimaceWhales.cooldownEnabled(bool,uint8) (#686-689) should emit an event for:
- cooldownTimerInterval = _interval (#688)
GrimaceWhales.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool) (#794-802) should emit an event for:
- autoBuybackCap = _cap (#796)
- autoBuybackAmount = _amount (#798)
GrimaceWhales.setBuybackMultiplierSettings(uint256,uint256,uint256) (#805-810) should emit an event for:
- buybackMultiplierNumerator = numerator (#807)
- buybackMultiplierDenominator = denominator (#808)
- buybackMultiplierLength = length (#809)
GrimaceWhales.setBuyTxLimitInPercent(uint256) (#823-825) should emit an event for:
- _maxBuyTxAmount = _totalSupply.mul(maxBuyTxPercent).div(10000) (#824)
GrimaceWhales.setSellTxLimitInPercent(uint256) (#828-830) should emit an event for:
- _maxSellTxAmount = _totalSupply.mul(maxSellTxPercent).div(10000) (#829)
GrimaceWhales.setBuyFees(uint256,uint256,uint256,uint256,uint256,uint256) (#859-867) should emit an event for:
- liquidityFeeBuy = _liquidityFeeBuy (#860)
- buybackFeeBuy = _buybackFeeBuy (#861)
- reflectionFeeBuy = _reflectionFeeBuy (#862)
- marketingFeeBuy = _marketingFeeBuy (#863)
- devFeeBuy = _devFeeBuy (#864)
- totalFeeBuy = _liquidityFeeBuy.add(_buybackFeeBuy).add(_reflectionFeeBuy).add(_marketingFeeBuy).add(_devFeeBuy) (#865)
- feeDenominator = _feeDenominator (#866)
GrimaceWhales.setSellFees(uint256,uint256,uint256,uint256,uint256,uint256) (#870-878) should emit an event for:
- liquidityFeeSell = _liquidityFeeSell (#871)
- buybackFeeSell = _buybackFeeSell (#872)
- reflectionFeeSell = _reflectionFeeSell (#873)
- marketingFeeSell = _marketingFeeSell (#874)
- devFeeSell = _devFeeSell (#875)
- totalFeeSell = _liquidityFeeSell.add(_buybackFeeSell).add(_reflectionFeeSell).add(_marketingFeeSell).add(_devFeeSell) (#876)
- feeDenominator = _feeDenominator (#877)
GrimaceWhales.setSwapBackSettings(bool,uint256) (#887-890) should emit an event for:
- swapThreshold = _totalSupply * _amount / 10000 (#889)
GrimaceWhales.setTargetLiquidity(uint256,uint256) (#893-896) should emit an event for:
- targetLiquidity = _target (#894)
- targetLiquidityDenominator = _denominator (#895)
Emit an event for critical parameter changes.

Additional information: link

Auth.transferOwnership(address).account (#122) lacks a zero-check on :
- owner = account (#123)
GrimaceWhales.setFeeReceivers(address,address)._autoLiquidityReceiver (#881) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#882)
GrimaceWhales.setFeeReceivers(address,address)._marketingFeeReceiver (#881) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#883)
Check that the address is not zero.

Additional information: link

DividendDistributor.distributeDividend(address) (#317-328) has external calls inside a loop: BETH.transfer(shareholder,amount) (#323)
Favor pull over push strategy for external calls.

Additional information: link

Reentrancy in GrimaceWhales.constructor() (#465-494):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#467)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = type()(uint256).max (#468)
- _balances[_presaler] = _totalSupply (#492)
- autoLiquidityReceiver = msg.sender (#489)
- distributor = new DividendDistributor(address(router)) (#470)
- isDividendExempt[pair] = true (#484)
- isDividendExempt[address(this)] = true (#485)
- isDividendExempt[DEAD] = true (#486)
- isFeeExempt[_presaler] = true (#474)
- isTimelockExempt[msg.sender] = true (#478)
- isTimelockExempt[DEAD] = true (#479)
- isTimelockExempt[address(this)] = true (#480)
- isTimelockExempt[DEV] = true (#481)
- isTxLimitExempt[_presaler] = true (#475)
- marketingFeeReceiver = msg.sender (#490)
Reentrancy in DividendDistributor.deposit() (#266-284):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#273-278)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#283)
- totalDividends = totalDividends.add(amount) (#282)
Reentrancy in DividendDistributor.distributeDividend(address) (#317-328):
External calls:
- BETH.transfer(shareholder,amount) (#323)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#324)
Reentrancy in DividendDistributor.setShare(address,uint256) (#250-264):
External calls:
- distributeDividend(shareholder) (#252)
- BETH.transfer(shareholder,amount) (#323)
State variables written after the call(s):
- addShareholder(shareholder) (#256)
- shareholderIndexes[shareholder] = shareholders.length (#350)
- removeShareholder(shareholder) (#258)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#356)
- addShareholder(shareholder) (#256)
- shareholders.push(shareholder) (#351)
- removeShareholder(shareholder) (#258)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#355)
- shareholders.pop() (#357)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#261)
Reentrancy in GrimaceWhales.triggerAutoBuyback() (#768-777):
External calls:
- buyTokens(autoBuybackAmount,DEAD) (#769)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#785-790)
State variables written after the call(s):
- autoBuybackAccumulator = autoBuybackAccumulator.add(autoBuybackAmount) (#775)
- autoBuybackBlockLast = block.number (#774)
- autoBuybackEnabled = false (#776)
- buybackMultiplierTriggeredAt = block.timestamp (#771)
Reentrancy in GrimaceWhales.triggerManualBuyback(uint256,bool) (#752-760):
External calls:
- buyTokens(amountToBuy,DEAD) (#755)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#785-790)
State variables written after the call(s):
- buybackMultiplierTriggeredAt = block.timestamp (#757)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in GrimaceWhales._transferFrom(address,address,uint256) (#535-583):
External calls:
- swapBack() (#562)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#708-714)
- distributor.deposit{value: amountBNBReflection}() (#723)
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#724)
- (successDev) = address(DEV).call{gas: 30000,value: amountBNBDev}() (#725)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#730-737)
- distributor.setShare(sender,_balances[sender]) (#572)
- distributor.setShare(recipient,_balances[recipient]) (#576)
- distributor.process(distributorGas) (#579)
External calls sending eth:
- swapBack() (#562)
- distributor.deposit{value: amountBNBReflection}() (#723)
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#724)
- (successDev) = address(DEV).call{gas: 30000,value: amountBNBDev}() (#725)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#730-737)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived) (#581)
Reentrancy in GrimaceWhales._transferFrom(address,address,uint256) (#535-583):
External calls:
- swapBack() (#562)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#708-714)
- distributor.deposit{value: amountBNBReflection}() (#723)
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#724)
- (successDev) = address(DEV).call{gas: 30000,value: amountBNBDev}() (#725)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#730-737)
External calls sending eth:
- swapBack() (#562)
- distributor.deposit{value: amountBNBReflection}() (#723)
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#724)
- (successDev) = address(DEV).call{gas: 30000,value: amountBNBDev}() (#725)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#730-737)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#665)
- amountReceived = takeFee(sender,amount) (#567)
Reentrancy in GrimaceWhales.constructor() (#465-494):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#467)
Event emitted after the call(s):
- Transfer(address(0),_presaler,_totalSupply) (#493)
Reentrancy in GrimaceWhales.swapBack() (#697-740):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#708-714)
- distributor.deposit{value: amountBNBReflection}() (#723)
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#724)
- (successDev) = address(DEV).call{gas: 30000,value: amountBNBDev}() (#725)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#730-737)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#723)
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#724)
- (successDev) = address(DEV).call{gas: 30000,value: amountBNBDev}() (#725)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#730-737)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#738)
Reentrancy in GrimaceWhales.triggerAutoBuyback() (#768-777):
External calls:
- buyTokens(autoBuybackAmount,DEAD) (#769)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#785-790)
Event emitted after the call(s):
- BuybackMultiplierActive(buybackMultiplierLength) (#772)
Reentrancy in GrimaceWhales.triggerManualBuyback(uint256,bool) (#752-760):
External calls:
- buyTokens(amountToBuy,DEAD) (#755)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#785-790)
Event emitted after the call(s):
- BuybackMultiplierActive(buybackMultiplierLength) (#758)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.shouldDistribute(address) (#312-315) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#313-314)
GrimaceWhales.checkBuyCooldown(address,address) (#624-631) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(cooldownTimer[recipient] < block.timestamp,Please wait between two buys) (#628)
GrimaceWhales.getTotalFee(bool) (#647-651) uses timestamp for comparisons
Dangerous comparisons:
- selling && buybackMultiplierTriggeredAt.add(buybackMultiplierLength) > block.timestamp (#649)
Avoid relying on block.timestamp.

Additional information: link

DividendDistributor.process(uint256) (#286-310) has costly operations inside a loop:
- currentIndex = 0 (#298)
DividendDistributor.distributeDividend(address) (#317-328) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#322)
DividendDistributor.process(uint256) (#286-310) has costly operations inside a loop:
- currentIndex ++ (#307)
Use a local variable to hold the loop computation result.

Additional information: link

GrimaceWhales.launched() (#813-815) is never used and should be removed
GrimaceWhales.shouldAutoBuyback() (#743-749) is never used and should be removed
GrimaceWhales.triggerAutoBuyback() (#768-777) is never used and should be removed
Remove unused functions.

Additional information: link

GrimaceWhales._maxBuyTxAmount (#385) is set pre-construction with a non-constant function or state variable:
- _totalSupply * 1000 / 10000
GrimaceWhales._maxSellTxAmount (#386) is set pre-construction with a non-constant function or state variable:
- _totalSupply * 1000 / 10000
GrimaceWhales._maxWalletToken (#387) is set pre-construction with a non-constant function or state variable:
- (_totalSupply * 1000) / 10000
GrimaceWhales.swapThreshold (#427) is set pre-construction with a non-constant function or state variable:
- _totalSupply * 10 / 10000
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 GrimaceWhales.swapBack() (#697-740):
- (successMarketing) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#724)
- (successDev) = address(DEV).call{gas: 30000,value: amountBNBDev}() (#725)
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() (#139) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minPeriod (#245) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minDistribution (#245) is not in mixedCase
Variable DividendDistributor._token (#197) is not in mixedCase
Variable DividendDistributor.BETH (#206) is not in mixedCase
Variable DividendDistributor.WBNB (#207) is not in mixedCase
Parameter GrimaceWhales.tradingStatus(bool)._status (#680) is not in mixedCase
Parameter GrimaceWhales.cooldownEnabled(bool,uint8)._status (#686) is not in mixedCase
Parameter GrimaceWhales.cooldownEnabled(bool,uint8)._interval (#686) is not in mixedCase
Parameter GrimaceWhales.blacklistAddress(address,bool)._address (#692) is not in mixedCase
Parameter GrimaceWhales.blacklistAddress(address,bool)._value (#692) is not in mixedCase
Parameter GrimaceWhales.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool)._enabled (#794) is not in mixedCase
Parameter GrimaceWhales.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool)._cap (#794) is not in mixedCase
Parameter GrimaceWhales.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool)._amount (#794) is not in mixedCase
Parameter GrimaceWhales.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool)._period (#794) is not in mixedCase
Parameter GrimaceWhales.setAutoBuybackSettings(bool,uint256,uint256,uint256,bool)._autoBuybackMultiplier (#794) is not in mixedCase
Parameter GrimaceWhales.setBuyFees(uint256,uint256,uint256,uint256,uint256,uint256)._liquidityFeeBuy (#859) is not in mixedCase
Parameter GrimaceWhales.setBuyFees(uint256,uint256,uint256,uint256,uint256,uint256)._buybackFeeBuy (#859) is not in mixedCase
Parameter GrimaceWhales.setBuyFees(uint256,uint256,uint256,uint256,uint256,uint256)._reflectionFeeBuy (#859) is not in mixedCase
Parameter GrimaceWhales.setBuyFees(uint256,uint256,uint256,uint256,uint256,uint256)._marketingFeeBuy (#859) is not in mixedCase
Parameter GrimaceWhales.setBuyFees(uint256,uint256,uint256,uint256,uint256,uint256)._devFeeBuy (#859) is not in mixedCase
Parameter GrimaceWhales.setBuyFees(uint256,uint256,uint256,uint256,uint256,uint256)._feeDenominator (#859) is not in mixedCase
Parameter GrimaceWhales.setSellFees(uint256,uint256,uint256,uint256,uint256,uint256)._liquidityFeeSell (#870) is not in mixedCase
Parameter GrimaceWhales.setSellFees(uint256,uint256,uint256,uint256,uint256,uint256)._buybackFeeSell (#870) is not in mixedCase
Parameter GrimaceWhales.setSellFees(uint256,uint256,uint256,uint256,uint256,uint256)._reflectionFeeSell (#870) is not in mixedCase
Parameter GrimaceWhales.setSellFees(uint256,uint256,uint256,uint256,uint256,uint256)._marketingFeeSell (#870) is not in mixedCase
Parameter GrimaceWhales.setSellFees(uint256,uint256,uint256,uint256,uint256,uint256)._devFeeSell (#870) is not in mixedCase
Parameter GrimaceWhales.setSellFees(uint256,uint256,uint256,uint256,uint256,uint256)._feeDenominator (#870) is not in mixedCase
Parameter GrimaceWhales.setFeeReceivers(address,address)._autoLiquidityReceiver (#881) is not in mixedCase
Parameter GrimaceWhales.setFeeReceivers(address,address)._marketingFeeReceiver (#881) is not in mixedCase
Parameter GrimaceWhales.setSwapBackSettings(bool,uint256)._enabled (#887) is not in mixedCase
Parameter GrimaceWhales.setSwapBackSettings(bool,uint256)._amount (#887) is not in mixedCase
Parameter GrimaceWhales.setTargetLiquidity(uint256,uint256)._target (#893) is not in mixedCase
Parameter GrimaceWhales.setTargetLiquidity(uint256,uint256)._denominator (#893) is not in mixedCase
Parameter GrimaceWhales.setDistributionCriteria(uint256,uint256)._minPeriod (#905) is not in mixedCase
Parameter GrimaceWhales.setDistributionCriteria(uint256,uint256)._minDistribution (#905) is not in mixedCase
Variable GrimaceWhales.BETH (#366) is not in mixedCase
Variable GrimaceWhales.WBNB (#367) is not in mixedCase
Variable GrimaceWhales.DEAD (#368) is not in mixedCase
Variable GrimaceWhales.ZERO (#369) is not in mixedCase
Variable GrimaceWhales.DEV (#370) is not in mixedCase
Constant GrimaceWhales._name (#377) is not in UPPER_CASE_WITH_UNDERSCORES
Constant GrimaceWhales._symbol (#378) is not in UPPER_CASE_WITH_UNDERSCORES
Constant GrimaceWhales._decimals (#379) is not in UPPER_CASE_WITH_UNDERSCORES
Variable GrimaceWhales._totalSupply (#382) is not in mixedCase
Variable GrimaceWhales._maxBuyTxAmount (#385) is not in mixedCase
Variable GrimaceWhales._maxSellTxAmount (#386) is not in mixedCase
Variable GrimaceWhales._maxWalletToken (#387) is not in mixedCase
Variable GrimaceWhales._balances (#390) is not in mixedCase
Variable GrimaceWhales._allowances (#391) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#144) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#145)
Prevent variables from having similar names.

Additional information: link

GrimaceWhales.slitherConstructorVariables() (#362-943) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#368)
GrimaceWhales.slitherConstructorVariables() (#362-943) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#369)
GrimaceWhales.slitherConstructorVariables() (#362-943) uses literals with too many digits:
- _totalSupply = 1000000000000000 * (10 ** _decimals) (#382)
GrimaceWhales.slitherConstructorVariables() (#362-943) uses literals with too many digits:
- distributorGas = 500000 (#448)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

GrimaceWhales.BETH (#366) is never used in GrimaceWhales (#362-943)
Remove unused state variables.

Additional information: link

DividendDistributor.WBNB (#207) should be constant
DividendDistributor.dividendsPerShareAccuracyFactor (#220) should be constant
GrimaceWhales.BETH (#366) should be constant
GrimaceWhales.DEAD (#368) should be constant
GrimaceWhales.DEV (#370) should be constant
GrimaceWhales.WBNB (#367) should be constant
GrimaceWhales.ZERO (#369) should be constant
GrimaceWhales._totalSupply (#382) should be constant
GrimaceWhales.quickScope (#424) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

authorize(address) should be declared external:
- Auth.authorize(address) (#94-96)
unauthorize(address) should be declared external:
- Auth.unauthorize(address) (#101-103)
transferOwnership(address) should be declared external:
- Auth.transferOwnership(address) (#122-126)
getTotalFee(bool) should be declared external:
- GrimaceWhales.getTotalFee(bool) (#647-651)
tradingStatus(bool) should be declared external:
- GrimaceWhales.tradingStatus(bool) (#680-683)
cooldownEnabled(bool,uint8) should be declared external:
- GrimaceWhales.cooldownEnabled(bool,uint8) (#686-689)
blacklistAddress(address,bool) should be declared external:
- GrimaceWhales.blacklistAddress(address,bool) (#692-694)
getUnpaidEarnings(address) should be declared external:
- GrimaceWhales.getUnpaidEarnings(address) (#915-917)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Token seems to be untradeable: there is no PancakeSwap trading pair and no trading volumes. Ignore for presale.


Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.


Unable to find Twitter account


Telegram account has less than 100 subscribers


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


Unable to find website, listings and other project-related information


Token is marked as scam (rug pull, honeypot, phishing, etc.)

Additional information: link


Young tokens have high risks of scam / price dump / death


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for Whales