XTime Token is based on BSC and is currently the only Token with the background of the Republic of El Salvador. XTime will be committed to building an ecosystem belonging to the community. Based on BSC, it will develop the DeFi protocol and will launch a cross-chain revenue aggregator XTimeSwap1.0. Users only need to mortgage their encrypted assets to automatically obtain revenue, and the revenue is all BTC . XTime will also launch BSC-based NFT games in the future, including NFT collections, all of which will use BTC as a means of revenue acquisition or payment
Unable to find manual contract audit (e.g. Certik, PeckShield, Solidity...)
XTime.addLiquidity(uint256,uint256) (XTime.sol#440-455) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(_newRouterAddress),block.timestamp) (XTime.sol#446-453)
Ensure that an arbitrary user cannot withdraw unauthorized funds.
Additional information: link
Reentrancy in XTime._transfer(address,address,uint256) (XTime.sol#294-365):
External calls:
- swapAndSendToFee(burnTokens) (XTime.sol#321)
- IERC20(BTC).transfer(_newRouterAddress,newBalance) (XTime.sol#373)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (XTime.sol#431-437)
- swapAndLiquify(swapTokens) (XTime.sol#324)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(_newRouterAddress),block.timestamp) (XTime.sol#446-453)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (XTime.sol#411-417)
- swapAndSendDividends(sellTokens) (XTime.sol#327)
- success = IERC20(BTC).transfer(address(dividendTracker),dividends) (XTime.sol#460)
- dividendTracker.distributeDogeDividends(dividends) (XTime.sol#463)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (XTime.sol#431-437)
External calls sending eth:
- swapAndLiquify(swapTokens) (XTime.sol#324)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(_newRouterAddress),block.timestamp) (XTime.sol#446-453)
State variables written after the call(s):
- super._transfer(from,address(this),fees) (XTime.sol#347)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (ERC20.sol#221)
- _balances[recipient] = _balances[recipient].add(amount) (ERC20.sol#222)
- super._transfer(from,to,amount) (XTime.sol#350)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (ERC20.sol#221)
- _balances[recipient] = _balances[recipient].add(amount) (ERC20.sol#222)
- swapping = false (XTime.sol#329)
Apply the check-effects-interactions pattern.
Additional information: link
XTime.swapAndSendToFee(uint256) (XTime.sol#367-374) ignores return value by IERC20(BTC).transfer(_newRouterAddress,newBalance) (XTime.sol#373)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.
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.
Combination 2: Unchecked transfer + 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.
Combination 3: Reentrancy vulnerabilities + Unchecked transfer vulnerability. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.
Reentrancy in XTime.updateDividendTracker(address) (XTime.sol#130-145):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (XTime.sol#137)
- newDividendTracker.excludeFromDividends(address(this)) (XTime.sol#138)
- newDividendTracker.excludeFromDividends(owner()) (XTime.sol#139)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (XTime.sol#140)
State variables written after the call(s):
- dividendTracker = newDividendTracker (XTime.sol#144)
Apply the check-effects-interactions pattern.
Additional information: link
XTime._transfer(address,address,uint256).lastProcessedIndex (XTime.sol#358) is a local variable never initialized
Initialize all the variables. If a variable is meant to be initialized to zero, explicitly set it to zero to improve code readability.
Additional information: link
XTime.addLiquidity(uint256,uint256) (XTime.sol#440-455) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,address(_newRouterAddress),block.timestamp) (XTime.sol#446-453)
Ensure that all the return values of the function calls are used.
Additional information: link
DividendPayingToken.accumulativeDividendOf(address)._owner (DividendPayingToken.sol#122) shadows:
- Ownable._owner (Ownable.sol#8) (state variable)
Rename the local variables that shadow another component.
Additional information: link
XTime.setburnFee(uint256) (XTime.sol#185-189) should emit an event for:
- burnFee = value (XTime.sol#186)
- totalFees = BTCRewardsFee.add(liquidityFee).add(burnFee) (XTime.sol#187)
Emit an event for critical parameter changes.
Additional information: link
XTime.setRouter(address).routerNow (XTime.sol#171) lacks a zero-check on :
- _newRouterAddress = routerNow (XTime.sol#172)
Check that the address is not zero.
Additional information: link
Variable 'XTime._transfer(address,address,uint256).lastProcessedIndex (XTime.sol#358)' in XTime._transfer(address,address,uint256) (XTime.sol#294-365) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (XTime.sol#359)
Move all variable declarations prior to any usage of the variable, and ensure that reaching a variable declaration does not depend on some conditional if it is used unconditionally.
Additional information: link
Reentrancy in XTime.updateUniswapV2Router(address) (XTime.sol#147-154):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (XTime.sol#151-152)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (XTime.sol#153)
Apply the check-effects-interactions pattern.
Additional information: link
Reentrancy in XTime.updateDividendTracker(address) (XTime.sol#130-145):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (XTime.sol#137)
- newDividendTracker.excludeFromDividends(address(this)) (XTime.sol#138)
- newDividendTracker.excludeFromDividends(owner()) (XTime.sol#139)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (XTime.sol#140)
Event emitted after the call(s):
- UpdateDividendTracker(newAddress,address(dividendTracker)) (XTime.sol#142)
Apply the check-effects-interactions pattern.
Additional information: link
XTimeDividendTracker.canAutoClaim(uint256) (XTime.sol#593-599) uses timestamp for comparisons
Dangerous comparisons:
- lastClaimTime > block.timestamp (XTime.sol#594)
- block.timestamp.sub(lastClaimTime) >= claimWait (XTime.sol#598)
Avoid relying on block.timestamp.
Additional information: link
SafeMathInt.mul(int256,int256) (SafeMathInt.sol#40-47) is never used and should be removed
Remove unused functions.
Additional information: link
XTime.totalFees (XTime.sol#43) is set pre-construction with a non-constant function or state variable:
- BTCRewardsFee.add(liquidityFee).add(burnFee)
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
Parameter XTimeDividendTracker.getAccount(address)._account (XTime.sol#529) is not in mixedCase
Follow the Solidity naming convention.
Additional information: link
Redundant expression "this (Context.sol#21)" inContext (Context.sol#15-24)
Remove redundant statements if they congest code but offer no value.
Additional information: link
Variable DividendPayingToken._withdrawDividendOfUser(address)._withdrawableDividend (DividendPayingToken.sol#77) is too similar to XTimeDividendTracker.getAccount(address).withdrawableDividends (XTime.sol#534)
Prevent variables from having similar names.
Additional information: link
XTimeDividendTracker.getAccountAtIndex(uint256) (XTime.sol#574-591) uses literals with too many digits:
- (0x0000000000000000000000000000000000000000,- 1,- 1,0,0,0,0,0) (XTime.sol#585)
Use: Ether suffix, Time suffix, or The scientific notation
Additional information: link
SafeMathInt.MAX_INT256 (SafeMathInt.sol#35) is never used in SafeMathInt (SafeMathInt.sol#33-91)
Remove unused state variables.
Additional information: link
XTime.swapTokensAtAmount (XTime.sol#36) should be constant
Add the constant attributes to state variables that never change.
Additional information: link
process(uint256) should be declared external:
- XTimeDividendTracker.process(uint256) (XTime.sol#618-663)
Use the external attribute for functions never called from the contract.
Additional information: link
Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.
Token is deployed only at one blockchain
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.
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
Unable to find code repository for the project
Young tokens have high risks of price dump / death
Young tokens have high risks of scam / price dump / death
Young tokens have high risks of scam / price dump / death
Young tokens have high risks of price dump / death
Token has relatively low CoinGecko rank
Token has relatively low CoinMarketCap rank
Twitter account link seems to be invalid
Unable to find Youtube account
Unable to find Discord account