Xolo Inu Token Logo

XL [Xolo Inu] Token

About XL

Listings

Token 2 years
CoinGecko 2 years
CoinMarketCap 2 years

Website

white paper

Xolo Inu is a multifunctional DeFi App offering a social incubation network for investors, teams, communities, and developers. Together, we’ll grow a community that nurtures its own.
With the Xolo Rocket Platform, we’ll accelerate the growth and success of entrepreneurial DeFi organizations thanks to an array of business support tools and services.
Our limited-release Cyber Inu Pack is a collection of 5,000 unique Xyborg dogs gifted out to our 5,000 biggest HODLERS at the time of release.
Xolo Mart is a game-changing decentralized marketplace for buying and selling NFT’s — a space where collectors, artists, investors and traders can buy, sell, and showcase their NFT’s.

Social

Laser Scorebeta Last Audit: 7 April 2022

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

Anti-Scam

Links

XoloInu.addLiquidity(uint256,uint256) (#1127-1140) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1132-1139)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in XoloInu._transfer(address,address,uint256) (#1035-1072):
External calls:
- swapAndLiquify(contractTokenBalance) (#1067)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1132-1139)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1118-1124)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1067)
- recipient.transfer(amount) (#1301)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1132-1139)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#1071)
- _liquidityFee = _previousLiquidityFee (#1019)
- _liquidityFee = 0 (#1013)
- _tokenTransfer(from,to,amount) (#1071)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#988)
- _rOwned[address(this)] = _rOwned[address(this)].add(rMarketing) (#1195)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1203)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#929)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1214)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1178)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1179)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1205)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1215)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#931)
- _tokenTransfer(from,to,amount) (#1071)
- _rTotal = _rTotal.sub(rFee) (#943)
- _tokenTransfer(from,to,amount) (#1071)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#990)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1213)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#928)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1204)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#930)
- _tokenTransfer(from,to,amount) (#1071)
- marketingFee = _previousmarketingFee (#1020)
- marketingFee = 0 (#1014)
Apply the check-effects-interactions pattern.

Additional information: link


Contract creator or owner is blacklisted for past scams


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

XoloInu._transfer(address,address,uint256) (#1035-1072) uses a dangerous strict equality:
- block.timestamp == launchTime (#1051)
Don't use strict equality to determine if an account has enough Ether or tokens.

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)

XoloInu.takeMarketing(address,uint256,uint256,uint256) (#1187-1198) performs a multiplication on the result of a division:
-tMarketing = tAmount.div(100).mul(marketingFee) (#1191)
Consider ordering multiplication before division.

Additional information: link

XoloInu.addLiquidity(uint256,uint256) (#1127-1140) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1132-1139)
Ensure that all the return values of the function calls are used.

Additional information: link

XoloInu.allowance(address,address).owner (#845) shadows:
- Ownable.owner() (#474-476) (function)
XoloInu._approve(address,address,uint256).owner (#1027) shadows:
- Ownable.owner() (#474-476) (function)
Rename the local variables that shadow another component.

Additional information: link

XoloInu.setTaxFeePercent(uint256) (#1234-1236) should emit an event for:
- _taxFee = taxFee (#1235)
XoloInu.setLiquidityFeePercent(uint256) (#1238-1240) should emit an event for:
- _liquidityFee = liquidityFee (#1239)
XoloInu.setMarketingFee(uint256) (#1243-1245) should emit an event for:
- marketingFee = _marketingFee (#1244)
XoloInu.setNumTokensSellToAddToLiquidity(uint256) (#1255-1257) should emit an event for:
- numTokensSellToAddToLiquidity = newAmt * 10 ** _decimals (#1256)
XoloInu.setMaxTxAmount(uint256) (#1282-1285) should emit an event for:
- _maxTxAmount = maxTxAmount * 10 ** _decimals (#1284)
Emit an event for critical parameter changes.

Additional information: link

XoloInu.setMarketingWallet(address).newWallet (#1230) lacks a zero-check on :
- marketingWallet = newWallet (#1231)
Check that the address is not zero.

Additional information: link

Reentrancy in XoloInu._transfer(address,address,uint256) (#1035-1072):
External calls:
- swapAndLiquify(contractTokenBalance) (#1067)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1132-1139)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1118-1124)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1067)
- recipient.transfer(amount) (#1301)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1132-1139)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#1071)
- _previousLiquidityFee = _liquidityFee (#1009)
- _tokenTransfer(from,to,amount) (#1071)
- _previousTaxFee = _taxFee (#1008)
- _tokenTransfer(from,to,amount) (#1071)
- _previousmarketingFee = marketingFee (#1010)
- _tokenTransfer(from,to,amount) (#1071)
- _tFeeTotal = _tFeeTotal.add(tFee) (#944)
- _tokenTransfer(from,to,amount) (#1071)
- _taxFee = _previousTaxFee (#1018)
- _taxFee = 0 (#1012)
Reentrancy in XoloInu.constructor() (#801-817):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#806-807)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#813)
- _isExcludedFromFee[address(this)] = true (#814)
- uniswapV2Router = _uniswapV2Router (#810)
Reentrancy in XoloInu.setRouterAddress(address) (#1289-1293):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_newPancakeRouter.factory()).createPair(address(this),_newPancakeRouter.WETH()) (#1291)
State variables written after the call(s):
- uniswapV2Router = _newPancakeRouter (#1292)
Reentrancy in XoloInu.swapAndLiquify(uint256) (#1074-1107):
External calls:
- swapTokensForEth(half) (#1091)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1118-1124)
- addLiquidity(otherHalf,newBalance) (#1097)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1132-1139)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1097)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1132-1139)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1097)
- _allowances[owner][spender] = amount (#1031)
Reentrancy in XoloInu.swapAndLiquify(uint256) (#1074-1107):
External calls:
- swapTokensForEth(half) (#1091)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1118-1124)
- addLiquidity(otherHalf,newBalance) (#1097)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1132-1139)
- swapTokensForEth(tokensForMarketing) (#1102)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1118-1124)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1097)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1132-1139)
State variables written after the call(s):
- swapTokensForEth(tokensForMarketing) (#1102)
- _allowances[owner][spender] = amount (#1031)
Reentrancy in XoloInu.transferFrom(address,address,uint256) (#854-858):
External calls:
- _transfer(sender,recipient,amount) (#855)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1132-1139)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1118-1124)
External calls sending eth:
- _transfer(sender,recipient,amount) (#855)
- recipient.transfer(amount) (#1301)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1132-1139)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#856)
- _allowances[owner][spender] = amount (#1031)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in XoloInu._transfer(address,address,uint256) (#1035-1072):
External calls:
- swapAndLiquify(contractTokenBalance) (#1067)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1132-1139)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1118-1124)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1067)
- recipient.transfer(amount) (#1301)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1132-1139)
Event emitted after the call(s):
- Transfer(sender,address(this),tMarketing) (#1196)
- _tokenTransfer(from,to,amount) (#1071)
- Transfer(sender,recipient,tTransferAmount) (#1218)
- _tokenTransfer(from,to,amount) (#1071)
- Transfer(sender,recipient,tTransferAmount) (#1208)
- _tokenTransfer(from,to,amount) (#1071)
- Transfer(sender,recipient,tTransferAmount) (#1182)
- _tokenTransfer(from,to,amount) (#1071)
- Transfer(sender,recipient,tTransferAmount) (#934)
- _tokenTransfer(from,to,amount) (#1071)
Reentrancy in XoloInu.constructor() (#801-817):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#806-807)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#816)
Reentrancy in XoloInu.swapAndLiquify(uint256) (#1074-1107):
External calls:
- swapTokensForEth(half) (#1091)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1118-1124)
- addLiquidity(otherHalf,newBalance) (#1097)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1132-1139)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1097)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1132-1139)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1032)
- addLiquidity(otherHalf,newBalance) (#1097)
- SwapAndLiquify(half,newBalance,otherHalf) (#1099)
Reentrancy in XoloInu.swapAndLiquify(uint256) (#1074-1107):
External calls:
- swapTokensForEth(half) (#1091)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1118-1124)
- addLiquidity(otherHalf,newBalance) (#1097)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1132-1139)
- swapTokensForEth(tokensForMarketing) (#1102)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1118-1124)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1097)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1132-1139)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1032)
- swapTokensForEth(tokensForMarketing) (#1102)
Reentrancy in XoloInu.transferFrom(address,address,uint256) (#854-858):
External calls:
- _transfer(sender,recipient,amount) (#855)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1132-1139)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1118-1124)
External calls sending eth:
- _transfer(sender,recipient,amount) (#855)
- recipient.transfer(amount) (#1301)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1132-1139)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1032)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#856)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable.unlock() (#521-526) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked until 7 days) (#523)
XoloInu._transfer(address,address,uint256) (#1035-1072) uses timestamp for comparisons
Dangerous comparisons:
- block.timestamp == launchTime (#1051)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#326-335) uses assembly
- INLINE ASM (#333)
Address._functionCallWithValue(address,bytes,uint256,string) (#419-440) uses assembly
- INLINE ASM (#432-435)
Do not use evm assembly.

Additional information: link

XoloInu.includeInReward(address) (#913-924) has costly operations inside a loop:
- _excluded.pop() (#920)
XoloInu._amnestySniper(address) (#1270-1280) has costly operations inside a loop:
- _confirmedSnipers.pop() (#1276)
Use a local variable to hold the loop computation result.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#419-440) is never used and should be removed
Address.functionCall(address,bytes) (#379-381) is never used and should be removed
Address.functionCall(address,bytes,string) (#389-391) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#404-406) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#414-417) is never used and should be removed
Address.isContract(address) (#326-335) is never used and should be removed
Address.sendValue(address,uint256) (#353-359) is never used and should be removed
Context._msgData() (#298-301) is never used and should be removed
SafeMath.mod(uint256,uint256) (#271-273) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#287-290) is never used and should be removed
Remove unused functions.

Additional information: link

XoloInu._rTotal (#760) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
XoloInu._previousTaxFee (#768) is set pre-construction with a non-constant function or state variable:
- _taxFee
XoloInu._previousLiquidityFee (#771) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
XoloInu._previousmarketingFee (#776) 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 version^0.8.0 (#3) allows old versions
solc-0.8.0 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) (#353-359):
- (success) = recipient.call{value: amount}() (#357)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#419-440):
- (success,returndata) = target.call{value: weiValue}(data) (#423)
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() (#565) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#566) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#582) is not in mixedCase
Function IUniswapV2Router01.WETH() (#603) is not in mixedCase
Parameter XoloInu.calculateTaxFee(uint256)._amount (#993) is not in mixedCase
Parameter XoloInu.calculateLiquidityFee(uint256)._amount (#999) is not in mixedCase
Parameter XoloInu.setMarketingFee(uint256)._marketingFee (#1243) is not in mixedCase
Function XoloInu._removeSniper(address) (#1263-1268) is not in mixedCase
Function XoloInu._amnestySniper(address) (#1270-1280) is not in mixedCase
Parameter XoloInu.setSwapAndLiquifyEnabled(bool)._enabled (#1295) is not in mixedCase
Variable XoloInu._taxFee (#767) is not in mixedCase
Variable XoloInu._liquidityFee (#770) is not in mixedCase
Variable XoloInu._maxTxAmount (#785) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#299)" inContext (#293-302)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in XoloInu._transfer(address,address,uint256) (#1035-1072):
External calls:
- swapAndLiquify(contractTokenBalance) (#1067)
- recipient.transfer(amount) (#1301)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1067)
- recipient.transfer(amount) (#1301)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1132-1139)
State variables written after the call(s):
- _tokenTransfer(from,to,amount) (#1071)
- _liquidityFee = _previousLiquidityFee (#1019)
- _liquidityFee = 0 (#1013)
- _tokenTransfer(from,to,amount) (#1071)
- _previousLiquidityFee = _liquidityFee (#1009)
- _tokenTransfer(from,to,amount) (#1071)
- _previousTaxFee = _taxFee (#1008)
- _tokenTransfer(from,to,amount) (#1071)
- _previousmarketingFee = marketingFee (#1010)
- _tokenTransfer(from,to,amount) (#1071)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#988)
- _rOwned[address(this)] = _rOwned[address(this)].add(rMarketing) (#1195)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1203)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#929)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1214)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1178)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1179)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1205)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1215)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#931)
- _tokenTransfer(from,to,amount) (#1071)
- _rTotal = _rTotal.sub(rFee) (#943)
- _tokenTransfer(from,to,amount) (#1071)
- _tFeeTotal = _tFeeTotal.add(tFee) (#944)
- _tokenTransfer(from,to,amount) (#1071)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#990)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1213)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#928)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1204)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#930)
- _tokenTransfer(from,to,amount) (#1071)
- _taxFee = _previousTaxFee (#1018)
- _taxFee = 0 (#1012)
- _tokenTransfer(from,to,amount) (#1071)
- marketingFee = _previousmarketingFee (#1020)
- marketingFee = 0 (#1014)
Event emitted after the call(s):
- Transfer(sender,address(this),tMarketing) (#1196)
- _tokenTransfer(from,to,amount) (#1071)
- Transfer(sender,recipient,tTransferAmount) (#1218)
- _tokenTransfer(from,to,amount) (#1071)
- Transfer(sender,recipient,tTransferAmount) (#1208)
- _tokenTransfer(from,to,amount) (#1071)
- Transfer(sender,recipient,tTransferAmount) (#1182)
- _tokenTransfer(from,to,amount) (#1071)
- Transfer(sender,recipient,tTransferAmount) (#934)
- _tokenTransfer(from,to,amount) (#1071)
Reentrancy in XoloInu.transferFrom(address,address,uint256) (#854-858):
External calls:
- _transfer(sender,recipient,amount) (#855)
- recipient.transfer(amount) (#1301)
External calls sending eth:
- _transfer(sender,recipient,amount) (#855)
- recipient.transfer(amount) (#1301)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1132-1139)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#856)
- _allowances[owner][spender] = amount (#1031)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1032)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#856)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#608) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#609)
Variable XoloInu._transferStandard(address,address,uint256).rTransferAmount (#1176) is too similar to XoloInu.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1187)
Variable XoloInu._getValues(uint256).rTransferAmount (#949) is too similar to XoloInu._transferBothExcluded(address,address,uint256).tTransferAmount (#927)
Variable XoloInu._transferToExcluded(address,address,uint256).rTransferAmount (#1202) is too similar to XoloInu._getTValues(uint256).tTransferAmount (#956)
Variable XoloInu._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#964) is too similar to XoloInu._getTValues(uint256).tTransferAmount (#956)
Variable XoloInu._getValues(uint256).rTransferAmount (#949) is too similar to XoloInu._transferStandard(address,address,uint256).tTransferAmount (#1176)
Variable XoloInu._transferFromExcluded(address,address,uint256).rTransferAmount (#1212) is too similar to XoloInu._transferBothExcluded(address,address,uint256).tTransferAmount (#927)
Variable XoloInu._getValues(uint256).rTransferAmount (#949) is too similar to XoloInu._transferFromExcluded(address,address,uint256).tTransferAmount (#1212)
Variable XoloInu._getValues(uint256).rTransferAmount (#949) is too similar to XoloInu._transferToExcluded(address,address,uint256).tTransferAmount (#1202)
Variable XoloInu.reflectionFromToken(uint256,bool).rTransferAmount (#893) is too similar to XoloInu._getTValues(uint256).tTransferAmount (#956)
Variable XoloInu._transferToExcluded(address,address,uint256).rTransferAmount (#1202) is too similar to XoloInu._transferBothExcluded(address,address,uint256).tTransferAmount (#927)
Variable XoloInu._getValues(uint256).rTransferAmount (#949) is too similar to XoloInu.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1187)
Variable XoloInu._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#964) is too similar to XoloInu._transferBothExcluded(address,address,uint256).tTransferAmount (#927)
Variable XoloInu._transferBothExcluded(address,address,uint256).rTransferAmount (#927) is too similar to XoloInu._transferBothExcluded(address,address,uint256).tTransferAmount (#927)
Variable XoloInu._transferFromExcluded(address,address,uint256).rTransferAmount (#1212) is too similar to XoloInu._transferFromExcluded(address,address,uint256).tTransferAmount (#1212)
Variable XoloInu.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1187) is too similar to XoloInu._transferBothExcluded(address,address,uint256).tTransferAmount (#927)
Variable XoloInu._transferFromExcluded(address,address,uint256).rTransferAmount (#1212) is too similar to XoloInu.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1187)
Variable XoloInu._transferToExcluded(address,address,uint256).rTransferAmount (#1202) is too similar to XoloInu._transferFromExcluded(address,address,uint256).tTransferAmount (#1212)
Variable XoloInu.reflectionFromToken(uint256,bool).rTransferAmount (#893) is too similar to XoloInu._transferBothExcluded(address,address,uint256).tTransferAmount (#927)
Variable XoloInu._transferToExcluded(address,address,uint256).rTransferAmount (#1202) is too similar to XoloInu._transferToExcluded(address,address,uint256).tTransferAmount (#1202)
Variable XoloInu._transferToExcluded(address,address,uint256).rTransferAmount (#1202) is too similar to XoloInu._transferStandard(address,address,uint256).tTransferAmount (#1176)
Variable XoloInu._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#964) is too similar to XoloInu._transferFromExcluded(address,address,uint256).tTransferAmount (#1212)
Variable XoloInu._transferToExcluded(address,address,uint256).rTransferAmount (#1202) is too similar to XoloInu.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1187)
Variable XoloInu._transferStandard(address,address,uint256).rTransferAmount (#1176) is too similar to XoloInu._getTValues(uint256).tTransferAmount (#956)
Variable XoloInu._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#964) is too similar to XoloInu.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1187)
Variable XoloInu._transferBothExcluded(address,address,uint256).rTransferAmount (#927) is too similar to XoloInu.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1187)
Variable XoloInu.reflectionFromToken(uint256,bool).rTransferAmount (#893) is too similar to XoloInu._transferFromExcluded(address,address,uint256).tTransferAmount (#1212)
Variable XoloInu.reflectionFromToken(uint256,bool).rTransferAmount (#893) is too similar to XoloInu._transferToExcluded(address,address,uint256).tTransferAmount (#1202)
Variable XoloInu.reflectionFromToken(uint256,bool).rTransferAmount (#893) is too similar to XoloInu._transferStandard(address,address,uint256).tTransferAmount (#1176)
Variable XoloInu.reflectionFromToken(uint256,bool).rTransferAmount (#893) is too similar to XoloInu.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1187)
Variable XoloInu._transferStandard(address,address,uint256).rTransferAmount (#1176) is too similar to XoloInu._transferBothExcluded(address,address,uint256).tTransferAmount (#927)
Variable XoloInu._getValues(uint256).rTransferAmount (#949) is too similar to XoloInu._getTValues(uint256).tTransferAmount (#956)
Variable XoloInu._transferStandard(address,address,uint256).rTransferAmount (#1176) is too similar to XoloInu._transferFromExcluded(address,address,uint256).tTransferAmount (#1212)
Variable XoloInu._transferFromExcluded(address,address,uint256).rTransferAmount (#1212) is too similar to XoloInu._getTValues(uint256).tTransferAmount (#956)
Variable XoloInu._transferStandard(address,address,uint256).rTransferAmount (#1176) is too similar to XoloInu._transferStandard(address,address,uint256).tTransferAmount (#1176)
Variable XoloInu.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1187) is too similar to XoloInu._transferToExcluded(address,address,uint256).tTransferAmount (#1202)
Variable XoloInu._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#964) is too similar to XoloInu._getValues(uint256).tTransferAmount (#948)
Variable XoloInu._transferFromExcluded(address,address,uint256).rTransferAmount (#1212) is too similar to XoloInu._transferStandard(address,address,uint256).tTransferAmount (#1176)
Variable XoloInu.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1187) is too similar to XoloInu.takeMarketing(address,uint256,uint256,uint256).tTransferAmount (#1187)
Variable XoloInu.reflectionFromToken(uint256,bool).rTransferAmount (#893) is too similar to XoloInu._getValues(uint256).tTransferAmount (#948)
Variable XoloInu._transferBothExcluded(address,address,uint256).rTransferAmount (#927) is too similar to XoloInu._getTValues(uint256).tTransferAmount (#956)
Variable XoloInu._transferBothExcluded(address,address,uint256).rTransferAmount (#927) is too similar to XoloInu._getValues(uint256).tTransferAmount (#948)
Variable XoloInu._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#964) is too similar to XoloInu._transferToExcluded(address,address,uint256).tTransferAmount (#1202)
Variable XoloInu.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1187) is too similar to XoloInu._transferStandard(address,address,uint256).tTransferAmount (#1176)
Variable XoloInu._transferBothExcluded(address,address,uint256).rTransferAmount (#927) is too similar to XoloInu._transferFromExcluded(address,address,uint256).tTransferAmount (#1212)
Variable XoloInu._getValues(uint256).rTransferAmount (#949) is too similar to XoloInu._getValues(uint256).tTransferAmount (#948)
Variable XoloInu._transferFromExcluded(address,address,uint256).rTransferAmount (#1212) is too similar to XoloInu._getValues(uint256).tTransferAmount (#948)
Variable XoloInu._transferToExcluded(address,address,uint256).rTransferAmount (#1202) is too similar to XoloInu._getValues(uint256).tTransferAmount (#948)
Variable XoloInu._transferStandard(address,address,uint256).rTransferAmount (#1176) is too similar to XoloInu._getValues(uint256).tTransferAmount (#948)
Variable XoloInu._transferBothExcluded(address,address,uint256).rTransferAmount (#927) is too similar to XoloInu._transferToExcluded(address,address,uint256).tTransferAmount (#1202)
Variable XoloInu._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#964) is too similar to XoloInu._transferStandard(address,address,uint256).tTransferAmount (#1176)
Variable XoloInu._transferBothExcluded(address,address,uint256).rTransferAmount (#927) is too similar to XoloInu._transferStandard(address,address,uint256).tTransferAmount (#1176)
Variable XoloInu.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1187) is too similar to XoloInu._getTValues(uint256).tTransferAmount (#956)
Variable XoloInu._transferFromExcluded(address,address,uint256).rTransferAmount (#1212) is too similar to XoloInu._transferToExcluded(address,address,uint256).tTransferAmount (#1202)
Variable XoloInu.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1187) is too similar to XoloInu._getValues(uint256).tTransferAmount (#948)
Variable XoloInu._transferStandard(address,address,uint256).rTransferAmount (#1176) is too similar to XoloInu._transferToExcluded(address,address,uint256).tTransferAmount (#1202)
Variable XoloInu.takeMarketing(address,uint256,uint256,uint256).rTransferAmount (#1187) is too similar to XoloInu._transferFromExcluded(address,address,uint256).tTransferAmount (#1212)
Prevent variables from having similar names.

Additional information: link

XoloInu.slitherConstructorVariables() (#741-1305) uses literals with too many digits:
- _tTotal = 10000000000 * 10 ** 18 (#759)
XoloInu.slitherConstructorVariables() (#741-1305) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#772)
XoloInu.slitherConstructorVariables() (#741-1305) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 90000000 * 10 ** 18 (#784)
XoloInu.slitherConstructorVariables() (#741-1305) uses literals with too many digits:
- _maxTxAmount = 1000000000 * 10 ** 18 (#785)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

XoloInu._decimals (#765) should be constant
XoloInu._name (#763) should be constant
XoloInu._symbol (#764) should be constant
XoloInu._tTotal (#759) should be constant
XoloInu.deadAddress (#772) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#493-496)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#502-506)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#508-510)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#513-518)
unlock() should be declared external:
- Ownable.unlock() (#521-526)
name() should be declared external:
- XoloInu.name() (#819-821)
symbol() should be declared external:
- XoloInu.symbol() (#823-825)
decimals() should be declared external:
- XoloInu.decimals() (#827-829)
totalSupply() should be declared external:
- XoloInu.totalSupply() (#831-833)
transfer(address,uint256) should be declared external:
- XoloInu.transfer(address,uint256) (#840-843)
allowance(address,address) should be declared external:
- XoloInu.allowance(address,address) (#845-847)
approve(address,uint256) should be declared external:
- XoloInu.approve(address,uint256) (#849-852)
transferFrom(address,address,uint256) should be declared external:
- XoloInu.transferFrom(address,address,uint256) (#854-858)
increaseAllowance(address,uint256) should be declared external:
- XoloInu.increaseAllowance(address,uint256) (#860-863)
decreaseAllowance(address,uint256) should be declared external:
- XoloInu.decreaseAllowance(address,uint256) (#865-868)
isExcludedFromReward(address) should be declared external:
- XoloInu.isExcludedFromReward(address) (#870-872)
totalFees() should be declared external:
- XoloInu.totalFees() (#874-876)
deliver(uint256) should be declared external:
- XoloInu.deliver(uint256) (#878-885)
reflectionFromToken(uint256,bool) should be declared external:
- XoloInu.reflectionFromToken(uint256,bool) (#887-896)
excludeFromReward(address) should be declared external:
- XoloInu.excludeFromReward(address) (#904-911)
isExcludedFromFee(address) should be declared external:
- XoloInu.isExcludedFromFee(address) (#1023-1025)
excludeFromFee(address) should be declared external:
- XoloInu.excludeFromFee(address) (#1222-1224)
includeInFee(address) should be declared external:
- XoloInu.includeInFee(address) (#1226-1228)
isRemovedSniper(address) should be declared external:
- XoloInu.isRemovedSniper(address) (#1259-1261)
setRouterAddress(address) should be declared external:
- XoloInu.setRouterAddress(address) (#1289-1293)
setSwapAndLiquifyEnabled(bool) should be declared external:
- XoloInu.setSwapAndLiquifyEnabled(bool) (#1295-1298)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:

Contract has 10% buy tax and 9% sell tax.
Taxes are low but contract ownership is not renounced. Token has a high risk of becoming a honeypot.


Token is deployed only at one blockchain


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


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 find audit link on the website


Unable to find whitepaper link on the website


Unable to find token on CoinHunt

Additional information: link


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

Additional information: link


Alexa traffic rank is very low

Additional information: link


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death


Token has relatively low CoinGecko rank

Price for XL

News for XL