Xapp Token Logo

XAPP Token

About XAPP

Listings

Not Found
Token 2 years
white paper

XAPP is an automatic-buyback token integrated with decentralized multi-product cloud ecosystem.

Social

Laser Scorebeta Last Audit: 30 November 2021

report
Token is either risky or in presale. For presale 30+ is a fine score.

Anti-Scam

Links


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

Reentrancy in Xapp._transfer(address,address,uint256) (#623-661):
External calls:
- swapTokens(contractTokenBalance) (#641)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#690-696)
- buyBackTokens(balance.div(100)) (#649)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#708-713)
External calls sending eth:
- swapTokens(contractTokenBalance) (#641)
- recipient.transfer(amount) (#934)
- buyBackTokens(balance.div(100)) (#649)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#708-713)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#660)
- _liquidityFee = _previousLiquidityFee (#866)
- _liquidityFee = 0 (#861)
- _tokenTransfer(from,to,amount,takeFee) (#660)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#837)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#753)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#762)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#773)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#783)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#754)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#764)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#774)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#785)
- _tokenTransfer(from,to,amount,takeFee) (#660)
- _rTotal = _rTotal.sub(rFee) (#792)
- _tokenTransfer(from,to,amount,takeFee) (#660)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#839)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#782)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#772)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#763)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#784)
- buyBackTokens(balance.div(100)) (#649)
- inSwapAndLiquify = true (#477)
- inSwapAndLiquify = false (#479)
Apply the check-effects-interactions pattern.

Additional information: link

Xapp.swapTokens(uint256) (#663-672) performs a multiplication on the result of a division:
-transferToAddressETH(marketingAddress,transferredBalance.div(_liquidityFee).mul(marketingDivisor)) (#670)
Consider ordering multiplication before division.

Additional information: link

Xapp.addLiquidity(uint256,uint256) (#718-731) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#723-730)
Ensure that all the return values of the function calls are used.

Additional information: link

Xapp._approve(address,address,uint256).owner (#615) shadows:
- Ownable.owner() (#158-160) (function)
Rename the local variables that shadow another component.

Additional information: link

Xapp.setBuybackUpperLimit(uint256) (#901-903) should emit an event for:
- buyBackUpperLimit = buyBackLimit * 10 ** 18 (#902)
Emit an event for critical parameter changes.

Additional information: link

Xapp.setMarketingAddress(address)._marketingAddress (#905) lacks a zero-check on :
- marketingAddress = address(_marketingAddress) (#906)
Check that the address is not zero.

Additional information: link

Reentrancy in Xapp.transferFrom(address,address,uint256) (#533-537):
External calls:
- _transfer(sender,recipient,amount) (#534)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#708-713)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#690-696)
External calls sending eth:
- _transfer(sender,recipient,amount) (#534)
- recipient.transfer(amount) (#934)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#708-713)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#535)
- _allowances[owner][spender] = amount (#619)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in Xapp.transferFrom(address,address,uint256) (#533-537):
External calls:
- _transfer(sender,recipient,amount) (#534)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#708-713)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#690-696)
External calls sending eth:
- _transfer(sender,recipient,amount) (#534)
- recipient.transfer(amount) (#934)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#708-713)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#620)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#535)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable.unlock() (#193-198) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked until 7 days) (#195)
Avoid relying on block.timestamp.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#125-142) uses assembly
- INLINE ASM (#134-137)
Do not use evm assembly.

Additional information: link

Xapp.addLiquidity(uint256,uint256) (#718-731) is never used and should be removed
Remove unused functions.

Additional information: link

Xapp._previousLiquidityFee (#441) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
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

solc-0.8.4 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._functionCallWithValue(address,bytes,uint256,string) (#125-142):
- (success,returndata) = target.call{value: weiValue}(data) (#128)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Variable Xapp._maxTxAmount (#445) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#12)" inContext (#6-15)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in Xapp.transferFrom(address,address,uint256) (#533-537):
External calls:
- _transfer(sender,recipient,amount) (#534)
- recipient.transfer(amount) (#934)
External calls sending eth:
- _transfer(sender,recipient,amount) (#534)
- recipient.transfer(amount) (#934)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#708-713)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#535)
- _allowances[owner][spender] = amount (#619)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#620)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#535)
Apply the check-effects-interactions pattern.

Additional information: link

Variable Xapp._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#813) is too similar to Xapp._transferStandard(address,address,uint256).tTransferAmount (#752)
Prevent variables from having similar names.

Additional information: link

Xapp.slitherConstructorVariables() (#412-940) uses literals with too many digits:
- minimumTokensBeforeSwap = 200000 * 10 ** 9 (#446)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

Xapp.deadAddress (#417) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

setBuyBackEnabled(bool) should be declared external:
- Xapp.setBuyBackEnabled(bool) (#914-917)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.


Number of Binance Smart Chain (BSC) token holders is low.


Token is deployed only at one blockchain


Token has only one trading pair


Unable to find PancakeSwap trading pair to compute liquidity.


Unable to find PancakeSwap trading pair to compute volume.


Unable to find PancakeSwap trading pair to compute number of swaps.


Twitter account link seems to be invalid


Telegram account has relatively few subscribers


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 on CoinGecko

Additional information: link


Unable to find token on CoinMarketCap

Additional information: link


Unable to find token contract audit


Unable to find audit link on the website


Unable to find token on CoinHunt

Additional information: link


Unable to find code repository for the project


Young tokens have high risks of scam / price dump / death


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank


Young tokens have high risks of price dump / death

Price for XAPP