🛍📱💻 BSCHex - P2E MMORPG | Mobile and PC Compatible MMORPG with P2E and Metaverse technology. Conquer the lands of the Metaverse and loot BNB or $BSCHEX. 🟣 SAFU 🟣 |✅ Alpha Test for Biggest Wallets ✅ CMC / CG FAST TRACK ✅ LP Locked for 3 months ✅ EXPERIENCED TEAM ✅ BIG PARTNERS ✅LOW TAX ✅ SOLID TOKENOMICS
Check out our Alpha Gameplay footage, and more stuff on Telegram and Twitter!
https://www.youtube.com/watch?v=EHSi8XFG5h4
aBase.executeSwap(uint256) (#643-667) sends eth to arbitrary user
Dangerous calls:
- (bnbAddedToLiquidity) = _pancakeswapV2Router.addLiquidityETH{value: bnbToBeAddedToLiquidity}(address(this),tokensToAddAsLiquidity,0,0,_autoLiquidityWallet,block.timestamp + 360) (#661)
aBase.swapBNBForTokens(uint256,address) (#687-701) sends eth to arbitrary user
Dangerous calls:
- _pancakeswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: bnbAmount}(0,path,to,block.timestamp + 360) (#695-700)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in aBase.doTransfer(address,address,uint256) (#546-577):
External calls:
- executeSwapIfNeeded(sender,recipient) (#558)
- _pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp + 360) (#680)
- (bnbAddedToLiquidity) = _pancakeswapV2Router.addLiquidityETH{value: bnbToBeAddedToLiquidity}(address(this),tokensToAddAsLiquidity,0,0,_autoLiquidityWallet,block.timestamp + 360) (#661)
External calls sending eth:
- executeSwapIfNeeded(sender,recipient) (#558)
- (bnbAddedToLiquidity) = _pancakeswapV2Router.addLiquidityETH{value: bnbToBeAddedToLiquidity}(address(this),tokensToAddAsLiquidity,0,0,_autoLiquidityWallet,block.timestamp + 360) (#661)
State variables written after the call(s):
- updateBalances(sender,recipient,amount,feeAmount) (#569)
- _balances[sender] -= sentAmount (#589)
- _balances[recipient] += receivedAmount (#590)
- _balances[address(this)] += feeAmount (#593)
Reentrancy in a.processRewardClaimQueue(uint256) (#1142-1180):
External calls:
- doClaimReward(user) (#1164)
- _pancakeswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: bnbAmount}(0,path,to,block.timestamp + 360) (#695-700)
- (sent) = user.call{gas: _sendWeiGasLimit,value: bnbAmount}() (#1100)
- (sent) = user.call{value: bnbAmount}() (#1105)
State variables written after the call(s):
- _rewardClaimQueueIndex ++ (#1176)
Apply the check-effects-interactions pattern.
Additional information: link
a._totalBNBLiquidityAddedFromFees (#908) shadows:
- aBase._totalBNBLiquidityAddedFromFees (#467)
Remove the state variable shadowing.
Additional information: link
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
a.claimBNB(address,uint256) (#1093-1115) uses a dangerous strict equality:
- bnbAmount == 0 (#1094)
a.claimSUSD(address,uint256) (#1118-1131) uses a dangerous strict equality:
- bnbAmount == 0 (#1119)
a.doBuyAndBurn(uint256) (#1311-1325) uses a dangerous strict equality:
- bnbAmount == 0 (#1316)
Don't use strict equality to determine if an account has enough Ether or tokens.
Additional information: link
aBase.setFees(uint8,uint8,uint8) (#767-779) contains a tautology or contradiction:
- require(bool,string)(liquidityFee >= 0 && liquidityFee <= 8,Liquidity fee must be between 0% and 8%) (#768)
aBase.setFees(uint8,uint8,uint8) (#767-779) contains a tautology or contradiction:
- require(bool,string)(rewardFee >= 0 && rewardFee <= 15,Reward fee must be between 0% and 15%) (#769)
Fix the incorrect comparison by changing the value type or the comparison.
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.
Contract ownership is not renounced (belongs to a wallet)
aBase.executeSwap(uint256) (#643-667) performs a multiplication on the result of a division:
-tokensToSwapForLiquidity = tokensReservedForLiquidity / 2 (#652)
-bnbToBeAddedToLiquidity = bnbSwapped * tokensToSwapForLiquidity / tokensToSwap (#660)
a.calculateRewardCycleExtension(uint256,uint256) (#1213-1240) performs a multiplication on the result of a division:
-rate = amount * 100 / balance (#1223)
-extension = basePeriod * rate / 100 (#1229)
a.calculateBNBReward(address) (#1258-1277) performs a multiplication on the result of a division:
-bnbPool = address(this).balance * (100 - _globalRewardDampeningPercentage) / 100 (#1262)
-reward = bnbPool * balance / holdersAmount (#1270)
Consider ordering multiplication before division.
Additional information: link
a.claimBNB(address,uint256).sent_scope_0 (#1105) 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
aBase.doApprove(address,address,uint256).owner (#597) shadows:
- Ownable.owner() (#172-174) (function)
Rename the local variables that shadow another component.
Additional information: link
a.setRewardCyclePeriod(uint256) (#1366-1369) should emit an event for:
- _rewardCyclePeriod = period (#1368)
a.setRewardCycleExtensionThreshold(uint256) (#1372-1374) should emit an event for:
- _rewardCycleExtensionThreshold = threshold (#1373)
a.setMaxClaimAllowed(uint256) (#1387-1390) should emit an event for:
- _maxClaimAllowed = value (#1389)
a.setMinRewardBalance(uint256) (#1398-1400) should emit an event for:
- _minRewardBalance = balance (#1399)
a.setMaxGasForAutoClaim(uint256) (#1408-1410) should emit an event for:
- _maxGasForAutoClaim = gas (#1409)
a.setGlobalRewardDampeningPercentage(uint256) (#1440-1443) should emit an event for:
- _globalRewardDampeningPercentage = value (#1442)
a.setGradualBurnMagnitude(uint256) (#1472-1475) should emit an event for:
- _gradualBurnMagnitude = magnitude (#1474)
a.setGradualBurnTimespan(uint256) (#1483-1486) should emit an event for:
- _gradualBurnTimespan = timespan (#1485)
a.setMinBnbPoolSizeBeforeBurn(uint256) (#1494-1497) should emit an event for:
- _minBnbPoolSizeBeforeBurn = amount (#1496)
a.setMainBnbPoolSize(uint256) (#1516-1519) should emit an event for:
- _mainBnbPoolSize = size (#1518)
a.setSendWeiGasLimit(uint256) (#1562-1564) should emit an event for:
- _sendWeiGasLimit = amount (#1563)
Emit an event for critical parameter changes.
Additional information: link
aBase.setAutoLiquidityWallet(address).liquidityWallet (#845) lacks a zero-check on :
- _autoLiquidityWallet = liquidityWallet (#846)
Check that the address is not zero.
Additional information: link
aBase.swapBNBForTokens(uint256,address) (#687-701) has external calls inside a loop: path[0] = _pancakeswapV2Router.WETH() (#690)
aBase.swapBNBForTokens(uint256,address) (#687-701) has external calls inside a loop: _pancakeswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: bnbAmount}(0,path,to,block.timestamp + 360) (#695-700)
a.claimBNB(address,uint256) (#1093-1115) has external calls inside a loop: (sent) = user.call{gas: _sendWeiGasLimit,value: bnbAmount}() (#1100)
a.claimBNB(address,uint256) (#1093-1115) has external calls inside a loop: (sent) = user.call{value: bnbAmount}() (#1105)
Favor pull over push strategy for external calls.
Additional information: link
Variable 'a.claimBNB(address,uint256).sent (#1100)' in a.claimBNB(address,uint256) (#1093-1115) potentially used before declaration: (sent) = user.call{value: bnbAmount}() (#1105)
Move all variable declarations prior to any usage of the variable, and ensure that reaching a variable declaration does not depend on some conditional if it is used unconditionally.
Additional information: link
Reentrancy in a.claimBNB(address,uint256) (#1093-1115):
External calls:
- (sent) = user.call{gas: _sendWeiGasLimit,value: bnbAmount}() (#1100)
- (sent) = user.call{value: bnbAmount}() (#1105)
State variables written after the call(s):
- _bnbRewardClaimed[user] += bnbAmount (#1112)
- _totalBNBClaimed += bnbAmount (#1113)
Reentrancy in a.claimSUSD(address,uint256) (#1118-1131):
External calls:
- success = swapBNBForTokens(bnbAmount,user) (#1123)
- _pancakeswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: bnbAmount}(0,path,to,block.timestamp + 360) (#695-700)
State variables written after the call(s):
- _bnbAsSUSDClaimed[user] += bnbAmount (#1128)
- _totalBNBAsSUSDClaimed += bnbAmount (#1129)
Reentrancy in aBase.constructor() (#485-498):
External calls:
- setPancakeSwapRouter(0x10ED43C718714eb63d5aA57B78B54704E256024E) (#492)
- _pancakeswapV2Pair = IPancakeFactory(_pancakeswapV2Router.factory()).createPair(address(this),_pancakeswapV2Router.WETH()) (#752)
State variables written after the call(s):
- setFees(1,2,5) (#495)
- _additionalSellFee = additionalSellFee (#775)
- setFees(1,2,5) (#495)
- _liquidityFee = liquidityFee (#773)
- setFees(1,2,5) (#495)
- _poolFee = _rewardFee + _liquidityFee (#778)
- setFees(1,2,5) (#495)
- _rewardFee = rewardFee (#774)
Reentrancy in a.constructor() (#942-951):
External calls:
- aBase() (#942)
- _pancakeswapV2Pair = IPancakeFactory(_pancakeswapV2Router.factory()).createPair(address(this),_pancakeswapV2Router.WETH()) (#752)
State variables written after the call(s):
- _addressesExcludedFromRewards[BURN_WALLET] = true (#944)
- _addressesExcludedFromRewards[owner()] = true (#945)
- _addressesExcludedFromRewards[address(this)] = true (#946)
- _addressesExcludedFromRewards[address(0)] = true (#947)
- setRewardCycleExtensionThreshold(15) (#950)
- _rewardCycleExtensionThreshold = threshold (#1373)
Reentrancy in a.doBuyAndBurn(uint256) (#1311-1325):
External calls:
- swapBNBForTokens(bnbAmount,BURN_WALLET) (#1320)
- _pancakeswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: bnbAmount}(0,path,to,block.timestamp + 360) (#695-700)
State variables written after the call(s):
- _lastBurnDate = block.timestamp (#1324)
Reentrancy in aBase.doTransfer(address,address,uint256) (#546-577):
External calls:
- executeSwapIfNeeded(sender,recipient) (#558)
- _pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp + 360) (#680)
- (bnbAddedToLiquidity) = _pancakeswapV2Router.addLiquidityETH{value: bnbToBeAddedToLiquidity}(address(this),tokensToAddAsLiquidity,0,0,_autoLiquidityWallet,block.timestamp + 360) (#661)
External calls sending eth:
- executeSwapIfNeeded(sender,recipient) (#558)
- (bnbAddedToLiquidity) = _pancakeswapV2Router.addLiquidityETH{value: bnbToBeAddedToLiquidity}(address(this),tokensToAddAsLiquidity,0,0,_autoLiquidityWallet,block.timestamp + 360) (#661)
State variables written after the call(s):
- _totalFeesPooled += feeAmount (#572)
Reentrancy in aBase.executeSwap(uint256) (#643-667):
External calls:
- bnbSwapped = swapTokensForBNB(tokensToSwap) (#657)
- _pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp + 360) (#680)
- (bnbAddedToLiquidity) = _pancakeswapV2Router.addLiquidityETH{value: bnbToBeAddedToLiquidity}(address(this),tokensToAddAsLiquidity,0,0,_autoLiquidityWallet,block.timestamp + 360) (#661)
External calls sending eth:
- (bnbAddedToLiquidity) = _pancakeswapV2Router.addLiquidityETH{value: bnbToBeAddedToLiquidity}(address(this),tokensToAddAsLiquidity,0,0,_autoLiquidityWallet,block.timestamp + 360) (#661)
State variables written after the call(s):
- _totalBNBLiquidityAddedFromFees += bnbAddedToLiquidity (#664)
Reentrancy in aBase.transferFrom(address,address,uint256) (#533-537):
External calls:
- doTransfer(sender,recipient,amount) (#534)
- _pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp + 360) (#680)
- (bnbAddedToLiquidity) = _pancakeswapV2Router.addLiquidityETH{value: bnbToBeAddedToLiquidity}(address(this),tokensToAddAsLiquidity,0,0,_autoLiquidityWallet,block.timestamp + 360) (#661)
External calls sending eth:
- doTransfer(sender,recipient,amount) (#534)
- (bnbAddedToLiquidity) = _pancakeswapV2Router.addLiquidityETH{value: bnbToBeAddedToLiquidity}(address(this),tokensToAddAsLiquidity,0,0,_autoLiquidityWallet,block.timestamp + 360) (#661)
State variables written after the call(s):
- doApprove(sender,_msgSender(),_allowances[sender][_msgSender()] - amount) (#535)
- _allowances[owner][spender] = amount (#601)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in aBase.constructor() (#485-498):
External calls:
- setPancakeSwapRouter(0x10ED43C718714eb63d5aA57B78B54704E256024E) (#492)
- _pancakeswapV2Pair = IPancakeFactory(_pancakeswapV2Router.factory()).createPair(address(this),_pancakeswapV2Router.WETH()) (#752)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),totalSupply()) (#497)
Reentrancy in a.doBuyAndBurn(uint256) (#1311-1325):
External calls:
- swapBNBForTokens(bnbAmount,BURN_WALLET) (#1320)
- _pancakeswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: bnbAmount}(0,path,to,block.timestamp + 360) (#695-700)
Event emitted after the call(s):
- Burned(bnbAmount) (#1321)
Reentrancy in a.doClaimReward(address) (#1062-1090):
External calls:
- ! claimSUSD(user,claimBnbAsTokens) (#1070)
- _pancakeswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: bnbAmount}(0,path,to,block.timestamp + 360) (#695-700)
- bnbClaimSuccess = claimBNB(user,claimBnb) (#1082)
- (sent) = user.call{gas: _sendWeiGasLimit,value: bnbAmount}() (#1100)
- (sent) = user.call{value: bnbAmount}() (#1105)
Event emitted after the call(s):
- RewardClaimed(user,claimBnb,claimBnbAsTokens,_nextAvailableClaimDate[user]) (#1086)
Reentrancy in aBase.doTransfer(address,address,uint256) (#546-577):
External calls:
- executeSwapIfNeeded(sender,recipient) (#558)
- _pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp + 360) (#680)
- (bnbAddedToLiquidity) = _pancakeswapV2Router.addLiquidityETH{value: bnbToBeAddedToLiquidity}(address(this),tokensToAddAsLiquidity,0,0,_autoLiquidityWallet,block.timestamp + 360) (#661)
External calls sending eth:
- executeSwapIfNeeded(sender,recipient) (#558)
- (bnbAddedToLiquidity) = _pancakeswapV2Router.addLiquidityETH{value: bnbToBeAddedToLiquidity}(address(this),tokensToAddAsLiquidity,0,0,_autoLiquidityWallet,block.timestamp + 360) (#661)
Event emitted after the call(s):
- Transfer(sender,recipient,transferAmount) (#574)
Reentrancy in aBase.executeSwap(uint256) (#643-667):
External calls:
- bnbSwapped = swapTokensForBNB(tokensToSwap) (#657)
- _pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp + 360) (#680)
- (bnbAddedToLiquidity) = _pancakeswapV2Router.addLiquidityETH{value: bnbToBeAddedToLiquidity}(address(this),tokensToAddAsLiquidity,0,0,_autoLiquidityWallet,block.timestamp + 360) (#661)
External calls sending eth:
- (bnbAddedToLiquidity) = _pancakeswapV2Router.addLiquidityETH{value: bnbToBeAddedToLiquidity}(address(this),tokensToAddAsLiquidity,0,0,_autoLiquidityWallet,block.timestamp + 360) (#661)
Event emitted after the call(s):
- Swapped(tokensToSwap,bnbSwapped,tokensToAddAsLiquidity,bnbToBeAddedToLiquidity) (#666)
Reentrancy in aBase.transferFrom(address,address,uint256) (#533-537):
External calls:
- doTransfer(sender,recipient,amount) (#534)
- _pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp + 360) (#680)
- (bnbAddedToLiquidity) = _pancakeswapV2Router.addLiquidityETH{value: bnbToBeAddedToLiquidity}(address(this),tokensToAddAsLiquidity,0,0,_autoLiquidityWallet,block.timestamp + 360) (#661)
External calls sending eth:
- doTransfer(sender,recipient,amount) (#534)
- (bnbAddedToLiquidity) = _pancakeswapV2Router.addLiquidityETH{value: bnbToBeAddedToLiquidity}(address(this),tokensToAddAsLiquidity,0,0,_autoLiquidityWallet,block.timestamp + 360) (#661)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#603)
- doApprove(sender,_msgSender(),_allowances[sender][_msgSender()] - amount) (#535)
Apply the check-effects-interactions pattern.
Additional information: link
a.processRewardClaimQueue(uint256) (#1142-1180) uses timestamp for comparisons
Dangerous comparisons:
- isRewardReady(user) && isIncludedInRewards(user) (#1163)
a.isRewardReady(address) (#1196-1198) uses timestamp for comparisons
Dangerous comparisons:
- _nextAvailableClaimDate[user] <= block.timestamp (#1197)
a.shouldBurn() (#1297-1299) uses timestamp for comparisons
Dangerous comparisons:
- _gradualBurnMagnitude > 0 && address(this).balance >= _minBnbPoolSizeBeforeBurn && block.timestamp - _lastBurnDate > _gradualBurnTimespan (#1298)
Avoid relying on block.timestamp.
Additional information: link
a.isContract(address) (#1328-1333) uses assembly
- INLINE ASM (#1331)
Do not use evm assembly.
Additional information: link
a.processRewardClaimQueue(uint256) (#1142-1180) has costly operations inside a loop:
- _rewardClaimQueueIndex = 0 (#1159)
a.claimSUSD(address,uint256) (#1118-1131) has costly operations inside a loop:
- _totalBNBAsSUSDClaimed += bnbAmount (#1129)
a.claimBNB(address,uint256) (#1093-1115) has costly operations inside a loop:
- _totalBNBClaimed += bnbAmount (#1113)
a.processRewardClaimQueue(uint256) (#1142-1180) has costly operations inside a loop:
- _rewardClaimQueueIndex ++ (#1176)
Use a local variable to hold the loop computation result.
Additional information: link
Context._msgData() (#132-135) is never used and should be removed
Remove unused functions.
Additional information: link
Low level call in a.claimBNB(address,uint256) (#1093-1115):
- (sent) = user.call{gas: _sendWeiGasLimit,value: bnbAmount}() (#1100)
- (sent) = user.call{value: bnbAmount}() (#1105)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Function IPancakeRouter01.WETH() (#222) is not in mixedCase
Contract aBase (#447-896) is not in CapWords
Constant aBase._totalTokens (#457) is not in UPPER_CASE_WITH_UNDERSCORES
Contract a (#901-1570) is not in CapWords
Variable a._rewardClaimQueue (#929) is not in mixedCase
Variable a._rewardClaimQueueIndices (#930) is not in mixedCase
Variable a._addressesInRewardClaimQueue (#932) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#133)" inContext (#127-136)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Variable IPancakeRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#227) is too similar to IPancakeRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#228)
Prevent variables from having similar names.
Additional information: link
a.onActivated() (#955-964) uses literals with too many digits:
- setMinRewardBalance(2500000000 * 10 ** decimals()) (#961)
a.slitherConstructorVariables() (#901-1570) uses literals with too many digits:
- _tokenSwapThreshold = _totalTokens / 100000 (#465)
a.slitherConstructorVariables() (#901-1570) uses literals with too many digits:
- _maxGasForAutoClaim = 600000 (#928)
a.slitherConstructorConstantVariables() (#901-1570) uses literals with too many digits:
- _totalTokens = 1000000000000 * 10 ** DECIMALS (#457)
a.slitherConstructorConstantVariables() (#901-1570) uses literals with too many digits:
- BURN_WALLET = 0x000000000000000000000000000000000000dEaD (#464)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
a._totalBNBLiquidityAddedFromFees (#908) is never used in a (#901-1570)
Remove unused state variables.
Additional information: link
a._totalBNBLiquidityAddedFromFees (#908) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#191-194)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#196-198)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#204-208)
unlock() should be declared external:
- Ownable.unlock() (#211-215)
activate() should be declared external:
- aBase.activate() (#502-509)
transfer(address,uint256) should be declared external:
- aBase.transfer(address,uint256) (#520-523)
transferFrom(address,address,uint256) should be declared external:
- aBase.transferFrom(address,address,uint256) (#533-537)
approve(address,uint256) should be declared external:
- aBase.approve(address,uint256) (#540-543)
amountUntilSwap() should be declared external:
- aBase.amountUntilSwap() (#724-732)
increaseAllowance(address,uint256) should be declared external:
- aBase.increaseAllowance(address,uint256) (#735-738)
decreaseAllowance(address,uint256) should be declared external:
- aBase.decreaseAllowance(address,uint256) (#741-744)
transactionLimit() should be declared external:
- aBase.transactionLimit() (#789-791)
setTokenSwapThreshold(uint256) should be declared external:
- aBase.setTokenSwapThreshold(uint256) (#794-797)
tokenSwapThreshold() should be declared external:
- aBase.tokenSwapThreshold() (#800-802)
name() should be declared external:
- aBase.name() (#805-807)
symbol() should be declared external:
- aBase.symbol() (#810-812)
allowance(address,address) should be declared external:
- aBase.allowance(address,address) (#825-827)
autoLiquidityWallet() should be declared external:
- aBase.autoLiquidityWallet() (#840-842)
totalFeesPooled() should be declared external:
- aBase.totalFeesPooled() (#850-852)
totalBNBLiquidityAddedFromFees() should be declared external:
- aBase.totalBNBLiquidityAddedFromFees() (#855-857)
isSwapEnabled() should be declared external:
- aBase.isSwapEnabled() (#860-862)
isFeeEnabled() should be declared external:
- aBase.isFeeEnabled() (#870-872)
isExcludedFromFees(address) should be declared external:
- aBase.isExcludedFromFees(address) (#880-882)
setExcludedFromFees(address,bool) should be declared external:
- aBase.setExcludedFromFees(address,bool) (#885-887)
bnbRewardClaimed(address) should be declared external:
- a.bnbRewardClaimed(address) (#1341-1343)
bnbRewardClaimedAsSUSD(address) should be declared external:
- a.bnbRewardClaimedAsSUSD(address) (#1346-1348)
totalBNBClaimed() should be declared external:
- a.totalBNBClaimed() (#1351-1353)
totalBNBClaimedAsSUSD() should be declared external:
- a.totalBNBClaimedAsSUSD() (#1356-1358)
setRewardCyclePeriod(uint256) should be declared external:
- a.setRewardCyclePeriod(uint256) (#1366-1369)
nextAvailableClaimDate(address) should be declared external:
- a.nextAvailableClaimDate(address) (#1377-1379)
maxClaimAllowed() should be declared external:
- a.maxClaimAllowed() (#1382-1384)
setMaxClaimAllowed(uint256) should be declared external:
- a.setMaxClaimAllowed(uint256) (#1387-1390)
minRewardBalance() should be declared external:
- a.minRewardBalance() (#1393-1395)
maxGasForAutoClaim() should be declared external:
- a.maxGasForAutoClaim() (#1403-1405)
setMaxGasForAutoClaim(uint256) should be declared external:
- a.setMaxGasForAutoClaim(uint256) (#1408-1410)
isExcludedFromRewards(address) should be declared external:
- a.isExcludedFromRewards(address) (#1423-1425)
setExcludedFromRewards(address,bool) should be declared external:
- a.setExcludedFromRewards(address,bool) (#1429-1432)
globalRewardDampeningPercentage() should be declared external:
- a.globalRewardDampeningPercentage() (#1435-1437)
setGlobalRewardDampeningPercentage(uint256) should be declared external:
- a.setGlobalRewardDampeningPercentage(uint256) (#1440-1443)
approveClaim(address,bool) should be declared external:
- a.approveClaim(address,bool) (#1446-1449)
isRewardAsTokensEnabled() should be declared external:
- a.isRewardAsTokensEnabled() (#1457-1459)
gradualBurnMagnitude() should be declared external:
- a.gradualBurnMagnitude() (#1467-1469)
gradualBurnTimespan() should be declared external:
- a.gradualBurnTimespan() (#1478-1480)
setGradualBurnTimespan(uint256) should be declared external:
- a.setGradualBurnTimespan(uint256) (#1483-1486)
minBnbPoolSizeBeforeBurn() should be declared external:
- a.minBnbPoolSizeBeforeBurn() (#1489-1491)
setMinBnbPoolSizeBeforeBurn(uint256) should be declared external:
- a.setMinBnbPoolSizeBeforeBurn(uint256) (#1494-1497)
claimRewardAsTokensPercentage(address) should be declared external:
- a.claimRewardAsTokensPercentage(address) (#1500-1502)
setClaimRewardAsTokensPercentage(uint256) should be declared external:
- a.setClaimRewardAsTokensPercentage(uint256) (#1505-1508)
mainBnbPoolSize() should be declared external:
- a.mainBnbPoolSize() (#1511-1513)
setMainBnbPoolSize(uint256) should be declared external:
- a.setMainBnbPoolSize(uint256) (#1516-1519)
isInRewardClaimQueue(address) should be declared external:
- a.isInRewardClaimQueue(address) (#1522-1524)
reimburseAfterSUSDClaimFailure() should be declared external:
- a.reimburseAfterSUSDClaimFailure() (#1527-1529)
lastBurnDate() should be declared external:
- a.lastBurnDate() (#1537-1539)
rewardClaimQueueLength() should be declared external:
- a.rewardClaimQueueLength() (#1542-1544)
rewardClaimQueueIndex() should be declared external:
- a.rewardClaimQueueIndex() (#1547-1549)
isWhitelistedExternalProcessor(address) should be declared external:
- a.isWhitelistedExternalProcessor(address) (#1552-1554)
setWhitelistedExternalProcessor(address,bool) should be declared external:
- a.setWhitelistedExternalProcessor(address,bool) (#1557-1560)
setSendWeiGasLimit(uint256) should be declared external:
- a.setSendWeiGasLimit(uint256) (#1562-1564)
setExcludeNonHumansFromRewards(bool) should be declared external:
- a.setExcludeNonHumansFromRewards(bool) (#1566-1568)
Use the external attribute for functions never called from the contract.
Additional information: link
Contract name (BSCHex - P2E Metaverse) contains non-alphanumeric characters.
Not a direct threat, but may indicate unreliable intentions of developer. Non-alphanumeric chars (,.;!#*&") are extremely rare among low risk tokens.
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.
Unable to find website, listings and other project-related information
Young tokens have high risks of scam / price dump / death
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Token is relatively young, but twitter if very old (probably it's fake).
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account