OragonX Token Logo

Orgn [OragonX] Token

About Orgn

Listings

Token 3 years
CoinGecko 3 years
CoinMarketCap 3 years
white paper

What is OragonX ?
OragonX is a Fantasy Game platform project that uses the NFT system, in which every player will be able to get a token as a reward by developing their own gameplay and contributing to the ecosystem. In the OragonX game, each player will be able to do breeding to boost up the dragon, raise, fight, and get items that can be used to improve the dragon’s ability.

OragonX Mission:
● Build an ecosystem for OragonX game and nft
● To open an opportunity to increase the communities’ income
● To educate the public about blockchain technology in a fun and profitable way.

OragonX Vision:
To become the first blockchain game based in Indonesia that can compete in the international world and play a role in boosting the community standard of living.

The Gaming
OragonX will be a game full of enjoyment. In the future, it will become a new social media network because of the strong community, plus, it will give an opportunity to earn passive income. This game itself will give a new experience which is “Play to Earn” where the player in the ecosystem will get a reward. This will magnetize and fascinate millions of people, where you not just play the game, but you can get real income from the game itself. Amazing, right?!

Players will be able to get reward from:
● Do the best dragon breeding and sell it in the marketplace
● Sell items from the game
● Raise and improve the dragon up to certain rarity level, it will increase the price in the marketplace
● Victory reward from battle.

Laser Scorebeta Last Audit: 29 August 2022

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

