OMIG Token Logo

OMIG Token

About OMIG

Listings

Not Found
Token 2 years

Website

Not Found

Description

Not Found

Social

Not Found

Laser Scorebeta Last Audit: 10 February 2022

report
Token seems to be anonymous. As long as we are unable to find website score is limited.


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

OMIG.addLiquidity(uint256,uint256) (#907-920) sends eth to arbitrary user
Dangerous calls:
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#912-919)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in OMIG._transfer(address,address,uint256) (#819-864):
External calls:
- swapAndLiquify(contractTokenBalance) (#851)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#912-919)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#898-904)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#851)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#912-919)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#863)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#772)
- _rOwned[marketingWallet] = _rOwned[marketingWallet].add(rMarketing) (#756)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#946)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#956)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#947)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#658)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#968)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#958)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#969)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#660)
- _tokenTransfer(from,to,amount,takeFee) (#863)
- _rTotal = _rTotal.sub(rFee) (#706)
- _tokenTransfer(from,to,amount,takeFee) (#863)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#774)
- _tOwned[marketingWallet] = _tOwned[marketingWallet].add(tMarketing) (#758)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#657)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#967)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#957)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#659)
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.

OMIG._takeMarketingToken(uint256,address) (#750-761) performs a multiplication on the result of a division:
-tMarketing = tMarketingg.mul(_marketingFee).div(_marketingFee) (#752)
-rMarketing = tMarketing.mul(currentRate) (#755)
Consider ordering multiplication before division.

Additional information: link

OMIG.addLiquidity(uint256,uint256) (#907-920) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#912-919)
Ensure that all the return values of the function calls are used.

Additional information: link

OMIG.allowance(address,address).owner (#574) shadows:
- Ownable.owner() (#213-215) (function)
OMIG._approve(address,address,uint256).owner (#811) shadows:
- Ownable.owner() (#213-215) (function)
Rename the local variables that shadow another component.

Additional information: link

OMIG.setReflectionTaxFeePercent(uint256) (#675-677) should emit an event for:
- _reflectionTaxFee = reflectionTaxFee (#676)
OMIG.setLiquidityFeePercent(uint256) (#679-681) should emit an event for:
- _liquidityFee = liquidityFee (#680)
OMIG.setMaxTxPercent(uint256) (#683-687) should emit an event for:
- _maxTxAmount = _tTotal.mul(maxTxPercent).div(10 ** 2) (#684-686)
OMIG.setMarketingFeePercent(uint256) (#689-691) should emit an event for:
- _marketingFee = marketingFee (#690)
Emit an event for critical parameter changes.

Additional information: link

OMIG.updateMarketingWallet(address).account (#693) lacks a zero-check on :
- marketingWallet = account (#694)
Check that the address is not zero.

Additional information: link

Reentrancy in OMIG._transfer(address,address,uint256) (#819-864):
External calls:
- swapAndLiquify(contractTokenBalance) (#851)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#912-919)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#898-904)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#851)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#912-919)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#863)
- _liquidityFee = _previousLiquidityFee (#803)
- _liquidityFee = 0 (#797)
- _tokenTransfer(from,to,amount,takeFee) (#863)
- _marketingFee = _previousLiquidityFee (#804)
- _marketingFee = 0 (#798)
- _tokenTransfer(from,to,amount,takeFee) (#863)
- _previousLiquidityFee = _liquidityFee (#793)
- _tokenTransfer(from,to,amount,takeFee) (#863)
- _previousMarketingFee = _marketingFee (#794)
- _tokenTransfer(from,to,amount,takeFee) (#863)
- _previousReflectionTaxFee = _reflectionTaxFee (#792)
- _tokenTransfer(from,to,amount,takeFee) (#863)
- _reflectionTaxFee = _previousReflectionTaxFee (#802)
- _reflectionTaxFee = 0 (#796)
- _tokenTransfer(from,to,amount,takeFee) (#863)
- _tFeeTotal = _tFeeTotal.add(tFee) (#707)
Reentrancy in OMIG.constructor(address) (#517-536):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#523-524)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#530)
- _isExcludedFromFee[address(this)] = true (#531)
- marketingWallet = _msgSender() (#533)
- uniswapV2Router = _uniswapV2Router (#527)
Reentrancy in OMIG.swapAndLiquify(uint256) (#866-887):
External calls:
- swapTokensForEth(half) (#878)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#898-904)
- addLiquidity(otherHalf,newBalance) (#884)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#912-919)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#884)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#912-919)
State variables written after the call(s):
- addLiquidity(otherHalf,newBalance) (#884)
- _allowances[owner][spender] = amount (#815)
Reentrancy in OMIG.transferFrom(address,address,uint256) (#583-587):
External calls:
- _transfer(sender,recipient,amount) (#584)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#912-919)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#898-904)
External calls sending eth:
- _transfer(sender,recipient,amount) (#584)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#912-919)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#585)
- _allowances[owner][spender] = amount (#815)
Reentrancy in OMIG.updateDex(address) (#538-546):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#541-542)
State variables written after the call(s):
- uniswapV2Router = _uniswapV2Router (#545)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in OMIG._transfer(address,address,uint256) (#819-864):
External calls:
- swapAndLiquify(contractTokenBalance) (#851)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#912-919)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#898-904)
External calls sending eth:
- swapAndLiquify(contractTokenBalance) (#851)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#912-919)
Event emitted after the call(s):
- Transfer(sender,marketingWallet,tMarketing) (#759)
- _tokenTransfer(from,to,amount,takeFee) (#863)
- Transfer(sender,recipient,tTransferAmount) (#951)
- _tokenTransfer(from,to,amount,takeFee) (#863)
- Transfer(sender,recipient,tTransferAmount) (#973)
- _tokenTransfer(from,to,amount,takeFee) (#863)
- Transfer(sender,recipient,tTransferAmount) (#962)
- _tokenTransfer(from,to,amount,takeFee) (#863)
- Transfer(sender,recipient,tTransferAmount) (#664)
- _tokenTransfer(from,to,amount,takeFee) (#863)
Reentrancy in OMIG.constructor(address) (#517-536):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#523-524)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#535)
Reentrancy in OMIG.swapAndLiquify(uint256) (#866-887):
External calls:
- swapTokensForEth(half) (#878)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#898-904)
- addLiquidity(otherHalf,newBalance) (#884)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#912-919)
External calls sending eth:
- addLiquidity(otherHalf,newBalance) (#884)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#912-919)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#816)
- addLiquidity(otherHalf,newBalance) (#884)
- SwapAndLiquify(half,newBalance,otherHalf) (#886)
Reentrancy in OMIG.transferFrom(address,address,uint256) (#583-587):
External calls:
- _transfer(sender,recipient,amount) (#584)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#912-919)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#898-904)
External calls sending eth:
- _transfer(sender,recipient,amount) (#584)
- uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#912-919)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#816)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#585)
Apply the check-effects-interactions pattern.

Additional information: link

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

Additional information: link

Address.isContract(address) (#140-149) uses assembly
- INLINE ASM (#147)
Address._functionCallWithValue(address,bytes,uint256,string) (#177-195) uses assembly
- INLINE ASM (#187-190)
Do not use evm assembly.

Additional information: link

OMIG.includeInReward(address) (#643-654) has costly operations inside a loop:
- _excluded.pop() (#650)
Use a local variable to hold the loop computation result.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#177-195) is never used and should be removed
Address.functionCall(address,bytes) (#159-161) is never used and should be removed
Address.functionCall(address,bytes,string) (#163-165) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#168-170) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#172-175) is never used and should be removed
Address.isContract(address) (#140-149) is never used and should be removed
Address.sendValue(address,uint256) (#151-157) is never used and should be removed
Context._msgData() (#130-133) is never used and should be removed
SafeMath.mod(uint256,uint256) (#114-116) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#118-121) is never used and should be removed
Remove unused functions.

Additional information: link

OMIG._rTotal (#476) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
OMIG._previousReflectionTaxFee (#484) is set pre-construction with a non-constant function or state variable:
- _reflectionTaxFee
OMIG._previousLiquidityFee (#487) is set pre-construction with a non-constant function or state variable:
- _liquidityFee
OMIG._previousMarketingFee (#499) is set pre-construction with a non-constant function or state variable:
- _marketingFee
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

Pragma version^0.8.10 (#44) necessitates a version too recent to be trusted. Consider deploying with 0.6.12/0.7.6/0.8.7
solc-0.8.10 is not recommended for deployment
Deploy with any of the following Solidity versions: 0.5.16 - 0.5.17, 0.6.11 - 0.6.12, 0.7.5 - 0.7.6 Use a simple pragma version that allows any of these versions. Consider using the latest version of Solidity for testing.

Additional information: link

Low level call in Address.sendValue(address,uint256) (#151-157):
- (success) = recipient.call{value: amount}() (#155)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#177-195):
- (success,returndata) = target.call{value: weiValue}(data) (#180)
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() (#288) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#289) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#306) is not in mixedCase
Function IUniswapV2Router01.WETH() (#326) is not in mixedCase
Parameter OMIG.updateDex(address)._newDexAddress (#538) is not in mixedCase
Parameter OMIG.setSwapAndLiquifyEnabled(bool)._enabled (#697) is not in mixedCase
Parameter OMIG.calculateMarketingFee(uint256)._amount (#763) is not in mixedCase
Parameter OMIG.calculateReflectionTaxFee(uint256)._amount (#777) is not in mixedCase
Parameter OMIG.calculateLiquidityFee(uint256)._amount (#783) is not in mixedCase
Variable OMIG._reflectionTaxFee (#483) is not in mixedCase
Variable OMIG._liquidityFee (#486) is not in mixedCase
Variable OMIG._maxTxAmount (#495) is not in mixedCase
Variable OMIG._marketingFee (#498) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#131)" inContext (#125-134)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#331) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#332)
Variable OMIG._getRValues(uint256,uint256,uint256,uint256,uint256).rMarketingg (#728) is too similar to OMIG._transferToExcluded(address,address,uint256).tMarketingg (#955)
Variable OMIG._getRValues(uint256,uint256,uint256,uint256,uint256).rMarketingg (#728) is too similar to OMIG._transferStandard(address,address,uint256).tMarketingg (#944)
Variable OMIG._getRValues(uint256,uint256,uint256,uint256,uint256).rMarketingg (#728) is too similar to OMIG._takeMarketingToken(uint256,address).tMarketingg (#750)
Variable OMIG._getRValues(uint256,uint256,uint256,uint256,uint256).rMarketingg (#728) is too similar to OMIG._transferBothExcluded(address,address,uint256).tMarketingg (#656)
Variable OMIG._getRValues(uint256,uint256,uint256,uint256,uint256).rMarketingg (#728) is too similar to OMIG._getValues(uint256).tMarketingg (#711)
Variable OMIG._getRValues(uint256,uint256,uint256,uint256,uint256).rMarketingg (#728) is too similar to OMIG._getRValues(uint256,uint256,uint256,uint256,uint256).tMarketingg (#724)
Variable OMIG._getValues(uint256).rTransferAmount (#712) is too similar to OMIG._transferToExcluded(address,address,uint256).tTransferAmount (#955)
Variable OMIG._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#729) is too similar to OMIG._transferToExcluded(address,address,uint256).tTransferAmount (#955)
Variable OMIG._transferToExcluded(address,address,uint256).rTransferAmount (#955) is too similar to OMIG._transferToExcluded(address,address,uint256).tTransferAmount (#955)
Variable OMIG.reflectionFromToken(uint256,bool).rTransferAmount (#622) is too similar to OMIG._getValues(uint256).tTransferAmount (#711)
Variable OMIG._transferStandard(address,address,uint256).rTransferAmount (#944) is too similar to OMIG._transferToExcluded(address,address,uint256).tTransferAmount (#955)
Variable OMIG._transferFromExcluded(address,address,uint256).rTransferAmount (#966) is too similar to OMIG._transferBothExcluded(address,address,uint256).tTransferAmount (#656)
Variable OMIG._transferFromExcluded(address,address,uint256).rTransferAmount (#966) is too similar to OMIG._transferFromExcluded(address,address,uint256).tTransferAmount (#966)
Variable OMIG._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#729) is too similar to OMIG._transferStandard(address,address,uint256).tTransferAmount (#944)
Variable OMIG._transferBothExcluded(address,address,uint256).rTransferAmount (#656) is too similar to OMIG._transferBothExcluded(address,address,uint256).tTransferAmount (#656)
Variable OMIG.reflectionFromToken(uint256,bool).rTransferAmount (#622) is too similar to OMIG._transferToExcluded(address,address,uint256).tTransferAmount (#955)
Variable OMIG._transferBothExcluded(address,address,uint256).rTransferAmount (#656) is too similar to OMIG._transferFromExcluded(address,address,uint256).tTransferAmount (#966)
Variable OMIG._getValues(uint256).rTransferAmount (#712) is too similar to OMIG._transferFromExcluded(address,address,uint256).tTransferAmount (#966)
Variable OMIG._getValues(uint256).rTransferAmount (#712) is too similar to OMIG._transferBothExcluded(address,address,uint256).tTransferAmount (#656)
Variable OMIG._transferStandard(address,address,uint256).rTransferAmount (#944) is too similar to OMIG._transferStandard(address,address,uint256).tTransferAmount (#944)
Variable OMIG._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#729) is too similar to OMIG._transferFromExcluded(address,address,uint256).tTransferAmount (#966)
Variable OMIG._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#729) is too similar to OMIG._transferBothExcluded(address,address,uint256).tTransferAmount (#656)
Variable OMIG._transferToExcluded(address,address,uint256).rTransferAmount (#955) is too similar to OMIG._transferFromExcluded(address,address,uint256).tTransferAmount (#966)
Variable OMIG._transferToExcluded(address,address,uint256).rTransferAmount (#955) is too similar to OMIG._transferBothExcluded(address,address,uint256).tTransferAmount (#656)
Variable OMIG._transferFromExcluded(address,address,uint256).rTransferAmount (#966) is too similar to OMIG._getValues(uint256).tTransferAmount (#711)
Variable OMIG._transferStandard(address,address,uint256).rTransferAmount (#944) is too similar to OMIG._transferFromExcluded(address,address,uint256).tTransferAmount (#966)
Variable OMIG._transferStandard(address,address,uint256).rTransferAmount (#944) is too similar to OMIG._transferBothExcluded(address,address,uint256).tTransferAmount (#656)
Variable OMIG._getValues(uint256).rTransferAmount (#712) is too similar to OMIG._getValues(uint256).tTransferAmount (#711)
Variable OMIG.reflectionFromToken(uint256,bool).rTransferAmount (#622) is too similar to OMIG._transferBothExcluded(address,address,uint256).tTransferAmount (#656)
Variable OMIG.reflectionFromToken(uint256,bool).rTransferAmount (#622) is too similar to OMIG._transferFromExcluded(address,address,uint256).tTransferAmount (#966)
Variable OMIG._transferBothExcluded(address,address,uint256).rTransferAmount (#656) is too similar to OMIG._getValues(uint256).tTransferAmount (#711)
Variable OMIG._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#729) is too similar to OMIG._getValues(uint256).tTransferAmount (#711)
Variable OMIG._transferToExcluded(address,address,uint256).rTransferAmount (#955) is too similar to OMIG._getValues(uint256).tTransferAmount (#711)
Variable OMIG._transferBothExcluded(address,address,uint256).rTransferAmount (#656) is too similar to OMIG._transferToExcluded(address,address,uint256).tTransferAmount (#955)
Variable OMIG._transferStandard(address,address,uint256).rTransferAmount (#944) is too similar to OMIG._getValues(uint256).tTransferAmount (#711)
Variable OMIG._getRValues(uint256,uint256,uint256,uint256,uint256).rMarketingg (#728) is too similar to OMIG._transferFromExcluded(address,address,uint256).tMarketingg (#966)
Variable OMIG._getRValues(uint256,uint256,uint256,uint256,uint256).rMarketingg (#728) is too similar to OMIG._getTValues(uint256).tMarketingg (#719)
Variable OMIG._getRValues(uint256,uint256,uint256,uint256,uint256).rTransferAmount (#729) is too similar to OMIG._getTValues(uint256).tTransferAmount (#720)
Variable OMIG._transferToExcluded(address,address,uint256).rTransferAmount (#955) is too similar to OMIG._getTValues(uint256).tTransferAmount (#720)
Variable OMIG._transferToExcluded(address,address,uint256).rTransferAmount (#955) is too similar to OMIG._transferStandard(address,address,uint256).tTransferAmount (#944)
Variable OMIG.reflectionFromToken(uint256,bool).rTransferAmount (#622) is too similar to OMIG._getTValues(uint256).tTransferAmount (#720)
Variable OMIG._transferStandard(address,address,uint256).rTransferAmount (#944) is too similar to OMIG._getTValues(uint256).tTransferAmount (#720)
Variable OMIG.reflectionFromToken(uint256,bool).rTransferAmount (#622) is too similar to OMIG._transferStandard(address,address,uint256).tTransferAmount (#944)
Variable OMIG._transferFromExcluded(address,address,uint256).rTransferAmount (#966) is too similar to OMIG._getTValues(uint256).tTransferAmount (#720)
Variable OMIG._getValues(uint256).rTransferAmount (#712) is too similar to OMIG._getTValues(uint256).tTransferAmount (#720)
Variable OMIG._transferBothExcluded(address,address,uint256).rTransferAmount (#656) is too similar to OMIG._getTValues(uint256).tTransferAmount (#720)
Variable OMIG._transferFromExcluded(address,address,uint256).rTransferAmount (#966) is too similar to OMIG._transferToExcluded(address,address,uint256).tTransferAmount (#955)
Variable OMIG._getValues(uint256).rTransferAmount (#712) is too similar to OMIG._transferStandard(address,address,uint256).tTransferAmount (#944)
Variable OMIG._transferBothExcluded(address,address,uint256).rTransferAmount (#656) is too similar to OMIG._transferStandard(address,address,uint256).tTransferAmount (#944)
Variable OMIG._transferFromExcluded(address,address,uint256).rTransferAmount (#966) is too similar to OMIG._transferStandard(address,address,uint256).tTransferAmount (#944)
Prevent variables from having similar names.

Additional information: link

OMIG.slitherConstructorVariables() (#461-977) uses literals with too many digits:
- _tTotal = 12000000000 * 10 ** 18 (#475)
OMIG.slitherConstructorVariables() (#461-977) uses literals with too many digits:
- _maxTxAmount = 240000000 * 10 ** 18 (#495)
OMIG.slitherConstructorVariables() (#461-977) uses literals with too many digits:
- numTokensSellToAddToLiquidity = 240000000 * 10 ** 18 (#496)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

OMIG._decimals (#481) should be constant
OMIG._name (#479) should be constant
OMIG._symbol (#480) should be constant
OMIG._tTotal (#475) should be constant
OMIG.numTokensSellToAddToLiquidity (#496) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#224-227)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#230-234)
geUnlockTime() should be declared external:
- Ownable.geUnlockTime() (#236-238)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#240-245)
unlock() should be declared external:
- Ownable.unlock() (#247-252)
name() should be declared external:
- OMIG.name() (#548-550)
symbol() should be declared external:
- OMIG.symbol() (#552-554)
decimals() should be declared external:
- OMIG.decimals() (#556-558)
totalSupply() should be declared external:
- OMIG.totalSupply() (#560-562)
transfer(address,uint256) should be declared external:
- OMIG.transfer(address,uint256) (#569-572)
allowance(address,address) should be declared external:
- OMIG.allowance(address,address) (#574-576)
approve(address,uint256) should be declared external:
- OMIG.approve(address,uint256) (#578-581)
transferFrom(address,address,uint256) should be declared external:
- OMIG.transferFrom(address,address,uint256) (#583-587)
increaseAllowance(address,uint256) should be declared external:
- OMIG.increaseAllowance(address,uint256) (#589-592)
decreaseAllowance(address,uint256) should be declared external:
- OMIG.decreaseAllowance(address,uint256) (#594-597)
isExcludedFromReward(address) should be declared external:
- OMIG.isExcludedFromReward(address) (#599-601)
totalFees() should be declared external:
- OMIG.totalFees() (#603-605)
deliver(uint256) should be declared external:
- OMIG.deliver(uint256) (#607-614)
reflectionFromToken(uint256,bool) should be declared external:
- OMIG.reflectionFromToken(uint256,bool) (#616-625)
excludeFromReward(address) should be declared external:
- OMIG.excludeFromReward(address) (#633-641)
excludeFromFee(address) should be declared external:
- OMIG.excludeFromFee(address) (#667-669)
includeInFee(address) should be declared external:
- OMIG.includeInFee(address) (#671-673)
updateMarketingWallet(address) should be declared external:
- OMIG.updateMarketingWallet(address) (#693-695)
setSwapAndLiquifyEnabled(bool) should be declared external:
- OMIG.setSwapAndLiquifyEnabled(bool) (#697-700)
isExcludedFromFee(address) should be declared external:
- OMIG.isExcludedFromFee(address) (#807-809)
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.


Number of Binance Smart Chain (BSC) token holders is less than 100. Token is either dead or inactive. Ignore for presale.


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

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


Unable to find Telegram and Twitter accounts


Unable to find website, listings and other project-related information


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


Token has no active CoinGecko listing / rank


Token has no active CoinMarketCap listing / rank

Price for OMIG