INTERSTELLAR DOMAIN ORDER Token Logo

IDO [INTERSTELLAR DOMAIN ORDER] Token

About IDO

Listings

Token 2 years
CoinGecko 2 years
CoinMarketCap 2 years
white paper

IDO is a DAO-based metaverse landing ecology

Social

Laser Scorebeta Last Audit: 31 May 2022

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

Reentrancy in INTERSTELLARDOMAINORDER._transfer(address,address,uint256) (#1345-1392):
External calls:
- swapAndLiquify(contractTokenBalance) (#1379)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1440-1447)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1426-1432)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1379)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1440-1447)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1391)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#1286)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1487)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1532)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1488)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1512)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1558)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1534)
- _rOwned[destroyFeeAddress] = _rOwned[destroyFeeAddress].add(rDestroy) (#1489)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1559)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1514)
- _rOwned[destroyFeeAddress] = _rOwned[destroyFeeAddress].add(rDestroy) (#1515)
- _rOwned[destroyFeeAddress] = _rOwned[destroyFeeAddress].add(rDestroy) (#1560)
- _tokenTransfer(from,to,amount,takeFee) (#1391)
- _rTotal = _rTotal.sub(rFee) (#1170)
- _tokenTransfer(from,to,amount,takeFee) (#1391)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#1288)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1531)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1533)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1557)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1513)
- _tOwned[destroyFeeAddress] = _tOwned[destroyFeeAddress].add(tDestroy) (#1561)
- _tOwned[destroyFeeAddress] = _tOwned[destroyFeeAddress].add(tDestroy) (#1516)
Apply the check-effects-interactions pattern.

Additional information: link


Not a direct threat, but may indicate unreliable intentions of developer. Widespread names (e.g. Elon, King, Moon, Doge) are common among meme-tokens and scams. The allow to gain free hype and attract unexperienced investors.

INTERSTELLARDOMAINORDER.addLiquidity(uint256,uint256) (#1435-1448) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1440-1447)
Ensure that all the return values of the function calls are used.

Additional information: link

Redundant expression "this (#264)" inContext (#258-267)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#417-444) is never used and should be removed
Address.functionCall(address,bytes) (#352-357) is never used and should be removed
Address.functionCall(address,bytes,string) (#365-371) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#384-396) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#404-415) is never used and should be removed
Address.isContract(address) (#290-302) is never used and should be removed
Address.sendValue(address,uint256) (#320-332) is never used and should be removed
Context._msgData() (#263-266) is never used and should be removed
SafeMath.mod(uint256,uint256) (#232-234) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#248-255) is never used and should be removed
Remove unused functions.

Additional information: link

INTERSTELLARDOMAINORDER.slitherConstructorConstantVariables() (#895-1567) uses literals with too many digits:
- destroyFeeAddress = 0x0000000000000000000000000000000000000001 (#929-930)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

INTERSTELLARDOMAINORDER.allowance(address,address).owner (#999) shadows:
- Ownable.owner() (#481-483) (function)
INTERSTELLARDOMAINORDER._approve(address,address,uint256).owner (#1334) shadows:
- Ownable.owner() (#481-483) (function)
Rename the local variables that shadow another component.

Additional information: link

INTERSTELLARDOMAINORDER.setTaxFeePercent(uint256) (#1141-1143) should emit an event for:
- _taxFee = taxFee (#1142)
INTERSTELLARDOMAINORDER.setLiquidityFeePercent(uint256) (#1145-1147) should emit an event for:
- _liquidityFee = liquidityFee (#1146)
INTERSTELLARDOMAINORDER.setDestroyFeePercent(uint256) (#1149-1151) should emit an event for:
- _destroyFee = destroyFee (#1150)
INTERSTELLARDOMAINORDER.setMaxTxPercent(uint256) (#1153-1155) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 4) (#1154)
INTERSTELLARDOMAINORDER.setNumTokensSellToAddToLiquidity(uint256) (#1157-1159) should emit an event for:
- numTokensSellToAddToLiquidity = numTokensSellToAddToLiquidityAmount (#1158)
Emit an event for critical parameter changes.

Additional information: link

Reentrancy in INTERSTELLARDOMAINORDER._transfer(address,address,uint256) (#1345-1392):
External calls:
- swapAndLiquify(contractTokenBalance) (#1379)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1440-1447)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1426-1432)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1379)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1440-1447)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#1391)
- _destroyFee = _previousdestroyFee (#1326)
- _destroyFee = 0 (#1320)
- _tokenTransfer(from,to,amount,takeFee) (#1391)
- _liquidityFee = _previousLiquidityFee (#1325)
- _liquidityFee = 0 (#1319)
- _tokenTransfer(from,to,amount,takeFee) (#1391)
- _previousLiquidityFee = _liquidityFee (#1315)
- _tokenTransfer(from,to,amount,takeFee) (#1391)
- _previousTaxFee = _taxFee (#1314)
- _tokenTransfer(from,to,amount,takeFee) (#1391)
- _previousdestroyFee = _destroyFee (#1316)
- _tokenTransfer(from,to,amount,takeFee) (#1391)
- _tFeeTotal = _tFeeTotal.add(tFee) (#1171)
- _tokenTransfer(from,to,amount,takeFee) (#1391)
- _taxFee = _previousTaxFee (#1324)
- _taxFee = 0 (#1318)
Reentrancy in INTERSTELLARDOMAINORDER.constructor() (#952-967):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#958-959)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#963)
- _isExcludedFromFee[address(this)] = true (#964)
- uniswapV2Router = _uniswapV2Router (#961)
Reentrancy in INTERSTELLARDOMAINORDER.swapAndLiquify(uint256) (#1394-1415):
External calls:
- swapTokensForEth(half) (#1406)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1426-1432)
- addLiquidity(otherHalf,newBalance) (#1412)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1440-1447)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1412)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1440-1447)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#1412)
- _allowances[owner][spender] = amount (#1341)
Reentrancy in INTERSTELLARDOMAINORDER.transferFrom(address,address,uint256) (#1017-1032):
External calls:
- _transfer(sender,recipient,amount) (#1022)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1440-1447)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1426-1432)
External calls sending eth:
- _transfer(sender,recipient,amount) (#1022)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1440-1447)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#1023-1030)
- _allowances[owner][spender] = amount (#1341)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in INTERSTELLARDOMAINORDER._transfer(address,address,uint256) (#1345-1392):
External calls:
- swapAndLiquify(contractTokenBalance) (#1379)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1440-1447)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1426-1432)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#1379)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1440-1447)
Event emitted after the call(s):
- Transfer(sender,recipient,tTransferAmount) (#1537)
- _tokenTransfer(from,to,amount,takeFee) (#1391)
- Transfer(sender,recipient,tTransferAmount) (#1492)
- _tokenTransfer(from,to,amount,takeFee) (#1391)
- Transfer(sender,recipient,tTransferAmount) (#1519)
- _tokenTransfer(from,to,amount,takeFee) (#1391)
- Transfer(sender,recipient,tTransferAmount) (#1564)
- _tokenTransfer(from,to,amount,takeFee) (#1391)
Reentrancy in INTERSTELLARDOMAINORDER.constructor() (#952-967):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#958-959)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#966)
Reentrancy in INTERSTELLARDOMAINORDER.swapAndLiquify(uint256) (#1394-1415):
External calls:
- swapTokensForEth(half) (#1406)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1426-1432)
- addLiquidity(otherHalf,newBalance) (#1412)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1440-1447)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#1412)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1440-1447)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1342)
- addLiquidity(otherHalf,newBalance) (#1412)
- SwapAndLiquify(half,newBalance,otherHalf) (#1414)
Reentrancy in INTERSTELLARDOMAINORDER.transferFrom(address,address,uint256) (#1017-1032):
External calls:
- _transfer(sender,recipient,amount) (#1022)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1440-1447)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1426-1432)
External calls sending eth:
- _transfer(sender,recipient,amount) (#1022)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#1440-1447)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#1342)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#1023-1030)
Apply the check-effects-interactions pattern.

Additional information: link

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

Additional information: link

Address.isContract(address) (#290-302) uses assembly
- INLINE ASM (#298-300)
Address._functionCallWithValue(address,bytes,uint256,string) (#417-444) uses assembly
- INLINE ASM (#436-439)
Do not use evm assembly.

Additional information: link

INTERSTELLARDOMAINORDER._rTotal (#910) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
INTERSTELLARDOMAINORDER._previousTaxFee (#918) is set pre-construction with a non-constant function or state variable:
- _taxFee
INTERSTELLARDOMAINORDER._previousdestroyFee (#921) is set pre-construction with a non-constant function or state variable:
- _destroyFee
INTERSTELLARDOMAINORDER._previousLiquidityFee (#924) 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

Low level call in Address.sendValue(address,uint256) (#320-332):
- (success) = recipient.call{value: amount}() (#327)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#417-444):
- (success,returndata) = target.call{value: weiValue}(data) (#426-427)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#609) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#611) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#642) is not in mixedCase
Function IUniswapV2Router01.WETH() (#690) is not in mixedCase
Parameter INTERSTELLARDOMAINORDER.setSwapAndLiquifyEnabled(bool)._enabled (#1161) is not in mixedCase
Parameter INTERSTELLARDOMAINORDER.calculateTaxFee(uint256)._amount (#1291) is not in mixedCase
Parameter INTERSTELLARDOMAINORDER.calculateLiquidityFee(uint256)._amount (#1295) is not in mixedCase
Parameter INTERSTELLARDOMAINORDER.calculateDestroyFee(uint256)._amount (#1303) is not in mixedCase
Variable INTERSTELLARDOMAINORDER._taxFee (#917) is not in mixedCase
Variable INTERSTELLARDOMAINORDER._destroyFee (#920) is not in mixedCase
Variable INTERSTELLARDOMAINORDER._liquidityFee (#923) is not in mixedCase
Constant INTERSTELLARDOMAINORDER.destroyFeeAddress (#929-930) is not in UPPER_CASE_WITH_UNDERSCORES
Variable INTERSTELLARDOMAINORDER._maxTxAmount (#935) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#695) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#696)
Variable INTERSTELLARDOMAINORDER._transferBothExcluded(address,address,uint256).rTransferAmount (#1527) is too similar to INTERSTELLARDOMAINORDER._getValuesT(uint256).tTransferAmount (#1185)
Variable INTERSTELLARDOMAINORDER._transferBothExcluded(address,address,uint256).rTransferAmount (#1527) is too similar to INTERSTELLARDOMAINORDER._getTValues(uint256).tTransferAmount (#1234-1235)
Variable INTERSTELLARDOMAINORDER._transferStandard(address,address,uint256).rTransferAmount (#1481) is too similar to INTERSTELLARDOMAINORDER._transferBothExcluded(address,address,uint256).tTransferAmount (#1529)
Variable INTERSTELLARDOMAINORDER._transferBothExcluded(address,address,uint256).rTransferAmount (#1527) is too similar to INTERSTELLARDOMAINORDER._transferFromExcluded(address,address,uint256).tTransferAmount (#1552)
Variable INTERSTELLARDOMAINORDER._transferToExcluded(address,address,uint256).rTransferAmount (#1502) is too similar to INTERSTELLARDOMAINORDER._transferToExcluded(address,address,uint256).tTransferAmount (#1507)
Variable INTERSTELLARDOMAINORDER._transferStandard(address,address,uint256).rTransferAmount (#1481) is too similar to INTERSTELLARDOMAINORDER._transferToExcluded(address,address,uint256).tTransferAmount (#1507)
Variable INTERSTELLARDOMAINORDER._transferBothExcluded(address,address,uint256).rTransferAmount (#1527) is too similar to INTERSTELLARDOMAINORDER._transferStandard(address,address,uint256).tTransferAmount (#1485)
Variable INTERSTELLARDOMAINORDER._transferBothExcluded(address,address,uint256).rTransferAmount (#1527) is too similar to INTERSTELLARDOMAINORDER._transferBothExcluded(address,address,uint256).tTransferAmount (#1529)
Variable INTERSTELLARDOMAINORDER._transferBothExcluded(address,address,uint256).rTransferAmount (#1527) is too similar to INTERSTELLARDOMAINORDER._transferToExcluded(address,address,uint256).tTransferAmount (#1507)
Variable INTERSTELLARDOMAINORDER._transferToExcluded(address,address,uint256).rTransferAmount (#1502) is too similar to INTERSTELLARDOMAINORDER._getValuesT(uint256).tTransferAmount (#1185)
Variable INTERSTELLARDOMAINORDER._transferStandard(address,address,uint256).rTransferAmount (#1481) is too similar to INTERSTELLARDOMAINORDER._getValuesT(uint256).tTransferAmount (#1185)
Variable INTERSTELLARDOMAINORDER._transferStandard(address,address,uint256).rTransferAmount (#1481) is too similar to INTERSTELLARDOMAINORDER._getTValues(uint256).tTransferAmount (#1234-1235)
Variable INTERSTELLARDOMAINORDER._transferToExcluded(address,address,uint256).rTransferAmount (#1502) is too similar to INTERSTELLARDOMAINORDER._transferFromExcluded(address,address,uint256).tTransferAmount (#1552)
Variable INTERSTELLARDOMAINORDER._transferStandard(address,address,uint256).rTransferAmount (#1481) is too similar to INTERSTELLARDOMAINORDER._transferFromExcluded(address,address,uint256).tTransferAmount (#1552)
Variable INTERSTELLARDOMAINORDER._getValues(uint256).rTransferAmount (#1202) is too similar to INTERSTELLARDOMAINORDER._transferFromExcluded(address,address,uint256).tTransferAmount (#1552)
Variable INTERSTELLARDOMAINORDER._transferToExcluded(address,address,uint256).rTransferAmount (#1502) is too similar to INTERSTELLARDOMAINORDER._transferStandard(address,address,uint256).tTransferAmount (#1485)
Variable INTERSTELLARDOMAINORDER.reflectionFromToken(uint256,bool).rTransferAmount (#1093) is too similar to INTERSTELLARDOMAINORDER._transferFromExcluded(address,address,uint256).tTransferAmount (#1552)
Variable INTERSTELLARDOMAINORDER._transferFromExcluded(address,address,uint256).rTransferAmount (#1547) is too similar to INTERSTELLARDOMAINORDER._transferFromExcluded(address,address,uint256).tTransferAmount (#1552)
Variable INTERSTELLARDOMAINORDER._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1258-1259) is too similar to INTERSTELLARDOMAINORDER._transferFromExcluded(address,address,uint256).tTransferAmount (#1552)
Variable INTERSTELLARDOMAINORDER._transferStandard(address,address,uint256).rTransferAmount (#1481) is too similar to INTERSTELLARDOMAINORDER._transferStandard(address,address,uint256).tTransferAmount (#1485)
Variable INTERSTELLARDOMAINORDER._transferFromExcluded(address,address,uint256).rTransferAmount (#1547) is too similar to INTERSTELLARDOMAINORDER._transferStandard(address,address,uint256).tTransferAmount (#1485)
Variable INTERSTELLARDOMAINORDER._transferFromExcluded(address,address,uint256).rTransferAmount (#1547) is too similar to INTERSTELLARDOMAINORDER._transferBothExcluded(address,address,uint256).tTransferAmount (#1529)
Variable INTERSTELLARDOMAINORDER._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1258-1259) is too similar to INTERSTELLARDOMAINORDER._getTValues(uint256).tTransferAmount (#1234-1235)
Variable INTERSTELLARDOMAINORDER._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1258-1259) is too similar to INTERSTELLARDOMAINORDER._transferToExcluded(address,address,uint256).tTransferAmount (#1507)
Variable INTERSTELLARDOMAINORDER.reflectionFromToken(uint256,bool).rTransferAmount (#1093) is too similar to INTERSTELLARDOMAINORDER._transferStandard(address,address,uint256).tTransferAmount (#1485)
Variable INTERSTELLARDOMAINORDER.reflectionFromToken(uint256,bool).rTransferAmount (#1093) is too similar to INTERSTELLARDOMAINORDER._transferBothExcluded(address,address,uint256).tTransferAmount (#1529)
Variable INTERSTELLARDOMAINORDER._getValues(uint256).rTransferAmount (#1202) is too similar to INTERSTELLARDOMAINORDER._transferStandard(address,address,uint256).tTransferAmount (#1485)
Variable INTERSTELLARDOMAINORDER._transferFromExcluded(address,address,uint256).rTransferAmount (#1547) is too similar to INTERSTELLARDOMAINORDER._getValuesT(uint256).tTransferAmount (#1185)
Variable INTERSTELLARDOMAINORDER._getValues(uint256).rTransferAmount (#1202) is too similar to INTERSTELLARDOMAINORDER._transferBothExcluded(address,address,uint256).tTransferAmount (#1529)
Variable INTERSTELLARDOMAINORDER._transferToExcluded(address,address,uint256).rTransferAmount (#1502) is too similar to INTERSTELLARDOMAINORDER._transferBothExcluded(address,address,uint256).tTransferAmount (#1529)
Variable INTERSTELLARDOMAINORDER.reflectionFromToken(uint256,bool).rTransferAmount (#1093) is too similar to INTERSTELLARDOMAINORDER._getValuesT(uint256).tTransferAmount (#1185)
Variable INTERSTELLARDOMAINORDER._transferFromExcluded(address,address,uint256).rTransferAmount (#1547) is too similar to INTERSTELLARDOMAINORDER._getTValues(uint256).tTransferAmount (#1234-1235)
Variable INTERSTELLARDOMAINORDER._transferFromExcluded(address,address,uint256).rTransferAmount (#1547) is too similar to INTERSTELLARDOMAINORDER._transferToExcluded(address,address,uint256).tTransferAmount (#1507)
Variable INTERSTELLARDOMAINORDER._getValues(uint256).rTransferAmount (#1202) is too similar to INTERSTELLARDOMAINORDER._getValuesT(uint256).tTransferAmount (#1185)
Variable INTERSTELLARDOMAINORDER._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1258-1259) is too similar to INTERSTELLARDOMAINORDER._transferStandard(address,address,uint256).tTransferAmount (#1485)
Variable INTERSTELLARDOMAINORDER.reflectionFromToken(uint256,bool).rTransferAmount (#1093) is too similar to INTERSTELLARDOMAINORDER._transferToExcluded(address,address,uint256).tTransferAmount (#1507)
Variable INTERSTELLARDOMAINORDER._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1258-1259) is too similar to INTERSTELLARDOMAINORDER._transferBothExcluded(address,address,uint256).tTransferAmount (#1529)
Variable INTERSTELLARDOMAINORDER.reflectionFromToken(uint256,bool).rTransferAmount (#1093) is too similar to INTERSTELLARDOMAINORDER._getTValues(uint256).tTransferAmount (#1234-1235)
Variable INTERSTELLARDOMAINORDER._getValues(uint256).rTransferAmount (#1202) is too similar to INTERSTELLARDOMAINORDER._getTValues(uint256).tTransferAmount (#1234-1235)
Variable INTERSTELLARDOMAINORDER._getValues(uint256).rTransferAmount (#1202) is too similar to INTERSTELLARDOMAINORDER._transferToExcluded(address,address,uint256).tTransferAmount (#1507)
Variable INTERSTELLARDOMAINORDER._transferToExcluded(address,address,uint256).rTransferAmount (#1502) is too similar to INTERSTELLARDOMAINORDER._getTValues(uint256).tTransferAmount (#1234-1235)
Variable INTERSTELLARDOMAINORDER._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#1258-1259) is too similar to INTERSTELLARDOMAINORDER._getValuesT(uint256).tTransferAmount (#1185)
Prevent variables from having similar names.

Additional information: link

INTERSTELLARDOMAINORDER._decimals (#915) should be constant
INTERSTELLARDOMAINORDER._name (#913) should be constant
INTERSTELLARDOMAINORDER._symbol (#914) should be constant
INTERSTELLARDOMAINORDER._tTotal (#909) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#500-503)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#509-516)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#518-520)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#523-528)
unlock() should be declared external:
- Ownable.unlock() (#531-539)
name() should be declared external:
- INTERSTELLARDOMAINORDER.name() (#969-971)
symbol() should be declared external:
- INTERSTELLARDOMAINORDER.symbol() (#973-975)
decimals() should be declared external:
- INTERSTELLARDOMAINORDER.decimals() (#977-979)
totalSupply() should be declared external:
- INTERSTELLARDOMAINORDER.totalSupply() (#981-983)
transfer(address,uint256) should be declared external:
- INTERSTELLARDOMAINORDER.transfer(address,uint256) (#990-997)
allowance(address,address) should be declared external:
- INTERSTELLARDOMAINORDER.allowance(address,address) (#999-1006)
approve(address,uint256) should be declared external:
- INTERSTELLARDOMAINORDER.approve(address,uint256) (#1008-1015)
transferFrom(address,address,uint256) should be declared external:
- INTERSTELLARDOMAINORDER.transferFrom(address,address,uint256) (#1017-1032)
increaseAllowance(address,uint256) should be declared external:
- INTERSTELLARDOMAINORDER.increaseAllowance(address,uint256) (#1034-1045)
decreaseAllowance(address,uint256) should be declared external:
- INTERSTELLARDOMAINORDER.decreaseAllowance(address,uint256) (#1047-1061)
isExcludedFromReward(address) should be declared external:
- INTERSTELLARDOMAINORDER.isExcludedFromReward(address) (#1063-1065)
totalFees() should be declared external:
- INTERSTELLARDOMAINORDER.totalFees() (#1067-1069)
deliver(uint256) should be declared external:
- INTERSTELLARDOMAINORDER.deliver(uint256) (#1071-1081)
reflectionFromToken(uint256,bool) should be declared external:
- INTERSTELLARDOMAINORDER.reflectionFromToken(uint256,bool) (#1083-1096)
excludeFromReward(address) should be declared external:
- INTERSTELLARDOMAINORDER.excludeFromReward(address) (#1111-1118)
excludeFromFee(address) should be declared external:
- INTERSTELLARDOMAINORDER.excludeFromFee(address) (#1133-1135)
includeInFee(address) should be declared external:
- INTERSTELLARDOMAINORDER.includeInFee(address) (#1137-1139)
setSwapAndLiquifyEnabled(bool) should be declared external:
- INTERSTELLARDOMAINORDER.setSwapAndLiquifyEnabled(bool) (#1161-1164)
isExcludedFromFee(address) should be declared external:
- INTERSTELLARDOMAINORDER.isExcludedFromFee(address) (#1329-1331)
Use the external attribute for functions never called from the contract.

Additional information: link

INTERSTELLARDOMAINORDER.includeInReward(address) (#1120-1131) has costly operations inside a loop:
- _excluded.pop() (#1127)
Use a local variable to hold the loop computation result.

Additional information: link

Holders:


Token is deployed only at one blockchain

Contract has 5% buy tax and 5% sell tax.
Taxes are low and contract ownership is renounced.


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


Unable to find audit link on the website


Token is not listed at Mobula.Finance

Additional information: link


Unable to find whitepaper link on the website


Unable to find Telegram link on the website


Unable to find Twitter 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 price dump / death


Token has relatively low CoinGecko rank


Young tokens have high risks of price dump / death

Price for IDO

News for IDO