Reentrancy in OragonX._transfer(address,address,uint256) (#653-691):
External calls:
- swapTokens(contractTokenBalance) (#671)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#720-726)
- buyBackTokens(balance.div(100)) (#679)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#738-743)
External calls sending eth:
- swapTokens(contractTokenBalance) (#671)
- recipient.transfer(amount) (#964)
- buyBackTokens(balance.div(100)) (#679)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#738-743)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#690)
- _liquidityFee = _previousLiquidityFee (#896)
- _liquidityFee = 0 (#891)
- _tokenTransfer(from,to,amount,takeFee) (#690)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#867)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#792)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#783)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#813)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#784)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#803)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#804)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#794)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#815)
- _tokenTransfer(from,to,amount,takeFee) (#690)
- _rTotal = _rTotal.sub(rFee) (#822)
- _tokenTransfer(from,to,amount,takeFee) (#690)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#869)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#802)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#812)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#793)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#814)
- buyBackTokens(balance.div(100)) (#679)
- inSwapAndLiquify = true (#507)
- inSwapAndLiquify = false (#509)
Apply the check-effects-interactions pattern.

Additional information: link

OragonX.swapTokens(uint256) (#693-702) performs a multiplication on the result of a division:
-transferToAddressETH(marketingAddress,transferredBalance.div(_liquidityFee).mul(marketingDivisor)) (#700)
Consider ordering multiplication before division.

Additional information: link

OragonX.addLiquidity(uint256,uint256) (#748-761) ignores return value by uniswapV2Router.addLiquidityETH{value: ethAmount}(address(this),tokenAmount,0,0,owner(),block.timestamp) (#753-760)
Ensure that all the return values of the function calls are used.

Additional information: link

OragonX.allowance(address,address).owner (#554) shadows:
- Ownable.owner() (#188-190) (function)
OragonX._approve(address,address,uint256).owner (#645) shadows:
- Ownable.owner() (#188-190) (function)
Rename the local variables that shadow another component.

Additional information: link

OragonX.setTaxFeePercent(uint256) (#911-913) should emit an event for:
- _taxFee = taxFee (#912)
OragonX.setLiquidityFeePercent(uint256) (#915-917) should emit an event for:
- _liquidityFee = liquidityFee (#916)
OragonX.setMaxTxAmount(uint256) (#919-921) should emit an event for:
- _maxTxAmount = maxTxAmount (#920)
OragonX.setMarketingDivisor(uint256) (#923-925) should emit an event for:
- marketingDivisor = divisor (#924)
OragonX.setNumTokensSellToAddToLiquidity(uint256) (#927-929) should emit an event for:
- minimumTokensBeforeSwap = _minimumTokensBeforeSwap (#928)
OragonX.setBuybackUpperLimit(uint256) (#931-933) should emit an event for:
- buyBackUpperLimit = buyBackLimit * 10 ** 18 (#932)
Emit an event for critical parameter changes.

Additional information: link

OragonX.setMarketingAddress(address)._marketingAddress (#935) lacks a zero-check on :
- marketingAddress = address(_marketingAddress) (#936)
Check that the address is not zero.

Additional information: link

Reentrancy in OragonX._transfer(address,address,uint256) (#653-691):
External calls:
- swapTokens(contractTokenBalance) (#671)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#720-726)
- buyBackTokens(balance.div(100)) (#679)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#738-743)
External calls sending eth:
- swapTokens(contractTokenBalance) (#671)
- recipient.transfer(amount) (#964)
- buyBackTokens(balance.div(100)) (#679)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#738-743)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#690)
- _previousLiquidityFee = _liquidityFee (#888)
- _tokenTransfer(from,to,amount,takeFee) (#690)
- _previousTaxFee = _taxFee (#887)
- _tokenTransfer(from,to,amount,takeFee) (#690)
- _tFeeTotal = _tFeeTotal.add(tFee) (#823)
- _tokenTransfer(from,to,amount,takeFee) (#690)
- _taxFee = _previousTaxFee (#895)
- _taxFee = 0 (#890)
Reentrancy in OragonX.constructor() (#512-526):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#516-517)
State variables written after the call(s):
- _isExcludedFromFee[owner()] = true (#522)
- _isExcludedFromFee[address(this)] = true (#523)
- uniswapV2Router = _uniswapV2Router (#519)
Reentrancy in OragonX.transferFrom(address,address,uint256) (#563-567):
External calls:
- _transfer(sender,recipient,amount) (#564)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#738-743)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#720-726)
External calls sending eth:
- _transfer(sender,recipient,amount) (#564)
- recipient.transfer(amount) (#964)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#738-743)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#565)
- _allowances[owner][spender] = amount (#649)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in OragonX._transfer(address,address,uint256) (#653-691):
External calls:
- swapTokens(contractTokenBalance) (#671)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#720-726)
- buyBackTokens(balance.div(100)) (#679)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#738-743)
External calls sending eth:
- swapTokens(contractTokenBalance) (#671)
- recipient.transfer(amount) (#964)
- buyBackTokens(balance.div(100)) (#679)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#738-743)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#745)
- buyBackTokens(balance.div(100)) (#679)
- Transfer(sender,recipient,tTransferAmount) (#787)
- _tokenTransfer(from,to,amount,takeFee) (#690)
- Transfer(sender,recipient,tTransferAmount) (#807)
- _tokenTransfer(from,to,amount,takeFee) (#690)
- Transfer(sender,recipient,tTransferAmount) (#797)
- _tokenTransfer(from,to,amount,takeFee) (#690)
- Transfer(sender,recipient,tTransferAmount) (#818)
- _tokenTransfer(from,to,amount,takeFee) (#690)
Reentrancy in OragonX.constructor() (#512-526):
External calls:
- uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#516-517)
Event emitted after the call(s):
- Transfer(address(0),_msgSender(),_tTotal) (#525)
Reentrancy in OragonX.swapETHForTokens(uint256) (#731-746):
External calls:
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#738-743)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#745)
Reentrancy in OragonX.swapTokensForEth(uint256) (#711-729):
External calls:
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#720-726)
Event emitted after the call(s):
- SwapTokensForETH(tokenAmount,path) (#728)
Reentrancy in OragonX.transferFrom(address,address,uint256) (#563-567):
External calls:
- _transfer(sender,recipient,amount) (#564)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#738-743)
- uniswapV2Router.swapExactTokensForETHSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#720-726)
External calls sending eth:
- _transfer(sender,recipient,amount) (#564)
- recipient.transfer(amount) (#964)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#738-743)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#650)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#565)
Apply the check-effects-interactions pattern.

Additional information: link

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

Additional information: link

Address.isContract(address) (#118-127) uses assembly
- INLINE ASM (#125)
Address._functionCallWithValue(address,bytes,uint256,string) (#155-172) uses assembly
- INLINE ASM (#164-167)
Do not use evm assembly.

Additional information: link

Address._functionCallWithValue(address,bytes,uint256,string) (#155-172) is never used and should be removed
Address.functionCall(address,bytes) (#138-140) is never used and should be removed
Address.functionCall(address,bytes,string) (#142-144) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256) (#146-148) is never used and should be removed
Address.functionCallWithValue(address,bytes,uint256,string) (#150-153) is never used and should be removed
Address.isContract(address) (#118-127) is never used and should be removed
Address.sendValue(address,uint256) (#129-135) is never used and should be removed
Context._msgData() (#41-44) is never used and should be removed
OragonX.addLiquidity(uint256,uint256) (#748-761) is never used and should be removed
SafeMath.mod(uint256,uint256) (#106-108) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#110-113) is never used and should be removed
Remove unused functions.

Additional information: link

OragonX._rTotal (#459) is set pre-construction with a non-constant function or state variable:
- (MAX - (MAX % _tTotal))
OragonX._previousTaxFee (#468) is set pre-construction with a non-constant function or state variable:
- _taxFee
OragonX._previousLiquidityFee (#471) 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) (#129-135):
- (success) = recipient.call{value: amount}() (#133)
Low level call in Address._functionCallWithValue(address,bytes,uint256,string) (#155-172):
- (success,returndata) = target.call{value: weiValue}(data) (#158)
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() (#267) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#268) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#284) is not in mixedCase
Function IUniswapV2Router01.WETH() (#305) is not in mixedCase
Parameter OragonX.calculateTaxFee(uint256)._amount (#872) is not in mixedCase
Parameter OragonX.calculateLiquidityFee(uint256)._amount (#878) is not in mixedCase
Parameter OragonX.setNumTokensSellToAddToLiquidity(uint256)._minimumTokensBeforeSwap (#927) is not in mixedCase
Parameter OragonX.setMarketingAddress(address)._marketingAddress (#935) is not in mixedCase
Parameter OragonX.setSwapAndLiquifyEnabled(bool)._enabled (#939) is not in mixedCase
Parameter OragonX.setBuyBackEnabled(bool)._enabled (#944) is not in mixedCase
Variable OragonX._taxFee (#467) is not in mixedCase
Variable OragonX._liquidityFee (#470) is not in mixedCase
Variable OragonX._maxTxAmount (#475) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#42)" inContext (#36-45)
Remove redundant statements if they congest code but offer no value.

Additional information: link

Reentrancy in OragonX._transfer(address,address,uint256) (#653-691):
External calls:
- swapTokens(contractTokenBalance) (#671)
- recipient.transfer(amount) (#964)
External calls sending eth:
- swapTokens(contractTokenBalance) (#671)
- recipient.transfer(amount) (#964)
- buyBackTokens(balance.div(100)) (#679)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#738-743)
State variables written after the call(s):
- _tokenTransfer(from,to,amount,takeFee) (#690)
- _liquidityFee = _previousLiquidityFee (#896)
- _liquidityFee = 0 (#891)
- _tokenTransfer(from,to,amount,takeFee) (#690)
- _previousLiquidityFee = _liquidityFee (#888)
- _tokenTransfer(from,to,amount,takeFee) (#690)
- _previousTaxFee = _taxFee (#887)
- _tokenTransfer(from,to,amount,takeFee) (#690)
- _rOwned[address(this)] = _rOwned[address(this)].add(rLiquidity) (#867)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#792)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#783)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#813)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#784)
- _rOwned[sender] = _rOwned[sender].sub(rAmount) (#803)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#804)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#794)
- _rOwned[recipient] = _rOwned[recipient].add(rTransferAmount) (#815)
- _tokenTransfer(from,to,amount,takeFee) (#690)
- _rTotal = _rTotal.sub(rFee) (#822)
- _tokenTransfer(from,to,amount,takeFee) (#690)
- _tFeeTotal = _tFeeTotal.add(tFee) (#823)
- _tokenTransfer(from,to,amount,takeFee) (#690)
- _tOwned[address(this)] = _tOwned[address(this)].add(tLiquidity) (#869)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#802)
- _tOwned[sender] = _tOwned[sender].sub(tAmount) (#812)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#793)
- _tOwned[recipient] = _tOwned[recipient].add(tTransferAmount) (#814)
- _tokenTransfer(from,to,amount,takeFee) (#690)
- _taxFee = _previousTaxFee (#895)
- _taxFee = 0 (#890)
- buyBackTokens(balance.div(100)) (#679)
- inSwapAndLiquify = true (#507)
- inSwapAndLiquify = false (#509)
Event emitted after the call(s):
- SwapETHForTokens(amount,path) (#745)
- buyBackTokens(balance.div(100)) (#679)
- Transfer(sender,recipient,tTransferAmount) (#787)
- _tokenTransfer(from,to,amount,takeFee) (#690)
- Transfer(sender,recipient,tTransferAmount) (#797)
- _tokenTransfer(from,to,amount,takeFee) (#690)
- Transfer(sender,recipient,tTransferAmount) (#807)
- _tokenTransfer(from,to,amount,takeFee) (#690)
- Transfer(sender,recipient,tTransferAmount) (#818)
- _tokenTransfer(from,to,amount,takeFee) (#690)
Reentrancy in OragonX.transferFrom(address,address,uint256) (#563-567):
External calls:
- _transfer(sender,recipient,amount) (#564)
- recipient.transfer(amount) (#964)
External calls sending eth:
- _transfer(sender,recipient,amount) (#564)
- recipient.transfer(amount) (#964)
- uniswapV2Router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,deadAddress,block.timestamp.add(300)) (#738-743)
State variables written after the call(s):
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#565)
- _allowances[owner][spender] = amount (#649)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#650)
- _approve(sender,_msgSender(),_allowances[sender][_msgSender()].sub(amount,ERC20: transfer amount exceeds allowance)) (#565)
Apply the check-effects-interactions pattern.

Additional information: link

Variable IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#310) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#311)
Variable OragonX._transferToExcluded(address,address,uint256).rTransferAmount (#791) is too similar to OragonX._getTValues(uint256).tTransferAmount (#835)
Variable OragonX._transferBothExcluded(address,address,uint256).rTransferAmount (#811) is too similar to OragonX._transferFromExcluded(address,address,uint256).tTransferAmount (#801)
Variable OragonX._transferStandard(address,address,uint256).rTransferAmount (#782) is too similar to OragonX._getTValues(uint256).tTransferAmount (#835)
Variable OragonX._transferFromExcluded(address,address,uint256).rTransferAmount (#801) is too similar to OragonX._getTValues(uint256).tTransferAmount (#835)
Variable OragonX._transferStandard(address,address,uint256).rTransferAmount (#782) is too similar to OragonX._transferStandard(address,address,uint256).tTransferAmount (#782)
Variable OragonX._transferToExcluded(address,address,uint256).rTransferAmount (#791) is too similar to OragonX._transferStandard(address,address,uint256).tTransferAmount (#782)
Variable OragonX.reflectionFromToken(uint256,bool).rTransferAmount (#611) is too similar to OragonX._transferToExcluded(address,address,uint256).tTransferAmount (#791)
Variable OragonX._transferFromExcluded(address,address,uint256).rTransferAmount (#801) is too similar to OragonX._transferStandard(address,address,uint256).tTransferAmount (#782)
Variable OragonX._getValues(uint256).rTransferAmount (#828) is too similar to OragonX._getTValues(uint256).tTransferAmount (#835)
Variable OragonX._getValues(uint256).rTransferAmount (#828) is too similar to OragonX._transferStandard(address,address,uint256).tTransferAmount (#782)
Variable OragonX._transferFromExcluded(address,address,uint256).rTransferAmount (#801) is too similar to OragonX._transferBothExcluded(address,address,uint256).tTransferAmount (#811)
Variable OragonX._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#843) is too similar to OragonX._getTValues(uint256).tTransferAmount (#835)
Variable OragonX._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#843) is too similar to OragonX._transferStandard(address,address,uint256).tTransferAmount (#782)
Variable OragonX._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#843) is too similar to OragonX._transferBothExcluded(address,address,uint256).tTransferAmount (#811)
Variable OragonX._getValues(uint256).rTransferAmount (#828) is too similar to OragonX._transferBothExcluded(address,address,uint256).tTransferAmount (#811)
Variable OragonX.reflectionFromToken(uint256,bool).rTransferAmount (#611) is too similar to OragonX._transferFromExcluded(address,address,uint256).tTransferAmount (#801)
Variable OragonX._transferToExcluded(address,address,uint256).rTransferAmount (#791) is too similar to OragonX._transferToExcluded(address,address,uint256).tTransferAmount (#791)
Variable OragonX._transferBothExcluded(address,address,uint256).rTransferAmount (#811) is too similar to OragonX._getTValues(uint256).tTransferAmount (#835)
Variable OragonX._transferBothExcluded(address,address,uint256).rTransferAmount (#811) is too similar to OragonX._transferStandard(address,address,uint256).tTransferAmount (#782)
Variable OragonX._transferFromExcluded(address,address,uint256).rTransferAmount (#801) is too similar to OragonX._transferToExcluded(address,address,uint256).tTransferAmount (#791)
Variable OragonX._transferBothExcluded(address,address,uint256).rTransferAmount (#811) is too similar to OragonX._transferBothExcluded(address,address,uint256).tTransferAmount (#811)
Variable OragonX._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#843) is too similar to OragonX._transferToExcluded(address,address,uint256).tTransferAmount (#791)
Variable OragonX._getValues(uint256).rTransferAmount (#828) is too similar to OragonX._transferToExcluded(address,address,uint256).tTransferAmount (#791)
Variable OragonX._transferToExcluded(address,address,uint256).rTransferAmount (#791) is too similar to OragonX._transferFromExcluded(address,address,uint256).tTransferAmount (#801)
Variable OragonX._transferFromExcluded(address,address,uint256).rTransferAmount (#801) is too similar to OragonX._transferFromExcluded(address,address,uint256).tTransferAmount (#801)
Variable OragonX.reflectionFromToken(uint256,bool).rTransferAmount (#611) is too similar to OragonX._getTValues(uint256).tTransferAmount (#835)
Variable OragonX._transferBothExcluded(address,address,uint256).rTransferAmount (#811) is too similar to OragonX._transferToExcluded(address,address,uint256).tTransferAmount (#791)
Variable OragonX.reflectionFromToken(uint256,bool).rTransferAmount (#611) is too similar to OragonX._transferStandard(address,address,uint256).tTransferAmount (#782)
Variable OragonX._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#843) is too similar to OragonX._transferFromExcluded(address,address,uint256).tTransferAmount (#801)
Variable OragonX._getValues(uint256).rTransferAmount (#828) is too similar to OragonX._transferFromExcluded(address,address,uint256).tTransferAmount (#801)
Variable OragonX.reflectionFromToken(uint256,bool).rTransferAmount (#611) is too similar to OragonX._transferBothExcluded(address,address,uint256).tTransferAmount (#811)
Variable OragonX._transferToExcluded(address,address,uint256).rTransferAmount (#791) is too similar to OragonX._transferBothExcluded(address,address,uint256).tTransferAmount (#811)
Variable OragonX._transferStandard(address,address,uint256).rTransferAmount (#782) is too similar to OragonX._transferFromExcluded(address,address,uint256).tTransferAmount (#801)
Variable OragonX._transferStandard(address,address,uint256).rTransferAmount (#782) is too similar to OragonX._getValues(uint256).tTransferAmount (#827)
Variable OragonX._transferStandard(address,address,uint256).rTransferAmount (#782) is too similar to OragonX._transferToExcluded(address,address,uint256).tTransferAmount (#791)
Variable OragonX._transferBothExcluded(address,address,uint256).rTransferAmount (#811) is too similar to OragonX._getValues(uint256).tTransferAmount (#827)
Variable OragonX._getRValues(uint256,uint256,uint256,uint256).rTransferAmount (#843) is too similar to OragonX._getValues(uint256).tTransferAmount (#827)
Variable OragonX.reflectionFromToken(uint256,bool).rTransferAmount (#611) is too similar to OragonX._getValues(uint256).tTransferAmount (#827)
Variable OragonX._transferToExcluded(address,address,uint256).rTransferAmount (#791) is too similar to OragonX._getValues(uint256).tTransferAmount (#827)
Variable OragonX._getValues(uint256).rTransferAmount (#828) is too similar to OragonX._getValues(uint256).tTransferAmount (#827)
Variable OragonX._transferStandard(address,address,uint256).rTransferAmount (#782) is too similar to OragonX._transferBothExcluded(address,address,uint256).tTransferAmount (#811)
Variable OragonX._transferFromExcluded(address,address,uint256).rTransferAmount (#801) is too similar to OragonX._getValues(uint256).tTransferAmount (#827)
Prevent variables from having similar names.

Additional information: link

OragonX.prepareForPreSale() (#949-954) uses literals with too many digits:
- _maxTxAmount = 1000000000 * 10 ** 6 * 10 ** 9 (#953)
OragonX.afterPreSale() (#956-961) uses literals with too many digits:
- _maxTxAmount = 3000000 * 10 ** 6 * 10 ** 9 (#960)
OragonX.slitherConstructorVariables() (#442-970) uses literals with too many digits:
- deadAddress = 0x000000000000000000000000000000000000dEaD (#447)
OragonX.slitherConstructorVariables() (#442-970) uses literals with too many digits:
- _tTotal = 1000000000 * 10 ** 6 * 10 ** 9 (#458)
OragonX.slitherConstructorVariables() (#442-970) uses literals with too many digits:
- _maxTxAmount = 3000000 * 10 ** 6 * 10 ** 9 (#475)
OragonX.slitherConstructorVariables() (#442-970) uses literals with too many digits:
- minimumTokensBeforeSwap = 200000 * 10 ** 6 * 10 ** 9 (#476)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

OragonX._decimals (#464) should be constant
OragonX._name (#462) should be constant
OragonX._symbol (#463) should be constant
OragonX._tTotal (#458) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#197-200)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#202-206)
getUnlockTime() should be declared external:
- Ownable.getUnlockTime() (#208-210)
getTime() should be declared external:
- Ownable.getTime() (#212-214)
lock(uint256) should be declared external:
- Ownable.lock(uint256) (#216-221)
unlock() should be declared external:
- Ownable.unlock() (#223-228)
name() should be declared external:
- OragonX.name() (#528-530)
symbol() should be declared external:
- OragonX.symbol() (#532-534)
decimals() should be declared external:
- OragonX.decimals() (#536-538)
totalSupply() should be declared external:
- OragonX.totalSupply() (#540-542)
transfer(address,uint256) should be declared external:
- OragonX.transfer(address,uint256) (#549-552)
allowance(address,address) should be declared external:
- OragonX.allowance(address,address) (#554-556)
approve(address,uint256) should be declared external:
- OragonX.approve(address,uint256) (#558-561)
transferFrom(address,address,uint256) should be declared external:
- OragonX.transferFrom(address,address,uint256) (#563-567)
increaseAllowance(address,uint256) should be declared external:
- OragonX.increaseAllowance(address,uint256) (#569-572)
decreaseAllowance(address,uint256) should be declared external:
- OragonX.decreaseAllowance(address,uint256) (#574-577)
isExcludedFromReward(address) should be declared external:
- OragonX.isExcludedFromReward(address) (#579-581)
totalFees() should be declared external:
- OragonX.totalFees() (#583-585)
minimumTokensBeforeSwapAmount() should be declared external:
- OragonX.minimumTokensBeforeSwapAmount() (#587-589)
buyBackUpperLimitAmount() should be declared external:
- OragonX.buyBackUpperLimitAmount() (#591-593)
deliver(uint256) should be declared external:
- OragonX.deliver(uint256) (#595-602)
reflectionFromToken(uint256,bool) should be declared external:
- OragonX.reflectionFromToken(uint256,bool) (#605-614)
excludeFromReward(address) should be declared external:
- OragonX.excludeFromReward(address) (#622-630)
isExcludedFromFee(address) should be declared external:
- OragonX.isExcludedFromFee(address) (#899-901)
excludeFromFee(address) should be declared external:
- OragonX.excludeFromFee(address) (#903-905)
includeInFee(address) should be declared external:
- OragonX.includeInFee(address) (#907-909)
setBuyBackEnabled(bool) should be declared external:
- OragonX.setBuyBackEnabled(bool) (#944-947)
Use the external attribute for functions never called from the contract.

Additional information: link

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

Additional information: link

Holders:

Contract has 11% buy tax and 11% sell tax.
Taxes are high (over 10%) but contract ownership is renounced.


Token is deployed only at one blockchain


Average 30d PancakeSwap liquidity is low.


Average 30d PancakeSwap volume is low.


Average 30d number of PancakeSwap swaps is low.


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

No disclosed threats


Unable to find whitepaper link on the website


Unable to find token on CoinHunt

Additional information: link


Unable to find Telegram link on the website


Unable to find Twitter link on the website


Token is not listed at Mobula.Finance

Additional information: link


Token has relatively low CoinGecko rank


Token has relatively low CoinMarketCap rank

Price for Orgn

News for Orgn