TIMEXSPACE Token Logo

TXS [TIMEXSPACE] Token

About TXS

Listings

Token 2 years
white paper

Time x Space main focus is on growing as a solid project and becoming a big name in the crypto space. Our vision is to create a high and steady price floor for our holders and to help the Science in need. Our goal is also Science Charity. Even if we all want to go to the Moon and Space, first we need to take care of the things and problems happening on Earth.We value the safety of our investors funds above everything else. That's why we took the steps to ensure Time x Space is 100% safe and technically unruggable. The initial liquidity is locked away forever. For the auto-added liquidity by our smart contract, we burn the LP Tokens regularly so that it's technically impossible to remove liquidity at any time.
audit report : https://timexspacecrypto.com/assets/txs_audit_inter_fi.pdf
team KYC : https://timexspacecrypto.com/assets/txs_kyc_audits_finance.pdf

Laser Scorebeta Last Audit: 17 January 2022

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

TIMEXSPACE.swapAndLiquify(uint256) (contracts/TXS.sol#1022-1044) sends eth to arbitrary user
Dangerous calls:
- marketingAddress.transfer(marketingAndTeamAmount) (contracts/TXS.sol#1037)
- teamAddress.transfer(marketingAndTeamAmount) (contracts/TXS.sol#1038)
- charityAddress.transfer(charityAmount) (contracts/TXS.sol#1041)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in TIMEXSPACE._transfer(address,address,uint256) (contracts/TXS.sol#996-1020):
External calls:
- swapAndLiquify(contractTokenBalance) (contracts/TXS.sol#1010)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/TXS.sol#1065-1072)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/TXS.sol#1053-1059)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (contracts/TXS.sol#1010)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/TXS.sol#1065-1072)
- marketingAddress.transfer(marketingAndTeamAmount) (contracts/TXS.sol#1037)
- teamAddress.transfer(marketingAndTeamAmount) (contracts/TXS.sol#1038)
- charityAddress.transfer(charityAmount) (contracts/TXS.sol#1041)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (contracts/TXS.sol#1019)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (contracts/TXS.sol#952)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (contracts/TXS.sol#1097)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (contracts/TXS.sol#1106)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (contracts/TXS.sol#859)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (contracts/TXS.sol#1117)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (contracts/TXS.sol#1098)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (contracts/TXS.sol#1108)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (contracts/TXS.sol#1118)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (contracts/TXS.sol#861)
- _tokenTransfer(from,to,amount,takeFee) (contracts/TXS.sol#1019)
- _rTotal = _rTotal.sub(rFee) (contracts/TXS.sol#907)
- _tokenTransfer(from,to,amount,takeFee) (contracts/TXS.sol#1019)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (contracts/TXS.sol#954)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (contracts/TXS.sol#1116)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (contracts/TXS.sol#858)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (contracts/TXS.sol#1107)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (contracts/TXS.sol#860)
Apply the check-effects-interactions pattern.

Additional information: link

TIMEXSPACE.withdrawToken(address,uint256) (contracts/TXS.sol#1124-1128) ignores return value by tokenContract.transfer(msg.sender,_amount) (contracts/TXS.sol#1127)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link


Unable to verify that contract auditor is trusted: Certik, Quantstamp, Hacken, Solidity, Paladinsec, Openzeppelin, Verichains


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.

TIMEXSPACE.includeInReward(address) (contracts/TXS.sol#843-854) has costly operations inside a loop:
- _excluded.pop() (contracts/TXS.sol#850)
Use a local variable to hold the loop computation result.

Additional information: link

Low level call in Address.sendValue(address,uint256) (contracts/TXS.sol#272-278):
- (success) = recipient.call{value: amount}() (contracts/TXS.sol#276)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (contracts/TXS.sol#338-359):
- (success,returndata) = target.call{value: weiValue}(data) (contracts/TXS.sol#342)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

TIMEXSPACE.swapAndLiquify(uint256) (contracts/TXS.sol#1022-1044) performs a multiplication on the result of a division:
-oneEight = contractTokenBalance.div(8) (contracts/TXS.sol#1023)
-sevenEights = oneEight.mul(7) (contracts/TXS.sol#1024)
Consider ordering multiplication before division.

Additional information: link

TIMEXSPACE.addLiquidity(uint256,uint256) (contracts/TXS.sol#1062-1073) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/TXS.sol#1065-1072)
Ensure that all the return values of the function calls are used.

Additional information: link

TIMEXSPACE.allowance(address,address).owner (contracts/TXS.sol#775) shadows:
- Ownable.owner() (contracts/TXS.sol#381-383) (function)
TIMEXSPACE._approve(address,address,uint256).owner (contracts/TXS.sol#988) shadows:
- Ownable.owner() (contracts/TXS.sol#381-383) (function)
Rename the local variables that shadow another component.

Additional information: link

TIMEXSPACE.setTaxFeePercent(uint256) (contracts/TXS.sol#875-877) should emit an event for:
- _taxFee = taxFee (contracts/TXS.sol#876)
TIMEXSPACE.setNumTokensSellToAddToLiquidity(uint256) (contracts/TXS.sol#879-881) should emit an event for:
- numTokensSellToAddToLiquidity = newNumTokensSellToAddToLiquidity (contracts/TXS.sol#880)
TIMEXSPACE.setLiquidityFeePercent(uint256) (contracts/TXS.sol#883-885) should emit an event for:
- _liquidityFee = liquidityFee (contracts/TXS.sol#884)
Emit an event for critical parameter changes.

Additional information: link

TIMEXSPACE.setMarketingAddress(address).newMarketingAddress (contracts/TXS.sol#887) lacks a zero-check on :
- marketingAddress = newMarketingAddress (contracts/TXS.sol#888)
TIMEXSPACE.setTeamAddress(address).newTeamAddress (contracts/TXS.sol#891) lacks a zero-check on :
- teamAddress = newTeamAddress (contracts/TXS.sol#892)
TIMEXSPACE.setCharityAddress(address).newCharityAddress (contracts/TXS.sol#895) lacks a zero-check on :
- charityAddress = newCharityAddress (contracts/TXS.sol#896)
Check that the address is not zero.

Additional information: link

Reentrancy in TIMEXSPACE._transfer(address,address,uint256) (contracts/TXS.sol#996-1020):
External calls:
- swapAndLiquify(contractTokenBalance) (contracts/TXS.sol#1010)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/TXS.sol#1065-1072)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/TXS.sol#1053-1059)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (contracts/TXS.sol#1010)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/TXS.sol#1065-1072)
- marketingAddress.transfer(marketingAndTeamAmount) (contracts/TXS.sol#1037)
- teamAddress.transfer(marketingAndTeamAmount) (contracts/TXS.sol#1038)
- charityAddress.transfer(charityAmount) (contracts/TXS.sol#1041)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (contracts/TXS.sol#1019)
- _liquidityFee = _previousLiquidityFee (contracts/TXS.sol#981)
- _liquidityFee = 0 (contracts/TXS.sol#976)
- _tokenTransfer(from,to,amount,takeFee) (contracts/TXS.sol#1019)
- _previousLiquidityFee = _liquidityFee (contracts/TXS.sol#973)
- _tokenTransfer(from,to,amount,takeFee) (contracts/TXS.sol#1019)
- _previousTaxFee = _taxFee (contracts/TXS.sol#972)
- _tokenTransfer(from,to,amount,takeFee) (contracts/TXS.sol#1019)
- _tFeeTotal = _tFeeTotal.add(tFee) (contracts/TXS.sol#908)
- _tokenTransfer(from,to,amount,takeFee) (contracts/TXS.sol#1019)
- _taxFee = _previousTaxFee (contracts/TXS.sol#980)
- _taxFee = 0 (contracts/TXS.sol#975)
Reentrancy in TIMEXSPACE.constructor() (contracts/TXS.sol#734-747):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (contracts/TXS.sol#739)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (contracts/TXS.sol#743)
- _isExcludedFromFee[address(this)] = true (contracts/TXS.sol#744)
- uniswapV2Router = _uniswapV2Router (contracts/TXS.sol#741)
Reentrancy in TIMEXSPACE.swapAndLiquify(uint256) (contracts/TXS.sol#1022-1044):
External calls:
- swapTokensForEth(sevenEights) (contracts/TXS.sol#1029)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/TXS.sol#1053-1059)
- addLiquidity(remainingEight,liquidityToAdd) (contracts/TXS.sol#1034)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/TXS.sol#1065-1072)
External calls sending eth:
- addLiquidity(remainingEight,liquidityToAdd) (contracts/TXS.sol#1034)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/TXS.sol#1065-1072)
State variables written after the call(s):
- addLiquidity(remainingEight,liquidityToAdd) (contracts/TXS.sol#1034)
- _allowances[owner][spender] = amount (contracts/TXS.sol#992)
Reentrancy in TIMEXSPACE.transferFrom(address,address,uint256) (contracts/TXS.sol#784-788):
External calls:
- _transfer(sender,recipient,amount) (contracts/TXS.sol#785)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/TXS.sol#1065-1072)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/TXS.sol#1053-1059)
External calls sending eth:
- _transfer(sender,recipient,amount) (contracts/TXS.sol#785)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/TXS.sol#1065-1072)
- marketingAddress.transfer(marketingAndTeamAmount) (contracts/TXS.sol#1037)
- teamAddress.transfer(marketingAndTeamAmount) (contracts/TXS.sol#1038)
- charityAddress.transfer(charityAmount) (contracts/TXS.sol#1041)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (contracts/TXS.sol#786)
- _allowances[owner][spender] = amount (contracts/TXS.sol#992)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in TIMEXSPACE._transfer(address,address,uint256) (contracts/TXS.sol#996-1020):
External calls:
- swapAndLiquify(contractTokenBalance) (contracts/TXS.sol#1010)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/TXS.sol#1065-1072)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/TXS.sol#1053-1059)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (contracts/TXS.sol#1010)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/TXS.sol#1065-1072)
- marketingAddress.transfer(marketingAndTeamAmount) (contracts/TXS.sol#1037)
- teamAddress.transfer(marketingAndTeamAmount) (contracts/TXS.sol#1038)
- charityAddress.transfer(charityAmount) (contracts/TXS.sol#1041)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (contracts/TXS.sol#1101)
- _tokenTransfer(from,to,amount,takeFee) (contracts/TXS.sol#1019)
- Transfer(sender,recipient,tTransferAmount) (contracts/TXS.sol#1111)
- _tokenTransfer(from,to,amount,takeFee) (contracts/TXS.sol#1019)
- Transfer(sender,recipient,tTransferAmount) (contracts/TXS.sol#1121)
- _tokenTransfer(from,to,amount,takeFee) (contracts/TXS.sol#1019)
- Transfer(sender,recipient,tTransferAmount) (contracts/TXS.sol#864)
- _tokenTransfer(from,to,amount,takeFee) (contracts/TXS.sol#1019)
Reentrancy in TIMEXSPACE.constructor() (contracts/TXS.sol#734-747):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (contracts/TXS.sol#739)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (contracts/TXS.sol#746)
Reentrancy in TIMEXSPACE.swapAndLiquify(uint256) (contracts/TXS.sol#1022-1044):
External calls:
- swapTokensForEth(sevenEights) (contracts/TXS.sol#1029)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/TXS.sol#1053-1059)
- addLiquidity(remainingEight,liquidityToAdd) (contracts/TXS.sol#1034)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/TXS.sol#1065-1072)
External calls sending eth:
- addLiquidity(remainingEight,liquidityToAdd) (contracts/TXS.sol#1034)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/TXS.sol#1065-1072)
Event emitted after the call(s):
- Approval(owner,spender,amount) (contracts/TXS.sol#993)
- addLiquidity(remainingEight,liquidityToAdd) (contracts/TXS.sol#1034)
Reentrancy in TIMEXSPACE.swapAndLiquify(uint256) (contracts/TXS.sol#1022-1044):
External calls:
- swapTokensForEth(sevenEights) (contracts/TXS.sol#1029)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/TXS.sol#1053-1059)
- addLiquidity(remainingEight,liquidityToAdd) (contracts/TXS.sol#1034)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/TXS.sol#1065-1072)
External calls sending eth:
- addLiquidity(remainingEight,liquidityToAdd) (contracts/TXS.sol#1034)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/TXS.sol#1065-1072)
- marketingAddress.transfer(marketingAndTeamAmount) (contracts/TXS.sol#1037)
- teamAddress.transfer(marketingAndTeamAmount) (contracts/TXS.sol#1038)
- charityAddress.transfer(charityAmount) (contracts/TXS.sol#1041)
Event emitted after the call(s):
- SwapAndLiquify(sevenEights,liquidityToAdd,remainingEight) (contracts/TXS.sol#1043)
Reentrancy in TIMEXSPACE.transferFrom(address,address,uint256) (contracts/TXS.sol#784-788):
External calls:
- _transfer(sender,recipient,amount) (contracts/TXS.sol#785)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/TXS.sol#1065-1072)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (contracts/TXS.sol#1053-1059)
External calls sending eth:
- _transfer(sender,recipient,amount) (contracts/TXS.sol#785)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/TXS.sol#1065-1072)
- marketingAddress.transfer(marketingAndTeamAmount) (contracts/TXS.sol#1037)
- teamAddress.transfer(marketingAndTeamAmount) (contracts/TXS.sol#1038)
- charityAddress.transfer(charityAmount) (contracts/TXS.sol#1041)
Event emitted after the call(s):
- Approval(owner,spender,amount) (contracts/TXS.sol#993)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (contracts/TXS.sol#786)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable.unlock() (contracts/TXS.sol#428-433) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(now > _lockTime,Contract is locked until 7 days) (contracts/TXS.sol#430)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (contracts/TXS.sol#245-254) uses assembly
- INLINE ASM (contracts/TXS.sol#252)
Address._functionCallWithValue(address,bytes,uint256,string) (contracts/TXS.sol#338-359) uses assembly
- INLINE ASM (contracts/TXS.sol#351-354)
Do not use evm assembly.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (contracts/TXS.sol#338-359) is never used and should be removed
Address.functionCall(address,bytes) (contracts/TXS.sol#298-300) is never used and should be removed
Address.functionCall(address,bytes,string) (contracts/TXS.sol#308-310) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (contracts/TXS.sol#323-325) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (contracts/TXS.sol#333-336) is never used and should be removed
Address.isContract(address) (contracts/TXS.sol#245-254) is never used and should be removed
Address.sendValue(address,uint256) (contracts/TXS.sol#272-278) is never used and should be removed
Context._msgData() (contracts/TXS.sol#220-224) is never used and should be removed
SafeMath.mod(uint256,uint256) (contracts/TXS.sol#193-195) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (contracts/TXS.sol#209-212) is never used and should be removed
Remove unused functions.

Additional information: link

TIMEXSPACE._rTotal (contracts/TXS.sol#696) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
TIMEXSPACE._previousTaxFee (contracts/TXS.sol#704) is set pre-construction with a non-constant function or state variable:
- _taxFee
TIMEXSPACE._previousLiquidityFee (contracts/TXS.sol#707) 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

Function IUniswapV2Pair.DOMAIN_SEPARATOR() (contracts/TXS.sol#478) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (contracts/TXS.sol#480) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (contracts/TXS.sol#498) is not in mixedCase
Function IUniswapV2Router01.WETH() (contracts/TXS.sol#530) is not in mixedCase
Parameter TIMEXSPACE.setSwapAndLiquifyEnabled(bool)._enabled (contracts/TXS.sol#899) is not in mixedCase
Parameter TIMEXSPACE.calculateTaxFee(uint256)._amount (contracts/TXS.sol#957) is not in mixedCase
Parameter TIMEXSPACE.calculateLiquidityFee(uint256)._amount (contracts/TXS.sol#963) is not in mixedCase
Parameter TIMEXSPACE.withdrawToken(address,uint256)._tokenContract (contracts/TXS.sol#1124) is not in mixedCase
Parameter TIMEXSPACE.withdrawToken(address,uint256)._amount (contracts/TXS.sol#1124) is not in mixedCase
Variable TIMEXSPACE._taxFee (contracts/TXS.sol#703) is not in mixedCase
Variable TIMEXSPACE._liquidityFee (contracts/TXS.sol#706) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (contracts/TXS.sol#221)" inContext (contracts/TXS.sol#215-225)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in TIMEXSPACE._transfer(address,address,uint256) (contracts/TXS.sol#996-1020):
External calls:
- swapAndLiquify(contractTokenBalance) (contracts/TXS.sol#1010)
- marketingAddress.transfer(marketingAndTeamAmount) (contracts/TXS.sol#1037)
- teamAddress.transfer(marketingAndTeamAmount) (contracts/TXS.sol#1038)
- charityAddress.transfer(charityAmount) (contracts/TXS.sol#1041)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (contracts/TXS.sol#1010)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/TXS.sol#1065-1072)
- marketingAddress.transfer(marketingAndTeamAmount) (contracts/TXS.sol#1037)
- teamAddress.transfer(marketingAndTeamAmount) (contracts/TXS.sol#1038)
- charityAddress.transfer(charityAmount) (contracts/TXS.sol#1041)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (contracts/TXS.sol#1019)
- _liquidityFee = _previousLiquidityFee (contracts/TXS.sol#981)
- _liquidityFee = 0 (contracts/TXS.sol#976)
- _tokenTransfer(from,to,amount,takeFee) (contracts/TXS.sol#1019)
- _previousLiquidityFee = _liquidityFee (contracts/TXS.sol#973)
- _tokenTransfer(from,to,amount,takeFee) (contracts/TXS.sol#1019)
- _previousTaxFee = _taxFee (contracts/TXS.sol#972)
- _tokenTransfer(from,to,amount,takeFee) (contracts/TXS.sol#1019)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (contracts/TXS.sol#952)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (contracts/TXS.sol#1097)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (contracts/TXS.sol#1106)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (contracts/TXS.sol#859)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (contracts/TXS.sol#1117)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (contracts/TXS.sol#1098)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (contracts/TXS.sol#1108)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (contracts/TXS.sol#1118)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (contracts/TXS.sol#861)
- _tokenTransfer(from,to,amount,takeFee) (contracts/TXS.sol#1019)
- _rTotal = _rTotal.sub(rFee) (contracts/TXS.sol#907)
- _tokenTransfer(from,to,amount,takeFee) (contracts/TXS.sol#1019)
- _tFeeTotal = _tFeeTotal.add(tFee) (contracts/TXS.sol#908)
- _tokenTransfer(from,to,amount,takeFee) (contracts/TXS.sol#1019)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (contracts/TXS.sol#954)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (contracts/TXS.sol#1116)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (contracts/TXS.sol#858)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (contracts/TXS.sol#1107)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (contracts/TXS.sol#860)
- _tokenTransfer(from,to,amount,takeFee) (contracts/TXS.sol#1019)
- _taxFee = _previousTaxFee (contracts/TXS.sol#980)
- _taxFee = 0 (contracts/TXS.sol#975)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (contracts/TXS.sol#1101)
- _tokenTransfer(from,to,amount,takeFee) (contracts/TXS.sol#1019)
- Transfer(sender,recipient,tTransferAmount) (contracts/TXS.sol#1111)
- _tokenTransfer(from,to,amount,takeFee) (contracts/TXS.sol#1019)
- Transfer(sender,recipient,tTransferAmount) (contracts/TXS.sol#1121)
- _tokenTransfer(from,to,amount,takeFee) (contracts/TXS.sol#1019)
- Transfer(sender,recipient,tTransferAmount) (contracts/TXS.sol#864)
- _tokenTransfer(from,to,amount,takeFee) (contracts/TXS.sol#1019)
Reentrancy in TIMEXSPACE.swapAndLiquify(uint256) (contracts/TXS.sol#1022-1044):
External calls:
- marketingAddress.transfer(marketingAndTeamAmount) (contracts/TXS.sol#1037)
- teamAddress.transfer(marketingAndTeamAmount) (contracts/TXS.sol#1038)
- charityAddress.transfer(charityAmount) (contracts/TXS.sol#1041)
External calls sending eth:
- addLiquidity(remainingEight,liquidityToAdd) (contracts/TXS.sol#1034)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/TXS.sol#1065-1072)
- marketingAddress.transfer(marketingAndTeamAmount) (contracts/TXS.sol#1037)
- teamAddress.transfer(marketingAndTeamAmount) (contracts/TXS.sol#1038)
- charityAddress.transfer(charityAmount) (contracts/TXS.sol#1041)
Event emitted after the call(s):
- SwapAndLiquify(sevenEights,liquidityToAdd,remainingEight) (contracts/TXS.sol#1043)
Reentrancy in TIMEXSPACE.transferFrom(address,address,uint256) (contracts/TXS.sol#784-788):
External calls:
- _transfer(sender,recipient,amount) (contracts/TXS.sol#785)
- marketingAddress.transfer(marketingAndTeamAmount) (contracts/TXS.sol#1037)
- teamAddress.transfer(marketingAndTeamAmount) (contracts/TXS.sol#1038)
- charityAddress.transfer(charityAmount) (contracts/TXS.sol#1041)
External calls sending eth:
- _transfer(sender,recipient,amount) (contracts/TXS.sol#785)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (contracts/TXS.sol#1065-1072)
- marketingAddress.transfer(marketingAndTeamAmount) (contracts/TXS.sol#1037)
- teamAddress.transfer(marketingAndTeamAmount) (contracts/TXS.sol#1038)
- charityAddress.transfer(charityAmount) (contracts/TXS.sol#1041)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (contracts/TXS.sol#786)
- _allowances[owner][spender] = amount (contracts/TXS.sol#992)
Event emitted after the call(s):
- Approval(owner,spender,amount) (contracts/TXS.sol#993)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (contracts/TXS.sol#786)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (contracts/TXS.sol#535) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (contracts/TXS.sol#536)
Variable TIMEXSPACE._transferFromExcluded(address,address,uint256).rTransferAmount (contracts/TXS.sol#1115) is too similar to TIMEXSPACE._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/TXS.sol#1115)
Variable TIMEXSPACE._transferBothExcluded(address,address,uint256).rTransferAmount (contracts/TXS.sol#857) is too similar to TIMEXSPACE._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/TXS.sol#857)
Variable TIMEXSPACE._transferToExcluded(address,address,uint256).rTransferAmount (contracts/TXS.sol#1105) is too similar to TIMEXSPACE._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/TXS.sol#857)
Variable TIMEXSPACE._getValues(uint256).rTransferAmount (contracts/TXS.sol#913) is too similar to TIMEXSPACE._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/TXS.sol#1115)
Variable TIMEXSPACE.reflectionFromToken(uint256,bool).rTransferAmount (contracts/TXS.sol#823) is too similar to TIMEXSPACE._transferStandard(address,address,uint256).tTransferAmount (contracts/TXS.sol#1096)
Variable TIMEXSPACE._transferBothExcluded(address,address,uint256).rTransferAmount (contracts/TXS.sol#857) is too similar to TIMEXSPACE._getTValues(uint256).tTransferAmount (contracts/TXS.sol#920)
Variable TIMEXSPACE._transferToExcluded(address,address,uint256).rTransferAmount (contracts/TXS.sol#1105) is too similar to TIMEXSPACE._getTValues(uint256).tTransferAmount (contracts/TXS.sol#920)
Variable TIMEXSPACE._transferBothExcluded(address,address,uint256).rTransferAmount (contracts/TXS.sol#857) is too similar to TIMEXSPACE._getValues(uint256).tTransferAmount (contracts/TXS.sol#912)
Variable TIMEXSPACE._transferFromExcluded(address,address,uint256).rTransferAmount (contracts/TXS.sol#1115) is too similar to TIMEXSPACE._getTValues(uint256).tTransferAmount (contracts/TXS.sol#920)
Variable TIMEXSPACE._transferToExcluded(address,address,uint256).rTransferAmount (contracts/TXS.sol#1105) is too similar to TIMEXSPACE._getValues(uint256).tTransferAmount (contracts/TXS.sol#912)
Variable TIMEXSPACE._transferFromExcluded(address,address,uint256).rTransferAmount (contracts/TXS.sol#1115) is too similar to TIMEXSPACE._getValues(uint256).tTransferAmount (contracts/TXS.sol#912)
Variable TIMEXSPACE._getValues(uint256).rTransferAmount (contracts/TXS.sol#913) is too similar to TIMEXSPACE._getTValues(uint256).tTransferAmount (contracts/TXS.sol#920)
Variable TIMEXSPACE._transferStandard(address,address,uint256).rTransferAmount (contracts/TXS.sol#1096) is too similar to TIMEXSPACE._getValues(uint256).tTransferAmount (contracts/TXS.sol#912)
Variable TIMEXSPACE._transferBothExcluded(address,address,uint256).rTransferAmount (contracts/TXS.sol#857) is too similar to TIMEXSPACE._transferStandard(address,address,uint256).tTransferAmount (contracts/TXS.sol#1096)
Variable TIMEXSPACE._getValues(uint256).rTransferAmount (contracts/TXS.sol#913) is too similar to TIMEXSPACE._getValues(uint256).tTransferAmount (contracts/TXS.sol#912)
Variable TIMEXSPACE._transferToExcluded(address,address,uint256).rTransferAmount (contracts/TXS.sol#1105) is too similar to TIMEXSPACE._transferStandard(address,address,uint256).tTransferAmount (contracts/TXS.sol#1096)
Variable TIMEXSPACE.reflectionFromToken(uint256,bool).rTransferAmount (contracts/TXS.sol#823) is too similar to TIMEXSPACE._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/TXS.sol#1115)
Variable TIMEXSPACE._transferFromExcluded(address,address,uint256).rTransferAmount (contracts/TXS.sol#1115) is too similar to TIMEXSPACE._transferStandard(address,address,uint256).tTransferAmount (contracts/TXS.sol#1096)
Variable TIMEXSPACE._transferStandard(address,address,uint256).rTransferAmount (contracts/TXS.sol#1096) is too similar to TIMEXSPACE._transferStandard(address,address,uint256).tTransferAmount (contracts/TXS.sol#1096)
Variable TIMEXSPACE.reflectionFromToken(uint256,bool).rTransferAmount (contracts/TXS.sol#823) is too similar to TIMEXSPACE._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/TXS.sol#857)
Variable TIMEXSPACE._getValues(uint256).rTransferAmount (contracts/TXS.sol#913) is too similar to TIMEXSPACE._transferStandard(address,address,uint256).tTransferAmount (contracts/TXS.sol#1096)
Variable TIMEXSPACE.reflectionFromToken(uint256,bool).rTransferAmount (contracts/TXS.sol#823) is too similar to TIMEXSPACE._getTValues(uint256).tTransferAmount (contracts/TXS.sol#920)
Variable TIMEXSPACE._transferBothExcluded(address,address,uint256).rTransferAmount (contracts/TXS.sol#857) is too similar to TIMEXSPACE._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/TXS.sol#1115)
Variable TIMEXSPACE._transferToExcluded(address,address,uint256).rTransferAmount (contracts/TXS.sol#1105) is too similar to TIMEXSPACE._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/TXS.sol#1115)
Variable TIMEXSPACE.reflectionFromToken(uint256,bool).rTransferAmount (contracts/TXS.sol#823) is too similar to TIMEXSPACE._getValues(uint256).tTransferAmount (contracts/TXS.sol#912)
Variable TIMEXSPACE._transferToExcluded(address,address,uint256).rTransferAmount (contracts/TXS.sol#1105) is too similar to TIMEXSPACE._transferToExcluded(address,address,uint256).tTransferAmount (contracts/TXS.sol#1105)
Variable TIMEXSPACE._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (contracts/TXS.sol#928) is too similar to TIMEXSPACE._getTValues(uint256).tTransferAmount (contracts/TXS.sol#920)
Variable TIMEXSPACE._transferFromExcluded(address,address,uint256).rTransferAmount (contracts/TXS.sol#1115) is too similar to TIMEXSPACE._transferToExcluded(address,address,uint256).tTransferAmount (contracts/TXS.sol#1105)
Variable TIMEXSPACE._transferBothExcluded(address,address,uint256).rTransferAmount (contracts/TXS.sol#857) is too similar to TIMEXSPACE._transferToExcluded(address,address,uint256).tTransferAmount (contracts/TXS.sol#1105)
Variable TIMEXSPACE._getValues(uint256).rTransferAmount (contracts/TXS.sol#913) is too similar to TIMEXSPACE._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/TXS.sol#857)
Variable TIMEXSPACE.reflectionFromToken(uint256,bool).rTransferAmount (contracts/TXS.sol#823) is too similar to TIMEXSPACE._transferToExcluded(address,address,uint256).tTransferAmount (contracts/TXS.sol#1105)
Variable TIMEXSPACE._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (contracts/TXS.sol#928) is too similar to TIMEXSPACE._getValues(uint256).tTransferAmount (contracts/TXS.sol#912)
Variable TIMEXSPACE._transferStandard(address,address,uint256).rTransferAmount (contracts/TXS.sol#1096) is too similar to TIMEXSPACE._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/TXS.sol#857)
Variable TIMEXSPACE._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (contracts/TXS.sol#928) is too similar to TIMEXSPACE._transferStandard(address,address,uint256).tTransferAmount (contracts/TXS.sol#1096)
Variable TIMEXSPACE._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (contracts/TXS.sol#928) is too similar to TIMEXSPACE._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/TXS.sol#857)
Variable TIMEXSPACE._transferStandard(address,address,uint256).rTransferAmount (contracts/TXS.sol#1096) is too similar to TIMEXSPACE._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/TXS.sol#1115)
Variable TIMEXSPACE._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (contracts/TXS.sol#928) is too similar to TIMEXSPACE._transferFromExcluded(address,address,uint256).tTransferAmount (contracts/TXS.sol#1115)
Variable TIMEXSPACE._getValues(uint256).rTransferAmount (contracts/TXS.sol#913) is too similar to TIMEXSPACE._transferToExcluded(address,address,uint256).tTransferAmount (contracts/TXS.sol#1105)
Variable TIMEXSPACE._transferStandard(address,address,uint256).rTransferAmount (contracts/TXS.sol#1096) is too similar to TIMEXSPACE._transferToExcluded(address,address,uint256).tTransferAmount (contracts/TXS.sol#1105)
Variable TIMEXSPACE._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (contracts/TXS.sol#928) is too similar to TIMEXSPACE._transferToExcluded(address,address,uint256).tTransferAmount (contracts/TXS.sol#1105)
Variable TIMEXSPACE._transferFromExcluded(address,address,uint256).rTransferAmount (contracts/TXS.sol#1115) is too similar to TIMEXSPACE._transferBothExcluded(address,address,uint256).tTransferAmount (contracts/TXS.sol#857)
Variable TIMEXSPACE._transferStandard(address,address,uint256).rTransferAmount (contracts/TXS.sol#1096) is too similar to TIMEXSPACE._getTValues(uint256).tTransferAmount (contracts/TXS.sol#920)
Prevent variables from having similar names.

Additional information: link

TIMEXSPACE.slitherConstructorVariables() (contracts/TXS.sol#681-1133) uses literals with too many digits:
- _tTotal = 1000000000 * 10 ** 6 * 10 ** 9 (contracts/TXS.sol#695)
TIMEXSPACE.slitherConstructorVariables() (contracts/TXS.sol#681-1133) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 500000 * 10 ** 6 * 10 ** 9 (contracts/TXS.sol#718)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

TIMEXSPACE._decimals (contracts/TXS.sol#701) should be constant
TIMEXSPACE._name (contracts/TXS.sol#699) should be constant
TIMEXSPACE._symbol (contracts/TXS.sol#700) should be constant
TIMEXSPACE._tTotal (contracts/TXS.sol#695) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (contracts/TXS.sol#400-403)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (contracts/TXS.sol#409-413)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (contracts/TXS.sol#415-417)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (contracts/TXS.sol#420-425)
unlock() should be declared external:
- Ownable.unlock() (contracts/TXS.sol#428-433)
name() should be declared external:
- TIMEXSPACE.name() (contracts/TXS.sol#749-751)
symbol() should be declared external:
- TIMEXSPACE.symbol() (contracts/TXS.sol#753-755)
decimals() should be declared external:
- TIMEXSPACE.decimals() (contracts/TXS.sol#757-759)
totalSupply() should be declared external:
- TIMEXSPACE.totalSupply() (contracts/TXS.sol#761-763)
transfer(address,uint256) should be declared external:
- TIMEXSPACE.transfer(address,uint256) (contracts/TXS.sol#770-773)
allowance(address,address) should be declared external:
- TIMEXSPACE.allowance(address,address) (contracts/TXS.sol#775-777)
approve(address,uint256) should be declared external:
- TIMEXSPACE.approve(address,uint256) (contracts/TXS.sol#779-782)
transferFrom(address,address,uint256) should be declared external:
- TIMEXSPACE.transferFrom(address,address,uint256) (contracts/TXS.sol#784-788)
increaseAllowance(address,uint256) should be declared external:
- TIMEXSPACE.increaseAllowance(address,uint256) (contracts/TXS.sol#790-793)
decreaseAllowance(address,uint256) should be declared external:
- TIMEXSPACE.decreaseAllowance(address,uint256) (contracts/TXS.sol#795-798)
isExcludedFromReward(address) should be declared external:
- TIMEXSPACE.isExcludedFromReward(address) (contracts/TXS.sol#800-802)
totalFees() should be declared external:
- TIMEXSPACE.totalFees() (contracts/TXS.sol#804-806)
deliver(uint256) should be declared external:
- TIMEXSPACE.deliver(uint256) (contracts/TXS.sol#808-815)
reflectionFromToken(uint256,bool) should be declared external:
- TIMEXSPACE.reflectionFromToken(uint256,bool) (contracts/TXS.sol#817-826)
excludeFromReward(address) should be declared external:
- TIMEXSPACE.excludeFromReward(address) (contracts/TXS.sol#834-841)
excludeFromFee(address) should be declared external:
- TIMEXSPACE.excludeFromFee(address) (contracts/TXS.sol#867-869)
includeInFee(address) should be declared external:
- TIMEXSPACE.includeInFee(address) (contracts/TXS.sol#871-873)
setSwapAndLiquifyEnabled(bool) should be declared external:
- TIMEXSPACE.setSwapAndLiquifyEnabled(bool) (contracts/TXS.sol#899-902)
isExcludedFromFee(address) should be declared external:
- TIMEXSPACE.isExcludedFromFee(address) (contracts/TXS.sol#984-986)
withdrawToken(address,uint256) should be declared external:
- TIMEXSPACE.withdrawToken(address,uint256) (contracts/TXS.sol#1124-1128)
withdrawBNB() should be declared external:
- TIMEXSPACE.withdrawBNB() (contracts/TXS.sol#1130-1132)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


Average 30d PancakeSwap volume is less than $100. Token is either dead or inactive.


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 number of swaps.


Last post in Twitter was more than 30 days ago


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


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


Token has relatively low CoinMarketCap rank

Price for TXS

News for TXS