obolos logo obolos
Overview Protocol Cap Table Developers 𝕏 @equitylayerr
SOLIDITY SMART CONTRACT SPECS • ROBINHOOD CHAIN

Tokenized Equity Developer Architecture

Build, integrate, and query compliance-enforced equity tokens directly via Robinhood Chain RPC nodes.

contracts/IObolosEquityToken.sol
Solidity ^0.8.20
// SPDX-License-Identifier: MIT
pragma solidity ^0.8.20;

interface IObolosEquityToken {
    event SharesIssued(address indexed investor, uint256 amount, uint8 equityClass);
    event TransferVerified(address indexed from, address indexed to, uint256 amount);

    function issueShares(
        address investor,
        uint256 amount,
        uint8 equityClass
    ) external returns (bool);

    function verifyTransferCompliance(
        address from,
        address to,
        uint256 amount
    ) external view returns (bool isAllowed, string memory reason);

    function getShareholderRegistryHash() external view returns (bytes32 ipfsHash);
}
Console Output: Ready to compile. Click 'Compile & Verify Contract' above.

Developer SDK & Integration Nodes

TYPESCRIPT SDK

@obolos/equity-sdk

npm package for automated cap table querying, shareholder verification, and SEC Reg D compliance hooks.

ROBINHOOD CHAIN RPC

https://rpc.robinhoodchain.org

Ultra-low latency sub-second RPC endpoint for querying tokenized share balances and IPFS Merkle attestations.