Zone Tokens

Geo-Fenced Micro-Economy Zones

Executive Summary

Location-aware economic zones where tokens activate, transform, or expire based on geographic boundaries. Stadium tokens, campus currencies, festival economies — all powered by DUAL's native geo-positioning. Tokens self-enforce geographic rules without external GPS oracles.

Token Data Schema

What this token holds — every field is specific to Zone Tokens:

{
  "immutable": {
    "zone_id": "UUID",
    "region": "string",
    "operator_address": "0x..."
  },
  "mutable": {
    "allocation_percentage": "float",
    "renewable_mwh": "uint64",
    "grid_stability_score": "float"
  },
  "compliance": {
    "utility_approved": "bool",
    "renewable_certified": "bool"
  }
}

User Journey

Step 1: Grid Developer

Registers renewable zone with operator credentials and capacity metadata

Token: zone_id assigned, region_id immutable

Step 2: Energy Dispatch

Updates real-time renewable MWh available in zone

Token: renewable_mwh mutable field updated

Step 3: Utility Validator

Certifies zone meets regulatory and renewable energy standards

Token: utility_approved = true, renewable_certified = true

Step 4: Allocation Manager

Allocates percentage of zone capacity to priority customers

Token: allocation_percentage updated, audit_trail logged

Step 5: Settlement System

Monthly settlement: pays allocation holders based on grid_stability_score

Token: revenue_distribution executed

Token Lifecycle

State machine transitions:

CreatedGeo ActivatedIn Zone ActiveZone ExitExpired or Dormant

Why Not Just a Database?

ApproachPortabilityMutable StateCross-OrgCompliance
Utility Meter None; locked to grid Manual logging Single utility Regulation-dependent
Off-grid Blockchain Portable Immutable records Peer-to-peer No regulatory interface
Regional Energy Exchange Exchange-locked Centralized settlement Market-driven Exchange-managed
DUAL Zone Tokens Portable across grids Real-time MWh updates Multi-utility settlement Native utility integration

Market Opportunity

TAM
$100B+
SAM
$10B
SOM
$300M

Native geo-positioning makes tokens location-aware without external oracles; mutable state activates/deactivates based on coordinates; Compliance Layer enforces zone-specific rules; Event Bus triggers location-based events.

Business Model & Unit Economics

  • Zone Registration: $1,000-$5,000 per zone onboarding and API integration
  • Allocation Management: 0.1% of monthly renewable MWh transacted through zones
  • Real-Time Data Feed: $200/month for live grid stability and renewable supply data
  • Settlement SLA Fees: Premium settlement SLA (sub-minute settlement): $500/month
Unit Economics

Per-zone: $200-$500/month in aggregate fees (registration amortized + MWh %). COGS ~$100/month (grid integration + data feeds). Gross margin: 60%. Payback in 6-8 months.

5-Year Projections

YearARRCustomersNotes
Y1 $75K 25 zones Pilot with 2 regional utilities
Y2 $500K 150 zones Utility integration framework live
Y3 $2M 400 zones Multi-state renewable network
Y4 $5M 900 zones Cross-regional settlement enabled
Y5 $9M 1,500 zones Utility compliance standard

Competitive Positioning

CompetitorWeaknessDUAL Advantage
Energy Web EWC Energy-chain only; limited renewable certification; no utility API integration Multi-utility integration + real-time MWh settlement
Power Ledger Peer-to-peer trading only; no grid-operator integration; limited compliance Utility-native + regulatory integration built-in
LO3 Energy Exergy Micro-grid focused; limited scalability; no cross-region settlement Zone portability + multi-grid settlement

Go-to-Market

Phase 1: Regional Utility Pilot (Months 1-6)

Launch with 2 regional utilities (e.g., PG&E, Southern Company). Pilot zone registration and MWh settlement. Target: 25 zones, $75K ARR.

Phase 2: Multi-State Expansion (Months 6-18)

Expand utility integration framework. Support FERC compliance requirements. Add cross-state renewable trading. Target: 150 zones, $500K ARR.

Phase 3: National Grid Integration (Year 2+)

Multi-utility federation. Real-time cross-regional settlement. Become the renewable allocation standard.

90-Day MVP

  • Zone registration system: Operator onboarding + capacity validation
  • Real-time MWh update mechanism: Event-driven updates from grid operators
  • Utility API integration: Query renewable supply + grid stability metrics
  • Allocation percentage token minting: Prorata share calculation
  • Monthly revenue settlement: Proportional distribution to shareholders
  • Compliance reporting: Utility regulatory audit trail

Risk Factors

Utility Regulatory Approval

Utilities operate under FERC, state PUC rules. Non-compliant solutions face deployment barriers.

Mitigation: Early regulatory engagement; FERC pre-filing strategy; compliance audits before zone launch.

Grid Stability Impact

Renewable zones may destabilize grid if allocation is poorly managed.

Mitigation: Real-time stability monitoring; automated allocation throttling; partnership with grid operators.

Renewable Supply Volatility

Solar/wind output varies hourly. Revenue projections may not materialize.

Mitigation: Long-term capacity purchase agreements; diversify across multiple zones; hedge via futures.

Market Liquidity

Zone tokens may have low liquidity if not listed on major exchanges.

Mitigation: DEX partnerships; incentive programs for market makers; integration with green energy funds.

VC Pack Documents

Get Started with AI

Prerequisites: Complete the DUAL Quick Start Guide to set up your environment and API keys before building this concept.

# Build Zone Tokens on DUAL

You are building a renewable energy allocation and settlement system. Start here:

1. Design the zone token schema: immutable zone_id, region, operator_address, capacity_mw; mutable renewable_mwh, grid_stability_score, allocation_percentage[]; compliance utility_approved, renewable_certified.

2. Create the zone registration workflow:
   - Operator registers renewable asset (solar, wind, hydro)
   - Validate capacity with utility
   - Mint zone token with governance rules

3. Build the real-time MWh tracking:
   - Listen to grid operator SCADA systems for live MWh output
   - Update renewable_mwh field on-chain
   - Calculate grid stability score (frequency, voltage stability)

4. Implement allocation management:
   - Allocate zone capacity to priority customers (utilities, aggregators)
   - Track allocation_percentage per holder
   - Adjust dynamically based on renewable supply

5. Create monthly settlement:
   - Collect monthly revenue from grid sales
   - Distribute prorata to zone token holders based on allocation_percentage
   - Immutable settlement record on-chain

Start by connecting to utility APIs and building the zone registry.