Banana xAPE is a fully decentralized token owned and driven by the community. xAPE was developed to provide succor to all who lost funds in UST & LUNA death spiral event. Thereby being a beacon of support to LUNA & UST victims, xAPE is owned, controlled & built on by the community
xAPE.swapAndLiquify(uint256) (#1013-1042) sends eth to arbitrary user
Dangerous calls:
- marketingWallet.transfer(address(this).balance) (#1039)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in xAPE._transfer(address,address,uint256) (#992-1011):
External calls:
- swapAndLiquify(contractTokenBalance) (#1007)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1069-1076)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1056-1062)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1007)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1069-1076)
- marketingWallet.transfer(address(this).balance) (#1039)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#1010)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#950)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1139)
- _rOwned[address(this)] = _rOwned[address(this)].add(rMarketing) (#1132)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1150)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1117)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#893)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1141)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1151)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1118)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#895)
- _tokenTransfer(from,to,amount) (#1010)
- _rTotal = _rTotal.sub(rFee) (#905)
- _tokenTransfer(from,to,amount) (#1010)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#952)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#892)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1149)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1140)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#894)
Reentrancy in xAPE.swapAndLiquify(uint256) (#1013-1042):
External calls:
- swapTokensForBnb(half) (#1028)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1056-1062)
- addLiquidity(otherHalf,newBalance) (#1034)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1069-1076)
- swapTokensForBnb(contractTokenBalance.sub(tokensForLiquidity)) (#1037)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1056-1062)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1034)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1069-1076)
State variables written after the call(s):
- swapTokensForBnb(contractTokenBalance.sub(tokensForLiquidity)) (#1037)
- _allowances[owner][spender] = amount (#988)
Reentrancy in xAPE.transferFrom(address,address,uint256) (#822-826):
External calls:
- _transfer(sender,recipient,amount) (#823)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1069-1076)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1056-1062)
External calls sending eth:
- _transfer(sender,recipient,amount) (#823)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1069-1076)
- marketingWallet.transfer(address(this).balance) (#1039)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#824)
- _allowances[owner][spender] = amount (#988)
Apply the check-effects-interactions pattern.
Additional information: link
Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains
Contract ownership is not renounced (belongs to a wallet)
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.
xAPE.takeMarketing(address,uint256,uint256,uint256) (#1124-1135) performs a multiplication on the result of a division:
-tMarketing = tAmount.div(100).mul(_marketingFee) (#1128)
Consider ordering multiplication before division.
Additional information: link
xAPE.addLiquidity(uint256,uint256) (#1066-1078) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1069-1076)
Ensure that all the return values of the function calls are used.
Additional information: link
xAPE.allowance(address,address).owner (#813) shadows:
- Ownable.owner() (#414-416) (function)
xAPE._approve(address,address,uint256).owner (#984) shadows:
- Ownable.owner() (#414-416) (function)
Rename the local variables that shadow another component.
Additional information: link
xAPE.setBuyFees(uint256,uint256,uint256) (#1177-1183) should emit an event for:
- _previousTaxFee = taxFee (#1180)
- _previousLiquidityFee = liquidityFee (#1181)
- _previousMarketingFee = marketingFee (#1182)
xAPE.setSaleFees(uint256,uint256,uint256) (#1186-1191) should emit an event for:
- _saleTaxFee = taxFee (#1188)
- _saleLiquidityFee = liquidityFee (#1189)
- _saleMarketingFee = marketingFee (#1190)
xAPE.setMinimumTokensBeforeSwap(uint256) (#1194-1196) should emit an event for:
- minimumTokensBeforeSwap = newAmt (#1195)
xAPE.setMaxTxAmount(uint256) (#1198-1201) should emit an event for:
- _maxTxAmount = maxTxAmount (#1199)
Emit an event for critical parameter changes.
Additional information: link
xAPE.setMarketingWallet(address).newWallet (#1166) lacks a zero-check on :
- marketingWallet = newWallet (#1167)
Check that the address is not zero.
Additional information: link
Reentrancy in xAPE._transfer(address,address,uint256) (#992-1011):
External calls:
- swapAndLiquify(contractTokenBalance) (#1007)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1069-1076)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1056-1062)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1007)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1069-1076)
- marketingWallet.transfer(address(this).balance) (#1039)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#1010)
- _liquidityFee = liquidityFee (#1172)
- _liquidityFee = _previousLiquidityFee (#976)
- _liquidityFee = 0 (#970)
- _tokenTransfer(from,to,amount) (#1010)
- _marketingFee = 0 (#971)
- _marketingFee = marketingFee (#1173)
- _marketingFee = _previousMarketingFee (#977)
- _tokenTransfer(from,to,amount) (#1010)
- _tFeeTotal = _tFeeTotal.add(tFee) (#906)
- _tokenTransfer(from,to,amount) (#1010)
- _taxFee = _previousTaxFee (#975)
- _taxFee = 0 (#969)
- _taxFee = taxFee (#1171)
Reentrancy in xAPE.constructor() (#771-785):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#776-777)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#781)
- _isExcludedFromFee[marketingWallet] = true (#782)
- _isExcludedFromFee[address(this)] = true (#783)
- uniswapV2Router = _uniswapV2Router (#779)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in xAPE._transfer(address,address,uint256) (#992-1011):
External calls:
- swapAndLiquify(contractTokenBalance) (#1007)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1069-1076)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1056-1062)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1007)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1069-1076)
- marketingWallet.transfer(address(this).balance) (#1039)
Event emitted after the call(s):
- Transfer(sender,address(this),tMarketing) (#1133)
- _tokenTransfer(from,to,amount) (#1010)
- Transfer(sender,recipient,tTransferAmount) (#1154)
- _tokenTransfer(from,to,amount) (#1010)
- Transfer(sender,recipient,tTransferAmount) (#1144)
- _tokenTransfer(from,to,amount) (#1010)
- Transfer(sender,recipient,tTransferAmount) (#1121)
- _tokenTransfer(from,to,amount) (#1010)
- Transfer(sender,recipient,tTransferAmount) (#898)
- _tokenTransfer(from,to,amount) (#1010)
Reentrancy in xAPE.constructor() (#771-785):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#776-777)
Event emitted after the call(s):
- Transfer(address(0),owner(),_tTotal) (#784)
Reentrancy in xAPE.swapAndLiquify(uint256) (#1013-1042):
External calls:
- swapTokensForBnb(half) (#1028)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1056-1062)
- addLiquidity(otherHalf,newBalance) (#1034)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1069-1076)
- swapTokensForBnb(contractTokenBalance.sub(tokensForLiquidity)) (#1037)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1056-1062)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1034)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1069-1076)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#989)
- swapTokensForBnb(contractTokenBalance.sub(tokensForLiquidity)) (#1037)
Reentrancy in xAPE.swapAndLiquify(uint256) (#1013-1042):
External calls:
- swapTokensForBnb(half) (#1028)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1056-1062)
- addLiquidity(otherHalf,newBalance) (#1034)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1069-1076)
- swapTokensForBnb(contractTokenBalance.sub(tokensForLiquidity)) (#1037)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1056-1062)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1034)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1069-1076)
- marketingWallet.transfer(address(this).balance) (#1039)
Event emitted after the call(s):
- SwapAndLiquify(half,newBalance) (#1041)
Reentrancy in xAPE.transferFrom(address,address,uint256) (#822-826):
External calls:
- _transfer(sender,recipient,amount) (#823)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1069-1076)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1056-1062)
External calls sending eth:
- _transfer(sender,recipient,amount) (#823)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1069-1076)
- marketingWallet.transfer(address(this).balance) (#1039)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#989)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#824)
Apply the check-effects-interactions pattern.
Additional information: link
Ownable.unlock() (#461-466) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked until 7 days) (#463)
Avoid relying on block.timestamp.
Additional information: link
Address.isContract(address) (#266-275) uses assembly
- INLINE ASM (#273)
Address._functionCallWithValue(address,bytes,uint256,string) (#359-380) uses assembly
- INLINE ASM (#372-375)
Do not use evm assembly.
Additional information: link
xAPE.includeInReward(address) (#877-888) has costly operations inside a loop:
- _excluded.pop() (#884)
Use a local variable to hold the loop computation result.
Additional information: link
Address._functionCallWithValue(address,bytes,uint256,string) (#359-380) is never used and should be removed
Address.functionCall(address,bytes) (#319-321) is never used and should be removed
Address.functionCall(address,bytes,string) (#329-331) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#344-346) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#354-357) is never used and should be removed
Address.isContract(address) (#266-275) is never used and should be removed
Address.sendValue(address,uint256) (#293-299) is never used and should be removed
Context._msgData() (#10-13) is never used and should be removed
SafeMath.mod(uint256,uint256) (#222-224) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#238-241) is never used and should be removed
Remove unused functions.
Additional information: link
xAPE._rTotal (#720) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
xAPE._previousTaxFee (#730) is set pre-construction with a non-constant function or state variable:
- _taxFee
xAPE._previousLiquidityFee (#733) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
xAPE._previousMarketingFee (#736) is set pre-construction with a non-constant function or state variable:
- _marketingFee
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 version0.8.13 (#3) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
solc-0.8.13 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) (#293-299):
- (success) = recipient.call{value: amount}() (#297)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#359-380):
- (success,returndata) = target.call{value: weiValue}(data) (#363)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence
Additional information: link
Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#505) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#506) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#522) is not in mixedCase
Function IUniswapV2Router01.WETH() (#543) is not in mixedCase
Parameter LockToken.openTrade(bool)._trueorfalse (#693) is not in mixedCase
Parameter LockToken.includeToWhiteList(address[])._users (#697) is not in mixedCase
Contract xAPE (#705-1209) is not in CapWords
Parameter xAPE.calculateLiquidityFee(uint256)._amount (#955) is not in mixedCase
Parameter xAPE.calculateTaxFee(uint256)._amount (#961) is not in mixedCase
Parameter xAPE.setSwapAndLiquifyEnabled(bool)._enabled (#1203) is not in mixedCase
Variable xAPE._taxFee (#729) is not in mixedCase
Variable xAPE._liquidityFee (#732) is not in mixedCase
Variable xAPE._marketingFee (#735) is not in mixedCase
Variable xAPE._saleTaxFee (#739) is not in mixedCase
Variable xAPE._saleLiquidityFee (#740) is not in mixedCase
Variable xAPE._saleMarketingFee (#741) is not in mixedCase
Variable xAPE._maxTxAmount (#755) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (#11)" inContext (#5-14)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Reentrancy in xAPE._transfer(address,address,uint256) (#992-1011):
External calls:
- swapAndLiquify(contractTokenBalance) (#1007)
- marketingWallet.transfer(address(this).balance) (#1039)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1007)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1069-1076)
- marketingWallet.transfer(address(this).balance) (#1039)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#1010)
- _liquidityFee = liquidityFee (#1172)
- _liquidityFee = _previousLiquidityFee (#976)
- _liquidityFee = 0 (#970)
- _tokenTransfer(from,to,amount) (#1010)
- _marketingFee = 0 (#971)
- _marketingFee = marketingFee (#1173)
- _marketingFee = _previousMarketingFee (#977)
- _tokenTransfer(from,to,amount) (#1010)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#950)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1139)
- _rOwned[address(this)] = _rOwned[address(this)].add(rMarketing) (#1132)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1150)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1117)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#893)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1141)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1151)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1118)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#895)
- _tokenTransfer(from,to,amount) (#1010)
- _rTotal = _rTotal.sub(rFee) (#905)
- _tokenTransfer(from,to,amount) (#1010)
- _tFeeTotal = _tFeeTotal.add(tFee) (#906)
- _tokenTransfer(from,to,amount) (#1010)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#952)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#892)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1149)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1140)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#894)
- _tokenTransfer(from,to,amount) (#1010)
- _taxFee = _previousTaxFee (#975)
- _taxFee = 0 (#969)
- _taxFee = taxFee (#1171)
Event emitted after the call(s):
- Transfer(sender,address(this),tMarketing) (#1133)
- _tokenTransfer(from,to,amount) (#1010)
- Transfer(sender,recipient,tTransferAmount) (#1154)
- _tokenTransfer(from,to,amount) (#1010)
- Transfer(sender,recipient,tTransferAmount) (#1144)
- _tokenTransfer(from,to,amount) (#1010)
- Transfer(sender,recipient,tTransferAmount) (#1121)
- _tokenTransfer(from,to,amount) (#1010)
- Transfer(sender,recipient,tTransferAmount) (#898)
- _tokenTransfer(from,to,amount) (#1010)
Reentrancy in xAPE.swapAndLiquify(uint256) (#1013-1042):
External calls:
- marketingWallet.transfer(address(this).balance) (#1039)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1034)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1069-1076)
- marketingWallet.transfer(address(this).balance) (#1039)
Event emitted after the call(s):
- SwapAndLiquify(half,newBalance) (#1041)
Reentrancy in xAPE.transferFrom(address,address,uint256) (#822-826):
External calls:
- _transfer(sender,recipient,amount) (#823)
- marketingWallet.transfer(address(this).balance) (#1039)
External calls sending eth:
- _transfer(sender,recipient,amount) (#823)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1069-1076)
- marketingWallet.transfer(address(this).balance) (#1039)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#824)
- _allowances[owner][spender] = amount (#988)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#989)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#824)
Apply the check-effects-interactions pattern.
Additional information: link
Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#548) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#549)
Variable xAPE._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#926) is too similar to xAPE.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1124)
Variable xAPE.reflectionFromToken(uint256,bool).rTransferAmount (#857) is too similar to xAPE._transferStandard(address,address,uint256).tTransferAmount (#1115)
Variable xAPE.reflectionFromToken(uint256,bool).rTransferAmount (#857) is too similar to xAPE._transferFromExcluded(address,address,uint256).tTransferAmount (#1148)
Variable xAPE._transferToExcluded(address,address,uint256).rTransferAmount (#1138) is too similar to xAPE._transferStandard(address,address,uint256).tTransferAmount (#1115)
Variable xAPE._transferStandard(address,address,uint256).rTransferAmount (#1115) is too similar to xAPE.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1124)
Variable xAPE._transferToExcluded(address,address,uint256).rTransferAmount (#1138) is too similar to xAPE._transferFromExcluded(address,address,uint256).tTransferAmount (#1148)
Variable xAPE._getValues(uint256).rTransferAmount (#911) is too similar to xAPE._transferBothExcluded(address,address,uint256).tTransferAmount (#891)
Variable xAPE._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#926) is too similar to xAPE._transferStandard(address,address,uint256).tTransferAmount (#1115)
Variable xAPE._getValues(uint256).rTransferAmount (#911) is too similar to xAPE._getTValues(uint256).tTransferAmount (#918)
Variable xAPE._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#926) is too similar to xAPE._transferFromExcluded(address,address,uint256).tTransferAmount (#1148)
Variable xAPE._getValues(uint256).rTransferAmount (#911) is too similar to xAPE.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1124)
Variable xAPE._transferFromExcluded(address,address,uint256).rTransferAmount (#1148) is too similar to xAPE._transferFromExcluded(address,address,uint256).tTransferAmount (#1148)
Variable xAPE._transferStandard(address,address,uint256).rTransferAmount (#1115) is too similar to xAPE._transferStandard(address,address,uint256).tTransferAmount (#1115)
Variable xAPE._transferStandard(address,address,uint256).rTransferAmount (#1115) is too similar to xAPE._transferFromExcluded(address,address,uint256).tTransferAmount (#1148)
Variable xAPE.reflectionFromToken(uint256,bool).rTransferAmount (#857) is too similar to xAPE._transferBothExcluded(address,address,uint256).tTransferAmount (#891)
Variable xAPE.reflectionFromToken(uint256,bool).rTransferAmount (#857) is too similar to xAPE.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1124)
Variable xAPE.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1124) is too similar to xAPE._transferFromExcluded(address,address,uint256).tTransferAmount (#1148)
Variable xAPE._transferToExcluded(address,address,uint256).rTransferAmount (#1138) is too similar to xAPE._transferBothExcluded(address,address,uint256).tTransferAmount (#891)
Variable xAPE._getValues(uint256).rTransferAmount (#911) is too similar to xAPE._transferStandard(address,address,uint256).tTransferAmount (#1115)
Variable xAPE._getValues(uint256).rTransferAmount (#911) is too similar to xAPE._transferFromExcluded(address,address,uint256).tTransferAmount (#1148)
Variable xAPE._transferToExcluded(address,address,uint256).rTransferAmount (#1138) is too similar to xAPE.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1124)
Variable xAPE._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#926) is too similar to xAPE._transferBothExcluded(address,address,uint256).tTransferAmount (#891)
Variable xAPE._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#926) is too similar to xAPE._getTValues(uint256).tTransferAmount (#918)
Variable xAPE._transferBothExcluded(address,address,uint256).rTransferAmount (#891) is too similar to xAPE._transferBothExcluded(address,address,uint256).tTransferAmount (#891)
Variable xAPE._transferFromExcluded(address,address,uint256).rTransferAmount (#1148) is too similar to xAPE.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1124)
Variable xAPE._transferStandard(address,address,uint256).rTransferAmount (#1115) is too similar to xAPE._transferBothExcluded(address,address,uint256).tTransferAmount (#891)
Variable xAPE._transferFromExcluded(address,address,uint256).rTransferAmount (#1148) is too similar to xAPE._transferBothExcluded(address,address,uint256).tTransferAmount (#891)
Variable xAPE._transferToExcluded(address,address,uint256).rTransferAmount (#1138) is too similar to xAPE._transferToExcluded(address,address,uint256).tTransferAmount (#1138)
Variable xAPE.reflectionFromToken(uint256,bool).rTransferAmount (#857) is too similar to xAPE._getTValues(uint256).tTransferAmount (#918)
Variable xAPE.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1124) is too similar to xAPE._getTValues(uint256).tTransferAmount (#918)
Variable xAPE._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#926) is too similar to xAPE._transferToExcluded(address,address,uint256).tTransferAmount (#1138)
Variable xAPE._transferToExcluded(address,address,uint256).rTransferAmount (#1138) is too similar to xAPE._getValues(uint256).tTransferAmount (#910)
Variable xAPE._transferBothExcluded(address,address,uint256).rTransferAmount (#891) is too similar to xAPE._getTValues(uint256).tTransferAmount (#918)
Variable xAPE._transferBothExcluded(address,address,uint256).rTransferAmount (#891) is too similar to xAPE._transferFromExcluded(address,address,uint256).tTransferAmount (#1148)
Variable xAPE._transferStandard(address,address,uint256).rTransferAmount (#1115) is too similar to xAPE._getTValues(uint256).tTransferAmount (#918)
Variable xAPE._transferFromExcluded(address,address,uint256).rTransferAmount (#1148) is too similar to xAPE._getTValues(uint256).tTransferAmount (#918)
Variable xAPE._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#926) is too similar to xAPE._getValues(uint256).tTransferAmount (#910)
Variable xAPE.reflectionFromToken(uint256,bool).rTransferAmount (#857) is too similar to xAPE._transferToExcluded(address,address,uint256).tTransferAmount (#1138)
Variable xAPE.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1124) is too similar to xAPE._transferToExcluded(address,address,uint256).tTransferAmount (#1138)
Variable xAPE.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1124) is too similar to xAPE._transferBothExcluded(address,address,uint256).tTransferAmount (#891)
Variable xAPE._transferBothExcluded(address,address,uint256).rTransferAmount (#891) is too similar to xAPE._transferToExcluded(address,address,uint256).tTransferAmount (#1138)
Variable xAPE.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1124) is too similar to xAPE._transferStandard(address,address,uint256).tTransferAmount (#1115)
Variable xAPE._transferStandard(address,address,uint256).rTransferAmount (#1115) is too similar to xAPE._transferToExcluded(address,address,uint256).tTransferAmount (#1138)
Variable xAPE.reflectionFromToken(uint256,bool).rTransferAmount (#857) is too similar to xAPE._getValues(uint256).tTransferAmount (#910)
Variable xAPE._transferBothExcluded(address,address,uint256).rTransferAmount (#891) is too similar to xAPE._transferStandard(address,address,uint256).tTransferAmount (#1115)
Variable xAPE._transferFromExcluded(address,address,uint256).rTransferAmount (#1148) is too similar to xAPE._transferToExcluded(address,address,uint256).tTransferAmount (#1138)
Variable xAPE.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1124) is too similar to xAPE._getValues(uint256).tTransferAmount (#910)
Variable xAPE._getValues(uint256).rTransferAmount (#911) is too similar to xAPE._transferToExcluded(address,address,uint256).tTransferAmount (#1138)
Variable xAPE._transferBothExcluded(address,address,uint256).rTransferAmount (#891) is too similar to xAPE._getValues(uint256).tTransferAmount (#910)
Variable xAPE._transferFromExcluded(address,address,uint256).rTransferAmount (#1148) is too similar to xAPE._transferStandard(address,address,uint256).tTransferAmount (#1115)
Variable xAPE.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1124) is too similar to xAPE.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1124)
Variable xAPE._transferStandard(address,address,uint256).rTransferAmount (#1115) is too similar to xAPE._getValues(uint256).tTransferAmount (#910)
Variable xAPE._transferToExcluded(address,address,uint256).rTransferAmount (#1138) is too similar to xAPE._getTValues(uint256).tTransferAmount (#918)
Variable xAPE._transferBothExcluded(address,address,uint256).rTransferAmount (#891) is too similar to xAPE.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1124)
Variable xAPE._transferFromExcluded(address,address,uint256).rTransferAmount (#1148) is too similar to xAPE._getValues(uint256).tTransferAmount (#910)
Variable xAPE._getValues(uint256).rTransferAmount (#911) is too similar to xAPE._getValues(uint256).tTransferAmount (#910)
Prevent variables from having similar names.
Additional information: link
xAPE.slitherConstructorVariables() (#705-1209) uses literals with too many digits:
- _tTotal = 1000000000 * 10 ** 18 (#719)
xAPE.slitherConstructorVariables() (#705-1209) uses literals with too many digits:
- _maxTxAmount = 1000000000000 * 10 ** 18 (#755)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
xAPE._decimals (#725) should be constant
xAPE._name (#723) should be constant
xAPE._symbol (#724) should be constant
xAPE._tTotal (#719) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#433-436)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#442-446)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#448-450)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#453-458)
unlock() should be declared external:
- Ownable.unlock() (#461-466)
name() should be declared external:
- xAPE.name() (#787-789)
symbol() should be declared external:
- xAPE.symbol() (#791-793)
decimals() should be declared external:
- xAPE.decimals() (#795-797)
transfer(address,uint256) should be declared external:
- xAPE.transfer(address,uint256) (#808-811)
approve(address,uint256) should be declared external:
- xAPE.approve(address,uint256) (#817-820)
transferFrom(address,address,uint256) should be declared external:
- xAPE.transferFrom(address,address,uint256) (#822-826)
increaseAllowance(address,uint256) should be declared external:
- xAPE.increaseAllowance(address,uint256) (#828-831)
decreaseAllowance(address,uint256) should be declared external:
- xAPE.decreaseAllowance(address,uint256) (#833-836)
isExcludedFromReward(address) should be declared external:
- xAPE.isExcludedFromReward(address) (#838-840)
deliver(uint256) should be declared external:
- xAPE.deliver(uint256) (#842-849)
reflectionFromToken(uint256,bool) should be declared external:
- xAPE.reflectionFromToken(uint256,bool) (#851-860)
excludeFromReward(address) should be declared external:
- xAPE.excludeFromReward(address) (#868-875)
isExcludedFromFee(address) should be declared external:
- xAPE.isExcludedFromFee(address) (#980-982)
excludeFromFee(address) should be declared external:
- xAPE.excludeFromFee(address) (#1158-1160)
includeInFee(address) should be declared external:
- xAPE.includeInFee(address) (#1162-1164)
setSwapAndLiquifyEnabled(bool) should be declared external:
- xAPE.setSwapAndLiquifyEnabled(bool) (#1203-1206)
Use the external attribute for functions never called from the contract.
Additional information: link
BscScan page for the token does not contain additional info: website, socials, description, etc.
Additional information: link
Unable to find token/project description on the website or on BscScan, CoinMarketCap
Unable to find whitepaper link on the website
Unable to find token on CoinGecko
Additional information: link
Unable to find token on CoinMarketCap
Additional information: link
Token is not listed at Mobula.Finance
Additional information: link
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
Token has no active CoinGecko listing / rank
Token has no active CoinMarketCap listing / rank
Twitter account seems to be suspended
Additional information: link
Unable to find Blog account (Reddit or Medium)
Unable to find Youtube account
Unable to find Discord account