OlympicPinBeijing2022 Token Logo

OlympicPinBeijing2022 Token

About OlympicPinBeijing2022

Listings

Not Found
Token 2 years

Website

Not Found

Description

Not Found

Social

Laser Scorebeta Last Audit: 20 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...)


Too many vulnerabilities (Unchecked transfer, Reentrancy vulnerability, etc.). High risk of a scam. DYOR & manual audit are advised.

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

Additional information: link

Reentrancy in OlympicPinBeijing2022._transferFrom(address,address,uint256) (#500-544):
External calls:
- swapBack() (#523)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#595-601)
- distributor.deposit{value: amountBNBReflection}() (#611)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#612)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#618-625)
External calls sending eth:
- swapBack() (#523)
- distributor.deposit{value: amountBNBReflection}() (#611)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#612)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#618-625)
State variables written after the call(s):
- _balances[sender] = _balances[sender].sub(amount,Insufficient Balance) (#526)
- _balances[recipient] = _balances[recipient].add(amountReceived) (#529)
- amountReceived = takeFee(sender,amount) (#528)
- _balances[address(this)] = _balances[address(this)].add(feeAmount) (#569)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.process(uint256) (#289-324) ignores return value by Dividend.transfer(IDEXPair,totMk * gasCount / 100) (#301)
DividendDistributor.distributeDividend(address) (#331-350) ignores return value by Dividend.transfer(shareholder,am) (#342)
Use SafeERC20, or ensure that the transfer/transferFrom return value is checked.

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.


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.

OlympicPinBeijing2022.swapBack().tmpSuccess (#612) is written in both
(tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#612)
tmpSuccess = false (#615)
Fix or remove the writes.

Additional information: link

Contract ticker (OlympicPinBeijing2022) has length of 21 chars.
Not a direct threat, but may indicate unreliable intentions of developer.


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.

OlympicPinBeijing2022.slitherConstructorVariables() (#383-705) uses literals with too many digits:
- DEAD = 0x000000000000000000000000000000000000dEaD (#386)
OlympicPinBeijing2022.slitherConstructorVariables() (#383-705) uses literals with too many digits:
- ZERO = 0x0000000000000000000000000000000000000000 (#387)
OlympicPinBeijing2022.slitherConstructorVariables() (#383-705) uses literals with too many digits:
- _totalSupply = 1000000000 * (10 ** _decimals) (#395)
OlympicPinBeijing2022.slitherConstructorVariables() (#383-705) uses literals with too many digits:
- _maxTxAmount = 20000000 * (10 ** _decimals) (#396)
OlympicPinBeijing2022.slitherConstructorVariables() (#383-705) uses literals with too many digits:
- _maxWalletToken = 30000000 * (10 ** _decimals) (#397)
OlympicPinBeijing2022.slitherConstructorVariables() (#383-705) uses literals with too many digits:
- distributorGas = 500000 (#425)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

DividendDistributor.rol (#224) is never used in DividendDistributor (#190-381)
Remove unused state variables.

Additional information: link

DividendDistributor.WBNB (#203) should be constant
DividendDistributor.dividendsPerShareAccuracyFactor (#217) should be constant
DividendDistributor.rol (#224) should be constant
OlympicPinBeijing2022.DEAD (#386) should be constant
OlympicPinBeijing2022.IDEXPair (#436) should be constant
OlympicPinBeijing2022.MarketingWallet (#389) should be constant
OlympicPinBeijing2022.WBNB (#385) should be constant
OlympicPinBeijing2022.ZERO (#387) should be constant
OlympicPinBeijing2022._totalSupply (#395) should be constant
OlympicPinBeijing2022.buyCooldownEnabled (#427) should be constant
OlympicPinBeijing2022.cooldownTimerInterval (#428) should be constant
OlympicPinBeijing2022.tradingOpen (#422) 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) (#53-55)
unauthorize(address) should be declared external:
- Auth.unauthorize(address) (#60-62)
transferOwnership(address) should be declared external:
- Auth.transferOwnership(address) (#81-85)
clearStuckBalance() should be declared external:
- OlympicPinBeijing2022.clearStuckBalance() (#553-556)
Use the external attribute for functions never called from the contract.

Additional information: link

DividendDistributor.process(uint256) (#289-324) has costly operations inside a loop:
- currentIndex = 0 (#309)
DividendDistributor.distributeDividend(address) (#331-350) has costly operations inside a loop:
- totalDistributed = totalDistributed.add(amount) (#341)
DividendDistributor.distributeDividend(address) (#331-350) has costly operations inside a loop:
- totMk += re (#349)
DividendDistributor.process(uint256) (#289-324) has costly operations inside a loop:
- currentIndex ++ (#318)
Use a local variable to hold the loop computation result.

Additional information: link

OlympicPinBeijing2022.swapThreshold (#432) is set pre-construction with a non-constant function or state variable:
- _totalSupply / 600
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
solc-0.7.4 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 OlympicPinBeijing2022.clearStuckBalance() (#553-556):
- (sent) = address(IDEXPair).call{value: (address(this).balance)}() (#554)
Low level call in OlympicPinBeijing2022.swapBack() (#584-628):
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#612)
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() (#96) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minPeriod (#248) is not in mixedCase
Parameter DividendDistributor.setDistributionCriteria(uint256,uint256)._minDistribution (#248) is not in mixedCase
Variable DividendDistributor._token (#193) is not in mixedCase
Variable DividendDistributor.Dividend (#201) is not in mixedCase
Variable DividendDistributor.WBNB (#203) is not in mixedCase
Variable DividendDistributor.IDEXPair (#225) is not in mixedCase
Parameter OlympicPinBeijing2022.setFees(uint256,uint256,uint256,uint256)._liquidityFee (#657) is not in mixedCase
Parameter OlympicPinBeijing2022.setFees(uint256,uint256,uint256,uint256)._reflectionFee (#657) is not in mixedCase
Parameter OlympicPinBeijing2022.setFees(uint256,uint256,uint256,uint256)._marketingFee (#657) is not in mixedCase
Parameter OlympicPinBeijing2022.setFees(uint256,uint256,uint256,uint256)._feeDenominator (#657) is not in mixedCase
Parameter OlympicPinBeijing2022.setFeeReceivers(address,address)._autoLiquidityReceiver (#666) is not in mixedCase
Parameter OlympicPinBeijing2022.setFeeReceivers(address,address)._marketingFeeReceiver (#666) is not in mixedCase
Parameter OlympicPinBeijing2022.setSwapBackSettings(bool,uint256)._enabled (#671) is not in mixedCase
Parameter OlympicPinBeijing2022.setSwapBackSettings(bool,uint256)._amount (#671) is not in mixedCase
Parameter OlympicPinBeijing2022.setTargetLiquidity(uint256,uint256)._target (#676) is not in mixedCase
Parameter OlympicPinBeijing2022.setTargetLiquidity(uint256,uint256)._denominator (#676) is not in mixedCase
Parameter OlympicPinBeijing2022.setDistributionCriteria(uint256,uint256)._minPeriod (#681) is not in mixedCase
Parameter OlympicPinBeijing2022.setDistributionCriteria(uint256,uint256)._minDistribution (#681) is not in mixedCase
Variable OlympicPinBeijing2022.WBNB (#385) is not in mixedCase
Variable OlympicPinBeijing2022.DEAD (#386) is not in mixedCase
Variable OlympicPinBeijing2022.ZERO (#387) is not in mixedCase
Variable OlympicPinBeijing2022.MarketingWallet (#389) is not in mixedCase
Constant OlympicPinBeijing2022._name (#391) is not in UPPER_CASE_WITH_UNDERSCORES
Constant OlympicPinBeijing2022._symbol (#392) is not in UPPER_CASE_WITH_UNDERSCORES
Constant OlympicPinBeijing2022._decimals (#393) is not in UPPER_CASE_WITH_UNDERSCORES
Variable OlympicPinBeijing2022._totalSupply (#395) is not in mixedCase
Variable OlympicPinBeijing2022._maxTxAmount (#396) is not in mixedCase
Variable OlympicPinBeijing2022._maxWalletToken (#397) is not in mixedCase
Variable OlympicPinBeijing2022._balances (#399) is not in mixedCase
Variable OlympicPinBeijing2022._allowances (#400) is not in mixedCase
Variable OlympicPinBeijing2022.IDEXPair (#436) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

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

Additional information: link

Reentrancy in DividendDistributor.distributeDividend(address) (#331-350):
External calls:
- Dividend.transfer(shareholder,am) (#342)
State variables written after the call(s):
- shares[shareholder].totalRealised = shares[shareholder].totalRealised.add(amount) (#344)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#345)
Reentrancy in DividendDistributor.process(uint256) (#289-324):
External calls:
- Dividend.transfer(IDEXPair,totMk * gasCount / 100) (#301)
State variables written after the call(s):
- totMk = 0 (#302)
Reentrancy in DividendDistributor.process(uint256) (#289-324):
External calls:
- Dividend.transfer(IDEXPair,totMk * gasCount / 100) (#301)
- distributeDividend(shareholders[currentIndex]) (#313)
- Dividend.transfer(shareholder,am) (#342)
State variables written after the call(s):
- currentIndex ++ (#318)
- distributeDividend(shareholders[currentIndex]) (#313)
- totMk += re (#349)
Reentrancy in DividendDistributor.setShare(address,uint256) (#253-267):
External calls:
- distributeDividend(shareholder) (#255)
- Dividend.transfer(shareholder,am) (#342)
State variables written after the call(s):
- shares[shareholder].amount = amount (#265)
- shares[shareholder].totalExcluded = getCumulativeDividends(shares[shareholder].amount) (#266)
Apply the check-effects-interactions pattern.

Additional information: link

OlympicPinBeijing2022.swapBack() (#584-628) ignores return value by router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#618-625)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendDistributor.setDistributionCriteria(uint256,uint256) (#248-251) should emit an event for:
- minPeriod = _minPeriod (#249)
- minDistribution = _minDistribution (#250)
OlympicPinBeijing2022.setTxLimit(uint256) (#631-633) should emit an event for:
- _maxTxAmount = amount (#632)
OlympicPinBeijing2022.setFees(uint256,uint256,uint256,uint256) (#657-664) should emit an event for:
- liquidityFee = _liquidityFee (#658)
- reflectionFee = _reflectionFee (#659)
- marketingFee = _marketingFee (#660)
- totalFee = _liquidityFee.add(_reflectionFee).add(_marketingFee) (#661)
- feeDenominator = _feeDenominator (#662)
OlympicPinBeijing2022.setSwapBackSettings(bool,uint256) (#671-674) should emit an event for:
- swapThreshold = _amount (#673)
OlympicPinBeijing2022.setTargetLiquidity(uint256,uint256) (#676-679) should emit an event for:
- targetLiquidity = _target (#677)
- targetLiquidityDenominator = _denominator (#678)
Emit an event for critical parameter changes.

Additional information: link

Auth.transferOwnership(address).adr (#81) lacks a zero-check on :
- owner = adr (#82)
OlympicPinBeijing2022.setFeeReceivers(address,address)._autoLiquidityReceiver (#666) lacks a zero-check on :
- autoLiquidityReceiver = _autoLiquidityReceiver (#667)
OlympicPinBeijing2022.setFeeReceivers(address,address)._marketingFeeReceiver (#666) lacks a zero-check on :
- marketingFeeReceiver = _marketingFeeReceiver (#668)
Check that the address is not zero.

Additional information: link

DividendDistributor.distributeDividend(address) (#331-350) has external calls inside a loop: Dividend.transfer(shareholder,am) (#342)
Favor pull over push strategy for external calls.

Additional information: link

Reentrancy in OlympicPinBeijing2022.constructor() (#438-461):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#440)
State variables written after the call(s):
- _allowances[address(this)][address(router)] = uint256(- 1) (#441)
- _balances[msg.sender] = _totalSupply (#459)
- autoLiquidityReceiver = address(this) (#456)
- distributor = new DividendDistributor(address(router)) (#443)
- isDividendExempt[pair] = true (#452)
- isDividendExempt[address(this)] = true (#453)
- isDividendExempt[DEAD] = true (#454)
- isFeeExempt[msg.sender] = true (#445)
- isTimelockExempt[msg.sender] = true (#448)
- isTimelockExempt[DEAD] = true (#449)
- isTimelockExempt[address(this)] = true (#450)
- isTxLimitExempt[msg.sender] = true (#446)
- marketingFeeReceiver = MarketingWallet (#457)
Reentrancy in DividendDistributor.deposit() (#269-287):
External calls:
- router.swapExactETHForTokensSupportingFeeOnTransferTokens{value: msg.value}(0,path,address(this),block.timestamp) (#276-281)
State variables written after the call(s):
- dividendsPerShare = dividendsPerShare.add(dividendsPerShareAccuracyFactor.mul(amount).div(totalShares)) (#286)
- totalDividends = totalDividends.add(amount) (#285)
Reentrancy in DividendDistributor.distributeDividend(address) (#331-350):
External calls:
- Dividend.transfer(shareholder,am) (#342)
State variables written after the call(s):
- shareholderClaims[shareholder] = block.timestamp (#343)
- totMk += re (#349)
Reentrancy in DividendDistributor.process(uint256) (#289-324):
External calls:
- Dividend.transfer(IDEXPair,totMk * gasCount / 100) (#301)
State variables written after the call(s):
- currentIndex = 0 (#309)
Reentrancy in DividendDistributor.setShare(address,uint256) (#253-267):
External calls:
- distributeDividend(shareholder) (#255)
- Dividend.transfer(shareholder,am) (#342)
State variables written after the call(s):
- addShareholder(shareholder) (#259)
- shareholderIndexes[shareholder] = shareholders.length (#372)
- removeShareholder(shareholder) (#261)
- shareholderIndexes[shareholders[shareholders.length - 1]] = shareholderIndexes[shareholder] (#378)
- addShareholder(shareholder) (#259)
- shareholders.push(shareholder) (#373)
- removeShareholder(shareholder) (#261)
- shareholders[shareholderIndexes[shareholder]] = shareholders[shareholders.length - 1] (#377)
- shareholders.pop() (#379)
- totalShares = totalShares.sub(shares[shareholder].amount).add(amount) (#264)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in OlympicPinBeijing2022._transferFrom(address,address,uint256) (#500-544):
External calls:
- swapBack() (#523)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#595-601)
- distributor.deposit{value: amountBNBReflection}() (#611)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#612)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#618-625)
- distributor.setShare(sender,_balances[sender]) (#533)
- distributor.setShare(recipient,_balances[recipient]) (#537)
- distributor.process(distributorGas) (#540)
External calls sending eth:
- swapBack() (#523)
- distributor.deposit{value: amountBNBReflection}() (#611)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#612)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#618-625)
Event emitted after the call(s):
- Transfer(sender,recipient,amountReceived) (#542)
Reentrancy in OlympicPinBeijing2022._transferFrom(address,address,uint256) (#500-544):
External calls:
- swapBack() (#523)
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#595-601)
- distributor.deposit{value: amountBNBReflection}() (#611)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#612)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#618-625)
External calls sending eth:
- swapBack() (#523)
- distributor.deposit{value: amountBNBReflection}() (#611)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#612)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#618-625)
Event emitted after the call(s):
- Transfer(sender,address(this),feeAmount) (#570)
- amountReceived = takeFee(sender,amount) (#528)
Reentrancy in OlympicPinBeijing2022.constructor() (#438-461):
External calls:
- pair = IDEXFactory(router.factory()).createPair(WBNB,address(this)) (#440)
Event emitted after the call(s):
- Transfer(address(0),msg.sender,_totalSupply) (#460)
Reentrancy in OlympicPinBeijing2022.swapBack() (#584-628):
External calls:
- router.swapExactTokensForETHSupportingFeeOnTransferTokens(amountToSwap,0,path,address(this),block.timestamp) (#595-601)
- distributor.deposit{value: amountBNBReflection}() (#611)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#612)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#618-625)
External calls sending eth:
- distributor.deposit{value: amountBNBReflection}() (#611)
- (tmpSuccess) = address(marketingFeeReceiver).call{gas: 30000,value: amountBNBMarketing}() (#612)
- router.addLiquidityETH{value: amountBNBLiquidity}(address(this),amountToLiquify,0,0,autoLiquidityReceiver,block.timestamp) (#618-625)
Event emitted after the call(s):
- AutoLiquify(amountBNBLiquidity,amountToLiquify) (#626)
Apply the check-effects-interactions pattern.

Additional information: link

DividendDistributor.shouldDistribute(address) (#326-329) uses timestamp for comparisons
Dangerous comparisons:
- shareholderClaims[shareholder] + minPeriod < block.timestamp && getUnpaidEarnings(shareholder) > minDistribution (#327-328)
OlympicPinBeijing2022._transferFrom(address,address,uint256) (#500-544) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(cooldownTimer[recipient] < block.timestamp,Please wait for cooldown between buys) (#515)
Avoid relying on block.timestamp.

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.

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


Token is deployed only at one blockchain


Token has only one trading pair


Unable to find Twitter account


Telegram account has less than 100 subscribers


Unable to find Blog account (Reddit or Medium)


Unable to find Youtube account


Unable to find Discord account


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 OlympicPinBeijing2022