Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
FamilyVerse.addLiquidity(uint256,uint256) (#578-591) sends eth to arbitrary user
Dangerous calls:
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#583-590)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in FamilyVerse._transfer(address,address,uint256) (#474-521):
External calls:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#512)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#583-590)
- (success) = recipient.call{value: amount}() (#108)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#602-608)
- address(marketingWallet).sendValue(marketingAmt) (#570)
- address(developmentWallet).sendValue(developmentAmt) (#574)
- swapAndLiquify(swapTokensAtAmount,taxes) (#513)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#583-590)
- (success) = recipient.call{value: amount}() (#108)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#602-608)
- address(marketingWallet).sendValue(marketingAmt) (#570)
- address(developmentWallet).sendValue(developmentAmt) (#574)
External calls sending eth:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#512)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#583-590)
- (success) = recipient.call{value: amount}() (#108)
- swapAndLiquify(swapTokensAtAmount,taxes) (#513)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#583-590)
- (success) = recipient.call{value: amount}() (#108)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee,isSell) (#520)
- _rOwned[address(this)] += rLiquidity (#375)
- _rOwned[address(this)] += rdevelopment (#395)
- _rOwned[address(this)] += rMarketing (#385)
- _rOwned[sender] = _rOwned[sender] - s.rAmount (#536)
- _rOwned[recipient] = _rOwned[recipient] + s.rTransferAmount (#537)
- _tokenTransfer(from,to,amount,takeFee,isSell) (#520)
- _rTotal -= rbuyback (#364)
- _tokenTransfer(from,to,amount,takeFee,isSell) (#520)
- _tOwned[address(this)] += tMarketing (#383)
- _tOwned[address(this)] += tLiquidity (#373)
- _tOwned[sender] = _tOwned[sender] - tAmount (#530)
- _tOwned[address(this)] += tdevelopment (#393)
- _tOwned[recipient] = _tOwned[recipient] + s.tTransferAmount (#533)
Apply the check-effects-interactions pattern.
Additional information: link
FamilyVerse.rescueAnyBEP20Tokens(address,address,uint256) (#682-684) ignores return value by IERC20(_tokenAddr).transfer(_to,_amount) (#683)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.
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.
FamilyVerse.swapAndLiquify(uint256,FamilyVerse.Taxes) (#550-576) performs a multiplication on the result of a division:
-unitBalance = deltaBalance / (denominator - temp.liquidity) (#560)
-bnbToAddLiquidityWith = unitBalance * temp.liquidity (#561)
FamilyVerse.swapAndLiquify(uint256,FamilyVerse.Taxes) (#550-576) performs a multiplication on the result of a division:
-unitBalance = deltaBalance / (denominator - temp.liquidity) (#560)
-marketingAmt = unitBalance * 2 * temp.marketing (#568)
FamilyVerse.swapAndLiquify(uint256,FamilyVerse.Taxes) (#550-576) performs a multiplication on the result of a division:
-unitBalance = deltaBalance / (denominator - temp.liquidity) (#560)
-developmentAmt = unitBalance * 2 * temp.development (#572)
Consider ordering multiplication before division.
Additional information: link
FamilyVerse.addLiquidity(uint256,uint256) (#578-591) ignores return value by router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#583-590)
Ensure that all the return values of the function calls are used.
Additional information: link
FamilyVerse.allowance(address,address).owner (#254) shadows:
- Ownable.owner() (#55-57) (function)
FamilyVerse._approve(address,address,uint256).owner (#467) shadows:
- Ownable.owner() (#55-57) (function)
Rename the local variables that shadow another component.
Additional information: link
FamilyVerse.updateCooldown(bool,uint256) (#633-636) should emit an event for:
- coolDownTime = time * 1 (#634)
FamilyVerse.updateSwapTokensAtAmount(uint256) (#638-640) should emit an event for:
- swapTokensAtAmount = amount * 10 ** _decimals (#639)
FamilyVerse.updateMaxTxLimit(uint256,uint256) (#661-664) should emit an event for:
- maxBuyLimit = maxBuy * 10 ** decimals() (#662)
- maxSellLimit = maxSell * 10 ** decimals() (#663)
FamilyVerse.updateMaxWalletlimit(uint256) (#666-668) should emit an event for:
- maxWalletLimit = amount * 10 ** decimals() (#667)
Emit an event for critical parameter changes.
Additional information: link
FamilyVerse.constructor(address)._pair (#210-211) lacks a zero-check on :
- pair = _pair (#214)
FamilyVerse.updateMarketingWallet(address).newWallet (#624) lacks a zero-check on :
- marketingWallet = newWallet (#625)
FamilyVerse.updatedevelopmentWallet(address).newWallet (#628) lacks a zero-check on :
- developmentWallet = newWallet (#629)
FamilyVerse.updateRouterAndPair(address,address).newPair (#670) lacks a zero-check on :
- pair = newPair (#672)
Check that the address is not zero.
Additional information: link
Reentrancy in FamilyVerse._transfer(address,address,uint256) (#474-521):
External calls:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#512)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#583-590)
- (success) = recipient.call{value: amount}() (#108)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#602-608)
- address(marketingWallet).sendValue(marketingAmt) (#570)
- address(developmentWallet).sendValue(developmentAmt) (#574)
- swapAndLiquify(swapTokensAtAmount,taxes) (#513)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#583-590)
- (success) = recipient.call{value: amount}() (#108)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#602-608)
- address(marketingWallet).sendValue(marketingAmt) (#570)
- address(developmentWallet).sendValue(developmentAmt) (#574)
External calls sending eth:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#512)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#583-590)
- (success) = recipient.call{value: amount}() (#108)
- swapAndLiquify(swapTokensAtAmount,taxes) (#513)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#583-590)
- (success) = recipient.call{value: amount}() (#108)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee,isSell) (#520)
- totFeesPaid.liquidity += tLiquidity (#369)
- totFeesPaid.marketing += tMarketing (#379)
- totFeesPaid.development += tdevelopment (#389)
- totFeesPaid.buyback += tbuyback (#365)
Reentrancy in FamilyVerse.constructor(address) (#208-231):
External calls:
- _pair = IFactory(_router.factory()).createPair(address(this),_router.WETH()) (#210-211)
State variables written after the call(s):
- excludeFromReward(pair) (#216)
- _excluded.push(account) (#325)
- excludeFromReward(pair) (#216)
- _isExcluded[account] = true (#324)
- _isExcludedFromFee[address(this)] = true (#219)
- _isExcludedFromFee[owner()] = true (#220)
- _isExcludedFromFee[marketingWallet] = true (#221)
- _isExcludedFromFee[developmentWallet] = true (#222)
- _rOwned[owner()] = _rTotal (#218)
- excludeFromReward(pair) (#216)
- _tOwned[account] = tokenFromReflection(_rOwned[account]) (#322)
- allowedTransfer[address(this)] = true (#224)
- allowedTransfer[owner()] = true (#225)
- allowedTransfer[pair] = true (#226)
- allowedTransfer[marketingWallet] = true (#227)
- allowedTransfer[developmentWallet] = true (#228)
- pair = _pair (#214)
- router = _router (#213)
Reentrancy in FamilyVerse.swapAndLiquify(uint256,FamilyVerse.Taxes) (#550-576):
External calls:
- swapTokensForBNB(toSwap) (#557)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#602-608)
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#565)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#583-590)
External calls sending eth:
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#565)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#583-590)
State variables written after the call(s):
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#565)
- _allowances[owner][spender] = amount (#470)
Reentrancy in FamilyVerse.transferFrom(address,address,uint256) (#263-271):
External calls:
- _transfer(sender,recipient,amount) (#264)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#583-590)
- (success) = recipient.call{value: amount}() (#108)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#602-608)
- address(marketingWallet).sendValue(marketingAmt) (#570)
- address(developmentWallet).sendValue(developmentAmt) (#574)
External calls sending eth:
- _transfer(sender,recipient,amount) (#264)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#583-590)
- (success) = recipient.call{value: amount}() (#108)
State variables written after the call(s):
- _approve(sender,_msgSender(),currentAllowance - amount) (#268)
- _allowances[owner][spender] = amount (#470)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in FamilyVerse._transfer(address,address,uint256) (#474-521):
External calls:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#512)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#583-590)
- (success) = recipient.call{value: amount}() (#108)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#602-608)
- address(marketingWallet).sendValue(marketingAmt) (#570)
- address(developmentWallet).sendValue(developmentAmt) (#574)
- swapAndLiquify(swapTokensAtAmount,taxes) (#513)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#583-590)
- (success) = recipient.call{value: amount}() (#108)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#602-608)
- address(marketingWallet).sendValue(marketingAmt) (#570)
- address(developmentWallet).sendValue(developmentAmt) (#574)
External calls sending eth:
- swapAndLiquify(swapTokensAtAmount,sellTaxes) (#512)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#583-590)
- (success) = recipient.call{value: amount}() (#108)
- swapAndLiquify(swapTokensAtAmount,taxes) (#513)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#583-590)
- (success) = recipient.call{value: amount}() (#108)
Event emitted after the call(s):
- Transfer(sender,address(this),s.tLiquidity + s.tMarketing + s.tdevelopment) (#542)
- _tokenTransfer(from,to,amount,takeFee,isSell) (#520)
- Transfer(sender,recipient,s.tTransferAmount) (#546)
- _tokenTransfer(from,to,amount,takeFee,isSell) (#520)
Reentrancy in FamilyVerse.constructor(address) (#208-231):
External calls:
- _pair = IFactory(_router.factory()).createPair(address(this),_router.WETH()) (#210-211)
Event emitted after the call(s):
- Transfer(address(0),owner(),_tTotal) (#230)
Reentrancy in FamilyVerse.swapAndLiquify(uint256,FamilyVerse.Taxes) (#550-576):
External calls:
- swapTokensForBNB(toSwap) (#557)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#602-608)
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#565)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#583-590)
External calls sending eth:
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#565)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#583-590)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#471)
- addLiquidity(tokensToAddLiquidityWith,bnbToAddLiquidityWith) (#565)
Reentrancy in FamilyVerse.transferFrom(address,address,uint256) (#263-271):
External calls:
- _transfer(sender,recipient,amount) (#264)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#583-590)
- (success) = recipient.call{value: amount}() (#108)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#602-608)
- address(marketingWallet).sendValue(marketingAmt) (#570)
- address(developmentWallet).sendValue(developmentAmt) (#574)
External calls sending eth:
- _transfer(sender,recipient,amount) (#264)
- router.addLiquidityETH{value: bnbAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#583-590)
- (success) = recipient.call{value: amount}() (#108)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#471)
- _approve(sender,_msgSender(),currentAllowance - amount) (#268)
Apply the check-effects-interactions pattern.
Additional information: link
FamilyVerse._transfer(address,address,uint256) (#474-521) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(timePassed >= coolDownTime,Cooldown enabled) (#501)
Avoid relying on block.timestamp.
Additional information: link
FamilyVerse.setTradingStatus(bool) (#307-311) compares to a boolean constant:
-state == true && genesis_block == 1 (#310)
Remove the equality to the boolean constant.
Additional information: link
FamilyVerse.includeInReward(address) (#328-339) has costly operations inside a loop:
- _excluded.pop() (#335)
FamilyVerse._reflectbuyback(uint256,uint256) (#363-366) has costly operations inside a loop:
- _rTotal -= rbuyback (#364)
Use a local variable to hold the loop computation result.
Additional information: link
Context._msgData() (#40-43) is never used and should be removed
Remove unused functions.
Additional information: link
FamilyVerse._tTotal (#150) is set pre-construction with a non-constant function or state variable:
- initialsupply * 10 ** _decimals
FamilyVerse._rTotal (#151) 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.11 (#11) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
solc-0.8.11 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) (#105-110):
- (success) = recipient.call{value: amount}() (#108)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Function IRouter.WETH() (#86) is not in mixedCase
Struct FamilyVerse.valuesFromGetValues (#185-197) is not in CapWords
Parameter FamilyVerse.setTaxes(uint256,uint256,uint256,uint256)._buyback (#353) is not in mixedCase
Parameter FamilyVerse.setTaxes(uint256,uint256,uint256,uint256)._marketing (#353) is not in mixedCase
Parameter FamilyVerse.setTaxes(uint256,uint256,uint256,uint256)._liquidity (#353) is not in mixedCase
Parameter FamilyVerse.setTaxes(uint256,uint256,uint256,uint256)._development (#353) is not in mixedCase
Parameter FamilyVerse.setSellTaxes(uint256,uint256,uint256,uint256)._buyback (#358) is not in mixedCase
Parameter FamilyVerse.setSellTaxes(uint256,uint256,uint256,uint256)._marketing (#358) is not in mixedCase
Parameter FamilyVerse.setSellTaxes(uint256,uint256,uint256,uint256)._liquidity (#358) is not in mixedCase
Parameter FamilyVerse.setSellTaxes(uint256,uint256,uint256,uint256)._development (#358) is not in mixedCase
Parameter FamilyVerse.updateSwapEnabled(bool)._enabled (#642) is not in mixedCase
Parameter FamilyVerse.rescueAnyBEP20Tokens(address,address,uint256)._tokenAddr (#682) is not in mixedCase
Parameter FamilyVerse.rescueAnyBEP20Tokens(address,address,uint256)._to (#682) is not in mixedCase
Parameter FamilyVerse.rescueAnyBEP20Tokens(address,address,uint256)._amount (#682) is not in mixedCase
Constant FamilyVerse._decimals (#146) is not in UPPER_CASE_WITH_UNDERSCORES
Variable FamilyVerse.genesis_block (#158) is not in mixedCase
Constant FamilyVerse._name (#163) is not in UPPER_CASE_WITH_UNDERSCORES
Constant FamilyVerse._symbol (#164) is not in UPPER_CASE_WITH_UNDERSCORES
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#41)" inContext (#35-44)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Variable FamilyVerse.setTaxes(uint256,uint256,uint256,uint256)._development (#353) is too similar to FamilyVerse._getRValues2(FamilyVerse.valuesFromGetValues,bool,uint256).rdevelopment (#440)
Variable FamilyVerse.setSellTaxes(uint256,uint256,uint256,uint256)._development (#358) is too similar to FamilyVerse._takedevelopment(uint256,uint256).rdevelopment (#388)
Variable FamilyVerse.setSellTaxes(uint256,uint256,uint256,uint256)._development (#358) is too similar to FamilyVerse._getRValues2(FamilyVerse.valuesFromGetValues,bool,uint256).rdevelopment (#440)
Variable FamilyVerse.setTaxes(uint256,uint256,uint256,uint256)._development (#353) is too similar to FamilyVerse._takedevelopment(uint256,uint256).rdevelopment (#388)
Variable FamilyVerse.setTaxes(uint256,uint256,uint256,uint256)._development (#353) is too similar to FamilyVerse._getRValues1(FamilyVerse.valuesFromGetValues,uint256,bool,uint256).rdevelopment (#435)
Variable FamilyVerse.setSellTaxes(uint256,uint256,uint256,uint256)._development (#358) is too similar to FamilyVerse._takedevelopment(uint256,uint256).tdevelopment (#388)
Variable FamilyVerse.setTaxes(uint256,uint256,uint256,uint256)._development (#353) is too similar to FamilyVerse._takedevelopment(uint256,uint256).tdevelopment (#388)
Variable FamilyVerse.setSellTaxes(uint256,uint256,uint256,uint256)._development (#358) is too similar to FamilyVerse._getRValues1(FamilyVerse.valuesFromGetValues,uint256,bool,uint256).rdevelopment (#435)
Variable FamilyVerse._getRValues2(FamilyVerse.valuesFromGetValues,bool,uint256).rdevelopment (#440) is too similar to FamilyVerse._takedevelopment(uint256,uint256).tdevelopment (#388)
Variable FamilyVerse._takedevelopment(uint256,uint256).rdevelopment (#388) is too similar to FamilyVerse._takedevelopment(uint256,uint256).tdevelopment (#388)
Variable FamilyVerse._getRValues1(FamilyVerse.valuesFromGetValues,uint256,bool,uint256).rdevelopment (#435) is too similar to FamilyVerse._takedevelopment(uint256,uint256).tdevelopment (#388)
Prevent variables from having similar names.
Additional information: link
FamilyVerse.slitherConstructorVariables() (#114-689) uses literals with too many digits:
- initialsupply = 1000000000 (#149)
FamilyVerse.slitherConstructorVariables() (#114-689) uses literals with too many digits:
- swapTokensAtAmount = 1000000000 * 10 ** 9 (#153)
FamilyVerse.slitherConstructorVariables() (#114-689) uses literals with too many digits:
- maxBuyLimit = 1000000000 * 10 ** 9 (#154)
FamilyVerse.slitherConstructorVariables() (#114-689) uses literals with too many digits:
- maxSellLimit = 1000000000 * 10 ** 9 (#155)
FamilyVerse.slitherConstructorVariables() (#114-689) uses literals with too many digits:
- maxWalletLimit = 1000000000 * 10 ** 9 (#156)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
FamilyVerse.initialsupply (#149) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#64-66)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#68-71)
name() should be declared external:
- FamilyVerse.name() (#234-236)
symbol() should be declared external:
- FamilyVerse.symbol() (#237-239)
totalSupply() should be declared external:
- FamilyVerse.totalSupply() (#245-247)
allowance(address,address) should be declared external:
- FamilyVerse.allowance(address,address) (#254-256)
approve(address,uint256) should be declared external:
- FamilyVerse.approve(address,uint256) (#258-261)
transferFrom(address,address,uint256) should be declared external:
- FamilyVerse.transferFrom(address,address,uint256) (#263-271)
increaseAllowance(address,uint256) should be declared external:
- FamilyVerse.increaseAllowance(address,uint256) (#273-276)
decreaseAllowance(address,uint256) should be declared external:
- FamilyVerse.decreaseAllowance(address,uint256) (#278-284)
transfer(address,uint256) should be declared external:
- FamilyVerse.transfer(address,uint256) (#286-290)
isExcludedFromReward(address) should be declared external:
- FamilyVerse.isExcludedFromReward(address) (#292-294)
reflectionFromToken(uint256,bool) should be declared external:
- FamilyVerse.reflectionFromToken(uint256,bool) (#296-305)
excludeFromFee(address) should be declared external:
- FamilyVerse.excludeFromFee(address) (#341-343)
includeInFee(address) should be declared external:
- FamilyVerse.includeInFee(address) (#345-347)
isExcludedFromFee(address) should be declared external:
- FamilyVerse.isExcludedFromFee(address) (#349-351)
setTaxes(uint256,uint256,uint256,uint256) should be declared external:
- FamilyVerse.setTaxes(uint256,uint256,uint256,uint256) (#353-356)
setSellTaxes(uint256,uint256,uint256,uint256) should be declared external:
- FamilyVerse.setSellTaxes(uint256,uint256,uint256,uint256) (#358-361)
rescueAnyBEP20Tokens(address,address,uint256) should be declared external:
- FamilyVerse.rescueAnyBEP20Tokens(address,address,uint256) (#682-684)
Use the external attribute for functions never called from the contract.
Additional information: link
Contract has 12% buy tax and 99% sell tax.
Taxes are extremely high (over 30%)
Additional information: link
Average 30d PancakeSwap liquidity is less than $100. Token is either dead or inactive.
Average 30d PancakeSwap volume is less than $100. Token is either dead or inactive.
Average 30d number of PancakeSwap swaps is less than 1. Token is either dead or inactive.
Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.
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 website, listings and other project-related information
Token is marked as scam (rug pull, honeypot, phishing, etc.)
Additional information: link
Young tokens have high risks of scam / price dump / death
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Unable to find Telegram and Twitter accounts