What is DobProtocol?
DobProtocol is the infrastructure layer for tokenized real-world assets (RWA). It provides a complete pipeline to verify physical assets, represent them as on-chain tokens, distribute ownership shares to investors, and enable secondary trading -- all without requiring deep blockchain expertise.
The protocol operates across Stellar Soroban and multiple EVM-compatible chains (Ethereum, Base, Polygon, Arbitrum), giving asset owners and investors flexibility in where and how they interact with tokenized assets.
The Problem
Bringing real-world assets on-chain today involves stitching together fragmented tools: separate platforms for verification, tokenization, distribution, and trading. Each step introduces friction, trust assumptions, and integration overhead.
The Solution
DobProtocol unifies the entire RWA lifecycle into a single, auditable pipeline:
Verify --> Tokenize --> Distribute --> Trade
Every stage is connected. A device verified through DobValidator flows directly into Token Studio for tokenization, shares are distributed to investors through smart contracts, and those shares can be traded on the integrated marketplace or exited through DobDex.
Products
DobValidator
The AI-assisted verification layer. Asset owners submit a structured project metadata bundle (device specs, location, financial documents, supporting files) and the platform produces a TRUFA score across four dimensions — Technical Feasibility, Regulatory Compliance, Financial Viability, and Environmental Impact — plus an overall score from 0–100. Approved scores are anchored on-chain via the DOBValidator contract, so anyone can verify a project's status independently.
- Live at: validator.dobprotocol.com
- Learn more: DobValidator Overview
Token Studio
The main platform for creating and managing distribution pools. Asset owners tokenize verified assets into pools with configurable share structures, access controls, and distribution schedules. Investors purchase or receive shares and claim distributions as revenue flows in.
- Live at: home.dobprotocol.com
- Learn more: Token Studio Overview
DobDex
A Liquid RWA DEX built on Uniswap V4 Custom Accounting. Buys settle 1:1 against the validator's USD oracle (the dUSDC peg). Sells route through permissionless Liquidity Nodes — LPs choose their own discount (minPenaltyBps), and the hook FIFO-matches the cheapest matching LPs. When the validator flags an asset for liquidation, the hook applies a protocol-mandated penalty instead. A shared LN vault (DobPooledLN) lets anyone co-invest with one operator.
- Live at: dex.dobprotocol.com
- Learn more: DobDex Overview
DobLink
An embeddable investment widget that asset owners can place on their own websites. DobLink lets end users invest in tokenised assets without leaving the asset owner's domain. Use the official npm SDK to mint a widget URL:
import { DobProtocolClient } from '@dobprotocol/sdk';
const dob = new DobProtocolClient({ apiKey: 'dob_sdk_...', network: 'mainnet' });
const widget = await dob.widgets.create({ pool_address: 'CDLZ...', theme: 'light' });
// widget.embed_url -> drop into an iframe on your site
- Learn more: DobLink Overview
Agent API
Programmatic access to the DobProtocol ecosystem. The Agent API lets developers and AI agents create pools, manage distributions, query portfolios, and interact with the marketplace through a RESTful interface. Designed for integration into automated workflows and third-party applications.
- Learn more: Agent API Reference
How It All Fits Together
+------------------+
| DobValidator |
| (AI Verification)|
+--------+---------+
|
Certificate issued
|
+--------v---------+
| Token Studio |
| (Pools & Shares) |
+--------+---------+
|
+-------------+-------------+
| |
+--------v---------+ +--------v---------+
| Marketplace | | DobDex |
| (Secondary Trade)| | (LP-priced exits)|
+------------------+ +------------------+
| |
+-------------+-------------+
|
+--------v---------+
| DobLink |
| (Embed Widget) |
+------------------+
|
+--------v---------+
| Agent API |
| (Programmatic) |
+------------------+
Supported Blockchains
DobProtocol is multi-chain by design:
| Network | Type | Status |
|---|---|---|
| Stellar Soroban | Native smart contracts | Primary chain |
| Ethereum | EVM | Supported |
| Base | EVM (L2) | Supported |
| Polygon | EVM | Supported |
| Arbitrum | EVM (L2) | Supported |
For the full list of networks, chain IDs, and RPC endpoints, see Supported Networks.
Quick Links
| I want to... | Go to |
|---|---|
| Understand the architecture | Architecture |
| Follow the RWA pipeline end-to-end | Pipeline |
| Create a distribution pool | Pools |
| Understand how distributions work | Distributions |
| Trade shares on the marketplace | Marketplace |
| Integrate via API | Agent API |
| Review smart contracts | Smart Contracts |