Four pillars, one shared substrate, plus Sovereign Stack as a productized deployment
Every pillar captures value from the attestation work the platform produces anyway. This pillar is highlighted in gold. Sovereign Stack is the productized deployment of the whole stack - see /sovereign.
JIL Time-Bound Sealed Escrow - Pillar 4
Document ID: ESCROW-PILLAR-001 Version: 1.0 Status: Planning. Ready for executive review. Owner: Jeff Mendonca (exec sponsor); Head of Institutional Products (TBH); engineering lead TBD. Shared substrate: see pillars README
1. The thesis
Escrow is a $200B+/year industry that has barely changed in 50 years. Title companies, law-firm IOLTA accounts, QI (qualified intermediary) firms for 1031 exchanges, litigation-settlement escrows - all expensive, slow, opaque, and not crypto-native.
JIL already has every piece to replace them: - MPC 2-of-3 for non-custodial holding - Quorum-signed attestations for release-condition verification - Post-quantum sealing for tamper-evidence - L1 anchor for dispute-ready immutable timestamps - Claim 53 sealed record for court-admissibility
Packaging this as Time-Bound Sealed Escrow creates a crypto-native escrow primitive where: - Funds move into a MPC vault (2-of-3: depositor, beneficiary, JIL) - Release conditions are encoded as on-chain logic: date + oracle signal + multi-party approval + attested counter-party satisfaction - Every state change is sealed + quorum-signed - the escrow itself produces CourtChain-compatible records - No custodian in the custody path - depositor holds a shard
The business: per-escrow fees (bps of held value) + subscription for corporate/legal customers doing repeat escrow.
2. Market gap
The $200B escrow industry today
| Segment | Size | Incumbent players | Friction |
|---|---|---|---|
| Real estate closings | $75B/yr in the US | First American, Fidelity National, Stewart, Old Republic | 30-60 day holding period; 1% of purchase price; opaque |
| M&A escrow (indemnity, earnout) | $30B/yr globally | JP Morgan, Citi, Computershare | 12-36 month holds; $50K-$500K fees; legal-heavy |
| Litigation settlement | $20B/yr (estimated) | law firm IOLTA accounts | no interest-bearing at scale; state-by-state variance |
| 1031 exchanges (tax-deferred real estate swap) | $50B/yr | QI firms (IPX 1031, Asset Preservation, etc) | 45-day identification window; strict IRS rules; fraud risk in QI custody |
| Crypto-native escrow | <$100M/yr | Unicrypt, PinkSale, team.finance (all DEX/token-launch focused) | not institutional-grade; no compliance; no legal recognition |
| Government procurement bond escrow | $40B/yr | specialty surety firms | paper-heavy; long release cycles |
What makes current escrow painful
- Counterparty risk is transferred to the custodian. A QI firm that embezzles ($1.3B lost in QI failures 2020-2024, industry data) wipes out the escrow.
- Release conditions are paper. A title company verifies a "deed is recorded" by a human reading it. Mistakes and fraud happen.
- No programmatic release. Smart contracts can release; regulated escrow in major industries can't use smart contracts because they lack legal-evidence wrappers.
- Multi-party approval is email + wire. Slow, forgeable.
- Interest on escrowed funds is squandered. Billions in idle capital earning zero for the beneficiary.
JIL Sealed Escrow solves all five: - MPC means no custodian can unilaterally release - Release conditions encoded + attested - no human reads anything - Programmatic release with a legal-evidence wrapper (Claim 53 sealed record at every state transition) - Multi-party approval via quorum signing - Escrowed funds held in yield-bearing stablecoin or on-chain T-bill products (USDY, OUSG, BUIDL) by default
3. Product structure
3.1 Sealed Escrow - Standard
What it is: a MPC 2-of-3 vault holding stablecoin or native JIL-token with programmatic release conditions. Conditions can include: - Date (absolute or relative to event) - On-chain oracle signal (price, timestamp, contract call) - Multi-party approval (sender approved + beneficiary approved + optional third-party attestor) - Attested external event (oracle signs that a deed was recorded, a SAR was filed, a court order was issued)
Customer: real estate closings, M&A, litigation settlements, any commercial escrow.
Sold as: per-escrow fee, bps of held value.
Pricing: 5-15 bps one-time + 0.1 bp/month holding.
3.2 Sealed Escrow - Enterprise Subscription
What it is: a subscription wrapper for institutions doing repeat escrow - law firms, QI firms, title insurance agents, M&A advisors. White-label UI, bulk creation, compliance reporting, integration with their case-management system.
Customer: Am Law 100 firms, big-4 M&A practices, national title insurers, QI aggregators.
Sold as: annual subscription + per-escrow overage.
Pricing: $100K-$1M/year depending on scale.
3.3 Sealed Escrow - 1031 Qualified Intermediary Product
What it is: specialty configuration for 1031 like-kind exchanges. IRS-compliant QI structure: JIL holds the relinquished-property proceeds in MPC escrow for up to 180 days, with the identification and replacement windows enforced programmatically. Produces IRS-admissible records (Claim 53 sealed records tailored to 1031 reporting).
Customer: QI firms + real estate investors directly.
Sold as: per-exchange flat fee, competitive with incumbent QI pricing.
Pricing: $1,500-$5,000 per exchange.
3.4 Sealed Escrow - Tokenized Asset Treasury Reserve
What it is: a specialty escrow product for crypto treasuries. Lock N tokens for a stated period with programmatic release schedule + public verifiability. Replaces vesting contracts used by DAOs and token issuers.
Customer: DAOs, token issuers, crypto treasuries doing founders-vesting or staged-release.
Sold as: flat fee + % of locked value.
Pricing: $5K + 10 bps of locked value (one-time).
4. Target customers
| Segment | Sales motion | Year-1 target |
|---|---|---|
| Am Law 100 firms (M&A + litigation) | direct BD | 10+ firm subscriptions |
| National title insurers | BD to heads of digital-closing initiatives | 2+ insurer pilots |
| QI firms | direct BD + trade show (FEA summit) | 3+ QI partnerships |
| M&A advisory (big-4, boutique) | inside sales | 15+ firm subscriptions |
| Crypto treasuries / DAOs | self-serve web + crypto Twitter | 50+ treasury customers |
| Family offices (RE + M&A) | BD via wealth-management partnerships | 20+ FO customers |
5. Service architecture
services/sealed-escrow/
├── src/
│ ├── index.ts
│ ├── types.ts
│ │
│ ├── api/
│ │ ├── create.ts # POST /v1/escrow - create vault, issue shards
│ │ ├── deposit.ts # POST /v1/escrow/:id/deposit
│ │ ├── release.ts # POST /v1/escrow/:id/release (quorum-gated)
│ │ ├── cancel.ts # POST /v1/escrow/:id/cancel (depositor unanimous)
│ │ ├── inspect.ts # GET /v1/escrow/:id - current state + attested history
│ │ └── receipt.ts # GET /v1/escrow/:id/receipt - CourtChain sealed record
│ │
│ ├── conditions/
│ │ ├── date-condition.ts # absolute/relative date gates
│ │ ├── oracle-condition.ts # price feed, event feed, external attestation
│ │ ├── approval-condition.ts # multi-party sign-off with quorum
│ │ └── composite.ts # AND/OR trees of conditions
│ │
│ ├── mpc/
│ │ ├── shard-issuance.ts # reuses mpc-cosigner service
│ │ ├── threshold-policy.ts # 2-of-3 default, configurable
│ │ └── quorum-release.ts
│ │
│ ├── yield/
│ │ ├── treasury-bill-adapter.ts # OUSG, BUIDL, USDY integrations
│ │ ├── stablecoin-adapter.ts # default stablecoin if yield opted out
│ │ └── beneficiary-allocation.ts # yield to depositor, beneficiary, or split
│ │
│ ├── attestor/
│ │ ├── external-oracle.ts # verifies external events (court orders, deed records)
│ │ ├── state-transition-sealer.ts # CourtChain record per state change
│ │ └── l1-anchor.ts # JIL L1 anchor per state transition
│ │
│ └── product-variants/
│ ├── 1031.ts # 1031-specific timing + IRS reporting
│ └── treasury-vesting.ts # token-vesting variant
│
└── migrations/
├── 001_init.sql # escrow.vaults, escrow.state_transitions
├── 002_conditions.sql # escrow.conditions, escrow.condition_state
└── 003_yield.sql # escrow.yield_positions
Integration points
| Upstream | Usage |
|---|---|
mpc-cosigner |
2-of-3 threshold signing |
fleet-signer |
attestation sealing |
fraud-attestation-engine |
release-condition verdict (e.g. sanctions-clean before release) |
asset-intelligence |
counterparty risk on deposit |
jil5600-core L1 |
state-transition anchoring |
courtchain |
sealed-record production at every release |
| External oracles: Chainlink, Pyth, Supra | price feeds + external event attestation |
6. Pricing
| SKU | Price |
|---|---|
| Standard Escrow (create + hold + release) | 5-15 bps one-time + 0.1 bp/month |
| Enterprise Subscription (law firm / QI / M&A) | $100K-$1M/year + per-escrow overage |
| 1031 Exchange Escrow | $1,500-$5,000 per exchange |
| Token Treasury Vesting | $5K + 10 bps of locked value (one-time) |
| Sealed Record (CourtChain) at release | included |
| Yield add-on (T-bill custody) | 25% of yield |
7. Phased build
Phase 1 - MVP (Months 0-3)
Ship:
- services/sealed-escrow/ skeleton
- MPC 2-of-3 vault creation + deposit + release
- Basic conditions: date + multi-party approval (oracle + attestor deferred)
- CourtChain integration - every state change produces a sealed record
- First customer - target: a crypto treasury doing founder vesting (simplest use case)
Team: 1 engineer (MPC experience required). Cost: ~$100K loaded. Milestone: 5+ active vaults, one successful timed release.
Phase 2 - Commercial escrow + oracle conditions (Months 3-9)
Ship: - Chainlink + Pyth oracle integration - External-attestor integration (e.g. Notary API for deed records) - Yield-bearing variant (OUSG + BUIDL integrations) - First law-firm subscription pilot - 1031 product variant
Team: +1 engineer, +1 BD (institutional products). Cost: ~$500K loaded. Milestone: 3+ law firm subscribers, 1 QI firm pilot.
Phase 3 - Enterprise + regulated industry (Months 9-18)
Ship: - National title insurer integration - M&A advisor integrations - State-by-state legal review + marketing collateral - Integration with case-management systems (Clio, PracticePanther, MyCase)
Team: +1 partnerships, +1 legal counsel. Cost: ~$1M loaded. Milestone: $10M+ in escrowed value under management.
Phase 4 - Scale (Months 18-30)
Ship: - First tier-1 title insurer rollout - White-label for big-4 M&A practices - International expansion (UK, Singapore, UAE) - Insurance product for escrowed funds (adds $250K coverage like Premium wallet tier)
Team: +scaling Cost: ~$2M loaded. Milestone: $500M+ UMM, $20-40M ARR.
8. Risks
| Risk | Mitigation |
|---|---|
| Regulated industry compliance varies state-by-state | Phase 3 legal review maps the jurisdictional surface; phased launch state-by-state |
| Title insurers reluctant to disintermediate themselves | White-label product - they resell, we do the crypto + legal-evidence work |
| MPC key-reconstruction complexity for non-technical users | UX investment in Phase 2 - "escrow for humans" UI, one-click release |
| QI fraud (historical industry failures) | Our model eliminates the failure mode - funds held by MPC, never by JIL alone |
| Counterparty doesn't want to use MPC | Offer optional 2-of-2 variant (JIL + counterparty) with SOC 2 attestation wrapper |
| Regulated industries require insured custody | Partner with Lloyd's syndicate for specialty escrow-coverage insurance |
9. Strategic value
Sealed Escrow is the vertical expansion bet. It takes JIL from crypto-native compliance infrastructure into a $200B non-crypto industry. Every escrow transaction is a new customer whose first exposure to JIL is a trusted, regulated, legally-admissible product - not a speculative crypto bet.
The cross-sell back into JIL's core products is powerful: - Every escrow customer is a potential CourtChain customer (they already need evidence) - Every M&A escrow customer is a RAN Institution Export customer (they already file) - Every QI exchange uses the PoCS rail (if attestation is required, it's already there)
Ordering: build after CourtChain (shared sealed-record infra) and before PoCS (PoCS depends on issuer partnerships that take time; Escrow only needs MPC which we have).