GenshinShibInu Token Logo

GShib [GenshinShibInu] Token

ALERT: honeypot scam

About GShib

Listings

Token 2 years

GenshinShibInu is a novel AI rebase and reward token on binance smart chain (BSC).

Detailed Project Description, should be appealing, shouldn’t be shilly, factual statements about your project & minimum 450 words max 600 words :

GSHIB is a novel AI rebase and reward token on BSC. The artificial intelligence (AI) of the token undergoes a series of analysis, calculates the most reasonable increase, and passively awards holders $SHIB.
With a rebase token, the projects supply is variable and will adjust automatically on a routine basis.

The design of rebases makes tokens more tradable and extremely profitable due to increased buying pressure.

Holders earn a higher proportion of $SHIB rewards the earlier they purchase and the longer they hold.

The development team were inspired to create this token (GenshinShibInu) based on Elon Musk’s interest in the Genshin Impact game and the current Shiba Inu frenzy in cryptoverse.

Social

Laser Scorebeta Last Audit: 22 December 2021

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

Anti-Scam

Links


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

GenshinShibInu.swapBack() (#1055-1112) sends eth to arbitrary user
Dangerous calls:
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#1089-1092)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#1093-1096)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

DividendDistributor.distributeDividend(address) (#404-421) ignores return value by RWRD.transfer(shareholder,amount) (#412)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link

Reentrancy in GenshinShibInu._transferFrom(address,address,uint256) (#859-942):
External calls:
- swapBack() (#917)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#1070-1076)
- distributor.deposit{value: amountBNBReflection}() (#1088)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#1089-1092)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#1093-1096)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#1102-1109)
External calls sending eth:
- swapBack() (#917)
- distributor.deposit{value: amountBNBReflection}() (#1088)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#1089-1092)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#1093-1096)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#1102-1109)
State variables written after the call(s):
- _rBalance[sender] = _rBalance[sender].sub(rAmount,Insufficient Balance) (#921)
- _rBalance[recipient] = _rBalance[recipient].add(amountReceived) (#927)
- amountReceived = takeFee(sender,rAmount,(recipient == pair)) (#923-926)
- _rBalance[address(this)] = _rBalance[address(this)].add(feeAmount) (#986)
Apply the check-effects-interactions pattern.

Additional information: link


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

GenshinShibInu.beforeRebase (#544) is written in both
beforeRebase = false (#695)
beforeRebase = false (#696)
GenshinShibInu.swapBack().tmpSuccess (#1089) is written in both
(tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#1089-1092)
(tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#1093-1096)
GenshinShibInu.swapBack().tmpSuccess (#1089) is written in both
(tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#1093-1096)
tmpSuccess = false (#1099)
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.


Not a direct threat, but may indicate unreliable intentions of developer. Widespread names (e.g. Elon, King, Moon, Doge) are common among meme-tokens and scams. The allow to gain free hype and attract unexperienced investors.

Pragma version^0.7.4 (#17) allows old versions
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

GenshinShibInu.rebase_percentage(uint256) (#561-570) performs a multiplication on the result of a division:
-newSupply = rebase(0,int256(_totalSupply.div(1000).mul(_percentage_base1000)).mul(- 1)) (#566-569)
GenshinShibInu.rebase_percentage1000(uint256,uint256) (#572-589) performs a multiplication on the result of a division:
-newSupply = rebase_new(0,int256(_totalSupply.div(1000).mul(_percentage_base1000))) (#579-581)
GenshinShibInu.rebase_percentage1000(uint256,uint256) (#572-589) performs a multiplication on the result of a division:
-newSupply = rebase1000(0,int256(_totalSupply.div(1000).mul(_percentage_base1000)),coinAmount) (#583-586)
GenshinShibInu.takeFee(address,uint256,bool) (#969-990) performs a multiplication on the result of a division:
-feeAmount = rAmount.div(feeDenominator * 100).mul(totalFee).mul(multiplier) (#979-980)
GenshinShibInu.takeFee(address,uint256,bool) (#969-990) performs a multiplication on the result of a division:
-feeAmount = rAmount.div(100).mul(99) (#983)
GenshinShibInu.swapBack() (#1055-1112) performs a multiplication on the result of a division:
-amountToLiquify = tokensToSell.div(totalFee).mul(dynamicLiquidityFee).div(2) (#1060-1061)
GenshinShibInu.setSwapBackSettings(bool,uint256) (#1170-1176) performs a multiplication on the result of a division:
-swapThreshold = rSupply.div(10000).mul(_percentage_base10000) (#1175)
GenshinShibInu.setMaxWalletPercent_base1000(uint256) (#1257-1262) performs a multiplication on the result of a division:
-_maxWalletToken = rSupply.div(1000).mul(maxWallPercent_base1000) (#1261)
GenshinShibInu.setMaxTxPercent_base1000(uint256) (#1264-1269) performs a multiplication on the result of a division:
-_maxTxAmount = rSupply.div(1000).mul(maxTXPercentage_base1000) (#1268)
GenshinShibInu.slitherConstructorVariables() (#471-1341) performs a multiplication on the result of a division:
-_maxTxAmount = rSupply.div(1000).mul(10) (#558)
GenshinShibInu.slitherConstructorVariables() (#471-1341) performs a multiplication on the result of a division:
-_maxWalletToken = rSupply.div(1000).mul(50) (#559)
Consider ordering multiplication before division.

Additional information: link

Reentrancy in DividendDistributor.distributeDividend(address) (#404-421):
External calls:
- RWRD.transfer(shareholder,amount) (#412)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#414-416)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#417-419)
Reentrancy in DividendDistributor.process(uint256) (#370-396):
External calls:
- distributeDividend(shareholders[currentIndex]) (#388)
- RWRD.transfer(shareholder,amount) (#412)
State variables written after the call(s):
- currentIndex ++ (#393)
Reentrancy in DividendDistributor.setShare(address,uint256) (#326-346):
External calls:
- distributeDividend(shareholder) (#332)
- RWRD.transfer(shareholder,amount) (#412)
State variables written after the call(s):
- shares[shareholder].amount = amount (#342)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#343-345)
Apply the check-effects-interactions pattern.

Additional information: link

GenshinShibInu.manage_blacklist(address[],bool).i (#1045) is a local variable never initialized
Initialize all the variables. If a variable is meant to be initialized to zero, explicitly set it to zero to improve code readability.

Additional information: link

GenshinShibInu.rebase1000(uint256,int256,uint256) (#649-698) ignores return value by router.addLiquidityETH{value: msg.value}(address(this),coinAmount,0,0,address(this),block.timestamp + 300) (#687-694)
GenshinShibInu.rebase_new(uint256,int256) (#700-747) ignores return value by router.addLiquidityETH{value: msg.value}(address(this),balanceOf(address(this)).div(100),0,0,address(this),block.timestamp + 300) (#736-742)
GenshinShibInu.swapBack() (#1055-1112) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#1102-1109)
Ensure that all the return values of the function calls are used.

Additional information: link

GenshinShibInu.setMaster(address) (#1195-1197) should emit an event for:
- master = _master (#1196)
Emit an event for critical parameter changes.

Additional information: link

DividendDistributor.setDistributionCriteria(uint256,uint256) (#317-324) should emit an event for:
- minPeriod = _minPeriod (#322)
- minDistribution = _minDistribution (#323)
GenshinShibInu.set_sell_multiplier(uint256) (#1015-1017) should emit an event for:
- sellMultiplier = Multiplier (#1016)
GenshinShibInu.set_swap_Multiplier(uint256) (#1019-1021) should emit an event for:
- swapMultiplier = Multiplier (#1020)
GenshinShibInu.tradingStatus(bool,uint256) (#1025-1031) should emit an event for:
- deadBlocks = _deadBlocks (#1029)
GenshinShibInu.launchStatus(uint256) (#1033-1035) should emit an event for:
- launchedAt = _launchblock (#1034)
GenshinShibInu.setFees(uint256,uint256,uint256,uint256,uint256) (#1142-1158) should emit an event for:
- liquidityFee = _liquidityFee (#1149)
- reflectionFee = _reflectionFee (#1150)
- marketingFee = _marketingFee (#1151)
- devFee = _devFee (#1152)
- totalFee = _liquidityFee.add(_reflectionFee).add(_marketingFee).add(_devFee) (#1153-1155)
- feeDenominator = _feeDenominator (#1156)
GenshinShibInu.setSwapBackSettings(bool,uint256) (#1170-1176) should emit an event for:
- swapThreshold = rSupply.div(10000).mul(_percentage_base10000) (#1175)
GenshinShibInu.setMaxWalletPercent_base1000(uint256) (#1257-1262) should emit an event for:
- _maxWalletToken = rSupply.div(1000).mul(maxWallPercent_base1000) (#1261)
GenshinShibInu.setMaxTxPercent_base1000(uint256) (#1264-1269) should emit an event for:
- _maxTxAmount = rSupply.div(1000).mul(maxTXPercentage_base1000) (#1268)
Emit an event for critical parameter changes.

Additional information: link

Auth.transferOwnership(address).adr (#174) lacks a zero-check on :
- owner = adr (#175)
GenshinShibInu.setFeeReceivers(address,address,address)._autoLiquidityReceiver (#1161) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#1165)
GenshinShibInu.setFeeReceivers(address,address,address)._marketingFeeReceiver (#1162) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#1166)
GenshinShibInu.setFeeReceivers(address,address,address)._devFeeReceiver (#1163) lacks a zero-check on :
- devFeeReceiver = _devFeeReceiver (#1167)
GenshinShibInu.setMaster(address)._master (#1195) lacks a zero-check on :
- master = _master (#1196)
GenshinShibInu.rescueBNB(address)._recipient (#1227) lacks a zero-check on :
- _recipient.transfer(address(this).balance) (#1228)
Check that the address is not zero.

Additional information: link

DividendDistributor.distributeDividend(address) (#404-421) has external calls inside a loop: RWRD.transfer(shareholder,amount) (#412)
GenshinShibInu.multiTransfer(address,address[],uint256[]) (#1273-1308) has external calls inside a loop: distributor.setShare(addresses[i_scope_0],balanceOf(addresses[i_scope_0])) (#1298-1300)
GenshinShibInu.multiTransfer_fixed(address,address[],uint256) (#1310-1337) has external calls inside a loop: distributor.setShare(addresses[i],balanceOf(addresses[i])) (#1327-1329)
Favor pull over push strategy for external calls.

Additional information: link

Reentrancy in GenshinShibInu.constructor() (#750-781):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#752)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = uint256(- 1) (#753)
- _rBalance[msg.sender] = rSupply (#779)
- _totalSupply = INITIAL_FRAGMENTS_SUPPLY (#756)
- autoLiquidityReceiver = msg.sender (#775)
- devFeeReceiver = 0x3B2Dfd8348bc8f0A56c2aB292C61f004DDaCe46B (#777)
- distributor = new DividendDistributor(address(router)) (#759)
- isDividendExempt[pair] = true (#771)
- isDividendExempt[address(this)] = true (#772)
- isDividendExempt[DEAD] = true (#773)
- isFeeExempt[msg.sender] = true (#761)
- isTimelockExempt[msg.sender] = true (#767)
- isTimelockExempt[DEAD] = true (#768)
- isTimelockExempt[address(this)] = true (#769)
- isTxLimitExempt[msg.sender] = true (#762)
- isTxLimitExempt[pair] = true (#764)
- isTxLimitExempt[address(this)] = true (#765)
- marketingFeeReceiver = 0x8025A90a620809eD7D099Aee4b6A27Fac93B2610 (#776)
- pairContract = InterfaceLP(pair) (#755)
- rate = rSupply.div(_totalSupply) (#757)
Reentrancy in DividendDistributor.deposit() (#348-368):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#355-360)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#365-367)
- totalDividends = totalDividends.add(amount) (#364)
Reentrancy in DividendDistributor.distributeDividend(address) (#404-421):
External calls:
- RWRD.transfer(shareholder,amount) (#412)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#413)
Reentrancy in GenshinShibInu.rebase1000(uint256,int256,uint256) (#649-698):
External calls:
- router.addLiquidityETH{value: msg.value}(address(this),coinAmount,0,0,address(this),block.timestamp + 300) (#687-694)
State variables written after the call(s):
- beforeRebase = false (#695)
- beforeRebase = false (#696)
Reentrancy in GenshinShibInu.rebase_new(uint256,int256) (#700-747):
External calls:
- router.addLiquidityETH{value: msg.value}(address(this),balanceOf(address(this)).div(100),0,0,address(this),block.timestamp + 300) (#736-742)
State variables written after the call(s):
- beforeRebase = false (#745)
Reentrancy in DividendDistributor.setShare(address,uint256) (#326-346):
External calls:
- distributeDividend(shareholder) (#332)
- RWRD.transfer(shareholder,amount) (#412)
State variables written after the call(s):
- addShareholder(shareholder) (#336)
- shareholderIndexes[shareholder] = shareholders.length (#456)
- removeShareholder(shareholder) (#338)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#464-466)
- addShareholder(shareholder) (#336)
- shareholders.push(shareholder) (#457)
- removeShareholder(shareholder) (#338)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#461-463)
- shareholders.pop() (#467)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#341)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in GenshinShibInu._transferFrom(address,address,uint256) (#859-942):
External calls:
- swapBack() (#917)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#1070-1076)
- distributor.deposit{value: amountBNBReflection}() (#1088)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#1089-1092)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#1093-1096)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#1102-1109)
- distributor.setShare(sender,balanceOf(sender)) (#931)
- distributor.setShare(recipient,balanceOf(recipient)) (#935)
- distributor.process(distributorGas) (#938)
External calls sending eth:
- swapBack() (#917)
- distributor.deposit{value: amountBNBReflection}() (#1088)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#1089-1092)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#1093-1096)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#1102-1109)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived.div(rate)) (#940)
Reentrancy in GenshinShibInu._transferFrom(address,address,uint256) (#859-942):
External calls:
- swapBack() (#917)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#1070-1076)
- distributor.deposit{value: amountBNBReflection}() (#1088)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#1089-1092)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#1093-1096)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#1102-1109)
External calls sending eth:
- swapBack() (#917)
- distributor.deposit{value: amountBNBReflection}() (#1088)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#1089-1092)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#1093-1096)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#1102-1109)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount.div(rate)) (#987)
- amountReceived = takeFee(sender,rAmount,(recipient == pair)) (#923-926)
Reentrancy in GenshinShibInu.constructor() (#750-781):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#752)
Event emitted after the call(s):
- Transfer(address(0),msg.sender,_totalSupply) (#780)
Reentrancy in GenshinShibInu.rebase(uint256,int256) (#613-647):
External calls:
- pairContract.sync() (#642)
Event emitted after the call(s):
- LogRebase(epoch,_totalSupply) (#644)
Reentrancy in GenshinShibInu.swapBack() (#1055-1112):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#1070-1076)
- distributor.deposit{value: amountBNBReflection}() (#1088)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#1089-1092)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#1093-1096)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#1102-1109)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#1088)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#1089-1092)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#1093-1096)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#1102-1109)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify.div(rate)) (#1110)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.shouldDistribute(address) (#398-402) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#399-401)
GenshinShibInu._transferFrom(address,address,uint256) (#859-942) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(cooldownTimer[recipient] < block.timestamp,buy Cooldown exists) (#898-901)
Avoid relying on block.timestamp.

Additional information: link

DividendDistributor.process(uint256) (#370-396) has costly operations inside a loop:
- currentIndex = 0 (#384)
DividendDistributor.distributeDividend(address) (#404-421) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#411)
DividendDistributor.process(uint256) (#370-396) has costly operations inside a loop:
- currentIndex ++ (#393)
Use a local variable to hold the loop computation result.

Additional information: link

SafeMathInt.abs(int256) (#98-101) is never used and should be removed
SafeMathInt.add(int256,int256) (#92-96) is never used and should be removed
SafeMathInt.div(int256,int256) (#80-84) is never used and should be removed
SafeMathInt.sub(int256,int256) (#86-90) is never used and should be removed
Remove unused functions.

Additional information: link

GenshinShibInu.totalFee (#496-497) is set pre-construction with a non-constant function or state variable:
- marketingFee + reflectionFee + liquidityFee + devFee
GenshinShibInu.swapThreshold (#548) is set pre-construction with a non-constant function or state variable:
- rSupply.div(swapMultiplier)
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 GenshinShibInu.swapBack() (#1055-1112):
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#1089-1092)
- (tmpSuccess,None) = address(devFeeReceiver).call{gas: 30000,value: amountBNBDev}() (#1093-1096)
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 (#317) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minDistribution (#317) is not in mixedCase
Variable DividendDistributor._token (#269) is not in mixedCase
Variable DividendDistributor.RWRD (#277) is not in mixedCase
Variable DividendDistributor.WBNB (#278) is not in mixedCase
Function GenshinShibInu.rebase_percentage(uint256) (#561-570) is not in mixedCase
Parameter GenshinShibInu.rebase_percentage(uint256)._percentage_base1000 (#561) is not in mixedCase
Function GenshinShibInu.rebase_percentage1000(uint256,uint256) (#572-589) is not in mixedCase
Parameter GenshinShibInu.rebase_percentage1000(uint256,uint256)._percentage_base1000 (#572) is not in mixedCase
Parameter GenshinShibInu.setRebaseStatus(bool)._rebaseStatus (#602) is not in mixedCase
Parameter GenshinShibInu.setLPStatus(bool)._LPStatus (#607) is not in mixedCase
Function GenshinShibInu.rebase_new(uint256,int256) (#700-747) is not in mixedCase
Parameter GenshinShibInu.setBeforeRebase(bool)._beforeRebase (#855) is not in mixedCase
Function GenshinShibInu.clearStuckBalance_sender(uint256) (#1007-1013) is not in mixedCase
Function GenshinShibInu.set_sell_multiplier(uint256) (#1015-1017) is not in mixedCase
Parameter GenshinShibInu.set_sell_multiplier(uint256).Multiplier (#1015) is not in mixedCase
Function GenshinShibInu.set_swap_Multiplier(uint256) (#1019-1021) is not in mixedCase
Parameter GenshinShibInu.set_swap_Multiplier(uint256).Multiplier (#1019) is not in mixedCase
Parameter GenshinShibInu.tradingStatus(bool,uint256)._status (#1025) is not in mixedCase
Parameter GenshinShibInu.tradingStatus(bool,uint256)._deadBlocks (#1025) is not in mixedCase
Parameter GenshinShibInu.launchStatus(uint256)._launchblock (#1033) is not in mixedCase
Function GenshinShibInu.enable_blacklist(bool) (#1037-1039) is not in mixedCase
Parameter GenshinShibInu.enable_blacklist(bool)._status (#1037) is not in mixedCase
Function GenshinShibInu.manage_blacklist(address[],bool) (#1041-1048) is not in mixedCase
Parameter GenshinShibInu.cooldownEnabled(bool,uint8)._status (#1050) is not in mixedCase
Parameter GenshinShibInu.cooldownEnabled(bool,uint8)._interval (#1050) is not in mixedCase
Parameter GenshinShibInu.setFees(uint256,uint256,uint256,uint256,uint256)._liquidityFee (#1143) is not in mixedCase
Parameter GenshinShibInu.setFees(uint256,uint256,uint256,uint256,uint256)._reflectionFee (#1144) is not in mixedCase
Parameter GenshinShibInu.setFees(uint256,uint256,uint256,uint256,uint256)._marketingFee (#1145) is not in mixedCase
Parameter GenshinShibInu.setFees(uint256,uint256,uint256,uint256,uint256)._devFee (#1146) is not in mixedCase
Parameter GenshinShibInu.setFees(uint256,uint256,uint256,uint256,uint256)._feeDenominator (#1147) is not in mixedCase
Parameter GenshinShibInu.setFeeReceivers(address,address,address)._autoLiquidityReceiver (#1161) is not in mixedCase
Parameter GenshinShibInu.setFeeReceivers(address,address,address)._marketingFeeReceiver (#1162) is not in mixedCase
Parameter GenshinShibInu.setFeeReceivers(address,address,address)._devFeeReceiver (#1163) is not in mixedCase
Parameter GenshinShibInu.setSwapBackSettings(bool,uint256)._enabled (#1170) is not in mixedCase
Parameter GenshinShibInu.setSwapBackSettings(bool,uint256)._percentage_base10000 (#1170) is not in mixedCase
Parameter GenshinShibInu.setTargetLiquidity(uint256,uint256)._target (#1178) is not in mixedCase
Parameter GenshinShibInu.setTargetLiquidity(uint256,uint256)._denominator (#1178) is not in mixedCase
Parameter GenshinShibInu.setLP(address)._address (#1190) is not in mixedCase
Parameter GenshinShibInu.setMaster(address)._master (#1195) is not in mixedCase
Parameter GenshinShibInu.setDistributionCriteria(uint256,uint256)._minPeriod (#1207) is not in mixedCase
Parameter GenshinShibInu.setDistributionCriteria(uint256,uint256)._minDistribution (#1207) is not in mixedCase
Parameter GenshinShibInu.rescueBNB(address)._recipient (#1227) is not in mixedCase
Function GenshinShibInu.setMaxWalletPercent_base1000(uint256) (#1257-1262) is not in mixedCase
Parameter GenshinShibInu.setMaxWalletPercent_base1000(uint256).maxWallPercent_base1000 (#1257) is not in mixedCase
Function GenshinShibInu.setMaxTxPercent_base1000(uint256) (#1264-1269) is not in mixedCase
Parameter GenshinShibInu.setMaxTxPercent_base1000(uint256).maxTXPercentage_base1000 (#1264) is not in mixedCase
Function GenshinShibInu.multiTransfer_fixed(address,address[],uint256) (#1310-1337) is not in mixedCase
Variable GenshinShibInu.WBNB (#475) is not in mixedCase
Variable GenshinShibInu.DEAD (#476) is not in mixedCase
Variable GenshinShibInu.ZERO (#477) is not in mixedCase
Constant GenshinShibInu._name (#479) is not in UPPER_CASE_WITH_UNDERSCORES
Constant GenshinShibInu._symbol (#480) is not in UPPER_CASE_WITH_UNDERSCORES
Constant GenshinShibInu._decimals (#481) is not in UPPER_CASE_WITH_UNDERSCORES
Variable GenshinShibInu._rBalance (#484) is not in mixedCase
Variable GenshinShibInu._allowances (#485) is not in mixedCase
Variable GenshinShibInu._isBot (#486) is not in mixedCase
Variable GenshinShibInu.LPStatus (#522) is not in mixedCase
Variable GenshinShibInu.rebase_count (#549) is not in mixedCase
Variable GenshinShibInu._totalSupply (#551) is not in mixedCase
Constant GenshinShibInu.rSupply (#554-555) is not in UPPER_CASE_WITH_UNDERSCORES
Variable GenshinShibInu._maxTxAmount (#558) is not in mixedCase
Variable GenshinShibInu._maxWalletToken (#559) 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

GenshinShibInu.setDistributorSettings(uint256) (#1214-1217) uses literals with too many digits:
- require(bool)(gas < 900000) (#1215)
GenshinShibInu.slitherConstructorVariables() (#471-1341) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#476)
GenshinShibInu.slitherConstructorVariables() (#471-1341) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#477)
GenshinShibInu.slitherConstructorVariables() (#471-1341) uses literals with too many digits:
- distributorGas = 500000 (#524)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SafeMathInt.MAX_INT256 (#70) is never used in SafeMathInt (#68-102)
Remove unused state variables.

Additional information: link

DividendDistributor.WBNB (#278) should be constant
DividendDistributor.dividendsPerShareAccuracyFactor (#291) should be constant
GenshinShibInu.DEAD (#476) should be constant
GenshinShibInu.WBNB (#475) should be constant
GenshinShibInu.ZERO (#477) 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) (#158-160)
unauthorize(address) should be declared external:
- Auth.unauthorize(address) (#162-164)
transferOwnership(address) should be declared external:
- Auth.transferOwnership(address) (#174-178)
rebase_percentage(uint256) should be declared external:
- GenshinShibInu.rebase_percentage(uint256) (#561-570)
rebase_percentage1000(uint256,uint256) should be declared external:
- GenshinShibInu.rebase_percentage1000(uint256,uint256) (#572-589)
setRebaseStatus(bool) should be declared external:
- GenshinShibInu.setRebaseStatus(bool) (#602-605)
setLPStatus(bool) should be declared external:
- GenshinShibInu.setLPStatus(bool) (#607-610)
setBeforeRebase(bool) should be declared external:
- GenshinShibInu.setBeforeRebase(bool) (#855-857)
tradingStatus(bool,uint256) should be declared external:
- GenshinShibInu.tradingStatus(bool,uint256) (#1025-1031)
launchStatus(uint256) should be declared external:
- GenshinShibInu.launchStatus(uint256) (#1033-1035)
enable_blacklist(bool) should be declared external:
- GenshinShibInu.enable_blacklist(bool) (#1037-1039)
manage_blacklist(address[],bool) should be declared external:
- GenshinShibInu.manage_blacklist(address[],bool) (#1041-1048)
cooldownEnabled(bool,uint8) should be declared external:
- GenshinShibInu.cooldownEnabled(bool,uint8) (#1050-1053)
rescueToken(address,uint256) should be declared external:
- GenshinShibInu.rescueToken(address,uint256) (#1219-1225)
rescueBNB(address) should be declared external:
- GenshinShibInu.rescueBNB(address) (#1227-1229)
isOverLiquified(uint256,uint256) should be declared external:
- GenshinShibInu.isOverLiquified(uint256,uint256) (#1241-1247)
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.


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.


Last post in Twitter was more than 30 days ago


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube 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 find token/project description on the website or on BscScan, CoinMarketCap


Unable to find token contract audit


Unable to find audit link 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


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

Additional information: link


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


Token has relatively low CoinGecko rank

Price for GShib

News for GShib