OLYMPUS Token Logo

OLYMPUS Token

About OLYMPUS

Listings

Token 2 years
CoinGecko 2 years
CoinMarketCap 2 years
white paper

Olympus boasts the first dual BUSD-Reflect and whale buyback system, with dynamically pegged auto-liquidity generation, anti-snipe and anti-bot features. Made by the devs that created Bogged, Gabe and Bingus, Olympus promises to carry it's holders to heights only reached by the Greek Gods of legend.

Social

Laser Scorebeta Last Audit: 26 May 2022

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

Anti-Scam

Links

OLYMPUS.swapBack() (#556-597) sends eth to arbitrary user
Dangerous calls:
- address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#584)
Ensure that an arbitrary user cannot withdraw unauthorized funds.

Additional information: link

Reentrancy in OLYMPUS._transferFrom(address,address,uint256) (#489-511):
External calls:
- swapBack() (#494)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#567-573)
- distributor.deposit{value: amountBNBReflection}() (#583)
- address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#584)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#587-594)
- triggerAutoBuyback() (#495)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#631-636)
External calls sending eth:
- swapBack() (#494)
- distributor.deposit{value: amountBNBReflection}() (#583)
- address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#584)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#587-594)
- triggerAutoBuyback() (#495)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#631-636)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#499)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#502)
- amountReceived = takeFee(sender,recipient,amount) (#501)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#543)
- triggerAutoBuyback() (#495)
- inSwap = true (#429)
- inSwap = false (#429)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.distributeDividend(address) (#327-338) ignores return value by BUSD.transfer(shareholder,amount) (#333)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

Additional information: link


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


Combination 2: Unchecked transfer + Functions that send Ether to arbitraty destination. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.


Combination 3: Reentrancy vulnerabilities + Unchecked transfer vulnerability. Usual for scams. May be justified by some complex mechanics (e.g. rebase, reflections). DYOR & manual audit are advised.


Contract ownership is not renounced (belongs to a wallet)


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.

Reentrancy in DividendDistributor.distributeDividend(address) (#327-338):
External calls:
- BUSD.transfer(shareholder,amount) (#333)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#335)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#336)
Reentrancy in DividendDistributor.process(uint256) (#296-320):
External calls:
- distributeDividend(shareholders[currentIndex]) (#312)
- BUSD.transfer(shareholder,amount) (#333)
State variables written after the call(s):
- currentIndex ++ (#317)
Reentrancy in DividendDistributor.setShare(address,uint256) (#260-274):
External calls:
- distributeDividend(shareholder) (#262)
- BUSD.transfer(shareholder,amount) (#333)
State variables written after the call(s):
- shares[shareholder].amount = amount (#272)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#273)
Apply the check-effects-interactions pattern.

Additional information: link

OLYMPUS.swapBack() (#556-597) ignores return value by address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#584)
Ensure that the return value of a low-level call is checked or logged.

Additional information: link


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

Low level call in OLYMPUS.swapBack() (#556-597):
- address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#584)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Function IDEXRouter.WETH() (#152) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minPeriod (#255) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minDistribution (#255) is not in mixedCase
Variable DividendDistributor._token (#208) is not in mixedCase
Variable DividendDistributor.BUSD (#216) is not in mixedCase
Variable DividendDistributor.WBNB (#217) is not in mixedCase
Parameter OLYMPUS.setAutoBuybackSettings(bool,uint256,uint256,uint256)._enabled (#639) is not in mixedCase
Parameter OLYMPUS.setAutoBuybackSettings(bool,uint256,uint256,uint256)._cap (#639) is not in mixedCase
Parameter OLYMPUS.setAutoBuybackSettings(bool,uint256,uint256,uint256)._amount (#639) is not in mixedCase
Parameter OLYMPUS.setAutoBuybackSettings(bool,uint256,uint256,uint256)._period (#639) is not in mixedCase
Parameter OLYMPUS.setFees(uint256,uint256,uint256,uint256,uint256)._liquidityFee (#686) is not in mixedCase
Parameter OLYMPUS.setFees(uint256,uint256,uint256,uint256,uint256)._buybackFee (#686) is not in mixedCase
Parameter OLYMPUS.setFees(uint256,uint256,uint256,uint256,uint256)._reflectionFee (#686) is not in mixedCase
Parameter OLYMPUS.setFees(uint256,uint256,uint256,uint256,uint256)._marketingFee (#686) is not in mixedCase
Parameter OLYMPUS.setFees(uint256,uint256,uint256,uint256,uint256)._feeDenominator (#686) is not in mixedCase
Parameter OLYMPUS.setFeeReceivers(address,address)._autoLiquidityReceiver (#696) is not in mixedCase
Parameter OLYMPUS.setFeeReceivers(address,address)._marketingFeeReceiver (#696) is not in mixedCase
Parameter OLYMPUS.setSwapBackSettings(bool,uint256)._enabled (#701) is not in mixedCase
Parameter OLYMPUS.setSwapBackSettings(bool,uint256)._amount (#701) is not in mixedCase
Parameter OLYMPUS.setTargetLiquidity(uint256,uint256)._target (#706) is not in mixedCase
Parameter OLYMPUS.setTargetLiquidity(uint256,uint256)._denominator (#706) is not in mixedCase
Parameter OLYMPUS.setDistributionCriteria(uint256,uint256)._minPeriod (#711) is not in mixedCase
Parameter OLYMPUS.setDistributionCriteria(uint256,uint256)._minDistribution (#711) is not in mixedCase
Variable OLYMPUS.BUSD (#374) is not in mixedCase
Variable OLYMPUS.WBNB (#375) is not in mixedCase
Variable OLYMPUS.DEAD (#376) is not in mixedCase
Variable OLYMPUS.ZERO (#377) is not in mixedCase
Constant OLYMPUS._name (#379) is not in UPPER_CASE_WITH_UNDERSCORES
Constant OLYMPUS._symbol (#380) is not in UPPER_CASE_WITH_UNDERSCORES
Constant OLYMPUS._decimals (#381) is not in UPPER_CASE_WITH_UNDERSCORES
Variable OLYMPUS._totalSupply (#383) is not in mixedCase
Variable OLYMPUS._maxTxAmount (#384) is not in mixedCase
Variable OLYMPUS._balances (#386) is not in mixedCase
Variable OLYMPUS._allowances (#387) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Variable IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountADesired (#157) is too similar to IDEXRouter.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#158)
Prevent variables from having similar names.

Additional information: link

OLYMPUS.slitherConstructorVariables() (#371-735) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#376)
OLYMPUS.slitherConstructorVariables() (#371-735) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#377)
OLYMPUS.slitherConstructorVariables() (#371-735) uses literals with too many digits:
- _totalSupply = 2917000000000 * (10 ** _decimals) (#383)
OLYMPUS.slitherConstructorVariables() (#371-735) uses literals with too many digits:
- distributorGas = 500000 (#424)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

OLYMPUS.BUSD (#374) is never used in OLYMPUS (#371-735)
Remove unused state variables.

Additional information: link

DividendDistributor.WBNB (#217) should be constant
DividendDistributor.dividendsPerShareAccuracyFactor (#230) should be constant
OLYMPUS.BUSD (#374) should be constant
OLYMPUS.DEAD (#376) should be constant
OLYMPUS.WBNB (#375) should be constant
OLYMPUS.ZERO (#377) should be constant
OLYMPUS._totalSupply (#383) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

authorize(address) should be declared external:
- Auth.authorize(address) (#109-111)
unauthorize(address) should be declared external:
- Auth.unauthorize(address) (#116-118)
transferOwnership(address) should be declared external:
- Auth.transferOwnership(address) (#137-141)
Use the external attribute for functions never called from the contract.

Additional information: link

DividendDistributor.distributeDividend(address) (#327-338) has external calls inside a loop: BUSD.transfer(shareholder,amount) (#333)
Favor pull over push strategy for external calls.

Additional information: link

OLYMPUS.swapBack() (#556-597) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#587-594)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendDistributor.setDistributionCriteria(uint256,uint256) (#255-258) should emit an event for:
- minPeriod = _minPeriod (#256)
- minDistribution = _minDistribution (#257)
OLYMPUS.setAutoBuybackSettings(bool,uint256,uint256,uint256) (#639-646) should emit an event for:
- autoBuybackCap = _cap (#641)
- autoBuybackAmount = _amount (#643)
OLYMPUS.setBuybackMultiplierSettings(uint256,uint256,uint256) (#648-653) should emit an event for:
- buybackMultiplierNumerator = numerator (#650)
- buybackMultiplierDenominator = denominator (#651)
- buybackMultiplierLength = length (#652)
OLYMPUS.setTxLimit(uint256) (#663-666) should emit an event for:
- _maxTxAmount = amount (#665)
OLYMPUS.setFees(uint256,uint256,uint256,uint256,uint256) (#686-694) should emit an event for:
- liquidityFee = _liquidityFee (#687)
- reflectionFee = _reflectionFee (#689)
- marketingFee = _marketingFee (#690)
- totalFee = _liquidityFee.add(_buybackFee).add(_reflectionFee).add(_marketingFee) (#691)
- feeDenominator = _feeDenominator (#692)
OLYMPUS.setSwapBackSettings(bool,uint256) (#701-704) should emit an event for:
- swapThreshold = _amount (#703)
OLYMPUS.setTargetLiquidity(uint256,uint256) (#706-709) should emit an event for:
- targetLiquidity = _target (#707)
- targetLiquidityDenominator = _denominator (#708)
Emit an event for critical parameter changes.

Additional information: link

Auth.transferOwnership(address).adr (#137) lacks a zero-check on :
- owner = adr (#138)
OLYMPUS.setFeeReceivers(address,address)._autoLiquidityReceiver (#696) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#697)
OLYMPUS.setFeeReceivers(address,address)._marketingFeeReceiver (#696) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#698)
Check that the address is not zero.

Additional information: link

Reentrancy in OLYMPUS._transferFrom(address,address,uint256) (#489-511):
External calls:
- swapBack() (#494)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#567-573)
- distributor.deposit{value: amountBNBReflection}() (#583)
- address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#584)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#587-594)
- triggerAutoBuyback() (#495)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#631-636)
External calls sending eth:
- swapBack() (#494)
- distributor.deposit{value: amountBNBReflection}() (#583)
- address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#584)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#587-594)
- triggerAutoBuyback() (#495)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#631-636)
State variables written after the call(s):
- launch() (#497)
- launchedAt = block.number (#660)
Reentrancy in OLYMPUS.constructor(address,address) (#431-455):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#436)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = uint256(- 1) (#437)
- _balances[_presaler] = _totalSupply (#453)
- autoLiquidityReceiver = msg.sender (#450)
- distributor = new DividendDistributor(address(router)) (#439)
- isDividendExempt[_presaleContract] = true (#445)
- isDividendExempt[pair] = true (#446)
- isDividendExempt[address(this)] = true (#447)
- isDividendExempt[DEAD] = true (#448)
- isFeeExempt[_presaler] = true (#441)
- isFeeExempt[_presaleContract] = true (#443)
- isTxLimitExempt[_presaler] = true (#442)
- isTxLimitExempt[_presaleContract] = true (#444)
- marketingFeeReceiver = msg.sender (#451)
Reentrancy in DividendDistributor.deposit() (#276-294):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#283-288)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#293)
- totalDividends = totalDividends.add(amount) (#292)
Reentrancy in DividendDistributor.distributeDividend(address) (#327-338):
External calls:
- BUSD.transfer(shareholder,amount) (#333)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#334)
Reentrancy in DividendDistributor.setShare(address,uint256) (#260-274):
External calls:
- distributeDividend(shareholder) (#262)
- BUSD.transfer(shareholder,amount) (#333)
State variables written after the call(s):
- addShareholder(shareholder) (#266)
- shareholderIndexes[shareholder] = shareholders.length (#360)
- removeShareholder(shareholder) (#268)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#366)
- addShareholder(shareholder) (#266)
- shareholders.push(shareholder) (#361)
- removeShareholder(shareholder) (#268)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#365)
- shareholders.pop() (#367)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#271)
Reentrancy in OLYMPUS.triggerAutoBuyback() (#619-624):
External calls:
- buyTokens(autoBuybackAmount,DEAD) (#620)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#631-636)
State variables written after the call(s):
- autoBuybackAccumulator = autoBuybackAccumulator.add(autoBuybackAmount) (#622)
- autoBuybackBlockLast = block.number (#621)
- autoBuybackEnabled = false (#623)
Reentrancy in OLYMPUS.triggerZeusBuyback(uint256,bool) (#607-613):
External calls:
- buyTokens(amount,DEAD) (#608)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#631-636)
State variables written after the call(s):
- buybackMultiplierTriggeredAt = block.timestamp (#610)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in OLYMPUS._transferFrom(address,address,uint256) (#489-511):
External calls:
- swapBack() (#494)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#567-573)
- distributor.deposit{value: amountBNBReflection}() (#583)
- address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#584)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#587-594)
- triggerAutoBuyback() (#495)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#631-636)
- distributor.setShare(sender,_balances[sender]) (#504)
- distributor.setShare(recipient,_balances[recipient]) (#505)
- distributor.process(distributorGas) (#507)
External calls sending eth:
- swapBack() (#494)
- distributor.deposit{value: amountBNBReflection}() (#583)
- address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#584)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#587-594)
- triggerAutoBuyback() (#495)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#631-636)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived) (#509)
Reentrancy in OLYMPUS._transferFrom(address,address,uint256) (#489-511):
External calls:
- swapBack() (#494)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#567-573)
- distributor.deposit{value: amountBNBReflection}() (#583)
- address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#584)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#587-594)
- triggerAutoBuyback() (#495)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#631-636)
External calls sending eth:
- swapBack() (#494)
- distributor.deposit{value: amountBNBReflection}() (#583)
- address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#584)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#587-594)
- triggerAutoBuyback() (#495)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#631-636)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#544)
- amountReceived = takeFee(sender,recipient,amount) (#501)
Reentrancy in OLYMPUS.constructor(address,address) (#431-455):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#436)
Event emitted after the call(s):
- Transfer(address(0),_presaler,_totalSupply) (#454)
Reentrancy in OLYMPUS.swapBack() (#556-597):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#567-573)
- distributor.deposit{value: amountBNBReflection}() (#583)
- address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#584)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#587-594)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#583)
- address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#584)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#587-594)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#595)
Reentrancy in OLYMPUS.triggerZeusBuyback(uint256,bool) (#607-613):
External calls:
- buyTokens(amount,DEAD) (#608)
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: amount}(0,path,to,block.timestamp) (#631-636)
Event emitted after the call(s):
- BuybackMultiplierActive(buybackMultiplierLength) (#611)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.shouldDistribute(address) (#322-325) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#323-324)
OLYMPUS._transferFrom(address,address,uint256) (#489-511) uses timestamp for comparisons
Dangerous comparisons:
- require(bool)(_balances[sender] > 0) (#497)
OLYMPUS.getTotalFee(bool) (#528-532) uses timestamp for comparisons
Dangerous comparisons:
- selling && buybackMultiplierTriggeredAt.add(buybackMultiplierLength) > block.timestamp (#530)
OLYMPUS.shouldSwapBack() (#549-554) uses timestamp for comparisons
Dangerous comparisons:
- msg.sender != pair && ! inSwap && swapEnabled && _balances[address(this)] >= swapThreshold (#550-553)
OLYMPUS.isOverLiquified(uint256,uint256) (#728-730) uses timestamp for comparisons
Dangerous comparisons:
- getLiquidityBacking(accuracy) > target (#729)
Avoid relying on block.timestamp.

Additional information: link

DividendDistributor.process(uint256) (#296-320) has costly operations inside a loop:
- currentIndex = 0 (#308)
DividendDistributor.distributeDividend(address) (#327-338) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#332)
DividendDistributor.process(uint256) (#296-320) has costly operations inside a loop:
- currentIndex ++ (#317)
Use a local variable to hold the loop computation result.

Additional information: link

OLYMPUS._maxTxAmount (#384) is set pre-construction with a non-constant function or state variable:
- _totalSupply / 1000
OLYMPUS.swapThreshold (#427) is set pre-construction with a non-constant function or state variable:
- _totalSupply / 20000
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.7.4 (#3) allows old versions
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

Holders:

Contract has 8% buy tax and 8% sell tax.
Taxes are low but contract ownership is not renounced. Token has a high risk of becoming a honeypot.


Swap operations require suspiciously high gas. Contract logic is complex and may disguise some form of scam.


Average 30d number of PancakeSwap swaps is low.


Token is deployed only at one blockchain


Average 30d PancakeSwap volume is low.


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


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


Unable to crawl data from the website


Unable to find token contract audit


Token was delisted from CoinHunt

Additional information: link


Unable to find audit link on the website


Token is not listed at Mobula.Finance

Additional information: link


Token has a considerable age, but we're still unable to find its website


Young tokens have high risks of price dump / death


Young tokens have high risks of price dump / death


Token has relatively low CoinGecko rank


Token has relatively low CoinMarketCap rank

Price for OLYMPUS

News for OLYMPUS