OrbitInu Token Logo

OIM81 [OrbitInu] Token

ALERT: rug pull scam

About OIM81

Listings

Not Found
Token 2 years
white paper

OrbitInu is a promising binance smart chain token with wide-ranging utility and the potential to become one of the most adopted tokens on the market.

Unlike other cryptocurrencies, OrbitInu is designed to be more than just a standard financial tool. Orbit Inu will soon be used in real-world situations, rather than simply a tool for transferring value between different parties. With heavy synergistic support from all of its human and technological resources, OrbitInu has the ability to reach incredible heights with minimal resistance.

Social

Laser Scorebeta Last Audit: 14 May 2022

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

OrbitInu.addLiquidity(address,uint256,uint256) (#1008-1021) sends eth to arbitrary user
Dangerous calls:
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,recipient,block.timestamp) (#1013-1020)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in OrbitInu._transfer(address,address,uint256) (#884-947):
External calls:
- swapAndLiquify(contractTokenBalance) (#934)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,recipient,block.timestamp) (#1013-1020)
- pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,recipient,block.timestamp) (#999-1005)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#934)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,recipient,block.timestamp) (#1013-1020)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#946)
- _externalFee = _previousExternalFee (#862)
- _externalFee = 0 (#853)
- _tokenTransfer(from,to,amount,takeFee) (#946)
- _liquidityFee = _previousLiquidityFee (#860)
- _liquidityFee = 0 (#855)
- _tokenTransfer(from,to,amount,takeFee) (#946)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#819)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1057)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1069)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1046)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1070)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#1081)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1047)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1059)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#1083)
- _tokenTransfer(from,to,amount,takeFee) (#946)
- _rTotal = _rTotal.sub(rFee) (#772)
- _rTotal = _rTotal.sub(amount.mul(_getRate())) (#668)
- _tokenTransfer(from,to,amount,takeFee) (#946)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#821)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1045)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#1080)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1058)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#1082)
- _tokenTransfer(from,to,amount,takeFee) (#946)
- _tTotal = _tTotal.sub(amount) (#667)
- _tokenTransfer(from,to,amount,takeFee) (#946)
- _totalLiquidityFee = _previousTLiquidityFee (#864)
- _totalLiquidityFee = 0 (#856)
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.


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


Contract ownership is not renounced (belongs to a wallet)

OrbitInu.unBlacklistMultipleWallets(address[]).i (#1114) is a local variable never initialized
OrbitInu.blacklistMultipleWallets(address[]).i (#1098) 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

OrbitInu.addLiquidity(address,uint256,uint256) (#1008-1021) ignores return value by pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,recipient,block.timestamp) (#1013-1020)
Ensure that all the return values of the function calls are used.

Additional information: link

OrbitInu.allowance(address,address).owner (#576) shadows:
- Ownable.owner() (#169-171) (function)
OrbitInu._approve(address,address,uint256).owner (#876) shadows:
- Ownable.owner() (#169-171) (function)
Rename the local variables that shadow another component.

Additional information: link

OrbitInu.setBurnFeePercent(uint256) (#706-708) should emit an event for:
- _burnFee = Fee (#707)
OrbitInu.setExternalFeePercent(uint256) (#710-713) should emit an event for:
- _externalFee = Fee (#711)
- _totalLiquidityFee = _liquidityFee.add(_externalFee) (#712)
OrbitInu.setReflectFeePercent(uint256) (#715-717) should emit an event for:
- _reflectionFee = Fee (#716)
OrbitInu.setLiquidityFeePercent(uint256) (#719-722) should emit an event for:
- _liquidityFee = Fee (#720)
- _totalLiquidityFee = _liquidityFee.add(_externalFee) (#721)
OrbitInu.setMaxTxTokensSell(uint256) (#724-726) should emit an event for:
- _maxTxAmountSell = maxTxTokens.mul(10 ** _decimals) (#725)
OrbitInu.setMaxTxTokensBuy(uint256) (#728-730) should emit an event for:
- _maxTxAmountBuy = maxTxTokens.mul(10 ** _decimals) (#729)
OrbitInu.setMaxTokenPerAddress(uint256) (#732-734) should emit an event for:
- _maxTokensPerAddress = maxTokens.mul(10 ** _decimals) (#733)
OrbitInu.setExternalTokenMinAmount(uint256) (#736-738) should emit an event for:
- _externalTokenMinAmount = minTokens.mul(10 ** _decimals) (#737)
OrbitInu.setTransactionlockTime(uint256) (#748-750) should emit an event for:
- _transactionLockTime = transactiontime (#749)
OrbitInu.setMinTokensSellToAndTransfer(uint256) (#871-874) should emit an event for:
- _numTokensSellToAndTransfer = minTokensValue.mul(10 ** _decimals) (#873)
Emit an event for critical parameter changes.

Additional information: link

OrbitInu.setExternalAddress(address).externalAddress (#740) lacks a zero-check on :
- _externalAddress = externalAddress (#741)
OrbitInu.setLiquidityAddress(address).liquidityAddress (#744) lacks a zero-check on :
- autoLiquidityReceiver = liquidityAddress (#745)
Check that the address is not zero.

Additional information: link

Reentrancy in OrbitInu._transfer(address,address,uint256) (#884-947):
External calls:
- swapAndLiquify(contractTokenBalance) (#934)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,recipient,block.timestamp) (#1013-1020)
- pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,recipient,block.timestamp) (#999-1005)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#934)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,recipient,block.timestamp) (#1013-1020)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#946)
- _burnFee = _previousBurnFee (#861)
- _burnFee = 0 (#852)
- _tokenTransfer(from,to,amount,takeFee) (#946)
- _previousBurnFee = _burnFee (#847)
- _tokenTransfer(from,to,amount,takeFee) (#946)
- _previousExternalFee = _externalFee (#848)
- _tokenTransfer(from,to,amount,takeFee) (#946)
- _previousLiquidityFee = _liquidityFee (#846)
- _tokenTransfer(from,to,amount,takeFee) (#946)
- _previousReflectionFee = _reflectionFee (#849)
- _tokenTransfer(from,to,amount,takeFee) (#946)
- _previousTLiquidityFee = _totalLiquidityFee (#850)
- _tokenTransfer(from,to,amount,takeFee) (#946)
- _reflectionFee = _previousReflectionFee (#863)
- _reflectionFee = 0 (#854)
- _tokenTransfer(from,to,amount,takeFee) (#946)
- _tFeeTotal = _tFeeTotal.add(tFee) (#773)
Reentrancy in OrbitInu.constructor() (#504-548):
External calls:
- pancakePair = IPancakeFactory(_pancakeRouter.factory()).createPair(address(this),_pancakeRouter.WETH()) (#509-510)
State variables written after the call(s):
- _isExcludeFromExternalTokenMinAmount[owner()] = true (#524)
- _isExcludeFromExternalTokenMinAmount[address(this)] = true (#525)
- _isExcludeFromExternalTokenMinAmount[pancakePair] = true (#526)
- _isExcludeFromExternalTokenMinAmount[address(_pancakeRouter)] = true (#527)
- _isExcludeFromExternalTokenMinAmount[_burnAddress] = true (#528)
- _isExcluded[address(0)] = true (#542)
- _isExcluded[_burnAddress] = true (#543)
- _isExcludedFromAntiWhale[owner()] = true (#536)
- _isExcludedFromAntiWhale[address(this)] = true (#537)
- _isExcludedFromAntiWhale[pancakePair] = true (#538)
- _isExcludedFromAntiWhale[address(_pancakeRouter)] = true (#539)
- _isExcludedFromAntiWhale[_burnAddress] = true (#540)
- _isExcludedFromFee[owner()] = true (#514)
- _isExcludedFromFee[address(this)] = true (#515)
- _isExcludedFromFee[_externalAddress] = true (#516)
- _isExcludedFromMaxTxAmount[owner()] = true (#530)
- _isExcludedFromMaxTxAmount[address(this)] = true (#531)
- _isExcludedFromMaxTxAmount[pancakePair] = true (#532)
- _isExcludedFromMaxTxAmount[address(_pancakeRouter)] = true (#533)
- _isExcludedFromMaxTxAmount[_burnAddress] = true (#534)
- _isExcludedFromTransactionlock[owner()] = true (#518)
- _isExcludedFromTransactionlock[address(this)] = true (#519)
- _isExcludedFromTransactionlock[pancakePair] = true (#520)
- _isExcludedFromTransactionlock[address(_pancakeRouter)] = true (#521)
- _isExcludedFromTransactionlock[_burnAddress] = true (#522)
- autoLiquidityReceiver = _msgSender() (#545)
- pancakeRouter = _pancakeRouter (#512)
Reentrancy in OrbitInu.setRouterAddress(address) (#1152-1156):
External calls:
- pancakePair = IPancakeFactory(_newPancakeRouter.factory()).createPair(address(this),_newPancakeRouter.WETH()) (#1154)
State variables written after the call(s):
- pancakeRouter = _newPancakeRouter (#1155)
Reentrancy in OrbitInu.swapAndLiquify(uint256) (#949-988):
External calls:
- swapTokensForEth(_externalAddress,externalAmount) (#962)
- pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,recipient,block.timestamp) (#999-1005)
- swapTokensForEth(address(this),half) (#978)
- pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,recipient,block.timestamp) (#999-1005)
State variables written after the call(s):
- swapTokensForEth(address(this),half) (#978)
- _allowances[owner][spender] = amount (#880)
Reentrancy in OrbitInu.swapAndLiquify(uint256) (#949-988):
External calls:
- swapTokensForEth(_externalAddress,externalAmount) (#962)
- pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,recipient,block.timestamp) (#999-1005)
- swapTokensForEth(address(this),half) (#978)
- pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,recipient,block.timestamp) (#999-1005)
- addLiquidity(autoLiquidityReceiver,otherHalf,newBalance) (#984)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,recipient,block.timestamp) (#1013-1020)
External calls sending eth:
- addLiquidity(autoLiquidityReceiver,otherHalf,newBalance) (#984)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,recipient,block.timestamp) (#1013-1020)
State variables written after the call(s):
- addLiquidity(autoLiquidityReceiver,otherHalf,newBalance) (#984)
- _allowances[owner][spender] = amount (#880)
Reentrancy in OrbitInu.transferFrom(address,address,uint256) (#585-589):
External calls:
- _transfer(sender,recipient,amount) (#586)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,recipient,block.timestamp) (#1013-1020)
- pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,recipient,block.timestamp) (#999-1005)
External calls sending eth:
- _transfer(sender,recipient,amount) (#586)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,recipient,block.timestamp) (#1013-1020)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,BEP20: transfer amount exceeds allowance)) (#587)
- _allowances[owner][spender] = amount (#880)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in OrbitInu._transfer(address,address,uint256) (#884-947):
External calls:
- swapAndLiquify(contractTokenBalance) (#934)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,recipient,block.timestamp) (#1013-1020)
- pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,recipient,block.timestamp) (#999-1005)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#934)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,recipient,block.timestamp) (#1013-1020)
Event emitted after the call(s):
- Transfer(msg.sender,address(this),amount) (#670)
- _tokenTransfer(from,to,amount,takeFee) (#946)
- Transfer(sender,recipient,tTransferAmount) (#1075)
- _tokenTransfer(from,to,amount,takeFee) (#946)
- Transfer(sender,recipient,tTransferAmount) (#1064)
- _tokenTransfer(from,to,amount,takeFee) (#946)
- Transfer(sender,recipient,tTransferAmount) (#1052)
- _tokenTransfer(from,to,amount,takeFee) (#946)
- Transfer(sender,recipient,tTransferAmount) (#1088)
- _tokenTransfer(from,to,amount,takeFee) (#946)
Reentrancy in OrbitInu.constructor() (#504-548):
External calls:
- pancakePair = IPancakeFactory(_pancakeRouter.factory()).createPair(address(this),_pancakeRouter.WETH()) (#509-510)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#547)
Reentrancy in OrbitInu.swapAndLiquify(uint256) (#949-988):
External calls:
- swapTokensForEth(_externalAddress,externalAmount) (#962)
- pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,recipient,block.timestamp) (#999-1005)
- swapTokensForEth(address(this),half) (#978)
- pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,recipient,block.timestamp) (#999-1005)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#881)
- swapTokensForEth(address(this),half) (#978)
Reentrancy in OrbitInu.swapAndLiquify(uint256) (#949-988):
External calls:
- swapTokensForEth(_externalAddress,externalAmount) (#962)
- pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,recipient,block.timestamp) (#999-1005)
- swapTokensForEth(address(this),half) (#978)
- pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,recipient,block.timestamp) (#999-1005)
- addLiquidity(autoLiquidityReceiver,otherHalf,newBalance) (#984)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,recipient,block.timestamp) (#1013-1020)
External calls sending eth:
- addLiquidity(autoLiquidityReceiver,otherHalf,newBalance) (#984)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,recipient,block.timestamp) (#1013-1020)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#881)
- addLiquidity(autoLiquidityReceiver,otherHalf,newBalance) (#984)
- SwapAndLiquify(half,newBalance,otherHalf) (#986)
Reentrancy in OrbitInu.transferFrom(address,address,uint256) (#585-589):
External calls:
- _transfer(sender,recipient,amount) (#586)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,recipient,block.timestamp) (#1013-1020)
- pancakeRouter.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,recipient,block.timestamp) (#999-1005)
External calls sending eth:
- _transfer(sender,recipient,amount) (#586)
- pancakeRouter.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,recipient,block.timestamp) (#1013-1020)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#881)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,BEP20: transfer amount exceeds allowance)) (#587)
Apply the check-effects-interactions pattern.

Additional information: link

Ownable.unlock() (#200-206) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp > _lockTime,Contract is locked until 7 days) (#202)
OrbitInu._transfer(address,address,uint256) (#884-947) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(_isExcludedFromTransactionlock[from] || block.timestamp - _transactionCheckpoint[from] >= _transactionLockTime,Please wait for transaction cooldown time to finish) (#896-898)
- require(bool,string)(_isExcludedFromTransactionlock[to] || block.timestamp - _transactionCheckpoint[to] >= _transactionLockTime,Please wait for recepients transaction cooldown time to finish) (#899-901)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#96-105) uses assembly
- INLINE ASM (#103)
Address._functionCallWithValue(address,bytes,uint256,string) (#132-153) uses assembly
- INLINE ASM (#145-148)
Do not use evm assembly.

Additional information: link

OrbitInu.blacklistSingleWallet(address) (#1091-1094) compares to a boolean constant:
-_isBlacklisted[addresses] == true (#1092)
OrbitInu.unBlacklistSingleWallet(address) (#1107-1110) compares to a boolean constant:
-_isBlacklisted[addresses] == false (#1108)
Remove the equality to the boolean constant.

Additional information: link

OrbitInu.includeInReward(address) (#645-656) has costly operations inside a loop:
- _excluded.pop() (#652)
Use a local variable to hold the loop computation result.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#132-153) is never used and should be removed
Address.functionCall(address,bytes) (#115-117) is never used and should be removed
Address.functionCall(address,bytes,string) (#119-121) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#123-125) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#127-130) is never used and should be removed
Address.isContract(address) (#96-105) is never used and should be removed
Address.sendValue(address,uint256) (#107-113) is never used and should be removed
Context._msgData() (#88-91) is never used and should be removed
SafeMath.mod(uint256,uint256) (#73-75) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#77-80) is never used and should be removed
Remove unused functions.

Additional information: link

OrbitInu._tTotal (#453) is set pre-construction with a non-constant function or state variable:
- 1000000 * 10 ** 6 * 10 ** _decimals
OrbitInu._rTotal (#454) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
OrbitInu._previousBurnFee (#458) is set pre-construction with a non-constant function or state variable:
- _burnFee
OrbitInu._previousReflectionFee (#461) is set pre-construction with a non-constant function or state variable:
- _reflectionFee
OrbitInu._previousExternalFee (#464) is set pre-construction with a non-constant function or state variable:
- _externalFee
OrbitInu._previousLiquidityFee (#467) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
OrbitInu._totalLiquidityFee (#469) is set pre-construction with a non-constant function or state variable:
- _externalFee.add(_liquidityFee)
OrbitInu._previousTLiquidityFee (#470) is set pre-construction with a non-constant function or state variable:
- _totalLiquidityFee
OrbitInu._externalTokenMinAmount (#483) is set pre-construction with a non-constant function or state variable:
- 500 * 10 ** 6 * 10 ** _decimals
OrbitInu._maxTxAmountBuy (#484) is set pre-construction with a non-constant function or state variable:
- 1000000000 * 10 ** 6 * 10 ** _decimals
OrbitInu._maxTxAmountSell (#485) is set pre-construction with a non-constant function or state variable:
- 1000000000 * 10 ** 6 * 10 ** _decimals
OrbitInu._numTokensSellToAndTransfer (#486) is set pre-construction with a non-constant function or state variable:
- 1000 * 10 ** 6 * 10 ** _decimals
OrbitInu._maxTokensPerAddress (#487) is set pre-construction with a non-constant function or state variable:
- 1000000000 * 10 ** 6 * 10 ** _decimals
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) (#107-113):
- (success) = recipient.call{value: amount}() (#111)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#132-153):
- (success,returndata) = target.call{value: weiValue}(data) (#136)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IPancakePair.DOMAIN_SEPARATOR() (#245) is not in mixedCase
Function IPancakePair.PERMIT_TYPEHASH() (#246) is not in mixedCase
Function IPancakePair.MINIMUM_LIQUIDITY() (#263) is not in mixedCase
Function IPancakeRouter01.WETH() (#285) is not in mixedCase
Parameter OrbitInu.setBurnFeePercent(uint256).Fee (#706) is not in mixedCase
Parameter OrbitInu.setExternalFeePercent(uint256).Fee (#710) is not in mixedCase
Parameter OrbitInu.setReflectFeePercent(uint256).Fee (#715) is not in mixedCase
Parameter OrbitInu.setLiquidityFeePercent(uint256).Fee (#719) is not in mixedCase
Parameter OrbitInu.setSwapAndLiquifyEnabled(bool)._enabled (#752) is not in mixedCase
Parameter OrbitInu.calculateBurnFee(uint256)._amount (#824) is not in mixedCase
Parameter OrbitInu.calculateReflectionFee(uint256)._amount (#830) is not in mixedCase
Parameter OrbitInu.calculateLiquidityFee(uint256)._amount (#836) is not in mixedCase
Variable OrbitInu._isExcludedFromAntiWhale (#431) is not in mixedCase
Variable OrbitInu._isExcludeFromExternalTokenMinAmount (#432) is not in mixedCase
Variable OrbitInu._externalAddress (#444) is not in mixedCase
Variable OrbitInu._burnAddress (#445) is not in mixedCase
Variable OrbitInu._burnFee (#457) is not in mixedCase
Variable OrbitInu._reflectionFee (#460) is not in mixedCase
Variable OrbitInu._externalFee (#463) is not in mixedCase
Variable OrbitInu._liquidityFee (#466) is not in mixedCase
Variable OrbitInu._externalToken (#478) is not in mixedCase
Variable OrbitInu._externalTokenMinAmount (#483) is not in mixedCase
Variable OrbitInu._maxTxAmountBuy (#484) is not in mixedCase
Variable OrbitInu._maxTxAmountSell (#485) is not in mixedCase
Variable OrbitInu._numTokensSellToAndTransfer (#486) is not in mixedCase
Variable OrbitInu._maxTokensPerAddress (#487) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#89)" inContext (#83-92)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable IPancakeRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#290) is too similar to IPancakeRouter01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#291)
Variable OrbitInu._getValues(uint256).rTransferAmount (#778) is too similar to OrbitInu._getTValues(uint256).tTransferAmount (#786)
Variable OrbitInu._getValues(uint256).rTransferAmount (#778) is too similar to OrbitInu._transferBothExcluded(address,address,uint256).tTransferAmount (#1079)
Variable OrbitInu._transferToExcluded(address,address,uint256).rTransferAmount (#1056) is too similar to OrbitInu._getValues(uint256).tTransferAmount (#777)
Variable OrbitInu._transferToExcluded(address,address,uint256).rTransferAmount (#1056) is too similar to OrbitInu._transferStandard(address,address,uint256).tTransferAmount (#1068)
Variable OrbitInu._getValues(uint256).rTransferAmount (#778) is too similar to OrbitInu._getValues(uint256).tTransferAmount (#777)
Variable OrbitInu._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#795) is too similar to OrbitInu._transferBothExcluded(address,address,uint256).tTransferAmount (#1079)
Variable OrbitInu._transferStandard(address,address,uint256).rTransferAmount (#1068) is too similar to OrbitInu._getTValues(uint256).tTransferAmount (#786)
Variable OrbitInu._transferStandard(address,address,uint256).rTransferAmount (#1068) is too similar to OrbitInu._transferBothExcluded(address,address,uint256).tTransferAmount (#1079)
Variable OrbitInu._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#795) is too similar to OrbitInu._getValues(uint256).tTransferAmount (#777)
Variable OrbitInu._transferStandard(address,address,uint256).rTransferAmount (#1068) is too similar to OrbitInu._getValues(uint256).tTransferAmount (#777)
Variable OrbitInu._transferStandard(address,address,uint256).rTransferAmount (#1068) is too similar to OrbitInu._transferStandard(address,address,uint256).tTransferAmount (#1068)
Variable OrbitInu._transferFromExcluded(address,address,uint256).rTransferAmount (#1044) is too similar to OrbitInu._getValues(uint256).tTransferAmount (#777)
Variable OrbitInu._transferBothExcluded(address,address,uint256).rTransferAmount (#1079) is too similar to OrbitInu._transferBothExcluded(address,address,uint256).tTransferAmount (#1079)
Variable OrbitInu._transferFromExcluded(address,address,uint256).rTransferAmount (#1044) is too similar to OrbitInu._transferFromExcluded(address,address,uint256).tTransferAmount (#1044)
Variable OrbitInu._transferBothExcluded(address,address,uint256).rTransferAmount (#1079) is too similar to OrbitInu._getValues(uint256).tTransferAmount (#777)
Variable OrbitInu._transferFromExcluded(address,address,uint256).rTransferAmount (#1044) is too similar to OrbitInu._transferToExcluded(address,address,uint256).tTransferAmount (#1056)
Variable OrbitInu._transferToExcluded(address,address,uint256).rTransferAmount (#1056) is too similar to OrbitInu._transferToExcluded(address,address,uint256).tTransferAmount (#1056)
Variable OrbitInu._transferFromExcluded(address,address,uint256).rTransferAmount (#1044) is too similar to OrbitInu._getTValues(uint256).tTransferAmount (#786)
Variable OrbitInu._transferFromExcluded(address,address,uint256).rTransferAmount (#1044) is too similar to OrbitInu._transferBothExcluded(address,address,uint256).tTransferAmount (#1079)
Variable OrbitInu._transferFromExcluded(address,address,uint256).rTransferAmount (#1044) is too similar to OrbitInu._transferStandard(address,address,uint256).tTransferAmount (#1068)
Variable OrbitInu._transferToExcluded(address,address,uint256).rTransferAmount (#1056) is too similar to OrbitInu._getTValues(uint256).tTransferAmount (#786)
Variable OrbitInu._transferToExcluded(address,address,uint256).rTransferAmount (#1056) is too similar to OrbitInu._transferBothExcluded(address,address,uint256).tTransferAmount (#1079)
Variable OrbitInu._transferBothExcluded(address,address,uint256).rTransferAmount (#1079) is too similar to OrbitInu._transferFromExcluded(address,address,uint256).tTransferAmount (#1044)
Variable OrbitInu._transferStandard(address,address,uint256).rTransferAmount (#1068) is too similar to OrbitInu._transferFromExcluded(address,address,uint256).tTransferAmount (#1044)
Variable OrbitInu.reflectionFromToken(uint256,bool).rTransferAmount (#624) is too similar to OrbitInu._transferStandard(address,address,uint256).tTransferAmount (#1068)
Variable OrbitInu.reflectionFromToken(uint256,bool).rTransferAmount (#624) is too similar to OrbitInu._getTValues(uint256).tTransferAmount (#786)
Variable OrbitInu._transferStandard(address,address,uint256).rTransferAmount (#1068) is too similar to OrbitInu._transferToExcluded(address,address,uint256).tTransferAmount (#1056)
Variable OrbitInu._transferBothExcluded(address,address,uint256).rTransferAmount (#1079) is too similar to OrbitInu._transferToExcluded(address,address,uint256).tTransferAmount (#1056)
Variable OrbitInu._getValues(uint256).rTransferAmount (#778) is too similar to OrbitInu._transferFromExcluded(address,address,uint256).tTransferAmount (#1044)
Variable OrbitInu.reflectionFromToken(uint256,bool).rTransferAmount (#624) is too similar to OrbitInu._transferBothExcluded(address,address,uint256).tTransferAmount (#1079)
Variable OrbitInu._transferBothExcluded(address,address,uint256).rTransferAmount (#1079) is too similar to OrbitInu._transferStandard(address,address,uint256).tTransferAmount (#1068)
Variable OrbitInu._getValues(uint256).rTransferAmount (#778) is too similar to OrbitInu._transferToExcluded(address,address,uint256).tTransferAmount (#1056)
Variable OrbitInu._transferBothExcluded(address,address,uint256).rTransferAmount (#1079) is too similar to OrbitInu._getTValues(uint256).tTransferAmount (#786)
Variable OrbitInu._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#795) is too similar to OrbitInu._transferFromExcluded(address,address,uint256).tTransferAmount (#1044)
Variable OrbitInu.reflectionFromToken(uint256,bool).rTransferAmount (#624) is too similar to OrbitInu._transferFromExcluded(address,address,uint256).tTransferAmount (#1044)
Variable OrbitInu._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#795) is too similar to OrbitInu._transferToExcluded(address,address,uint256).tTransferAmount (#1056)
Variable OrbitInu._getValues(uint256).rTransferAmount (#778) is too similar to OrbitInu._transferStandard(address,address,uint256).tTransferAmount (#1068)
Variable OrbitInu.reflectionFromToken(uint256,bool).rTransferAmount (#624) is too similar to OrbitInu._getValues(uint256).tTransferAmount (#777)
Variable OrbitInu.reflectionFromToken(uint256,bool).rTransferAmount (#624) is too similar to OrbitInu._transferToExcluded(address,address,uint256).tTransferAmount (#1056)
Variable OrbitInu._transferToExcluded(address,address,uint256).rTransferAmount (#1056) is too similar to OrbitInu._transferFromExcluded(address,address,uint256).tTransferAmount (#1044)
Variable OrbitInu._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#795) is too similar to OrbitInu._transferStandard(address,address,uint256).tTransferAmount (#1068)
Variable OrbitInu._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#795) is too similar to OrbitInu._getTValues(uint256).tTransferAmount (#786)
Prevent variables from having similar names.

Additional information: link

OrbitInu.slitherConstructorVariables() (#423-1159) uses literals with too many digits:
- _burnAddress = address(0x000000000000000000000000000000000000dEaD) (#445)
OrbitInu.slitherConstructorVariables() (#423-1159) uses literals with too many digits:
- _tTotal = 1000000 * 10 ** 6 * 10 ** _decimals (#453)
OrbitInu.slitherConstructorVariables() (#423-1159) uses literals with too many digits:
- _maxTxAmountBuy = 1000000000 * 10 ** 6 * 10 ** _decimals (#484)
OrbitInu.slitherConstructorVariables() (#423-1159) uses literals with too many digits:
- _maxTxAmountSell = 1000000000 * 10 ** 6 * 10 ** _decimals (#485)
OrbitInu.slitherConstructorVariables() (#423-1159) uses literals with too many digits:
- _maxTokensPerAddress = 1000000000 * 10 ** 6 * 10 ** _decimals (#487)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

OrbitInu._burnAddress (#445) should be constant
OrbitInu._decimals (#450) should be constant
OrbitInu._name (#448) should be constant
OrbitInu._symbol (#449) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#178-181)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#183-187)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#189-191)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#193-198)
unlock() should be declared external:
- Ownable.unlock() (#200-206)
name() should be declared external:
- OrbitInu.name() (#550-552)
symbol() should be declared external:
- OrbitInu.symbol() (#554-556)
decimals() should be declared external:
- OrbitInu.decimals() (#558-560)
totalSupply() should be declared external:
- OrbitInu.totalSupply() (#562-564)
transfer(address,uint256) should be declared external:
- OrbitInu.transfer(address,uint256) (#571-574)
allowance(address,address) should be declared external:
- OrbitInu.allowance(address,address) (#576-578)
approve(address,uint256) should be declared external:
- OrbitInu.approve(address,uint256) (#580-583)
transferFrom(address,address,uint256) should be declared external:
- OrbitInu.transferFrom(address,address,uint256) (#585-589)
increaseAllowance(address,uint256) should be declared external:
- OrbitInu.increaseAllowance(address,uint256) (#591-594)
decreaseAllowance(address,uint256) should be declared external:
- OrbitInu.decreaseAllowance(address,uint256) (#596-599)
isExcludedFromReward(address) should be declared external:
- OrbitInu.isExcludedFromReward(address) (#601-603)
totalFeesCollected() should be declared external:
- OrbitInu.totalFeesCollected() (#605-607)
deliver(uint256) should be declared external:
- OrbitInu.deliver(uint256) (#609-616)
reflectionFromToken(uint256,bool) should be declared external:
- OrbitInu.reflectionFromToken(uint256,bool) (#618-627)
excludeFromReward(address) should be declared external:
- OrbitInu.excludeFromReward(address) (#635-643)
excludeFromFee(address) should be declared external:
- OrbitInu.excludeFromFee(address) (#674-676)
includeInFee(address) should be declared external:
- OrbitInu.includeInFee(address) (#678-680)
excludedFromMaxTxAmount(address) should be declared external:
- OrbitInu.excludedFromMaxTxAmount(address) (#682-684)
includeInMaxTxAmount(address) should be declared external:
- OrbitInu.includeInMaxTxAmount(address) (#686-688)
excludedFromExternalTokenMinAmount(address) should be declared external:
- OrbitInu.excludedFromExternalTokenMinAmount(address) (#690-692)
includeInExternalTokenMinAmount(address) should be declared external:
- OrbitInu.includeInExternalTokenMinAmount(address) (#694-696)
excludedFromAntiWhale(address) should be declared external:
- OrbitInu.excludedFromAntiWhale(address) (#698-700)
includeInAntiWhale(address) should be declared external:
- OrbitInu.includeInAntiWhale(address) (#702-704)
setTransactionlockTime(uint256) should be declared external:
- OrbitInu.setTransactionlockTime(uint256) (#748-750)
setSwapAndLiquifyEnabled(bool) should be declared external:
- OrbitInu.setSwapAndLiquifyEnabled(bool) (#752-755)
excludedFromTransactionlock(address) should be declared external:
- OrbitInu.excludedFromTransactionlock(address) (#757-759)
includeInTransactionlock(address) should be declared external:
- OrbitInu.includeInTransactionlock(address) (#761-763)
getIsExcludedFromTransactionlock(address) should be declared external:
- OrbitInu.getIsExcludedFromTransactionlock(address) (#765-767)
isExcludedFromFee(address) should be declared external:
- OrbitInu.isExcludedFromFee(address) (#867-869)
setMinTokensSellToAndTransfer(uint256) should be declared external:
- OrbitInu.setMinTokensSellToAndTransfer(uint256) (#871-874)
blacklistSingleWallet(address) should be declared external:
- OrbitInu.blacklistSingleWallet(address) (#1091-1094)
blacklistMultipleWallets(address[]) should be declared external:
- OrbitInu.blacklistMultipleWallets(address[]) (#1096-1101)
isBlacklisted(address) should be declared external:
- OrbitInu.isBlacklisted(address) (#1103-1105)
unBlacklistMultipleWallets(address[]) should be declared external:
- OrbitInu.unBlacklistMultipleWallets(address[]) (#1112-1117)
recoverBNB() should be declared external:
- OrbitInu.recoverBNB() (#1143-1148)
setRouterAddress(address) should be declared external:
- OrbitInu.setRouterAddress(address) (#1152-1156)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:


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


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


Average 30d number of PancakeSwap swaps is less than 1. Token is either dead or inactive.


Attempt to swap token was unsuccessful. For some reason it is untradeable. If token is not in presale stage and is not traded outside PancakeSwap, then it's a scam

Additional information: link


Average PancakeSwap trading volume, liqudity, number of swaps are extremely low. Token seems to be dead.


Number of Binance Smart Chain (BSC) token holders is low.


Token is deployed only at one blockchain


Token has only one trading pair


Telegram account link seems to be invalid


Twitter account has relatively few followers


Last post in Twitter was more than 30 days ago


Unable to find Youtube account


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 token on CoinGecko

Additional information: link


Unable to find token on CoinMarketCap

Additional information: link


Unable to find audit link on the website


Token is not listed at Mobula.Finance

Additional information: link


Unable to find token on CoinHunt

Additional information: link


Unable to find code repository for the project


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

Additional information: link


Young tokens have high risks of price dump / death


Token has no active CoinGecko listing / rank


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

Price for OIM81

News for OIM81