WhaleGirl Token Logo

WGIRL [WhaleGirl] Token

About WGIRL

Listings

Token 2 years
white paper

Whalegirl is a girl from the Animemeta of the BSC. A new token on the BSC!

Listings on different CEX
The team is not just talking, CoinTiger is already officially announced! BEFORE the launch! I have not seen that before. More CEX will follow. The important thing: CEX listings are THE tool to get more investors. The market for the token is growing, whether you believe it.

Game
And it's in the Unreal Engine 4! The Dev has always emphasized: The Game is not a simple marketing step, that Whalegirl has a Game, so that it has a Game. The game should also be fun for those who have nothing to do with cryptocurrencies. And it will still be enriched with cool features like Play2Earn!

The dev and project leader is doxxed and regularly in voicechats without fear of contact. Also, the contract is audited. Everything you need to invest without worries and fully focus on profits.

MASSIVE marketing campaign
- After an AMA marathon, which made almost the whole BSC not to miss the project, more AMAs follow.
- lots of influencers follow
- competitions
Everything is taken into consideration: Twitter, Poocoin, Email and of course: Telegram! The heart of the BSC.

Social

Laser Scorebeta Last Audit: 9 December 2021

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...)

WhaleGirl.swapBack() (#604-651) sends eth to arbitrary user
Dangerous calls:
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#634)
- (tmpSuccess,None) = address(gameFeeReceiver).call{gas: 30000,value: amountBNBGame}() (#635)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#636)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in WhaleGirl._transferFrom(address,address,uint256) (#505-549):
External calls:
- swapBack() (#530)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#615-621)
- distributor.deposit{value: amountBNBReflection}() (#633)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#634)
- (tmpSuccess,None) = address(gameFeeReceiver).call{gas: 30000,value: amountBNBGame}() (#635)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#636)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#641-648)
External calls sending eth:
- swapBack() (#530)
- distributor.deposit{value: amountBNBReflection}() (#633)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#634)
- (tmpSuccess,None) = address(gameFeeReceiver).call{gas: 30000,value: amountBNBGame}() (#635)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#636)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#641-648)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#532)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#535)
- amountReceived = takeFee(sender,amount,(recipient == pair)) (#534)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#571)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.distributeDividend(address) (#333-344) ignores return value by bnb.transfer(shareholder,amount) (#339)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link


Too many vulnerabilities (Unchecked transfer, Reentrancy vulnerability, etc.). High risk of a scam. DYOR & manual audit are advised.

WhaleGirl.swapBack().tmpSuccess (#634) is written in both
(tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#634)
(tmpSuccess,None) = address(gameFeeReceiver).call{gas: 30000,value: amountBNBGame}() (#635)
WhaleGirl.swapBack().tmpSuccess (#634) is written in both
(tmpSuccess,None) = address(gameFeeReceiver).call{gas: 30000,value: amountBNBGame}() (#635)
(tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#636)
WhaleGirl.swapBack().tmpSuccess (#634) is written in both
(tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#636)
tmpSuccess = false (#638)
Fix or remove the writes.

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) (#333-344):
External calls:
- bnb.transfer(shareholder,amount) (#339)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#341)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#342)
Reentrancy in DividendDistributor.process(uint256) (#302-326):
External calls:
- distributeDividend(shareholders[currentIndex]) (#318)
- bnb.transfer(shareholder,amount) (#339)
State variables written after the call(s):
- currentIndex ++ (#323)
Reentrancy in DividendDistributor.setShare(address,uint256) (#266-280):
External calls:
- distributeDividend(shareholder) (#268)
- bnb.transfer(shareholder,amount) (#339)
State variables written after the call(s):
- shares[shareholder].amount = amount (#278)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#279)
Apply the check-effects-interactions pattern.

Additional information: link

WhaleGirl.swapBack() (#604-651) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#641-648)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendDistributor.setDistributionCriteria(uint256,uint256) (#261-264) should emit an event for:
- minPeriod = _minPeriod (#262)
- minDistribution = _minDistribution (#263)
WhaleGirl.set_sell_multiplier(uint256) (#589-591) should emit an event for:
- sellMultiplier = Multiplier (#590)
WhaleGirl.setTxLimit(uint256) (#654-656) should emit an event for:
- _maxTxAmount = amount (#655)
WhaleGirl.setFees(uint256,uint256,uint256,uint256,uint256,uint256) (#680-689) should emit an event for:
- liquidityFee = _liquidityFee (#681)
- reflectionFee = _reflectionFee (#682)
- marketingFee = _marketingFee (#683)
- gameFee = _gameFee (#684)
- teamFee = _teamFee (#685)
- totalFee = _liquidityFee.add(_reflectionFee).add(_marketingFee).add(_gameFee).add(_teamFee) (#686)
- feeDenominator = _feeDenominator (#687)
WhaleGirl.setSwapBackSettings(bool,uint256) (#698-701) should emit an event for:
- swapThreshold = _amount (#700)
WhaleGirl.setTargetLiquidity(uint256,uint256) (#703-706) should emit an event for:
- targetLiquidity = _target (#704)
- targetLiquidityDenominator = _denominator (#705)
Emit an event for critical parameter changes.

Additional information: link

Auth.transferOwnership(address).adr (#142) lacks a zero-check on :
- owner = adr (#143)
WhaleGirl.setFeeReceivers(address,address,address,address)._autoLiquidityReceiver (#691) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#692)
WhaleGirl.setFeeReceivers(address,address,address,address)._marketingFeeReceiver (#691) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#693)
WhaleGirl.setFeeReceivers(address,address,address,address)._gameFeeReceiver (#691) lacks a zero-check on :
- gameFeeReceiver = _gameFeeReceiver (#694)
WhaleGirl.setFeeReceivers(address,address,address,address)._teamFeeReceiver (#691) lacks a zero-check on :
- teamFeeReceiver = _teamFeeReceiver (#695)
Check that the address is not zero.

Additional information: link

WhaleGirl.airdrop(address,address[],uint256[]) (#733-755) has external calls inside a loop: distributor.setShare(addresses[i_scope_0],_balances[addresses[i_scope_0]]) (#748)
Favor pull over push strategy for external calls.

Additional information: link

Reentrancy in WhaleGirl.constructor() (#440-466):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#442)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = uint256(- 1) (#443)
- _balances[msg.sender] = _totalSupply (#464)
- autoLiquidityReceiver = msg.sender (#459)
- distributor = new DividendDistributor(address(router)) (#445)
- gameFeeReceiver = msg.sender (#461)
- isDividendExempt[pair] = true (#455)
- isDividendExempt[address(this)] = true (#456)
- isDividendExempt[DEAD] = true (#457)
- isFeeExempt[msg.sender] = true (#447)
- isTimelockExempt[msg.sender] = true (#450)
- isTimelockExempt[DEAD] = true (#451)
- isTimelockExempt[address(this)] = true (#452)
- isTxLimitExempt[msg.sender] = true (#448)
- marketingFeeReceiver = msg.sender (#460)
- teamFeeReceiver = msg.sender (#462)
Reentrancy in DividendDistributor.deposit() (#282-300):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#289-294)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#299)
- totalDividends = totalDividends.add(amount) (#298)
Reentrancy in DividendDistributor.distributeDividend(address) (#333-344):
External calls:
- bnb.transfer(shareholder,amount) (#339)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#340)
Reentrancy in DividendDistributor.setShare(address,uint256) (#266-280):
External calls:
- distributeDividend(shareholder) (#268)
- bnb.transfer(shareholder,amount) (#339)
State variables written after the call(s):
- addShareholder(shareholder) (#272)
- shareholderIndexes[shareholder] = shareholders.length (#366)
- removeShareholder(shareholder) (#274)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#372)
- addShareholder(shareholder) (#272)
- shareholders.push(shareholder) (#367)
- removeShareholder(shareholder) (#274)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#371)
- shareholders.pop() (#373)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#277)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in WhaleGirl._transferFrom(address,address,uint256) (#505-549):
External calls:
- swapBack() (#530)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#615-621)
- distributor.deposit{value: amountBNBReflection}() (#633)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#634)
- (tmpSuccess,None) = address(gameFeeReceiver).call{gas: 30000,value: amountBNBGame}() (#635)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#636)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#641-648)
- distributor.setShare(sender,_balances[sender]) (#538)
- distributor.setShare(recipient,_balances[recipient]) (#542)
- distributor.process(distributorGas) (#545)
External calls sending eth:
- swapBack() (#530)
- distributor.deposit{value: amountBNBReflection}() (#633)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#634)
- (tmpSuccess,None) = address(gameFeeReceiver).call{gas: 30000,value: amountBNBGame}() (#635)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#636)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#641-648)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived) (#547)
Reentrancy in WhaleGirl._transferFrom(address,address,uint256) (#505-549):
External calls:
- swapBack() (#530)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#615-621)
- distributor.deposit{value: amountBNBReflection}() (#633)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#634)
- (tmpSuccess,None) = address(gameFeeReceiver).call{gas: 30000,value: amountBNBGame}() (#635)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#636)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#641-648)
External calls sending eth:
- swapBack() (#530)
- distributor.deposit{value: amountBNBReflection}() (#633)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#634)
- (tmpSuccess,None) = address(gameFeeReceiver).call{gas: 30000,value: amountBNBGame}() (#635)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#636)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#641-648)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#572)
- amountReceived = takeFee(sender,amount,(recipient == pair)) (#534)
Reentrancy in WhaleGirl.constructor() (#440-466):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#442)
Event emitted after the call(s):
- Transfer(address(0),msg.sender,_totalSupply) (#465)
Reentrancy in WhaleGirl.swapBack() (#604-651):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#615-621)
- distributor.deposit{value: amountBNBReflection}() (#633)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#634)
- (tmpSuccess,None) = address(gameFeeReceiver).call{gas: 30000,value: amountBNBGame}() (#635)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#636)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#641-648)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#633)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#634)
- (tmpSuccess,None) = address(gameFeeReceiver).call{gas: 30000,value: amountBNBGame}() (#635)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#636)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#641-648)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#649)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.shouldDistribute(address) (#328-331) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#329-330)
WhaleGirl._transferFrom(address,address,uint256) (#505-549) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(cooldownTimer[recipient] < block.timestamp,Please wait for 1 minute between 2 buys) (#523)
Avoid relying on block.timestamp.

Additional information: link

DividendDistributor.process(uint256) (#302-326) has costly operations inside a loop:
- currentIndex = 0 (#314)
DividendDistributor.process(uint256) (#302-326) has costly operations inside a loop:
- currentIndex ++ (#323)
Use a local variable to hold the loop computation result.

Additional information: link

WhaleGirl._maxTxAmount (#390) is set pre-construction with a non-constant function or state variable:
- _totalSupply * 2 / 100
WhaleGirl._maxWalletToken (#393) is set pre-construction with a non-constant function or state variable:
- (_totalSupply * 3) / 100
WhaleGirl.swapThreshold (#436) 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

Pragma version^0.7.4 (#43) allows old versions
solc-0.7.4 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 WhaleGirl.swapBack() (#604-651):
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#634)
- (tmpSuccess,None) = address(gameFeeReceiver).call{gas: 30000,value: amountBNBGame}() (#635)
- (tmpSuccess,None) = address(teamFeeReceiver).call{gas: 30000,value: amountBNBTeam}() (#636)
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() (#157) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minPeriod (#261) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minDistribution (#261) is not in mixedCase
Variable DividendDistributor._token (#213) is not in mixedCase
Variable DividendDistributor.WBNB (#222) is not in mixedCase
Function WhaleGirl.set_sell_multiplier(uint256) (#589-591) is not in mixedCase
Parameter WhaleGirl.set_sell_multiplier(uint256).Multiplier (#589) is not in mixedCase
Parameter WhaleGirl.tradingStatus(bool)._status (#593) is not in mixedCase
Parameter WhaleGirl.cooldownEnabled(bool,uint8)._status (#597) is not in mixedCase
Parameter WhaleGirl.cooldownEnabled(bool,uint8)._interval (#597) is not in mixedCase
Parameter WhaleGirl.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._liquidityFee (#680) is not in mixedCase
Parameter WhaleGirl.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._reflectionFee (#680) is not in mixedCase
Parameter WhaleGirl.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._marketingFee (#680) is not in mixedCase
Parameter WhaleGirl.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._gameFee (#680) is not in mixedCase
Parameter WhaleGirl.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._teamFee (#680) is not in mixedCase
Parameter WhaleGirl.setFees(uint256,uint256,uint256,uint256,uint256,uint256)._feeDenominator (#680) is not in mixedCase
Parameter WhaleGirl.setFeeReceivers(address,address,address,address)._autoLiquidityReceiver (#691) is not in mixedCase
Parameter WhaleGirl.setFeeReceivers(address,address,address,address)._marketingFeeReceiver (#691) is not in mixedCase
Parameter WhaleGirl.setFeeReceivers(address,address,address,address)._gameFeeReceiver (#691) is not in mixedCase
Parameter WhaleGirl.setFeeReceivers(address,address,address,address)._teamFeeReceiver (#691) is not in mixedCase
Parameter WhaleGirl.setSwapBackSettings(bool,uint256)._enabled (#698) is not in mixedCase
Parameter WhaleGirl.setSwapBackSettings(bool,uint256)._amount (#698) is not in mixedCase
Parameter WhaleGirl.setTargetLiquidity(uint256,uint256)._target (#703) is not in mixedCase
Parameter WhaleGirl.setTargetLiquidity(uint256,uint256)._denominator (#703) is not in mixedCase
Parameter WhaleGirl.setDistributionCriteria(uint256,uint256)._minPeriod (#708) is not in mixedCase
Parameter WhaleGirl.setDistributionCriteria(uint256,uint256)._minDistribution (#708) is not in mixedCase
Variable WhaleGirl.WBNB (#381) is not in mixedCase
Variable WhaleGirl.DEAD (#382) is not in mixedCase
Variable WhaleGirl.ZERO (#383) is not in mixedCase
Constant WhaleGirl._name (#385) is not in UPPER_CASE_WITH_UNDERSCORES
Constant WhaleGirl._symbol (#386) is not in UPPER_CASE_WITH_UNDERSCORES
Constant WhaleGirl._decimals (#387) is not in UPPER_CASE_WITH_UNDERSCORES
Variable WhaleGirl._totalSupply (#389) is not in mixedCase
Variable WhaleGirl._maxTxAmount (#390) is not in mixedCase
Variable WhaleGirl._maxWalletToken (#393) is not in mixedCase
Variable WhaleGirl._balances (#395) is not in mixedCase
Variable WhaleGirl._allowances (#396) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

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

Additional information: link

WhaleGirl.slitherConstructorVariables() (#377-759) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#382)
WhaleGirl.slitherConstructorVariables() (#377-759) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#383)
WhaleGirl.slitherConstructorVariables() (#377-759) uses literals with too many digits:
- distributorGas = 500000 (#428)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

WhaleGirl.bnb (#380) is never used in WhaleGirl (#377-759)
Remove unused state variables.

Additional information: link

DividendDistributor.WBNB (#222) should be constant
DividendDistributor.dividendsPerShareAccuracyFactor (#235) should be constant
WhaleGirl.DEAD (#382) should be constant
WhaleGirl.WBNB (#381) should be constant
WhaleGirl.ZERO (#383) should be constant
WhaleGirl._totalSupply (#389) should be constant
WhaleGirl.bnb (#380) should be constant
WhaleGirl.launchedAt (#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) (#122-124)
unauthorize(address) should be declared external:
- Auth.unauthorize(address) (#127-129)
transferOwnership(address) should be declared external:
- Auth.transferOwnership(address) (#142-146)
tradingStatus(bool) should be declared external:
- WhaleGirl.tradingStatus(bool) (#593-595)
cooldownEnabled(bool,uint8) should be declared external:
- WhaleGirl.cooldownEnabled(bool,uint8) (#597-600)
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


Unable to find PancakeSwap trading pair to compute liquidity.


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


Twitter account link seems to be invalid


Unable to find Youtube account


Unable to find Discord account


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


Unable to find token on CoinHunt

Additional information: link


Young tokens have high risks of 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 no active CoinGecko listing / rank


Young tokens have high risks of price dump / death


Token has relatively low CoinMarketCap rank

Price for WGIRL