SAVEBEE will soon launch a game platform – Play to earn – which, in addition to being fun, will help to raise funds and promote more gains for SAVEBEE investors.
SAVEBEE Farm is an online game focused on blockchain and bee preservation. The objective of the game is to build a ""farm"" of bees where players can over time withdraw winnings. Part of the proceeds from the sale and availability of HONEYCOMBS (game currency) will be donated to bee preservation projects.
Initially the player makes an investment in SAVEBEE to participate in the game, with this investment he receives a beehive for his farm and HONEYCOMBS (game currency) to buy the game resources. With this investment the player starts his farm which can be reinvested to increase his production and in the future converted to SAVEBEE. The more you play, the more you earn.
Over time the game will receive updates with many new features such as NFT bee breeding with special effects and battles to defend the hives
HONEYCOMBS can be traded between players, or can be used to exchange for more SAVEBEE.
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
Reentrancy in HONEYCOMB._transfer(address,address,uint256) (#1002-1022):
External calls:
- swapAndLiquify(numTokensToSwapLiquidity) (#1014)
- PancakeSwapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1164-1171)
- PancakeSwapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1153-1159)
- swapAndSendToMarketing(numTokensToSwap) (#1018)
- PancakeSwapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,marketingAddress,block.timestamp) (#1133-1139)
External calls sending eth:
- swapAndLiquify(numTokensToSwapLiquidity) (#1014)
- PancakeSwapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1164-1171)
State variables written after the call(s):
- swapAndSendToMarketing(numTokensToSwap) (#1018)
- _allowances[owner][spender] = amount (#998)
- _tokenTransfer(from,to,amount,! (_isExcludedFromFee[from] || _isExcludedFromFee[to])) (#1021)
- _rOwned[address(this)] = _rOwned[address(this)] + rMarketing (#972)
- _rOwned[address(this)] = _rOwned[address(this)] + rLiquidity (#983)
- _rOwned[sender] = _rOwned[sender] - s.rAmount (#1067)
- _rOwned[recipient] = _rOwned[recipient] + s.rTransferAmount (#1068)
- _tokenTransfer(from,to,amount,! (_isExcludedFromFee[from] || _isExcludedFromFee[to])) (#1021)
- _rTotal = _rTotal - rRfi (#965)
- _rTotal = _rTotal - rBurn (#992)
- _tokenTransfer(from,to,amount,! (_isExcludedFromFee[from] || _isExcludedFromFee[to])) (#1021)
- _tOwned[address(this)] = _tOwned[address(this)] + tLiquidity (#985)
- _tOwned[address(this)] = _tOwned[address(this)] + tMarketing (#975)
- _tOwned[sender] = _tOwned[sender] - tAmount (#1059)
- _tOwned[recipient] = _tOwned[recipient] + s.tTransferAmount (#1061)
- _tOwned[sender] = _tOwned[sender] - tAmount (#1063)
- _tOwned[recipient] = _tOwned[recipient] + s.tTransferAmount (#1064)
- _tokenTransfer(from,to,amount,! (_isExcludedFromFee[from] || _isExcludedFromFee[to])) (#1021)
- _tTotal = _tTotal - tBurn (#991)
- swapAndSendToMarketing(numTokensToSwap) (#1018)
- contractBalance.marketing_balance -= tokenAmount (#1132)
- _tokenTransfer(from,to,amount,! (_isExcludedFromFee[from] || _isExcludedFromFee[to])) (#1021)
- contractBalance.lp_balance += tLiquidity (#980)
- contractBalance.marketing_balance += tMarketing (#970)
- swapAndSendToMarketing(numTokensToSwap) (#1018)
- inSwapAndLiquify = true (#630)
- inSwapAndLiquify = false (#632)
Reentrancy in HONEYCOMB.transferFrom(address,address,uint256) (#817-821):
External calls:
- _transfer(sender,recipient,amount) (#818)
- PancakeSwapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1164-1171)
- PancakeSwapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1153-1159)
- PancakeSwapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,marketingAddress,block.timestamp) (#1133-1139)
External calls sending eth:
- _transfer(sender,recipient,amount) (#818)
- PancakeSwapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1164-1171)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#819)
- _allowances[owner][spender] = amount (#998)
Apply the check-effects-interactions pattern.
Additional information: link
HONEYCOMB.lockToBuyOrSellForTime(uint256,uint256) (#710-719) uses a dangerous strict equality:
- lastBuyOrSellTime == 0 (#712)
Don't use strict equality to determine if an account has enough Ether or tokens.
Additional information: link
HONEYCOMB.lockToBuyOrSellForTime(uint256,uint256) (#710-719) uses timestamp for comparisons
Dangerous comparisons:
- lastBuyOrSellTime == 0 (#712)
- crashTime >= lockTime (#716)
Avoid relying on block.timestamp.
Additional information: link
Address.isContract(address) (#135-141) uses assembly
- INLINE ASM (#137-139)
Address._verifyCallResult(bool,bytes,string) (#213-232) uses assembly
- INLINE ASM (#224-227)
EnumerableSet.values(EnumerableSet.AddressSet) (#499-508) uses assembly
- INLINE ASM (#503-505)
Do not use evm assembly.
Additional information: link
HONEYCOMB.includeInReward(address) (#876-887) has costly operations inside a loop:
- _excluded.pop() (#883)
Use a local variable to hold the loop computation result.
Additional information: link
Address._verifyCallResult(bool,bytes,string) (#213-232) is never used and should be removed
Address.functionCall(address,bytes) (#150-152) is never used and should be removed
Address.functionCall(address,bytes,string) (#154-160) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#162-168) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#170-181) is never used and should be removed
Address.functionDelegateCall(address,bytes) (#198-200) is never used and should be removed
Address.functionDelegateCall(address,bytes,string) (#202-211) is never used and should be removed
Address.functionStaticCall(address,bytes) (#183-185) is never used and should be removed
Address.functionStaticCall(address,bytes,string) (#187-196) is never used and should be removed
Address.isContract(address) (#135-141) is never used and should be removed
Address.sendValue(address,uint256) (#143-148) is never used and should be removed
Context._msgData() (#127-130) is never used and should be removed
EnumerableSet._at(EnumerableSet.Set,uint256) (#467-469) is never used and should be removed
EnumerableSet._length(EnumerableSet.Set) (#463-465) is never used and should be removed
EnumerableSet._values(EnumerableSet.Set) (#471-473) is never used and should be removed
EnumerableSet.at(EnumerableSet.AddressSet,uint256) (#495-497) is never used and should be removed
EnumerableSet.contains(EnumerableSet.AddressSet,address) (#487-489) is never used and should be removed
EnumerableSet.length(EnumerableSet.AddressSet) (#491-493) is never used and should be removed
EnumerableSet.values(EnumerableSet.AddressSet) (#499-508) is never used and should be removed
SafeMath.add(uint256,uint256) (#68-70) is never used and should be removed
SafeMath.div(uint256,uint256) (#80-82) is never used and should be removed
SafeMath.div(uint256,uint256,string) (#99-108) is never used and should be removed
SafeMath.mod(uint256,uint256) (#84-86) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#110-119) is never used and should be removed
SafeMath.mul(uint256,uint256) (#76-78) is never used and should be removed
SafeMath.sub(uint256,uint256) (#72-74) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (#30-36) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (#54-59) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (#61-66) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (#45-52) is never used and should be removed
SafeMath.trySub(uint256,uint256) (#38-43) is never used and should be removed
Remove unused functions.
Additional information: link
HONEYCOMB._rTotal (#531) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
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.8.0 (#3) allows old versions
solc-0.8.9 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 Address.sendValue(address,uint256) (#143-148):
- (success) = recipient.call{value: amount}() (#146)
Low level call in Address.functionCallWithValue(address,bytes,uint256,string) (#170-181):
- (success,returndata) = target.call{value: value}(data) (#179)
Low level call in Address.functionStaticCall(address,bytes,string) (#187-196):
- (success,returndata) = target.staticcall(data) (#194)
Low level call in Address.functionDelegateCall(address,bytes,string) (#202-211):
- (success,returndata) = target.delegatecall(data) (#209)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
HONEYCOMB.excludeFromAll(address) (#863-874) ignores return value by tokenHoldersEnumSet.remove(account) (#873)
HONEYCOMB._tokenTransfer(address,address,uint256,bool) (#1025-1087) ignores return value by tokenHoldersEnumSet.addic(recipient) (#1082)
HONEYCOMB._tokenTransfer(address,address,uint256,bool) (#1025-1087) ignores return value by tokenHoldersEnumSet.remove(sender) (#1085)
HONEYCOMB.addLiquidity(uint256,uint256) (#1162-1173) ignores return value by PancakeSwapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1164-1171)
Ensure that all the return values of the function calls are used.
Additional information: link
HONEYCOMB.allowance(address,address).owner (#808) shadows:
- Ownable.owner() (#246-248) (function)
HONEYCOMB._approve(address,address,uint256).owner (#995) shadows:
- Ownable.owner() (#246-248) (function)
Rename the local variables that shadow another component.
Additional information: link
HONEYCOMB.setBuyTime(uint256) (#721-723) should emit an event for:
- buyTime = timeBetweenPurchases (#722)
HONEYCOMB.setSellTime(uint256) (#725-727) should emit an event for:
- sellTime = timeBetween (#726)
HONEYCOMB.setTokenToSwap(uint256) (#729-731) should emit an event for:
- numTokensToSwap = top * 10 ** _decimals (#730)
HONEYCOMB.setTokenToSwapLiquidity(uint256) (#733-735) should emit an event for:
- numTokensToSwapLiquidity = top * 10 ** _decimals (#734)
HONEYCOMB.setMaxInPercent(uint256) (#796-798) should emit an event for:
- _maxInAmount = maxInPercent * 10 ** _decimals (#797)
HONEYCOMB.setMaxOutPercent(uint256) (#800-802) should emit an event for:
- _maxOutAmount = maxOutPercent * 10 ** _decimals (#801)
HONEYCOMB.setMaxWallet(uint256) (#804-806) should emit an event for:
- _maxWallet = maxWalletPercent * 10 ** _decimals (#805)
Emit an event for critical parameter changes.
Additional information: link
HONEYCOMB.setMarketingAddress(address)._marketingAddress (#692) lacks a zero-check on :
- marketingAddress = _marketingAddress (#693)
HONEYCOMB.setWalletGameAddress(address)._walletGameAddress (#701) lacks a zero-check on :
- walletGameAddress = _walletGameAddress (#702)
Check that the address is not zero.
Additional information: link
Reentrancy in HONEYCOMB._transfer(address,address,uint256) (#1002-1022):
External calls:
- swapAndLiquify(numTokensToSwapLiquidity) (#1014)
- PancakeSwapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1164-1171)
- PancakeSwapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1153-1159)
- swapAndSendToMarketing(numTokensToSwap) (#1018)
- PancakeSwapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,marketingAddress,block.timestamp) (#1133-1139)
External calls sending eth:
- swapAndLiquify(numTokensToSwapLiquidity) (#1014)
- PancakeSwapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1164-1171)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,! (_isExcludedFromFee[from] || _isExcludedFromFee[to])) (#1021)
- appliedFees = buyRates (#1035)
- appliedFees = sellRates (#1046)
- appliedFees.liquidity = appliedFees.liquidity (#1047)
- appliedFees.liquidity = appliedFees.liquidity + antiDmpFee (#1050)
- _tokenTransfer(from,to,amount,! (_isExcludedFromFee[from] || _isExcludedFromFee[to])) (#1021)
- totFeesPaid.burn += tBurn (#989)
- totFeesPaid.liquidity += tLiquidity (#981)
- totFeesPaid.rfi += tRfi (#966)
- totFeesPaid.marketing += tMarketing (#971)
- _tokenTransfer(from,to,amount,! (_isExcludedFromFee[from] || _isExcludedFromFee[to])) (#1021)
- walletToPurchaseTime[recipient] = block.timestamp (#1033)
- _tokenTransfer(from,to,amount,! (_isExcludedFromFee[from] || _isExcludedFromFee[to])) (#1021)
- walletToSellime[sender] = block.timestamp (#1042)
Reentrancy in HONEYCOMB.constructor() (#635-668):
External calls:
- pancakeswapV2Pair = IUniswapV2Factory(_PancakeSwapV2Router.factory()).createPair(address(this),_PancakeSwapV2Router.WETH()) (#640-641)
State variables written after the call(s):
- PancakeSwapV2Router = _PancakeSwapV2Router (#643)
- _excluded.push(address(this)) (#662)
- _excluded.push(pancakeswapV2Pair) (#665)
- _isExcluded[address(this)] = true (#661)
- _isExcluded[pancakeswapV2Pair] = true (#664)
- _isExcludedFromFee[owner()] = true (#649)
- _isExcludedFromFee[address(this)] = true (#650)
- _isExcludedFromFee[marketingAddress] = true (#651)
- _isExcludedFromFee[walletGameAddress] = true (#652)
- _isExcludedFromFee[0x000000000000000000000000000000000000dEaD] = true (#653)
- antidmp_measures[0] = antidmp(tkFee1 * 10 ** _decimals,txFee1) (#655)
- antidmp_measures[1] = antidmp(tkFee2 * 10 ** _decimals,txFee2) (#656)
- antidmp_measures[2] = antidmp(tkFee3 * 10 ** _decimals,txFee3) (#657)
- marketingAddress = address(0xAdcddde4D6307A13946d3c3bE1B2Ed0eE2323f0a) (#645)
- walletGameAddress = address(0xc3588F0E60B7DCa8C1B6b3E5B833305153fD7F4a) (#647)
Reentrancy in HONEYCOMB.swapAndLiquify(uint256) (#1105-1121):
External calls:
- swapTokensForBNB(toSwap) (#1113)
- PancakeSwapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1153-1159)
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#1117)
- PancakeSwapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1164-1171)
External calls sending eth:
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#1117)
- PancakeSwapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1164-1171)
State variables written after the call(s):
- contractBalance.lp_balance -= tokensSwapped (#1119)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in HONEYCOMB._transfer(address,address,uint256) (#1002-1022):
External calls:
- swapAndLiquify(numTokensToSwapLiquidity) (#1014)
- PancakeSwapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1164-1171)
- PancakeSwapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1153-1159)
- swapAndSendToMarketing(numTokensToSwap) (#1018)
- PancakeSwapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,marketingAddress,block.timestamp) (#1133-1139)
External calls sending eth:
- swapAndLiquify(numTokensToSwapLiquidity) (#1014)
- PancakeSwapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1164-1171)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#999)
- swapAndSendToMarketing(numTokensToSwap) (#1018)
- Transfer(sender,address(this),s.tMarketing + s.tLiquidity) (#1077)
- _tokenTransfer(from,to,amount,! (_isExcludedFromFee[from] || _isExcludedFromFee[to])) (#1021)
- Transfer(sender,recipient,s.tTransferAmount) (#1081)
- _tokenTransfer(from,to,amount,! (_isExcludedFromFee[from] || _isExcludedFromFee[to])) (#1021)
Reentrancy in HONEYCOMB.addLiquidity(uint256,uint256) (#1162-1173):
External calls:
- PancakeSwapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1164-1171)
Event emitted after the call(s):
- LiquidityAdded(tokenAmount,bnbAmount) (#1172)
Reentrancy in HONEYCOMB.constructor() (#635-668):
External calls:
- pancakeswapV2Pair = IUniswapV2Factory(_PancakeSwapV2Router.factory()).createPair(address(this),_PancakeSwapV2Router.WETH()) (#640-641)
Event emitted after the call(s):
- Transfer(address(0),owner(),_tTotal) (#667)
Reentrancy in HONEYCOMB.swapAndLiquify(uint256) (#1105-1121):
External calls:
- swapTokensForBNB(toSwap) (#1113)
- PancakeSwapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1153-1159)
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#1117)
- PancakeSwapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1164-1171)
External calls sending eth:
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#1117)
- PancakeSwapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1164-1171)
Event emitted after the call(s):
- LiquidityAdded(tokenAmount,bnbAmount) (#1172)
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#1117)
Reentrancy in HONEYCOMB.transferFrom(address,address,uint256) (#817-821):
External calls:
- _transfer(sender,recipient,amount) (#818)
- PancakeSwapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1164-1171)
- PancakeSwapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1153-1159)
- PancakeSwapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,marketingAddress,block.timestamp) (#1133-1139)
External calls sending eth:
- _transfer(sender,recipient,amount) (#818)
- PancakeSwapV2Router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1164-1171)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#999)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#819)
Apply the check-effects-interactions pattern.
Additional information: link
Function IUniswapV2Router01.WETH() (#269) is not in mixedCase
Struct HONEYCOMB.feeRatesStruct (#562-567) is not in CapWords
Struct HONEYCOMB.balances (#569-572) is not in CapWords
Struct HONEYCOMB.valuesFromGetValues (#594-606) is not in CapWords
Struct HONEYCOMB.antidmp (#618-621) is not in CapWords
Parameter HONEYCOMB.setMarketingAddress(address)._marketingAddress (#692) is not in mixedCase
Parameter HONEYCOMB.setWalletGameAddress(address)._walletGameAddress (#701) is not in mixedCase
Function HONEYCOMB.TrandingOn(bool) (#788-790) is not in mixedCase
Parameter HONEYCOMB.TrandingOn(bool)._enable (#788) is not in mixedCase
Parameter HONEYCOMB.settransform(bool)._enable (#792) is not in mixedCase
Parameter HONEYCOMB.setSwapAndLiquifyEnabled(bool)._enabled (#901) is not in mixedCase
Constant HONEYCOMB._decimals (#527) is not in UPPER_CASE_WITH_UNDERSCORES
Variable HONEYCOMB._maxInAmount (#532) is not in mixedCase
Variable HONEYCOMB._maxOutAmount (#534) is not in mixedCase
Variable HONEYCOMB._maxWallet (#535) is not in mixedCase
Constant HONEYCOMB._name (#551) is not in UPPER_CASE_WITH_UNDERSCORES
Constant HONEYCOMB._symbol (#552) is not in UPPER_CASE_WITH_UNDERSCORES
Variable HONEYCOMB.PancakeSwapV2Router (#608) is not in mixedCase
Variable HONEYCOMB.Trading (#613) is not in mixedCase
Variable HONEYCOMB.antidmp_measures (#623) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#128)" inContext (#122-131)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#274) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#275)
Variable HONEYCOMB._tokenTransfer(address,address,uint256,bool).blockedTimeLimitB (#1031) is too similar to HONEYCOMB._tokenTransfer(address,address,uint256,bool).blockedTimeLimitS (#1040)
Prevent variables from having similar names.
Additional information: link
HONEYCOMB.constructor() (#635-668) uses literals with too many digits:
- _isExcludedFromFee[0x000000000000000000000000000000000000dEaD] = true (#653)
HONEYCOMB.slitherConstructorVariables() (#511-1181) uses literals with too many digits:
- _tTotal = 100000000 * 10 ** _decimals (#530)
HONEYCOMB.slitherConstructorVariables() (#511-1181) uses literals with too many digits:
- _maxInAmount = 500000 * 10 ** _decimals (#532)
HONEYCOMB.slitherConstructorVariables() (#511-1181) uses literals with too many digits:
- _maxWallet = 500000 * 10 ** _decimals (#535)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#255-258)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#260-264)
setBuyRates(uint256,uint256,uint256,uint256) should be declared external:
- HONEYCOMB.setBuyRates(uint256,uint256,uint256,uint256) (#678-683)
setSellRates(uint256,uint256,uint256,uint256) should be declared external:
- HONEYCOMB.setSellRates(uint256,uint256,uint256,uint256) (#685-690)
setMarketingAddress(address) should be declared external:
- HONEYCOMB.setMarketingAddress(address) (#692-694)
getMarketingAddress() should be declared external:
- HONEYCOMB.getMarketingAddress() (#696-698)
setWalletGameAddress(address) should be declared external:
- HONEYCOMB.setWalletGameAddress(address) (#701-704)
getWalletGameAddress() should be declared external:
- HONEYCOMB.getWalletGameAddress() (#705-707)
setBuyTime(uint256) should be declared external:
- HONEYCOMB.setBuyTime(uint256) (#721-723)
setSellTime(uint256) should be declared external:
- HONEYCOMB.setSellTime(uint256) (#725-727)
setTokenToSwap(uint256) should be declared external:
- HONEYCOMB.setTokenToSwap(uint256) (#729-731)
setTokenToSwapLiquidity(uint256) should be declared external:
- HONEYCOMB.setTokenToSwapLiquidity(uint256) (#733-735)
setTkFee1(uint256) should be declared external:
- HONEYCOMB.setTkFee1(uint256) (#737-739)
setTkFee2(uint256) should be declared external:
- HONEYCOMB.setTkFee2(uint256) (#741-743)
setTkFee3(uint256) should be declared external:
- HONEYCOMB.setTkFee3(uint256) (#745-747)
setTxFee1(uint256) should be declared external:
- HONEYCOMB.setTxFee1(uint256) (#749-751)
setTxFee2(uint256) should be declared external:
- HONEYCOMB.setTxFee2(uint256) (#753-755)
setTxFee3(uint256) should be declared external:
- HONEYCOMB.setTxFee3(uint256) (#757-759)
name() should be declared external:
- HONEYCOMB.name() (#762-764)
symbol() should be declared external:
- HONEYCOMB.symbol() (#766-768)
decimals() should be declared external:
- HONEYCOMB.decimals() (#770-772)
totalSupply() should be declared external:
- HONEYCOMB.totalSupply() (#774-776)
transfer(address,uint256) should be declared external:
- HONEYCOMB.transfer(address,uint256) (#783-786)
TrandingOn(bool) should be declared external:
- HONEYCOMB.TrandingOn(bool) (#788-790)
settransform(bool) should be declared external:
- HONEYCOMB.settransform(bool) (#792-794)
setMaxInPercent(uint256) should be declared external:
- HONEYCOMB.setMaxInPercent(uint256) (#796-798)
setMaxOutPercent(uint256) should be declared external:
- HONEYCOMB.setMaxOutPercent(uint256) (#800-802)
setMaxWallet(uint256) should be declared external:
- HONEYCOMB.setMaxWallet(uint256) (#804-806)
approve(address,uint256) should be declared external:
- HONEYCOMB.approve(address,uint256) (#812-815)
transferFrom(address,address,uint256) should be declared external:
- HONEYCOMB.transferFrom(address,address,uint256) (#817-821)
increaseAllowance(address,uint256) should be declared external:
- HONEYCOMB.increaseAllowance(address,uint256) (#823-826)
decreaseAllowance(address,uint256) should be declared external:
- HONEYCOMB.decreaseAllowance(address,uint256) (#828-831)
isExcludedFromReward(address) should be declared external:
- HONEYCOMB.isExcludedFromReward(address) (#833-835)
reflectionFromToken(uint256,bool) should be declared external:
- HONEYCOMB.reflectionFromToken(uint256,bool) (#837-846)
excludeFromReward(address) should be declared external:
- HONEYCOMB.excludeFromReward(address) (#854-861)
excludeFromAll(address) should be declared external:
- HONEYCOMB.excludeFromAll(address) (#863-874)
excludeFromFee(address) should be declared external:
- HONEYCOMB.excludeFromFee(address) (#889-891)
includeInFee(address) should be declared external:
- HONEYCOMB.includeInFee(address) (#893-895)
isExcludedFromFee(address) should be declared external:
- HONEYCOMB.isExcludedFromFee(address) (#897-899)
setSwapAndLiquifyEnabled(bool) should be declared external:
- HONEYCOMB.setSwapAndLiquifyEnabled(bool) (#901-904)
withdraw() should be declared external:
- HONEYCOMB.withdraw() (#1175-1178)
Use the external attribute for functions never called from the contract.
Additional information: link
Average 30d PancakeSwap volume is low.
Number of Binance Smart Chain (BSC) token holders is low.
Average PancakeSwap trading volume, liqudity, number of swaps are low. Token seems to be inactive.
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 number of swaps.
Unable to crawl data from the website
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 verify token contract address on the website
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
Young tokens have high risks of scam / 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 relatively low CoinGecko rank
Token has relatively low CoinMarketCap rank
Telegram account link seems to be invalid
Twitter account link seems to be invalid
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account