EternalGirl Token Logo

ETGL [EternalGirl] Token

About ETGL

Listings

Token 2 years
white paper

The Eternal Girl 夢限少女 is a buxom beauty with porcelain skin, who uses the Ethereum to reward all souls who embark on the journey with her. Her stories will be told for an eternity. Throughout pages of rich history, steeped in tradition. Our girl begins as any other young girl with a dream. Anime NFTs series , 4% ETH rewards for holding.

Superburn of overflowing TAX. We all saw the issues with rewarding tokens and contract dumps for rewards sells so we fixed that and made sure that the contract does not dump the chart itself by instituting a burn if any 2 contract sell happen, reducing supply and maintaining price.

We have been in this space a while and people know that we are sincere in our projects. For this project, we have completed a Techrate audit even before launch and have locked liquidity for 7 months on pinksale.finance. We also have removed any dangerous functions on the contract such as disabling trading, changing of taxes to prevent any honeypot risk.

Social

Laser Scorebeta Last Audit: 17 January 2022

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


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

EternalGirl.swapBack() (#722-750) sends eth to arbitrary user
Dangerous calls:
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#744-747)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in EternalGirl._transferFrom(address,address,uint256) (#616-665):
External calls:
- swapBack() (#627)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(swapThreshold,0,path,address(this),block.timestamp) (#729-735)
- distributor.deposit{value: amountBNBReflection}() (#743)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#744-747)
External calls sending eth:
- swapBack() (#627)
- distributor.deposit{value: amountBNBReflection}() (#743)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#744-747)
State variables written after the call(s):
- _basicTransfer(address(this),DEAD,(rewardsBalanceUnsold - maxContractRewardHold)) (#631-635)
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#672-675)
- _balances[recipient] = _balances[recipient].add(amount) (#676)
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#640-643)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#648)
- amountReceived = takeFee(sender,amount,recipient) (#645-647)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#702)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.distributeDividend(address) (#407-424) ignores return value by REWARDS.transfer(shareholder,amount) (#415)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

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.

EternalGirl.swapBack().tmpSuccess (#744) is written in both
(tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#744-747)
tmpSuccess = false (#749)
Fix or remove the writes.

Additional information: link

DividendDistributor.distributeDividend(address) (#407-424) has external calls inside a loop: REWARDS.transfer(shareholder,amount) (#415)
Favor pull over push strategy for external calls.

Additional information: link

Reentrancy in DividendDistributor.distributeDividend(address) (#407-424):
External calls:
- REWARDS.transfer(shareholder,amount) (#415)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#417-419)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#420-422)
Reentrancy in DividendDistributor.process(uint256) (#369-395):
External calls:
- distributeDividend(shareholders[currentIndex]) (#387)
- REWARDS.transfer(shareholder,amount) (#415)
State variables written after the call(s):
- currentIndex ++ (#392)
Reentrancy in DividendDistributor.setShare(address,uint256) (#328-348):
External calls:
- distributeDividend(shareholder) (#334)
- REWARDS.transfer(shareholder,amount) (#415)
State variables written after the call(s):
- shares[shareholder].amount = amount (#344)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#345-347)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.setDistributionCriteria(uint256,uint256) (#320-326) should emit an event for:
- minPeriod = _minPeriod (#324)
- minDistribution = _minDistribution (#325)
EternalGirl.setSwapBackSettings(bool,uint256,uint256) (#776-784) should emit an event for:
- swapThreshold = _amount (#782)
Emit an event for critical parameter changes.

Additional information: link

Auth.transferOwnership(address).adr (#178) lacks a zero-check on :
- owner = adr (#179)
EternalGirl.setFeeReceivers(address)._marketingFeeReceiver (#769) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#773)
Check that the address is not zero.

Additional information: link

Reentrancy in EternalGirl.constructor() (#523-544):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#529)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = uint256(- 1) (#530)
- _balances[msg.sender] = _totalSupply.sub(marketingFee) (#542)
- distributor = new DividendDistributor(address(router)) (#532)
- isDividendExempt[pair] = true (#538)
- isDividendExempt[address(this)] = true (#539)
- isDividendExempt[DEAD] = true (#540)
- isFeeExempt[msg.sender] = true (#534)
- isFeeExempt[marketingFeeReceiver] = true (#535)
- isFeeExempt[address(this)] = true (#536)
Reentrancy in DividendDistributor.deposit() (#350-367):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#357-359)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#364-366)
- totalDividends = totalDividends.add(amount) (#363)
Reentrancy in DividendDistributor.distributeDividend(address) (#407-424):
External calls:
- REWARDS.transfer(shareholder,amount) (#415)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#416)
Reentrancy in DividendDistributor.setShare(address,uint256) (#328-348):
External calls:
- distributeDividend(shareholder) (#334)
- REWARDS.transfer(shareholder,amount) (#415)
State variables written after the call(s):
- addShareholder(shareholder) (#338)
- shareholderIndexes[shareholder] = shareholders.length (#461)
- removeShareholder(shareholder) (#340)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#469-471)
- addShareholder(shareholder) (#338)
- shareholders.push(shareholder) (#462)
- removeShareholder(shareholder) (#340)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#466-468)
- shareholders.pop() (#472)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#343)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in EternalGirl._transferFrom(address,address,uint256) (#616-665):
External calls:
- swapBack() (#627)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(swapThreshold,0,path,address(this),block.timestamp) (#729-735)
- distributor.deposit{value: amountBNBReflection}() (#743)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#744-747)
External calls sending eth:
- swapBack() (#627)
- distributor.deposit{value: amountBNBReflection}() (#743)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#744-747)
Event emitted after the call(s):
- Transfer(sender,recipient,amount) (#677)
- _basicTransfer(address(this),DEAD,(rewardsBalanceUnsold - maxContractRewardHold)) (#631-635)
- Transfer(sender,address(this),feeAmount) (#703)
- amountReceived = takeFee(sender,amount,recipient) (#645-647)
Reentrancy in EternalGirl._transferFrom(address,address,uint256) (#616-665):
External calls:
- swapBack() (#627)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(swapThreshold,0,path,address(this),block.timestamp) (#729-735)
- distributor.deposit{value: amountBNBReflection}() (#743)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#744-747)
- distributor.setShare(sender,_balances[sender]) (#652)
- distributor.setShare(recipient,_balances[recipient]) (#656-658)
- distributor.process(distributorGas) (#661)
External calls sending eth:
- swapBack() (#627)
- distributor.deposit{value: amountBNBReflection}() (#743)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#744-747)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived) (#663)
Reentrancy in EternalGirl.constructor() (#523-544):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#529)
Event emitted after the call(s):
- Transfer(address(0),msg.sender,_totalSupply.sub(marketingFee)) (#543)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.shouldDistribute(address) (#397-405) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#402-404)
Avoid relying on block.timestamp.

Additional information: link

DividendDistributor.process(uint256) (#369-395) has costly operations inside a loop:
- currentIndex = 0 (#383)
DividendDistributor.distributeDividend(address) (#407-424) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#414)
DividendDistributor.process(uint256) (#369-395) has costly operations inside a loop:
- currentIndex ++ (#392)
Use a local variable to hold the loop computation result.

Additional information: link

EternalGirl.swapThreshold (#512) is set pre-construction with a non-constant function or state variable:
- (_totalSupply * 2) / 1000
EternalGirl.maxContractRewardHold (#514) is set pre-construction with a non-constant function or state variable:
- swapThreshold.div(2)
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 EternalGirl.swapBack() (#722-750):
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#744-747)
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() (#196) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minPeriod (#321) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minDistribution (#322) is not in mixedCase
Variable DividendDistributor._token (#271) is not in mixedCase
Variable DividendDistributor.REWARDS (#280) is not in mixedCase
Variable DividendDistributor.WBNB (#281) is not in mixedCase
Parameter EternalGirl.setFeeReceivers(address)._marketingFeeReceiver (#769) is not in mixedCase
Parameter EternalGirl.setSwapBackSettings(bool,uint256,uint256)._enabled (#777) is not in mixedCase
Parameter EternalGirl.setSwapBackSettings(bool,uint256,uint256)._amount (#778) is not in mixedCase
Parameter EternalGirl.setSwapBackSettings(bool,uint256,uint256)._maxContractRewardHold (#779) is not in mixedCase
Parameter EternalGirl.setDistributionCriteria(uint256,uint256)._minPeriod (#787) is not in mixedCase
Parameter EternalGirl.setDistributionCriteria(uint256,uint256)._minDistribution (#788) is not in mixedCase
Variable EternalGirl.WBNB (#479) is not in mixedCase
Variable EternalGirl.DEAD (#480) is not in mixedCase
Variable EternalGirl.ZERO (#481) is not in mixedCase
Constant EternalGirl._name (#483) is not in UPPER_CASE_WITH_UNDERSCORES
Constant EternalGirl._symbol (#484) is not in UPPER_CASE_WITH_UNDERSCORES
Constant EternalGirl._decimals (#485) is not in UPPER_CASE_WITH_UNDERSCORES
Variable EternalGirl._totalSupply (#487) is not in mixedCase
Variable EternalGirl._balances (#489) is not in mixedCase
Variable EternalGirl._allowances (#490) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

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

Additional information: link

EternalGirl.slitherConstructorVariables() (#476-820) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#480)
EternalGirl.slitherConstructorVariables() (#476-820) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#481)
EternalGirl.slitherConstructorVariables() (#476-820) uses literals with too many digits:
- distributorGas = 400000 (#509)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

DividendDistributor.WBNB (#281) should be constant
DividendDistributor.dividendsPerShareAccuracyFactor (#294) should be constant
EternalGirl.DEAD (#480) should be constant
EternalGirl.WBNB (#479) should be constant
EternalGirl.ZERO (#481) should be constant
EternalGirl._totalSupply (#487) should be constant
EternalGirl.feeDenominator (#499) should be constant
EternalGirl.marketingFee (#496) should be constant
EternalGirl.reflectionFee (#495) should be constant
EternalGirl.totalFee (#497) should be constant
EternalGirl.totalSellFee (#498) 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) (#150-152)
unauthorize(address) should be declared external:
- Auth.unauthorize(address) (#157-159)
transferOwnership(address) should be declared external:
- Auth.transferOwnership(address) (#178-182)
isOverLiquified(uint256,uint256) should be declared external:
- EternalGirl.isOverLiquified(uint256,uint256) (#810-816)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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


Number of Binance Smart Chain (BSC) token holders is low.


Token is deployed only at one blockchain


Token has only one trading pair


Unable to find PancakeSwap trading pair to compute liquidity.


Unable to find PancakeSwap trading pair to compute volume.


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


Twitter account has relatively few followers


Last post in Twitter was more than 30 days ago


Unable to find Blog account (Reddit or Medium)


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


Token was delisted (assigned to inactive / untracked listing) from CoinMarketCap

Additional information: link


Unable to verify token contract address on the website


Unable to find whitepaper link on the website


Unable to find Telegram link on the website


Unable to find Twitter link on the website


Unable to find token on CoinHunt

Additional information: link


Unable to find code repository for the project


Young tokens have high risks of price dump / death


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


Token has no active CoinMarketCap listing / rank


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death


Token has relatively low CoinGecko rank

Price for ETGL

News for ETGL