Xpose Protocol Token Logo

XP [Xpose Protocol] Token

About XP

Listings

Token 2 years
[CoinGecko] alert: Old contract 0xcc10c8afd683c5aa86b1d170d75b555bce5a2c37. Please visit here for more info https://twitter.com/XposeProtocol/status/1423343790794936320
white paper

Besides XPOSE being an autonomous yield and liquidity generation protocol, the XPOSE community will reach millions of people through online & offline network marketing. We create insane marketing campaigns to positively impact millions of people worldwide. The only thing our holders have to do is hold XPOSE in their wallet and vote for marketing campaigns.

Social

Laser Scorebeta Last Audit: 29 December 2021

report
Token seems to be (relatively) fine. It still become a scam, but probability is moderate.

Anti-Scam

Links


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

XposeProtocol.swapAndCommunity(uint256) (contracts/XposeProtocol.sol#609-628) sends eth to arbitrary user
Dangerous calls:
- _communityRewardPoolWallet.send(newBalance) (contracts/XposeProtocol.sol#620)
XposeProtocol.swapAndMarketing(uint256) (contracts/XposeProtocol.sol#630-649) sends eth to arbitrary user
Dangerous calls:
- _marketingPoolWallet.send(newBalance) (contracts/XposeProtocol.sol#641)
XposeProtocol.addLiquidity(uint256,uint256) (contracts/XposeProtocol.sol#695-708) sends eth to arbitrary user
Dangerous calls:
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/XposeProtocol.sol#700-707)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in XposeProtocol._transfer(address,address,uint256) (contracts/XposeProtocol.sol#523-595):
External calls:
- swapAndCommunity(_currentCommunityTriggerAmount) (contracts/XposeProtocol.sol#577)
- pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/XposeProtocol.sol#686-692)
External calls sending eth:
- swapAndCommunity(_currentCommunityTriggerAmount) (contracts/XposeProtocol.sol#577)
- _communityRewardPoolWallet.send(newBalance) (contracts/XposeProtocol.sol#620)
State variables written after the call(s):
- _currentCommunityTriggerAmount = 0 (contracts/XposeProtocol.sol#578)
Reentrancy in XposeProtocol._transfer(address,address,uint256) (contracts/XposeProtocol.sol#523-595):
External calls:
- swapAndCommunity(_currentCommunityTriggerAmount) (contracts/XposeProtocol.sol#577)
- pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/XposeProtocol.sol#686-692)
- swapAndMarketing(_currentMarketingTriggerAmount) (contracts/XposeProtocol.sol#582)
- pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/XposeProtocol.sol#686-692)
External calls sending eth:
- swapAndCommunity(_currentCommunityTriggerAmount) (contracts/XposeProtocol.sol#577)
- _communityRewardPoolWallet.send(newBalance) (contracts/XposeProtocol.sol#620)
- swapAndMarketing(_currentMarketingTriggerAmount) (contracts/XposeProtocol.sol#582)
- _marketingPoolWallet.send(newBalance) (contracts/XposeProtocol.sol#641)
State variables written after the call(s):
- _currentMarketingTriggerAmount = 0 (contracts/XposeProtocol.sol#583)
Reentrancy in XposeProtocol._transfer(address,address,uint256) (contracts/XposeProtocol.sol#523-595):
External calls:
- swapAndCommunity(_currentCommunityTriggerAmount) (contracts/XposeProtocol.sol#577)
- pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/XposeProtocol.sol#686-692)
- swapAndMarketing(_currentMarketingTriggerAmount) (contracts/XposeProtocol.sol#582)
- pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/XposeProtocol.sol#686-692)
- swapAndLiquify(_currentLiquidityTriggerAmount) (contracts/XposeProtocol.sol#587)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/XposeProtocol.sol#700-707)
- pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/XposeProtocol.sol#686-692)
External calls sending eth:
- swapAndCommunity(_currentCommunityTriggerAmount) (contracts/XposeProtocol.sol#577)
- _communityRewardPoolWallet.send(newBalance) (contracts/XposeProtocol.sol#620)
- swapAndMarketing(_currentMarketingTriggerAmount) (contracts/XposeProtocol.sol#582)
- _marketingPoolWallet.send(newBalance) (contracts/XposeProtocol.sol#641)
- swapAndLiquify(_currentLiquidityTriggerAmount) (contracts/XposeProtocol.sol#587)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/XposeProtocol.sol#700-707)
State variables written after the call(s):
- _balances[recipient] = _balances[recipient].add(totalSendAmount) (contracts/XposeProtocol.sol#593)
- _currentLiquidityTriggerAmount = 0 (contracts/XposeProtocol.sol#588)
Apply the check-effects-interactions pattern.

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.

XposeProtocol._transfer(address,address,uint256) (contracts/XposeProtocol.sol#523-595) performs a multiplication on the result of a division:
-feeAmount = (totalSendAmount.mul(_commonFee)).div(100) (contracts/XposeProtocol.sol#538)
-liquidityPoolAmount = (feeAmount.mul(_liquidityPoolFee)).div(100) (contracts/XposeProtocol.sol#540)
XposeProtocol._transfer(address,address,uint256) (contracts/XposeProtocol.sol#523-595) performs a multiplication on the result of a division:
-feeAmount = (totalSendAmount.mul(_commonFee)).div(100) (contracts/XposeProtocol.sol#538)
-marketingPoolAmount = (feeAmount.mul(_marketingPoolFee)).div(100) (contracts/XposeProtocol.sol#541)
XposeProtocol._transfer(address,address,uint256) (contracts/XposeProtocol.sol#523-595) performs a multiplication on the result of a division:
-feeAmount = (totalSendAmount.mul(_commonFee)).div(100) (contracts/XposeProtocol.sol#538)
-burnAmount = (feeAmount.mul(_burnFee)).div(100) (contracts/XposeProtocol.sol#542)
XposeProtocol._transfer(address,address,uint256) (contracts/XposeProtocol.sol#523-595) performs a multiplication on the result of a division:
-feeAmount = (totalSendAmount.mul(_commonFee)).div(100) (contracts/XposeProtocol.sol#538)
-communityRewardPoolAmount = (feeAmount.mul(_communityRewardPoolFee)).div(100) (contracts/XposeProtocol.sol#543)
Consider ordering multiplication before division.

Additional information: link

XposeProtocol.addLiquidity(uint256,uint256) (contracts/XposeProtocol.sol#695-708) ignores return value by pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/XposeProtocol.sol#700-707)
Ensure that all the return values of the function calls are used.

Additional information: link

XposeProtocol.allowance(address,address).owner (contracts/XposeProtocol.sol#823) shadows:
- Ownable.owner() (contracts/Ownable.sol#34-36) (function)
XposeProtocol._approve(address,address,uint256).owner (contracts/XposeProtocol.sol#947) shadows:
- Ownable.owner() (contracts/Ownable.sol#34-36) (function)
Rename the local variables that shadow another component.

Additional information: link

XposeProtocol.setFees(uint256,uint256,uint256,uint256) (contracts/XposeProtocol.sol#710-718) should emit an event for:
- _liquidityPoolFee = liquidityPoolFee (contracts/XposeProtocol.sol#714)
- _marketingPoolFee = marketingPoolFee (contracts/XposeProtocol.sol#715)
- _burnFee = burnFee (contracts/XposeProtocol.sol#716)
- _communityRewardPoolFee = communityRewardPoolFee (contracts/XposeProtocol.sol#717)
XposeProtocol.setTriggerAmounts(uint256,uint256,uint256) (contracts/XposeProtocol.sol#730-734) should emit an event for:
- _liquidityTriggerAmount = liquidityTriggerAmount (contracts/XposeProtocol.sol#731)
- _marketingTriggerAmount = marketingTriggerAmount (contracts/XposeProtocol.sol#732)
- _communityTriggerAmount = communityTriggerAmount (contracts/XposeProtocol.sol#733)
Emit an event for critical parameter changes.

Additional information: link

Reentrancy in XposeProtocol._transfer(address,address,uint256) (contracts/XposeProtocol.sol#523-595):
External calls:
- swapAndCommunity(_currentCommunityTriggerAmount) (contracts/XposeProtocol.sol#577)
- pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/XposeProtocol.sol#686-692)
- swapAndMarketing(_currentMarketingTriggerAmount) (contracts/XposeProtocol.sol#582)
- pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/XposeProtocol.sol#686-692)
External calls sending eth:
- swapAndCommunity(_currentCommunityTriggerAmount) (contracts/XposeProtocol.sol#577)
- _communityRewardPoolWallet.send(newBalance) (contracts/XposeProtocol.sol#620)
- swapAndMarketing(_currentMarketingTriggerAmount) (contracts/XposeProtocol.sol#582)
- _marketingPoolWallet.send(newBalance) (contracts/XposeProtocol.sol#641)
State variables written after the call(s):
- swapAndMarketing(_currentMarketingTriggerAmount) (contracts/XposeProtocol.sol#582)
- _allowances[owner][spender] = amount (contracts/XposeProtocol.sol#951)
Reentrancy in XposeProtocol._transfer(address,address,uint256) (contracts/XposeProtocol.sol#523-595):
External calls:
- swapAndCommunity(_currentCommunityTriggerAmount) (contracts/XposeProtocol.sol#577)
- pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/XposeProtocol.sol#686-692)
- swapAndMarketing(_currentMarketingTriggerAmount) (contracts/XposeProtocol.sol#582)
- pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/XposeProtocol.sol#686-692)
- swapAndLiquify(_currentLiquidityTriggerAmount) (contracts/XposeProtocol.sol#587)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/XposeProtocol.sol#700-707)
- pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/XposeProtocol.sol#686-692)
External calls sending eth:
- swapAndCommunity(_currentCommunityTriggerAmount) (contracts/XposeProtocol.sol#577)
- _communityRewardPoolWallet.send(newBalance) (contracts/XposeProtocol.sol#620)
- swapAndMarketing(_currentMarketingTriggerAmount) (contracts/XposeProtocol.sol#582)
- _marketingPoolWallet.send(newBalance) (contracts/XposeProtocol.sol#641)
- swapAndLiquify(_currentLiquidityTriggerAmount) (contracts/XposeProtocol.sol#587)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/XposeProtocol.sol#700-707)
State variables written after the call(s):
- swapAndLiquify(_currentLiquidityTriggerAmount) (contracts/XposeProtocol.sol#587)
- _allowances[owner][spender] = amount (contracts/XposeProtocol.sol#951)
Reentrancy in XposeProtocol.constructor(string,string,uint8,uint256,address,address,address,address) (contracts/XposeProtocol.sol#165-213):
External calls:
- pancakeswapV2Pair = IPancakeFactory(_pancakeswapV2Router.factory()).createPair(address(this),_pancakeswapV2Router.WETH()) (contracts/XposeProtocol.sol#197-198)
State variables written after the call(s):
- _mint(_msgSender(),initialSupply.sub((initialSupply.mul(_percentFromSupplyForTeam)).div(100))) (contracts/XposeProtocol.sol#212)
- _balances[account] = _balances[account].add(amount) (contracts/XposeProtocol.sol#909)
- excludeFromFee(address(this)) (contracts/XposeProtocol.sol#203)
- _excludedFromFee[account] = true (contracts/XposeProtocol.sol#737)
- excludeFromFee(_msgSender()) (contracts/XposeProtocol.sol#204)
- _excludedFromFee[account] = true (contracts/XposeProtocol.sol#737)
- excludeFromFee(routerAddress) (contracts/XposeProtocol.sol#205)
- _excludedFromFee[account] = true (contracts/XposeProtocol.sol#737)
- _lockedTokensForTeam = (initialSupply.mul(_percentFromSupplyForTeam)).div(100) (contracts/XposeProtocol.sol#208)
- _teamWallet = contractTeamWallet (contracts/XposeProtocol.sol#207)
- _timeToReleaseFirstStep = block.timestamp + 20995200 (contracts/XposeProtocol.sol#209)
- _timeToReleaseSecondStep = block.timestamp + 31536000 (contracts/XposeProtocol.sol#210)
- _mint(_msgSender(),initialSupply.sub((initialSupply.mul(_percentFromSupplyForTeam)).div(100))) (contracts/XposeProtocol.sol#212)
- _totalSupply = _totalSupply.add(amount) (contracts/XposeProtocol.sol#908)
- pancakeswapV2Router = _pancakeswapV2Router (contracts/XposeProtocol.sol#201)
Reentrancy in XposeProtocol.swapAndLiquify(uint256) (contracts/XposeProtocol.sol#651-675):
External calls:
- swapTokensForEth(half) (contracts/XposeProtocol.sol#665)
- pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/XposeProtocol.sol#686-692)
- addLiquidity(otherHalf,newBalance) (contracts/XposeProtocol.sol#672)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/XposeProtocol.sol#700-707)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (contracts/XposeProtocol.sol#672)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/XposeProtocol.sol#700-707)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (contracts/XposeProtocol.sol#672)
- _allowances[owner][spender] = amount (contracts/XposeProtocol.sol#951)
Reentrancy in XposeProtocol.transferFrom(address,address,uint256) (contracts/XposeProtocol.sol#852-856):
External calls:
- _transfer(sender,recipient,amount) (contracts/XposeProtocol.sol#853)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/XposeProtocol.sol#700-707)
- pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/XposeProtocol.sol#686-692)
External calls sending eth:
- _transfer(sender,recipient,amount) (contracts/XposeProtocol.sol#853)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/XposeProtocol.sol#700-707)
- _marketingPoolWallet.send(newBalance) (contracts/XposeProtocol.sol#641)
- _communityRewardPoolWallet.send(newBalance) (contracts/XposeProtocol.sol#620)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,BEP20: transfer amount exceeds allowance)) (contracts/XposeProtocol.sol#854)
- _allowances[owner][spender] = amount (contracts/XposeProtocol.sol#951)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in XposeProtocol._transfer(address,address,uint256) (contracts/XposeProtocol.sol#523-595):
External calls:
- swapAndCommunity(_currentCommunityTriggerAmount) (contracts/XposeProtocol.sol#577)
- pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/XposeProtocol.sol#686-692)
- swapAndMarketing(_currentMarketingTriggerAmount) (contracts/XposeProtocol.sol#582)
- pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/XposeProtocol.sol#686-692)
External calls sending eth:
- swapAndCommunity(_currentCommunityTriggerAmount) (contracts/XposeProtocol.sol#577)
- _communityRewardPoolWallet.send(newBalance) (contracts/XposeProtocol.sol#620)
- swapAndMarketing(_currentMarketingTriggerAmount) (contracts/XposeProtocol.sol#582)
- _marketingPoolWallet.send(newBalance) (contracts/XposeProtocol.sol#641)
Event emitted after the call(s):
- Approval(owner,spender,amount) (contracts/XposeProtocol.sol#952)
- swapAndMarketing(_currentMarketingTriggerAmount) (contracts/XposeProtocol.sol#582)
- SwapAndMarketing(amount,newBalance) (contracts/XposeProtocol.sol#643)
- swapAndMarketing(_currentMarketingTriggerAmount) (contracts/XposeProtocol.sol#582)
Reentrancy in XposeProtocol._transfer(address,address,uint256) (contracts/XposeProtocol.sol#523-595):
External calls:
- swapAndCommunity(_currentCommunityTriggerAmount) (contracts/XposeProtocol.sol#577)
- pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/XposeProtocol.sol#686-692)
- swapAndMarketing(_currentMarketingTriggerAmount) (contracts/XposeProtocol.sol#582)
- pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/XposeProtocol.sol#686-692)
- swapAndLiquify(_currentLiquidityTriggerAmount) (contracts/XposeProtocol.sol#587)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/XposeProtocol.sol#700-707)
- pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/XposeProtocol.sol#686-692)
External calls sending eth:
- swapAndCommunity(_currentCommunityTriggerAmount) (contracts/XposeProtocol.sol#577)
- _communityRewardPoolWallet.send(newBalance) (contracts/XposeProtocol.sol#620)
- swapAndMarketing(_currentMarketingTriggerAmount) (contracts/XposeProtocol.sol#582)
- _marketingPoolWallet.send(newBalance) (contracts/XposeProtocol.sol#641)
- swapAndLiquify(_currentLiquidityTriggerAmount) (contracts/XposeProtocol.sol#587)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/XposeProtocol.sol#700-707)
Event emitted after the call(s):
- Approval(owner,spender,amount) (contracts/XposeProtocol.sol#952)
- swapAndLiquify(_currentLiquidityTriggerAmount) (contracts/XposeProtocol.sol#587)
- SwapAndLiquify(half,newBalance,otherHalf) (contracts/XposeProtocol.sol#674)
- swapAndLiquify(_currentLiquidityTriggerAmount) (contracts/XposeProtocol.sol#587)
- Transfer(sender,recipient,amount) (contracts/XposeProtocol.sol#594)
Reentrancy in XposeProtocol.constructor(string,string,uint8,uint256,address,address,address,address) (contracts/XposeProtocol.sol#165-213):
External calls:
- pancakeswapV2Pair = IPancakeFactory(_pancakeswapV2Router.factory()).createPair(address(this),_pancakeswapV2Router.WETH()) (contracts/XposeProtocol.sol#197-198)
Event emitted after the call(s):
- Transfer(address(0),account,amount) (contracts/XposeProtocol.sol#910)
- _mint(_msgSender(),initialSupply.sub((initialSupply.mul(_percentFromSupplyForTeam)).div(100))) (contracts/XposeProtocol.sol#212)
Reentrancy in XposeProtocol.swapAndCommunity(uint256) (contracts/XposeProtocol.sol#609-628):
External calls:
- swapTokensForEth(amount) (contracts/XposeProtocol.sol#614)
- pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/XposeProtocol.sol#686-692)
External calls sending eth:
- _communityRewardPoolWallet.send(newBalance) (contracts/XposeProtocol.sol#620)
Event emitted after the call(s):
- SwapAndCommunity(amount,newBalance) (contracts/XposeProtocol.sol#622)
Reentrancy in XposeProtocol.swapAndLiquify(uint256) (contracts/XposeProtocol.sol#651-675):
External calls:
- swapTokensForEth(half) (contracts/XposeProtocol.sol#665)
- pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/XposeProtocol.sol#686-692)
- addLiquidity(otherHalf,newBalance) (contracts/XposeProtocol.sol#672)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/XposeProtocol.sol#700-707)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (contracts/XposeProtocol.sol#672)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/XposeProtocol.sol#700-707)
Event emitted after the call(s):
- Approval(owner,spender,amount) (contracts/XposeProtocol.sol#952)
- addLiquidity(otherHalf,newBalance) (contracts/XposeProtocol.sol#672)
- SwapAndLiquify(half,newBalance,otherHalf) (contracts/XposeProtocol.sol#674)
Reentrancy in XposeProtocol.swapAndMarketing(uint256) (contracts/XposeProtocol.sol#630-649):
External calls:
- swapTokensForEth(amount) (contracts/XposeProtocol.sol#635)
- pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/XposeProtocol.sol#686-692)
External calls sending eth:
- _marketingPoolWallet.send(newBalance) (contracts/XposeProtocol.sol#641)
Event emitted after the call(s):
- SwapAndMarketing(amount,newBalance) (contracts/XposeProtocol.sol#643)
Reentrancy in XposeProtocol.transferFrom(address,address,uint256) (contracts/XposeProtocol.sol#852-856):
External calls:
- _transfer(sender,recipient,amount) (contracts/XposeProtocol.sol#853)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/XposeProtocol.sol#700-707)
- pancakeswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/XposeProtocol.sol#686-692)
External calls sending eth:
- _transfer(sender,recipient,amount) (contracts/XposeProtocol.sol#853)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/XposeProtocol.sol#700-707)
- _marketingPoolWallet.send(newBalance) (contracts/XposeProtocol.sol#641)
- _communityRewardPoolWallet.send(newBalance) (contracts/XposeProtocol.sol#620)
Event emitted after the call(s):
- Approval(owner,spender,amount) (contracts/XposeProtocol.sol#952)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,BEP20: transfer amount exceeds allowance)) (contracts/XposeProtocol.sol#854)
Apply the check-effects-interactions pattern.

Additional information: link

XposeProtocol.releaseTeamFirstStep() (contracts/XposeProtocol.sol#215-220) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp >= _timeToReleaseFirstStep,It's not time yet) (contracts/XposeProtocol.sol#216)
XposeProtocol.releaseTeamSecondStep() (contracts/XposeProtocol.sol#222-227) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp >= _timeToReleaseSecondStep,It's not time yet) (contracts/XposeProtocol.sol#223)
Avoid relying on block.timestamp.

Additional information: link

XposeProtocol.isContract(address) (contracts/XposeProtocol.sol#603-607) uses assembly
- INLINE ASM (contracts/XposeProtocol.sol#605)
Do not use evm assembly.

Additional information: link

Different versions of Solidity is used:
- Version used: ['>=0.5.0', '>=0.6.2', '^0.8.0']
- ^0.8.0 (contracts/Context.sol#3)
- ^0.8.0 (contracts/ERC20.sol#3)
- ^0.8.0 (contracts/IERC20.sol#3)
- ^0.8.0 (contracts/IERC20Metadata.sol#3)
- >=0.5.0 (contracts/IPancakeFactory.sol#2)
- >=0.5.0 (contracts/IPancakePair.sol#2)
- >=0.6.2 (contracts/IPancakeRouter01.sol#2)
- >=0.6.2 (contracts/IPancakeRouter02.sol#2)
- ^0.8.0 (contracts/Ownable.sol#3)
- ^0.8.0 (contracts/SafeMath.sol#3)
- ^0.8.0 (contracts/XposeProtocol.sol#2)
Use one Solidity version.

Additional information: link

Context._msgData() (contracts/Context.sol#20-22) is never used and should be removed
ERC20._burn(address,uint256) (contracts/ERC20.sol#273-288) is never used and should be removed
ERC20._mint(address,uint256) (contracts/ERC20.sol#250-260) is never used and should be removed
SafeMath.div(uint256,uint256,string) (contracts/SafeMath.sol#190-199) is never used and should be removed
SafeMath.mod(uint256,uint256) (contracts/SafeMath.sol#150-152) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (contracts/SafeMath.sol#216-225) is never used and should be removed
SafeMath.tryAdd(uint256,uint256) (contracts/SafeMath.sol#21-27) is never used and should be removed
SafeMath.tryDiv(uint256,uint256) (contracts/SafeMath.sol#63-68) is never used and should be removed
SafeMath.tryMod(uint256,uint256) (contracts/SafeMath.sol#75-80) is never used and should be removed
SafeMath.tryMul(uint256,uint256) (contracts/SafeMath.sol#46-56) is never used and should be removed
SafeMath.trySub(uint256,uint256) (contracts/SafeMath.sol#34-39) is never used and should be removed
XposeProtocol._setupDecimals(uint8) (contracts/XposeProtocol.sol#962-964) is never used and should be removed
XposeProtocol.isContract(address) (contracts/XposeProtocol.sol#603-607) is never used and should be removed
Remove unused functions.

Additional information: link

Pragma version^0.8.0 (contracts/Context.sol#3) allows old versions
Pragma version^0.8.0 (contracts/ERC20.sol#3) allows old versions
Pragma version^0.8.0 (contracts/IERC20.sol#3) allows old versions
Pragma version^0.8.0 (contracts/IERC20Metadata.sol#3) allows old versions
Pragma version>=0.5.0 (contracts/IPancakeFactory.sol#2) allows old versions
Pragma version>=0.5.0 (contracts/IPancakePair.sol#2) allows old versions
Pragma version>=0.6.2 (contracts/IPancakeRouter01.sol#2) allows old versions
Pragma version>=0.6.2 (contracts/IPancakeRouter02.sol#2) allows old versions
Pragma version^0.8.0 (contracts/Ownable.sol#3) allows old versions
Pragma version^0.8.0 (contracts/SafeMath.sol#3) allows old versions
Pragma version^0.8.0 (contracts/XposeProtocol.sol#2) 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

XposeProtocol (contracts/XposeProtocol.sol#21-982) should inherit from IERC20Metadata (contracts/IERC20Metadata.sol#12-28)
Inherit from the missing interface or contract.

Additional information: link

Function IPancakePair.DOMAIN_SEPARATOR() (contracts/IPancakePair.sol#19) is not in mixedCase
Function IPancakePair.PERMIT_TYPEHASH() (contracts/IPancakePair.sol#20) is not in mixedCase
Function IPancakePair.MINIMUM_LIQUIDITY() (contracts/IPancakePair.sol#37) is not in mixedCase
Function IPancakeRouter01.WETH() (contracts/IPancakeRouter01.sol#6) is not in mixedCase
Variable XposeProtocol.WETH (contracts/XposeProtocol.sol#24) is not in mixedCase
Variable XposeProtocol._liquidityPoolFee (contracts/XposeProtocol.sol#40) is not in mixedCase
Variable XposeProtocol._marketingPoolFee (contracts/XposeProtocol.sol#41) is not in mixedCase
Variable XposeProtocol._burnFee (contracts/XposeProtocol.sol#42) is not in mixedCase
Variable XposeProtocol._communityRewardPoolFee (contracts/XposeProtocol.sol#43) is not in mixedCase
Variable XposeProtocol._commonFee (contracts/XposeProtocol.sol#46) is not in mixedCase
Variable XposeProtocol._specialFee (contracts/XposeProtocol.sol#48) is not in mixedCase
Variable XposeProtocol._votedCommonFee (contracts/XposeProtocol.sol#56) is not in mixedCase
Variable XposeProtocol._inVoteCommonFee (contracts/XposeProtocol.sol#57) is not in mixedCase
Variable XposeProtocol._votesCommonFee (contracts/XposeProtocol.sol#58) is not in mixedCase
Variable XposeProtocol._votedCommonFeeWallets (contracts/XposeProtocol.sol#59) is not in mixedCase
Variable XposeProtocol._currentOffsetVoteCommonFee (contracts/XposeProtocol.sol#60) is not in mixedCase
Variable XposeProtocol._votedSpecialFee (contracts/XposeProtocol.sol#62) is not in mixedCase
Variable XposeProtocol._inVoteSpecialFee (contracts/XposeProtocol.sol#63) is not in mixedCase
Variable XposeProtocol._votesSpecialFee (contracts/XposeProtocol.sol#64) is not in mixedCase
Variable XposeProtocol._votedSpecialFeeWallets (contracts/XposeProtocol.sol#65) is not in mixedCase
Variable XposeProtocol._currentOffsetVoteSpecialFee (contracts/XposeProtocol.sol#66) is not in mixedCase
Variable XposeProtocol._votedMarketingPoolWallet (contracts/XposeProtocol.sol#69) is not in mixedCase
Variable XposeProtocol._inVoteMarketingPoolWallet (contracts/XposeProtocol.sol#70) is not in mixedCase
Variable XposeProtocol._votesMarketingPoolWallet (contracts/XposeProtocol.sol#71) is not in mixedCase
Variable XposeProtocol._votedMarketingPoolWalletWallets (contracts/XposeProtocol.sol#72) is not in mixedCase
Variable XposeProtocol._currentOffsetVoteMarketingPoolWallet (contracts/XposeProtocol.sol#73) is not in mixedCase
Variable XposeProtocol._votedCommunityRewardPoolWallet (contracts/XposeProtocol.sol#75) is not in mixedCase
Variable XposeProtocol._inVoteCommunityRewardPoolWallet (contracts/XposeProtocol.sol#76) is not in mixedCase
Variable XposeProtocol._votesCommunityRewardPoolWallet (contracts/XposeProtocol.sol#77) is not in mixedCase
Variable XposeProtocol._votedCommunityRewardPoolWalletWallets (contracts/XposeProtocol.sol#78) is not in mixedCase
Variable XposeProtocol._currentOffsetVoteCommunityRewardPoolWallet (contracts/XposeProtocol.sol#79) is not in mixedCase
Variable XposeProtocol._swapOnTransaction (contracts/XposeProtocol.sol#82) is not in mixedCase
Variable XposeProtocol._swapOnCommunity (contracts/XposeProtocol.sol#84) is not in mixedCase
Variable XposeProtocol._swapOnMarketing (contracts/XposeProtocol.sol#85) is not in mixedCase
Variable XposeProtocol._swapOnLiquidity (contracts/XposeProtocol.sol#86) is not in mixedCase
Variable XposeProtocol._liquidityTriggerAmount (contracts/XposeProtocol.sol#89) is not in mixedCase
Variable XposeProtocol._marketingTriggerAmount (contracts/XposeProtocol.sol#90) is not in mixedCase
Variable XposeProtocol._communityTriggerAmount (contracts/XposeProtocol.sol#91) is not in mixedCase
Variable XposeProtocol._currentLiquidityTriggerAmount (contracts/XposeProtocol.sol#94) is not in mixedCase
Variable XposeProtocol._currentMarketingTriggerAmount (contracts/XposeProtocol.sol#95) is not in mixedCase
Variable XposeProtocol._currentCommunityTriggerAmount (contracts/XposeProtocol.sol#96) is not in mixedCase
Variable XposeProtocol._totalLiquidityTriggerAmount (contracts/XposeProtocol.sol#99) is not in mixedCase
Variable XposeProtocol._totalMarketingTriggerAmount (contracts/XposeProtocol.sol#100) is not in mixedCase
Variable XposeProtocol._totalCommunityTriggerAmount (contracts/XposeProtocol.sol#101) is not in mixedCase
Variable XposeProtocol._timeToReleaseFirstStep (contracts/XposeProtocol.sol#118) is not in mixedCase
Variable XposeProtocol._timeToReleaseSecondStep (contracts/XposeProtocol.sol#119) is not in mixedCase
Variable XposeProtocol._lockedTokensForTeam (contracts/XposeProtocol.sol#120) is not in mixedCase
Variable XposeProtocol._percentFromSupplyForTeam (contracts/XposeProtocol.sol#121) is not in mixedCase
Variable XposeProtocol._percentReleaseFirstStep (contracts/XposeProtocol.sol#122) is not in mixedCase
Variable XposeProtocol._percentReleaseSecondStep (contracts/XposeProtocol.sol#123) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Reentrancy in XposeProtocol._transfer(address,address,uint256) (contracts/XposeProtocol.sol#523-595):
External calls:
- swapAndCommunity(_currentCommunityTriggerAmount) (contracts/XposeProtocol.sol#577)
- _communityRewardPoolWallet.send(newBalance) (contracts/XposeProtocol.sol#620)
State variables written after the call(s):
- _currentCommunityTriggerAmount = 0 (contracts/XposeProtocol.sol#578)
Reentrancy in XposeProtocol._transfer(address,address,uint256) (contracts/XposeProtocol.sol#523-595):
External calls:
- swapAndCommunity(_currentCommunityTriggerAmount) (contracts/XposeProtocol.sol#577)
- _communityRewardPoolWallet.send(newBalance) (contracts/XposeProtocol.sol#620)
- swapAndMarketing(_currentMarketingTriggerAmount) (contracts/XposeProtocol.sol#582)
- _marketingPoolWallet.send(newBalance) (contracts/XposeProtocol.sol#641)
State variables written after the call(s):
- swapAndMarketing(_currentMarketingTriggerAmount) (contracts/XposeProtocol.sol#582)
- _allowances[owner][spender] = amount (contracts/XposeProtocol.sol#951)
- _currentMarketingTriggerAmount = 0 (contracts/XposeProtocol.sol#583)
- swapAndMarketing(_currentMarketingTriggerAmount) (contracts/XposeProtocol.sol#582)
- inSwapAndMarketing = true (contracts/XposeProtocol.sol#155)
- inSwapAndMarketing = false (contracts/XposeProtocol.sol#157)
Event emitted after the call(s):
- Approval(owner,spender,amount) (contracts/XposeProtocol.sol#952)
- swapAndMarketing(_currentMarketingTriggerAmount) (contracts/XposeProtocol.sol#582)
- SwapAndMarketing(amount,newBalance) (contracts/XposeProtocol.sol#643)
- swapAndMarketing(_currentMarketingTriggerAmount) (contracts/XposeProtocol.sol#582)
Reentrancy in XposeProtocol._transfer(address,address,uint256) (contracts/XposeProtocol.sol#523-595):
External calls:
- swapAndCommunity(_currentCommunityTriggerAmount) (contracts/XposeProtocol.sol#577)
- _communityRewardPoolWallet.send(newBalance) (contracts/XposeProtocol.sol#620)
- swapAndMarketing(_currentMarketingTriggerAmount) (contracts/XposeProtocol.sol#582)
- _marketingPoolWallet.send(newBalance) (contracts/XposeProtocol.sol#641)
External calls sending eth:
- swapAndCommunity(_currentCommunityTriggerAmount) (contracts/XposeProtocol.sol#577)
- _communityRewardPoolWallet.send(newBalance) (contracts/XposeProtocol.sol#620)
- swapAndMarketing(_currentMarketingTriggerAmount) (contracts/XposeProtocol.sol#582)
- _marketingPoolWallet.send(newBalance) (contracts/XposeProtocol.sol#641)
- swapAndLiquify(_currentLiquidityTriggerAmount) (contracts/XposeProtocol.sol#587)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/XposeProtocol.sol#700-707)
State variables written after the call(s):
- swapAndLiquify(_currentLiquidityTriggerAmount) (contracts/XposeProtocol.sol#587)
- _allowances[owner][spender] = amount (contracts/XposeProtocol.sol#951)
- _balances[recipient] = _balances[recipient].add(totalSendAmount) (contracts/XposeProtocol.sol#593)
- _currentLiquidityTriggerAmount = 0 (contracts/XposeProtocol.sol#588)
- swapAndLiquify(_currentLiquidityTriggerAmount) (contracts/XposeProtocol.sol#587)
- inSwapAndLiquify = true (contracts/XposeProtocol.sol#128)
- inSwapAndLiquify = false (contracts/XposeProtocol.sol#130)
Event emitted after the call(s):
- Approval(owner,spender,amount) (contracts/XposeProtocol.sol#952)
- swapAndLiquify(_currentLiquidityTriggerAmount) (contracts/XposeProtocol.sol#587)
- SwapAndLiquify(half,newBalance,otherHalf) (contracts/XposeProtocol.sol#674)
- swapAndLiquify(_currentLiquidityTriggerAmount) (contracts/XposeProtocol.sol#587)
- Transfer(sender,recipient,amount) (contracts/XposeProtocol.sol#594)
Reentrancy in XposeProtocol.swapAndCommunity(uint256) (contracts/XposeProtocol.sol#609-628):
External calls:
- _communityRewardPoolWallet.send(newBalance) (contracts/XposeProtocol.sol#620)
Event emitted after the call(s):
- SwapAndCommunity(amount,newBalance) (contracts/XposeProtocol.sol#622)
Reentrancy in XposeProtocol.swapAndMarketing(uint256) (contracts/XposeProtocol.sol#630-649):
External calls:
- _marketingPoolWallet.send(newBalance) (contracts/XposeProtocol.sol#641)
Event emitted after the call(s):
- SwapAndMarketing(amount,newBalance) (contracts/XposeProtocol.sol#643)
Reentrancy in XposeProtocol.transferFrom(address,address,uint256) (contracts/XposeProtocol.sol#852-856):
External calls:
- _transfer(sender,recipient,amount) (contracts/XposeProtocol.sol#853)
- _marketingPoolWallet.send(newBalance) (contracts/XposeProtocol.sol#641)
- _communityRewardPoolWallet.send(newBalance) (contracts/XposeProtocol.sol#620)
External calls sending eth:
- _transfer(sender,recipient,amount) (contracts/XposeProtocol.sol#853)
- pancakeswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/XposeProtocol.sol#700-707)
- _marketingPoolWallet.send(newBalance) (contracts/XposeProtocol.sol#641)
- _communityRewardPoolWallet.send(newBalance) (contracts/XposeProtocol.sol#620)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,BEP20: transfer amount exceeds allowance)) (contracts/XposeProtocol.sol#854)
- _allowances[owner][spender] = amount (contracts/XposeProtocol.sol#951)
Event emitted after the call(s):
- Approval(owner,spender,amount) (contracts/XposeProtocol.sol#952)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,BEP20: transfer amount exceeds allowance)) (contracts/XposeProtocol.sol#854)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IPancakeRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (contracts/IPancakeRouter01.sol#11) is too similar to IPancakeRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (contracts/IPancakeRouter01.sol#12)
Variable XposeProtocol._votedCommonFee (contracts/XposeProtocol.sol#56) is too similar to XposeProtocol._votesCommonFee (contracts/XposeProtocol.sol#58)
Variable XposeProtocol._votedCommunityRewardPoolWallet (contracts/XposeProtocol.sol#75) is too similar to XposeProtocol._votesCommunityRewardPoolWallet (contracts/XposeProtocol.sol#77)
Variable XposeProtocol._votedMarketingPoolWallet (contracts/XposeProtocol.sol#69) is too similar to XposeProtocol._votesMarketingPoolWallet (contracts/XposeProtocol.sol#71)
Variable XposeProtocol._votedSpecialFee (contracts/XposeProtocol.sol#62) is too similar to XposeProtocol._votesSpecialFee (contracts/XposeProtocol.sol#64)
Prevent variables from having similar names.

Additional information: link

XposeProtocol.constructor(string,string,uint8,uint256,address,address,address,address) (contracts/XposeProtocol.sol#165-213) uses literals with too many digits:
- require(bool,string)(initialSupply >= 1000000000000000000,Initial supply can't be less than 1000000000000000000) (contracts/XposeProtocol.sol#178)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

XposeProtocol._maxCommonFee (contracts/XposeProtocol.sol#47) is never used in XposeProtocol (contracts/XposeProtocol.sol#21-982)
XposeProtocol._maxSpecialFee (contracts/XposeProtocol.sol#49) is never used in XposeProtocol (contracts/XposeProtocol.sol#21-982)
Remove unused state variables.

Additional information: link

XposeProtocol._maxCommonFee (contracts/XposeProtocol.sol#47) should be constant
XposeProtocol._maxSpecialFee (contracts/XposeProtocol.sol#49) should be constant
XposeProtocol._minAcceptedVotes (contracts/XposeProtocol.sol#52) should be constant
XposeProtocol._minDeclinedVotes (contracts/XposeProtocol.sol#53) should be constant
XposeProtocol._percentFromSupplyForTeam (contracts/XposeProtocol.sol#121) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

name() should be declared external:
- ERC20.name() (contracts/ERC20.sol#60-62)
symbol() should be declared external:
- ERC20.symbol() (contracts/ERC20.sol#68-70)
decimals() should be declared external:
- ERC20.decimals() (contracts/ERC20.sol#85-87)
totalSupply() should be declared external:
- ERC20.totalSupply() (contracts/ERC20.sol#92-94)
- XposeProtocol.totalSupply() (contracts/XposeProtocol.sol#796-798)
balanceOf(address) should be declared external:
- ERC20.balanceOf(address) (contracts/ERC20.sol#99-101)
- XposeProtocol.balanceOf(address) (contracts/XposeProtocol.sol#803-805)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (contracts/ERC20.sol#111-114)
- XposeProtocol.transfer(address,uint256) (contracts/XposeProtocol.sol#815-818)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (contracts/ERC20.sol#119-121)
- XposeProtocol.allowance(address,address) (contracts/XposeProtocol.sol#823-825)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (contracts/ERC20.sol#130-133)
- XposeProtocol.approve(address,uint256) (contracts/XposeProtocol.sol#834-837)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (contracts/ERC20.sol#148-162)
- XposeProtocol.transferFrom(address,address,uint256) (contracts/XposeProtocol.sol#852-856)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (contracts/ERC20.sol#176-179)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (contracts/ERC20.sol#195-203)
renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (contracts/Ownable.sol#53-55)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (contracts/Ownable.sol#61-64)
setFees(uint256,uint256,uint256,uint256) should be declared external:
- XposeProtocol.setFees(uint256,uint256,uint256,uint256) (contracts/XposeProtocol.sol#710-718)
setSwapOnTransaction(bool) should be declared external:
- XposeProtocol.setSwapOnTransaction(bool) (contracts/XposeProtocol.sol#720-722)
setSwapOnValues(bool,bool,bool) should be declared external:
- XposeProtocol.setSwapOnValues(bool,bool,bool) (contracts/XposeProtocol.sol#724-728)
setTriggerAmounts(uint256,uint256,uint256) should be declared external:
- XposeProtocol.setTriggerAmounts(uint256,uint256,uint256) (contracts/XposeProtocol.sol#730-734)
includeInFee(address) should be declared external:
- XposeProtocol.includeInFee(address) (contracts/XposeProtocol.sol#740-742)
includeInSpecialFee(address) should be declared external:
- XposeProtocol.includeInSpecialFee(address) (contracts/XposeProtocol.sol#749-751)
excludeFromSpecialFee(address) should be declared external:
- XposeProtocol.excludeFromSpecialFee(address) (contracts/XposeProtocol.sol#753-755)
name() should be declared external:
- XposeProtocol.name() (contracts/XposeProtocol.sol#764-766)
symbol() should be declared external:
- XposeProtocol.symbol() (contracts/XposeProtocol.sol#772-774)
decimals() should be declared external:
- XposeProtocol.decimals() (contracts/XposeProtocol.sol#789-791)
increaseAllowance(address,uint256) should be declared external:
- XposeProtocol.increaseAllowance(address,uint256) (contracts/XposeProtocol.sol#870-873)
decreaseAllowance(address,uint256) should be declared external:
- XposeProtocol.decreaseAllowance(address,uint256) (contracts/XposeProtocol.sol#889-892)
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.


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.


Last post in Twitter was more than 180 days ago


Unable to find Youtube account


Unable to find Discord account


Token was delisted (assigned to inactive / untracked listing) from CoinMarketCap

Additional information: link


Unable to find audit link on the website


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


Token has no active CoinMarketCap listing / rank


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 XP

News for XP