OLOID Token Logo

OLOID Token

About OLOID

Listings

Token 2 years
CoinGecko 2 years
CoinMarketCap 2 years
[CoinMarketCap] alert: Smart contract of the following asset can be modified by the contract creator (for example: disable selling, change fees, mint new tokens, or transfer tokens). Please exercise caution before taking any action and DYOR.
white paper

Mathematically perfect piece of art is now in crypto world: USDT rewarding BEP 20Token that provides holders with the opportunity to invest-hodl-get rewarded-reinvest loop oloidly

Social

Laser Scorebeta Last Audit: 20 June 2022

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

Anti-Scam

Links

OLOID.swapAndSendToFee(uint256) (#1703-1709) ignores return value by IERC20(USDT).transfer(_marketingWalletAddress,newBalance) (#1708)
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...)


Contract ownership is not renounced (belongs to a wallet)

Contract locking ether found:
Contract OLOID (#1314-1750) has payable functions:
- OLOID.receive() (#1438-1440)
But does not have a function to withdraw the ether
Remove the payable attribute or add a withdraw function.

Additional information: link

OLOID.claim() (#1615-1617) ignores return value by dividendTracker.processAccount(msg.sender,false) (#1616)
OLOID.claimAddress(address) (#1619-1621) ignores return value by dividendTracker.processAccount(address(claimee),false) (#1620)
OLOID._transfer(address,address,uint256) (#1635-1701) ignores return value by dividendTracker.process(gas) (#1694-1699)
Ensure that all the return values of the function calls are used.

Additional information: link

DividendPayingToken.setUSDT(address)._usdt (#979) lacks a zero-check on :
- USDT = _usdt (#980)
Ownable.constructor().msgSender (#298) lacks a zero-check on :
- _owner = msgSender (#299)
OLOID.constructor(address,address)._uniswapV2Pair (#1400-1401) lacks a zero-check on :
- uniswapV2Pair = _uniswapV2Pair (#1404)
OLOID.constructor(address,address)._usdt (#1392) lacks a zero-check on :
- USDT = _usdt (#1408)
OLOID.updateUniswapV2Router(address)._uniswapV2Pair (#1464-1465) lacks a zero-check on :
- uniswapV2Pair = _uniswapV2Pair (#1466)
OLOID.setMarketingWallet(address).wallet (#1492) lacks a zero-check on :
- _marketingWalletAddress = wallet (#1493)
OLOID.setRewardToken(address)._token (#1741) lacks a zero-check on :
- USDT = _token (#1742)
Check that the address is not zero.

Additional information: link

OLOID.checkMaxTxSize(address,uint256) (#1376-1379) compares to a boolean constant:
-require(bool,string)(_isExcludedFromMaxWallet[_from] == true || _amount <= maxTxSize,Transfer amount over the max tx amount.) (#1377)
Remove the equality to the boolean constant.

Additional information: link

OLOID.totalFees (#1336) is set pre-construction with a non-constant function or state variable:
- USDTRewardsFee.add(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

Reentrancy in OLOID._transfer(address,address,uint256) (#1635-1701):
External calls:
- swapAndSendToFee(marketingTokens) (#1677)
- IERC20(USDT).transfer(_marketingWalletAddress,newBalance) (#1708)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1721-1727)
- swapAndSendDividends(sellTokens) (#1680)
- success = IERC20(USDT).transfer(address(dividendTracker),dividends) (#1733)
- dividendTracker.distributeUSDTDividends(dividends) (#1736)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1721-1727)
State variables written after the call(s):
- super._transfer(from,to,amount) (#1686)
- _balances[sender] = _balances[sender].sub(amount,ERC20: transfer amount exceeds balance) (#620)
- _balances[recipient] = _balances[recipient].add(amount) (#621)
- contractBalanceToClaim = 0 (#1683)
- swapping = false (#1682)
Reentrancy in DividendPayingToken._withdrawDividendOfUser(address) (#1004-1020):
External calls:
- success = IERC20(USDT).transfer(user,_withdrawableDividend) (#1009)
State variables written after the call(s):
- withdrawnDividends[user] = withdrawnDividends[user].sub(_withdrawableDividend) (#1012)
Reentrancy in OLOID.updateDividendTracker(address) (#1442-1458):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (#1449)
- newDividendTracker.excludeFromDividends(address(this)) (#1450)
- newDividendTracker.excludeFromDividends(owner()) (#1451)
- newDividendTracker.excludeFromDividends(deadWallet) (#1452)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (#1453)
State variables written after the call(s):
- dividendTracker = newDividendTracker (#1457)
Apply the check-effects-interactions pattern.

Additional information: link

OLOID._transfer(address,address,uint256).lastProcessedIndex (#1694) is a local variable never initialized
OLOID._transfer(address,address,uint256).iterations (#1694) is a local variable never initialized
OLOID._transfer(address,address,uint256).claims (#1694) is a local variable never initialized
Initialize all the variables. If a variable is meant to be initialized to zero, explicitly set it to zero to improve code readability.

Additional information: link

DividendPayingToken.constructor(string,string)._name (#975) shadows:
- ERC20._name (#442) (state variable)
DividendPayingToken.constructor(string,string)._symbol (#975) shadows:
- ERC20._symbol (#443) (state variable)
DividendPayingToken.dividendOf(address)._owner (#1025) shadows:
- Ownable._owner (#290) (state variable)
DividendPayingToken.withdrawableDividendOf(address)._owner (#1032) shadows:
- Ownable._owner (#290) (state variable)
DividendPayingToken.withdrawnDividendOf(address)._owner (#1039) shadows:
- Ownable._owner (#290) (state variable)
DividendPayingToken.accumulativeDividendOf(address)._owner (#1048) shadows:
- Ownable._owner (#290) (state variable)
Rename the local variables that shadow another component.

Additional information: link

TrialDividendTracker.setLastProcessedIndex(uint256) (#1155-1157) should emit an event for:
- lastProcessedIndex = index (#1156)
OLOID.setSwapTokensAtAmount(uint256) (#1488-1490) should emit an event for:
- swapTokensAtAmount = amount (#1489)
OLOID.setUSDTRewardsFee(uint256) (#1496-1499) should emit an event for:
- USDTRewardsFee = value (#1497)
- totalFees = USDTRewardsFee.add(marketingFee) (#1498)
OLOID.setMarketingFee(uint256) (#1501-1504) should emit an event for:
- marketingFee = value (#1502)
- totalFees = USDTRewardsFee.add(marketingFee) (#1503)
Emit an event for critical parameter changes.

Additional information: link

DividendPayingToken._withdrawDividendOfUser(address) (#1004-1020) has external calls inside a loop: success = IERC20(USDT).transfer(user,_withdrawableDividend) (#1009)
Favor pull over push strategy for external calls.

Additional information: link

Variable 'OLOID._transfer(address,address,uint256).claims (#1694)' in OLOID._transfer(address,address,uint256) (#1635-1701) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1695)
Variable 'OLOID._transfer(address,address,uint256).iterations (#1694)' in OLOID._transfer(address,address,uint256) (#1635-1701) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1695)
Variable 'OLOID._transfer(address,address,uint256).lastProcessedIndex (#1694)' in OLOID._transfer(address,address,uint256) (#1635-1701) potentially used before declaration: ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1695)
Move all variable declarations prior to any usage of the variable, and ensure that reaching a variable declaration does not depend on some conditional if it is used unconditionally.

Additional information: link

Reentrancy in OLOID._transfer(address,address,uint256) (#1635-1701):
External calls:
- swapAndSendToFee(marketingTokens) (#1677)
- IERC20(USDT).transfer(_marketingWalletAddress,newBalance) (#1708)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1721-1727)
- swapAndSendDividends(sellTokens) (#1680)
- success = IERC20(USDT).transfer(address(dividendTracker),dividends) (#1733)
- dividendTracker.distributeUSDTDividends(dividends) (#1736)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1721-1727)
State variables written after the call(s):
- swapAndSendDividends(sellTokens) (#1680)
- _allowances[owner][spender] = amount (#686)
Reentrancy in OLOID.constructor(address,address) (#1392-1436):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1400-1401)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (#1404)
- uniswapV2Router = _uniswapV2Router (#1403)
Reentrancy in OLOID.constructor(address,address) (#1392-1436):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1400-1401)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1406)
- dividendTracker.excludeFromDividends(pair) (#1525)
State variables written after the call(s):
- USDT = _usdt (#1408)
Reentrancy in OLOID.constructor(address,address) (#1392-1436):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1400-1401)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1406)
- dividendTracker.excludeFromDividends(pair) (#1525)
- dividendTracker.setUSDT(USDT) (#1412)
- dividendTracker.excludeFromDividends(address(dividendTracker)) (#1414)
- dividendTracker.excludeFromDividends(address(this)) (#1415)
- dividendTracker.excludeFromDividends(owner()) (#1416)
- dividendTracker.excludeFromDividends(deadWallet) (#1417)
- dividendTracker.excludeFromDividends(address(_uniswapV2Router)) (#1418)
- dividendTracker.excludeFromDividends(_marketingWalletAddress) (#1419)
State variables written after the call(s):
- _mint(owner(),31666666 * (10 ** 18)) (#1435)
- _balances[account] = _balances[account].add(amount) (#640)
- excludeFromMaxTx(owner(),true) (#1421)
- _isExcludedFromMaxWallet[account] = excluded (#1470)
- excludeFromMaxTx(address(this),true) (#1422)
- _isExcludedFromMaxWallet[account] = excluded (#1470)
- includeToFees(address(_uniswapV2Router),true) (#1428)
- _isIncludeToFees[account] = included (#1475)
- includeToFees(_uniswapV2Pair,true) (#1429)
- _isIncludeToFees[account] = included (#1475)
- _mint(owner(),31666666 * (10 ** 18)) (#1435)
- _totalSupply = _totalSupply.add(amount) (#639)
Reentrancy in TrialDividendTracker.processAccount(address,bool) (#1301-1311):
External calls:
- amount = _withdrawDividendOfUser(account) (#1302)
- success = IERC20(USDT).transfer(user,_withdrawableDividend) (#1009)
State variables written after the call(s):
- lastClaimTimes[account] = block.timestamp (#1305)
Reentrancy in OLOID.swapOnDemand(bool,bool) (#1542-1558):
External calls:
- swapAndSendToFee(marketingTokens) (#1549)
- IERC20(USDT).transfer(_marketingWalletAddress,newBalance) (#1708)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1721-1727)
- swapAndSendDividends(sellTokens) (#1554)
- success = IERC20(USDT).transfer(address(dividendTracker),dividends) (#1733)
- dividendTracker.distributeUSDTDividends(dividends) (#1736)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1721-1727)
State variables written after the call(s):
- swapAndSendDividends(sellTokens) (#1554)
- _allowances[owner][spender] = amount (#686)
- swapping = false (#1557)
Reentrancy in OLOID.updateUniswapV2Router(address) (#1460-1467):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(uniswapV2Router.factory()).createPair(address(this),uniswapV2Router.WETH()) (#1464-1465)
State variables written after the call(s):
- uniswapV2Pair = _uniswapV2Pair (#1466)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in OLOID._setAutomatedMarketMakerPair(address,bool) (#1520-1529):
External calls:
- dividendTracker.excludeFromDividends(pair) (#1525)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (#1528)
Reentrancy in OLOID._transfer(address,address,uint256) (#1635-1701):
External calls:
- swapAndSendToFee(marketingTokens) (#1677)
- IERC20(USDT).transfer(_marketingWalletAddress,newBalance) (#1708)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1721-1727)
- swapAndSendDividends(sellTokens) (#1680)
- success = IERC20(USDT).transfer(address(dividendTracker),dividends) (#1733)
- dividendTracker.distributeUSDTDividends(dividends) (#1736)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1721-1727)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#687)
- swapAndSendDividends(sellTokens) (#1680)
- SendDividends(tokens,dividends) (#1737)
- swapAndSendDividends(sellTokens) (#1680)
- Transfer(sender,recipient,amount) (#622)
- super._transfer(from,to,amount) (#1686)
Reentrancy in OLOID._transfer(address,address,uint256) (#1635-1701):
External calls:
- swapAndSendToFee(marketingTokens) (#1677)
- IERC20(USDT).transfer(_marketingWalletAddress,newBalance) (#1708)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1721-1727)
- swapAndSendDividends(sellTokens) (#1680)
- success = IERC20(USDT).transfer(address(dividendTracker),dividends) (#1733)
- dividendTracker.distributeUSDTDividends(dividends) (#1736)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1721-1727)
- dividendTracker.setBalance(address(from),balanceOf(from)) (#1688)
- dividendTracker.setBalance(address(to),balanceOf(to)) (#1689)
- dividendTracker.process(gas) (#1694-1699)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,true,gas,tx.origin) (#1695)
Reentrancy in OLOID.constructor(address,address) (#1392-1436):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1400-1401)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1406)
- dividendTracker.excludeFromDividends(pair) (#1525)
Event emitted after the call(s):
- SetAutomatedMarketMakerPair(pair,value) (#1528)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1406)
Reentrancy in OLOID.constructor(address,address) (#1392-1436):
External calls:
- _uniswapV2Pair = IUniswapV2Factory(_uniswapV2Router.factory()).createPair(address(this),_uniswapV2Router.WETH()) (#1400-1401)
- _setAutomatedMarketMakerPair(_uniswapV2Pair,true) (#1406)
- dividendTracker.excludeFromDividends(pair) (#1525)
- dividendTracker.setUSDT(USDT) (#1412)
- dividendTracker.excludeFromDividends(address(dividendTracker)) (#1414)
- dividendTracker.excludeFromDividends(address(this)) (#1415)
- dividendTracker.excludeFromDividends(owner()) (#1416)
- dividendTracker.excludeFromDividends(deadWallet) (#1417)
- dividendTracker.excludeFromDividends(address(_uniswapV2Router)) (#1418)
- dividendTracker.excludeFromDividends(_marketingWalletAddress) (#1419)
Event emitted after the call(s):
- IncludeToFees(account,included) (#1477)
- includeToFees(_uniswapV2Pair,true) (#1429)
- IncludeToFees(account,included) (#1477)
- includeToFees(address(_uniswapV2Router),true) (#1428)
- Transfer(address(0),account,amount) (#641)
- _mint(owner(),31666666 * (10 ** 18)) (#1435)
Reentrancy in TrialDividendTracker.processAccount(address,bool) (#1301-1311):
External calls:
- amount = _withdrawDividendOfUser(account) (#1302)
- success = IERC20(USDT).transfer(user,_withdrawableDividend) (#1009)
Event emitted after the call(s):
- Claim(account,amount,automatic) (#1306)
Reentrancy in OLOID.processDividendTracker(uint256) (#1610-1613):
External calls:
- (iterations,claims,lastProcessedIndex) = dividendTracker.process(gas) (#1611)
Event emitted after the call(s):
- ProcessedDividendTracker(iterations,claims,lastProcessedIndex,false,gas,tx.origin) (#1612)
Reentrancy in OLOID.swapAndSendDividends(uint256) (#1730-1739):
External calls:
- swapTokensForUsdt(tokens) (#1731)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1721-1727)
- success = IERC20(USDT).transfer(address(dividendTracker),dividends) (#1733)
- dividendTracker.distributeUSDTDividends(dividends) (#1736)
Event emitted after the call(s):
- SendDividends(tokens,dividends) (#1737)
Reentrancy in OLOID.swapOnDemand(bool,bool) (#1542-1558):
External calls:
- swapAndSendToFee(marketingTokens) (#1549)
- IERC20(USDT).transfer(_marketingWalletAddress,newBalance) (#1708)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1721-1727)
- swapAndSendDividends(sellTokens) (#1554)
- success = IERC20(USDT).transfer(address(dividendTracker),dividends) (#1733)
- dividendTracker.distributeUSDTDividends(dividends) (#1736)
- uniswapV2Router.swapExactTokensForTokensSupportingFeeOnTransferTokens(tokenAmount,0,path,address(this),block.timestamp) (#1721-1727)
Event emitted after the call(s):
- Approval(owner,spender,amount) (#687)
- swapAndSendDividends(sellTokens) (#1554)
- SendDividends(tokens,dividends) (#1737)
- swapAndSendDividends(sellTokens) (#1554)
Reentrancy in OLOID.updateDividendTracker(address) (#1442-1458):
External calls:
- newDividendTracker.excludeFromDividends(address(newDividendTracker)) (#1449)
- newDividendTracker.excludeFromDividends(address(this)) (#1450)
- newDividendTracker.excludeFromDividends(owner()) (#1451)
- newDividendTracker.excludeFromDividends(deadWallet) (#1452)
- newDividendTracker.excludeFromDividends(address(uniswapV2Router)) (#1453)
Event emitted after the call(s):
- UpdateDividendTracker(newAddress,address(dividendTracker)) (#1455)
Apply the check-effects-interactions pattern.

Additional information: link

TrialDividendTracker.getAccount(address) (#1167-1208) uses timestamp for comparisons
Dangerous comparisons:
- nextClaimTime > block.timestamp (#1205-1207)
TrialDividendTracker.canAutoClaim(uint256) (#1229-1235) uses timestamp for comparisons
Dangerous comparisons:
- lastClaimTime > block.timestamp (#1230)
- block.timestamp.sub(lastClaimTime) >= claimWait (#1234)
Avoid relying on block.timestamp.

Additional information: link

Context._msgData() (#283-286) is never used and should be removed
DividendPayingToken._transfer(address,address,uint256) (#1058-1064) is never used and should be removed
IterableMapping.get(IterableMapping.Map,address) (#228-230) is never used and should be removed
SafeMath.mod(uint256,uint256) (#130-132) is never used and should be removed
SafeMath.mod(uint256,uint256,string) (#146-149) is never used and should be removed
SafeMathInt.abs(int256) (#200-203) is never used and should be removed
SafeMathInt.div(int256,int256) (#171-177) is never used and should be removed
SafeMathInt.mul(int256,int256) (#159-166) is never used and should be removed
Remove unused functions.

Additional information: link

Function IUniswapV2Pair.DOMAIN_SEPARATOR() (#742) is not in mixedCase
Function IUniswapV2Pair.PERMIT_TYPEHASH() (#743) is not in mixedCase
Function IUniswapV2Pair.MINIMUM_LIQUIDITY() (#760) is not in mixedCase
Function IUniswapV2Router01.WETH() (#780) is not in mixedCase
Parameter DividendPayingToken.setUSDT(address)._usdt (#979) is not in mixedCase
Parameter DividendPayingToken.dividendOf(address)._owner (#1025) is not in mixedCase
Parameter DividendPayingToken.withdrawableDividendOf(address)._owner (#1032) is not in mixedCase
Parameter DividendPayingToken.withdrawnDividendOf(address)._owner (#1039) is not in mixedCase
Parameter DividendPayingToken.accumulativeDividendOf(address)._owner (#1048) is not in mixedCase
Variable DividendPayingToken.USDT (#964) is not in mixedCase
Constant DividendPayingToken.magnitude (#966) is not in UPPER_CASE_WITH_UNDERSCORES
Parameter TrialDividendTracker.updateMinimumTokenBalanceForDividends(uint256)._newValue (#1151) is not in mixedCase
Parameter TrialDividendTracker.getAccount(address)._account (#1167) is not in mixedCase
Parameter OLOID.setMaxTxSize(uint256)._maxTxSize (#1512) is not in mixedCase
Parameter OLOID.setRewardToken(address)._token (#1741) is not in mixedCase
Parameter OLOID.setMinimumTokenBalanceForDividends(uint256)._newValue (#1746) is not in mixedCase
Variable OLOID.USDT (#1326) is not in mixedCase
Variable OLOID._isBlacklisted (#1332) is not in mixedCase
Variable OLOID.USDTRewardsFee (#1334) is not in mixedCase
Variable OLOID._marketingWalletAddress (#1338) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

Redundant expression "this (#284)" inContext (#278-287)
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 (#785) is too similar to IUniswapV2Router01.addLiquidity(address,address,uint256,uint256,uint256,uint256,address,uint256).amountBDesired (#786)
Variable DividendPayingToken._withdrawDividendOfUser(address)._withdrawableDividend (#1005) is too similar to TrialDividendTracker.getAccount(address).withdrawableDividends (#1172)
Prevent variables from having similar names.

Additional information: link

TrialDividendTracker.getAccountAtIndex(uint256) (#1210-1227) uses literals with too many digits:
- (0x0000000000000000000000000000000000000000,- 1,- 1,0,0,0,0,0) (#1221)
OLOID.updateGasForProcessing(uint256) (#1531-1536) uses literals with too many digits:
- require(bool,string)(newValue >= 200000 && newValue <= 500000,OLOID: gasForProcessing must be between 200,000 and 500,000) (#1532)
OLOID.slitherConstructorVariables() (#1314-1750) uses literals with too many digits:
- deadWallet = 0x000000000000000000000000000000000000dEaD (#1324)
OLOID.slitherConstructorVariables() (#1314-1750) uses literals with too many digits:
- gasForProcessing = 300000 (#1341)
Use: Ether suffix, Time suffix, or The scientific notation

Additional information: link

SafeMathInt.MAX_INT256 (#154) is never used in SafeMathInt (#152-209)
Remove unused state variables.

Additional information: link

OLOID.deadWallet (#1324) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

renounceOwnership() should be declared external:
- Ownable.renounceOwnership() (#325-328)
transferOwnership(address) should be declared external:
- Ownable.transferOwnership(address) (#334-338)
name() should be declared external:
- ERC20.name() (#462-464)
symbol() should be declared external:
- ERC20.symbol() (#470-472)
decimals() should be declared external:
- ERC20.decimals() (#487-489)
transfer(address,uint256) should be declared external:
- ERC20.transfer(address,uint256) (#513-516)
allowance(address,address) should be declared external:
- ERC20.allowance(address,address) (#521-523)
approve(address,uint256) should be declared external:
- ERC20.approve(address,uint256) (#532-535)
transferFrom(address,address,uint256) should be declared external:
- ERC20.transferFrom(address,address,uint256) (#550-558)
increaseAllowance(address,uint256) should be declared external:
- ERC20.increaseAllowance(address,uint256) (#572-575)
decreaseAllowance(address,uint256) should be declared external:
- ERC20.decreaseAllowance(address,uint256) (#591-594)
setUSDT(address) should be declared external:
- DividendPayingToken.setUSDT(address) (#979-981)
distributeUSDTDividends(uint256) should be declared external:
- DividendPayingToken.distributeUSDTDividends(uint256) (#983-994)
withdrawDividend() should be declared external:
- DividendPayingToken.withdrawDividend() (#998-1000)
- TrialDividendTracker.withdrawDividend() (#1130-1132)
dividendOf(address) should be declared external:
- DividendPayingToken.dividendOf(address) (#1025-1027)
withdrawnDividendOf(address) should be declared external:
- DividendPayingToken.withdrawnDividendOf(address) (#1039-1041)
getAccountAtIndex(uint256) should be declared external:
- TrialDividendTracker.getAccountAtIndex(uint256) (#1210-1227)
process(uint256) should be declared external:
- TrialDividendTracker.process(uint256) (#1254-1299)
updateDividendTracker(address) should be declared external:
- OLOID.updateDividendTracker(address) (#1442-1458)
updateUniswapV2Router(address) should be declared external:
- OLOID.updateUniswapV2Router(address) (#1460-1467)
includeMultipleAccountsToFees(address[],bool) should be declared external:
- OLOID.includeMultipleAccountsToFees(address[],bool) (#1480-1486)
setAutomatedMarketMakerPair(address,bool) should be declared external:
- OLOID.setAutomatedMarketMakerPair(address,bool) (#1506-1510)
setMaxTxSize(uint256) should be declared external:
- OLOID.setMaxTxSize(uint256) (#1512-1514)
updateGasForProcessing(uint256) should be declared external:
- OLOID.updateGasForProcessing(uint256) (#1531-1536)
isIncludedToFees(address) should be declared external:
- OLOID.isIncludedToFees(address) (#1568-1570)
withdrawableDividendOf(address) should be declared external:
- OLOID.withdrawableDividendOf(address) (#1572-1574)
dividendTokenBalanceOf(address) should be declared external:
- OLOID.dividendTokenBalanceOf(address) (#1576-1578)
setMinimumTokenBalanceForDividends(uint256) should be declared external:
- OLOID.setMinimumTokenBalanceForDividends(uint256) (#1746-1748)
Use the external attribute for functions never called from the contract.

Additional information: link

Holders:

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


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


Token is deployed only at one blockchain


Unable to find Youtube account


Unable to find Discord account


Unable to find token contract audit


Unable to find KYC or doxxing proof


Unable to find audit link on the website


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


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


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


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 OLOID

News for OLOID