Conditional Trade Instruments
AI-Orchestrated Supply Chain Finance
Executive Summary
Self-executing trade finance instruments on DUAL. Programmable tokens with milestone-gated escrow replacing $2.5T gap in traditional trade finance. IoT-verified milestones trigger automatic payment releases. Sub-second settlement eliminates 30-90 day payment delays.
Token Data Schema
What this token holds — every field is specific to Conditional Trade Instruments:
{
"immutable": {
"trade_id": "UUID",
"initiator_address": "0x...",
"counterparty_address": "0x...",
"commodity": "string",
"quantity": "float",
"currency": "USD/EUR/CNY"
},
"mutable": {
"current_milestone": "int",
"completion_timestamp": "ISO8601",
"escrow_balance": "uint256",
"verified_milestones": ["string"]
},
"compliance": {
"ofac_cleared": "bool",
"aml_status": "enum",
"corridor_whitelist": "string",
"audit_trail": ["object"]
}
}
User Journey
Initiates conditional instrument encoding trade terms and milestones
Token: current_milestone = 1, escrow_balance locked
Shipment departs; IoT sensors attached for real-time tracking
Token: location_log appended, ETA updated
Clears shipment, cryptographically signs clearance proof
Token: current_milestone = 2, milestone_verified[] updated
Verifies quality; inspection photos + metadata submitted on-chain
Token: current_milestone = 3, inspection_proof recorded
Detects all milestones verified; auto-triggers payment release to exporter
Token: Payment_Released state, funds transferred
Token Lifecycle
State machine transitions:
Why Not Just a Database?
| Approach | Portability | Mutable State | Cross-Org | Compliance |
|---|---|---|---|---|
| Traditional LC | Locked in bank rails | Immutable after issuance | Manual correspondent clearing | Paper-based audit |
| Blockchain Smart Contract | Portable across chains | Full mutable state | Peer-to-peer | On-chain only; limited audit |
| Traditional SaaS (Contour) | Proprietary platform lock-in | Centralized mutation log | Network model | Centralized verification |
| DUAL Token | Native portability; Event Bus | Mutable state with audit trail | Multi-org settlement in <1s | Compliance Layer built-in |
Market Opportunity
Mutable state tracks milestone completion; Event Bus triggers payment cascades on verification; Compliance Layer embeds trade regulations; immutable audit trail satisfies banking requirements.
Business Model & Unit Economics
- Platform Fee: 0.5% of instrument value (avg. $250 per $50K trade)
- Milestone Verification: $100 per certified milestone; typical 4 per instrument = $400
- Compliance Screening: SLA-based OFAC/AML screening fees; $0.50-$2.00 per screen
- Data Analytics: Anonymized corridor risk metrics and settlement velocity benchmarks
Per-instrument: $250-$650 revenue (0.5% fee + milestone fees); COGS <$50 (IoT data fetch + verification); 75% gross margin. Break-even at 150 instruments/month.
5-Year Projections
| Year | ARR | Customers | Notes |
|---|---|---|---|
| Y1 | $50K | 100 instruments | MVP launch, single corridor (SEA→EU) |
| Y2 | $500K | 1,000 instruments | Expand to LatAm→US, Africa→EMEA |
| Y3 | $2.5M | 5,000 instruments | Bank RFQ integration complete |
| Y4 | $6M | 12,000 instruments | Correspondent banking API launched |
| Y5 | $10M | 20,000 instruments | Full supply chain finance suite |
Competitive Positioning
| Competitor | Weakness | DUAL Advantage |
|---|---|---|
| Traditional Letter of Credit (Banks) | 30-40 day settlement; manual verification; no programmability | <1 second auto-settlement + embedded compliance |
| Contour (Marco Polo) | Centralized platform; limited to participating banks; no true mutable state | Decentralized Event Bus; any party can settle; milestone state mutations |
| TradeShift | Invoice-focused; no milestone gating; no IoT integration | Conditional escrow + IoT-verified milestones |
Go-to-Market
Focus on high-volume SME corridors: SEA→EU, LatAm→US, Africa→EMEA. Partner with fintech lenders and trade platforms for distribution. Target: 100 instruments, $50K ARR.
Embed conditional instruments into bank RFQ systems. Integrate with correspondent banking APIs. Add support for multi-currency trade. Target: 1,000 instruments, $500K ARR.
Expand to equipment leasing, inventory financing, revolving credit lines. Multi-leg supply chains with continuous settlement. Target: $10M+ ARR.
90-Day MVP
- Milestone state machine: Issued → Pending → Verified → Released → Settled
- IoT data ingestion module: GPS tracking + customs API polling
- Escrow token with DUAL compliance layer: OFAC screening + corridor whitelist
- Payment release trigger on verification: Auto-mint settlement stablecoin transfer
- Single-corridor pilot: Southeast Asia → EU export corridor
- Bank/fintech integration: RFQ system + settlement notification API
Risk Factors
Banks and SMEs must coordinate adoption. International corridors have fragmented preferences.
Mitigation: Partner with fintech lenders for distribution; offer early-adopter discounts; demonstrate ROI on pilot corridors.
Trade finance is heavily regulated. Each corridor may require local licensing or AML approval.
Mitigation: Budget compliance resources ($300K+ per corridor); hire local legal experts; build compliance module into platform.
Verification relies on third-party IoT and customs data. Data unavailability blocks milestone settlement.
Mitigation: Maintain fallback manual verification process; integrate multiple IoT providers; SLA-based redundancy.
Both buyer and seller must trust the escrow mechanism. Systemic failures could trigger legal disputes.
Mitigation: Insurance partnerships; multi-sig escrow for high-value trades; dispute arbitration framework.
VC Pack Documents
Complete pre-seed investment package:
Get Started with AI
Prerequisites: Complete the DUAL Quick Start Guide to set up your environment and API keys before building this concept.
# Build Conditional Trade Instruments on DUAL You are building a self-executing trade finance platform on DUAL Network. Start here: 1. Create the Conditional Trade token schema with immutable trade_id, counterparty_address, commodity; mutable current_milestone, escrow_balance, verified_milestones[]; and compliance OFAC_cleared, corridor_whitelist. 2. Implement a state machine: Issued → Milestone_Pending → Milestone_Verified → Payment_Released → Settled → Closed. Each transition is event-driven. 3. Build the milestone verification engine: - Listen for IoT data (shipment GPS) - Query customs API for clearance proof - Accept inspection photos + metadata - Auto-trigger payment release when all conditions met 4. Create the escrow mechanism: Lock buyer funds when token is issued. Release incrementally as each milestone is verified. 5. Add compliance layer: OFAC sanctions screening, AML corridor whitelists, immutable audit trail. 6. Build the settlement layer: Auto-execute stablecoin transfer to exporter when final milestone verified. Start by designing the data schema and state transitions.