Xchain Wallet Token Logo

XWALL [Xchain Wallet] Token

ALERT: unclassified scam

About XWALL

Listings

Not Found
Token 2 years

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 9 June 2022

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


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


Token is flagged by TokenSniffer due to presence of exploit in contract code


Contract ownership is not renounced (belongs to a wallet)

XWALL.tokenSale(address) (#161-184) performs a multiplication on the result of a division:
-_price = _eth / salePrice (#167)
-_tkns = saleChunk * _price (#168)
Consider ordering multiplication before division.

Additional information: link

XWALL.viewSale().privateSaletokensSold (#190) shadows:
- XWALL.privateSaletokensSold (#141) (state variable)
Rename the local variables that shadow another component.

Additional information: link

XWALL.startAirdrop(uint256,uint256,uint256) (#194-199) should emit an event for:
- airdropAmt = _airdropAmt (#195)
- airdropCap = _airdropCap (#196)
XWALL.startSale(uint256,uint256,uint256,uint256) (#200-206) should emit an event for:
- saleChunk = _saleChunk (#201)
- salePrice = _salePrice (#202)
- saleCap = _saleCap (#203)
Emit an event for critical parameter changes.

Additional information: link

Owned.transferOwnership(address)._newOwner (#53) lacks a zero-check on :
- newOwner = _newOwner (#54)
XWALL.tran()._owner (#214) lacks a zero-check on :
- _owner.transfer(address(this).balance) (#215)
Check that the address is not zero.

Additional information: link

XWALL.getAirdrop(address) (#143-159) compares to a boolean constant:
-require(bool)(isAirdropRunning == true) (#145)
XWALL.tokenSale(address) (#161-184) compares to a boolean constant:
-require(bool)(isSaleRunning == true) (#163)
Remove the equality to the boolean constant.

Additional information: link

SafeMath.div(uint256,uint256) (#16-19) is never used and should be removed
SafeMath.mul(uint256,uint256) (#12-15) is never used and should be removed
Remove unused functions.

Additional information: link

Pragma version>=0.5.10 (#1) allows old versions
solc-0.5.10 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

Parameter Owned.transferOwnership(address)._newOwner (#53) is not in mixedCase
Variable TokenERC20._totalSupply (#70) is not in mixedCase
Parameter XWALL.getAirdrop(address)._refer (#143) is not in mixedCase
Parameter XWALL.tokenSale(address)._refer (#161) is not in mixedCase
Parameter XWALL.startAirdrop(uint256,uint256,uint256)._airdropAmt (#194) is not in mixedCase
Parameter XWALL.startAirdrop(uint256,uint256,uint256)._airdropCap (#194) is not in mixedCase
Parameter XWALL.startAirdrop(uint256,uint256,uint256)._aDivisionInt (#194) is not in mixedCase
Parameter XWALL.startSale(uint256,uint256,uint256,uint256)._saleChunk (#200) is not in mixedCase
Parameter XWALL.startSale(uint256,uint256,uint256,uint256)._salePrice (#200) is not in mixedCase
Parameter XWALL.startSale(uint256,uint256,uint256,uint256)._saleCap (#200) is not in mixedCase
Parameter XWALL.startSale(uint256,uint256,uint256,uint256)._sDivisionInt (#200) is not in mixedCase
Parameter XWALL.setSaleActivation(bool)._isSaleRunning (#207) is not in mixedCase
Parameter XWALL.setAirdropActivation(bool)._isAirdropRunning (#210) is not in mixedCase
Parameter XWALL.burn(uint256)._value (#227) is not in mixedCase
Variable XWALL.collected_airdrop (#140) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable XWALL.startAirdrop(uint256,uint256,uint256)._aDivisionInt (#194) is too similar to XWALL.startSale(uint256,uint256,uint256,uint256)._sDivisionInt (#200)
Variable XWALL.aDivisionInt (#129) is too similar to XWALL.sDivisionInt (#135)
Prevent variables from having similar names.

Additional information: link

TokenERC20.constructor() (#75-82) uses literals with too many digits:
- _totalSupply = 1000000000000e0 (#79)
XWALL.getAirdrop(address) (#143-159) uses literals with too many digits:
- msg.sender != _refer && balanceOf(_refer) != 0 && _refer != 0x0000000000000000000000000000000000000000 (#148)
XWALL.tokenSale(address) (#161-184) uses literals with too many digits:
- msg.sender != _refer && balanceOf(_refer) != 0 && _refer != 0x0000000000000000000000000000000000000000 (#174)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

totalSupply() should be declared external:
- ERC20Interface.totalSupply() (#23)
- TokenERC20.totalSupply() (#84-86)
allowance(address,address) should be declared external:
- ERC20Interface.allowance(address,address) (#25)
- TokenERC20.allowance(address,address) (#109-111)
transfer(address,uint256) should be declared external:
- ERC20Interface.transfer(address,uint256) (#26)
- TokenERC20.transfer(address,uint256) (#90-95)
approve(address,uint256) should be declared external:
- ERC20Interface.approve(address,uint256) (#27)
- TokenERC20.approve(address,uint256) (#97-101)
transferFrom(address,address,uint256) should be declared external:
- ERC20Interface.transferFrom(address,address,uint256) (#28)
- TokenERC20.transferFrom(address,address,uint256) (#102-108)
receiveApproval(address,uint256,address,bytes) should be declared external:
- ApproveAndCallFallBack.receiveApproval(address,uint256,address,bytes) (#35)
transferOwnership(address) should be declared external:
- Owned.transferOwnership(address) (#53-55)
acceptOwnership() should be declared external:
- Owned.acceptOwnership() (#56-61)
approveAndCall(address,uint256,bytes) should be declared external:
- TokenERC20.approveAndCall(address,uint256,bytes) (#112-117)
getAirdrop(address) should be declared external:
- XWALL.getAirdrop(address) (#143-159)
tokenSale(address) should be declared external:
- XWALL.tokenSale(address) (#161-184)
viewAirdrop() should be declared external:
- XWALL.viewAirdrop() (#187-189)
viewSale() should be declared external:
- XWALL.viewSale() (#190-192)
startAirdrop(uint256,uint256,uint256) should be declared external:
- XWALL.startAirdrop(uint256,uint256,uint256) (#194-199)
startSale(uint256,uint256,uint256,uint256) should be declared external:
- XWALL.startSale(uint256,uint256,uint256,uint256) (#200-206)
setSaleActivation(bool) should be declared external:
- XWALL.setSaleActivation(bool) (#207-209)
setAirdropActivation(bool) should be declared external:
- XWALL.setAirdropActivation(bool) (#210-212)
tran() should be declared external:
- XWALL.tran() (#213-216)
getBalance() should be declared external:
- XWALL.getBalance() (#217-219)
txnToken() should be declared external:
- XWALL.txnToken() (#220-226)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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 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.


Unable to find Telegram and Twitter accounts


Unable to find website, listings and other project-related information


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

Additional information: link


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 XWALL