OBORTECH Token Logo

OBOT [OBORTECH] Token

About OBOT

Listings

Token 3 years
CoinGecko 4 years
CoinMarketCap 4 years
white paper

OBORTECH - Smart Hub is a fully digital ecosystem where all actors in supply chain remotely collaborate in a decentralized blockchain network.

OBORTECH (OBOT) token is a main instrument for digital economy of the Smart Hub network. Members of the network can use OBOT token on performing transactions on the platform, escrowing contract bonuses, launching crowdfunding activities to the network community, exchanging services in the Smart Hub Marketplace, voting on governance policies and activities of the network, and getting rewards based on their performance ratings in the network.

Social

Laser Scorebeta Last Audit: 28 June 2022

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

AnyswapV6ERC20.initVault(address)._vault (#228) lacks a zero-check on :
- vault = _vault (#230)
- pendingVault = _vault (#231)
AnyswapV6ERC20.constructor(string,string,uint8,address,address)._underlying (#314) lacks a zero-check on :
- underlying = _underlying (#318)
AnyswapV6ERC20.constructor(string,string,uint8,address,address)._vault (#314) lacks a zero-check on :
- vault = _vault (#329)
- pendingVault = _vault (#330)
Check that the address is not zero.

Additional information: link

Reentrancy in AnyswapV6ERC20.deposit() (#349-353):
External calls:
- IERC20(underlying).safeTransferFrom(msg.sender,address(this),_amount) (#351)
State variables written after the call(s):
- _deposit(_amount,msg.sender) (#352)
- _totalSupply += amount (#409)
- _deposit(_amount,msg.sender) (#352)
- balanceOf[account] += amount (#410)
Reentrancy in AnyswapV6ERC20.deposit(uint256) (#355-358):
External calls:
- IERC20(underlying).safeTransferFrom(msg.sender,address(this),amount) (#356)
State variables written after the call(s):
- _deposit(amount,msg.sender) (#357)
- _totalSupply += amount (#409)
- _deposit(amount,msg.sender) (#357)
- balanceOf[account] += amount (#410)
Reentrancy in AnyswapV6ERC20.deposit(uint256,address) (#360-363):
External calls:
- IERC20(underlying).safeTransferFrom(msg.sender,address(this),amount) (#361)
State variables written after the call(s):
- _deposit(amount,to) (#362)
- _totalSupply += amount (#409)
- _deposit(amount,to) (#362)
- balanceOf[account] += amount (#410)
Apply the check-effects-interactions pattern.

Additional information: link

Reentrancy in AnyswapV6ERC20.deposit() (#349-353):
External calls:
- IERC20(underlying).safeTransferFrom(msg.sender,address(this),_amount) (#351)
Event emitted after the call(s):
- Transfer(address(0),account,amount) (#411)
- _deposit(_amount,msg.sender) (#352)
Reentrancy in AnyswapV6ERC20.deposit(uint256) (#355-358):
External calls:
- IERC20(underlying).safeTransferFrom(msg.sender,address(this),amount) (#356)
Event emitted after the call(s):
- Transfer(address(0),account,amount) (#411)
- _deposit(amount,msg.sender) (#357)
Reentrancy in AnyswapV6ERC20.deposit(uint256,address) (#360-363):
External calls:
- IERC20(underlying).safeTransferFrom(msg.sender,address(this),amount) (#361)
Event emitted after the call(s):
- Transfer(address(0),account,amount) (#411)
- _deposit(amount,to) (#362)
Apply the check-effects-interactions pattern.

Additional information: link

AnyswapV6ERC20.mpc() (#217-222) uses timestamp for comparisons
Dangerous comparisons:
- block.timestamp >= delayVault (#218)
AnyswapV6ERC20.applyVault() (#244-247) uses timestamp for comparisons
Dangerous comparisons:
- require(bool)(block.timestamp >= delayVault) (#245)
AnyswapV6ERC20.applyMinter() (#255-259) uses timestamp for comparisons
Dangerous comparisons:
- require(bool)(block.timestamp >= delayMinter) (#256)
AnyswapV6ERC20.permit(address,address,uint256,uint256,uint8,bytes32,bytes32) (#466-483) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp <= deadline,AnyswapV3ERC20: Expired permit) (#467)
AnyswapV6ERC20.transferWithPermit(address,address,uint256,uint256,uint8,bytes32,bytes32) (#485-509) uses timestamp for comparisons
Dangerous comparisons:
- require(bool,string)(block.timestamp <= deadline,AnyswapV3ERC20: Expired permit) (#486)
Avoid relying on block.timestamp.

Additional information: link

Address.isContract(address) (#124-130) uses assembly
- INLINE ASM (#128)
AnyswapV6ERC20.constructor(string,string,uint8,address,address) (#314-342) uses assembly
- INLINE ASM (#334)
Do not use evm assembly.

Additional information: link

SafeERC20.safeApprove(IERC20,address,uint256) (#144-149) is never used and should be removed
Remove unused functions.

Additional information: link

Pragma version^0.8.2 (#51) allows old versions
solc-0.8.10 is not recommended for deployment
Deploy with any of the following Solidity versions: 0.5.16 - 0.5.17, 0.6.11 - 0.6.12, 0.7.5 - 0.7.6 Use a simple pragma version that allows any of these versions. Consider using the latest version of Solidity for testing.

Additional information: link

Low level call in SafeERC20.callOptionalReturn(IERC20,bytes) (#150-161):
- (success,returndata) = address(token).call(data) (#154)
Avoid low-level calls. Check the call success. If the call is meant for a contract, check for code existence

Additional information: link

Parameter AnyswapV6ERC20.initVault(address)._vault (#228) is not in mixedCase
Parameter AnyswapV6ERC20.setVault(address)._vault (#238) is not in mixedCase
Parameter AnyswapV6ERC20.setMinter(address)._auth (#249) is not in mixedCase
Parameter AnyswapV6ERC20.revokeMinter(address)._auth (#262) is not in mixedCase
Function AnyswapV6ERC20.Swapin(bytes32,address,uint256) (#289-293) is not in mixedCase
Function AnyswapV6ERC20.Swapout(uint256,address) (#295-301) is not in mixedCase
Variable AnyswapV6ERC20.DOMAIN_SEPARATOR (#174) is not in mixedCase
Follow the Solidity naming convention.

Additional information: link

AnyswapV6ERC20.delay (#187) should be constant
Add the constant attributes to state variables that never change.

Additional information: link

owner() should be declared external:
- AnyswapV6ERC20.owner() (#213-215)
Swapin(bytes32,address,uint256) should be declared external:
- AnyswapV6ERC20.Swapin(bytes32,address,uint256) (#289-293)
Swapout(uint256,address) should be declared external:
- AnyswapV6ERC20.Swapout(uint256,address) (#295-301)
Use the external attribute for functions never called from the contract.

Additional information: link


Contract ownership is semi-renounced (passed to a contract)

Holders:


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


Average 30d number of PancakeSwap swaps is low.


Unable to find Discord account


BscScan page for the token does not contain additional info: website, socials, description, etc.

Additional information: link


Unable to find KYC or doxxing proof


Unable to verify token contract address on the website


Unable to find whitepaper link on the website


Token is not listed at Mobula.Finance

Additional information: link


Unable to find token on CoinHunt

Additional information: link


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


Token has relatively low CoinMarketCap rank

Price for OBOT

News for OBOT