The Joules Pouch: Seeds for Tomorrow
Johnny Appleseed carried a pouch of seeds. Each seed was small — but plant it in good soil, give it time, and it becomes an orchard.
Keep It Super Simple 3-Tier
Quick Tier (30 seconds)
A Joules Pouch holds seeds (Joules) you haven’t planted (spent) yet. Same value as Credits today, but they grow over time.
Standard Tier (5 minutes)
[Full explanation below]
Deep Tier (Academic)
The Johnny Appleseed Metaphor
| Element | Platform Meaning |
|---|---|
| Johnny Appleseed | Sponsor / Talent Scout |
| Seeds | Joules (potential value) |
| Pouch | Container for deferred Joules |
| Planting | Spending Joules / giving medallions |
| Soil | The community / recipients |
| Orchard | Growing network of value |
What Is a Joules Pouch?
A Joules Pouch is a container holding Joules that haven’t been activated yet.
The States of a Joule
| State | Location | Can Spend? | Value |
|---|---|---|---|
| In Pouch | Joules Pouch | Not yet | Locked at acquisition rate |
| Active | Joule Balance | Yes | Current gap rate |
| Spent | Converted to Credits | Done | Transaction value |
Why Hold in Pouch?
- Preserve optionality — Convert when gap rate is favorable
- Avoid premature spending — Don’t use Joules when Credits work
- Capture appreciation — Let the orchard grow before harvesting
The Cloth & Bag Connection
From the Foundation Document:
| Item | Currency | Analogy |
|---|---|---|
| Flat cloth | Credits | Raw, immediate utility |
| Bag sewn from cloth | Joules | Structured, holds future value |
| Pouch | Joules Pouch | Container for seeds |
The pouch is a bag that holds seeds. Same material, but now it has a PURPOSE — to carry potential until it’s ready to plant.
How It Works
Acquisition
SPONSOR CONTRIBUTES 5,000 DOLLARS
│
▼
┌───────────────────┐
│ 5,000 Joules │
│ Created │
└─────────┬─────────┘
│
▼
┌───────────────────┐
│ JOULES POUCH │
│ (5,000 seeds) │
│ Locked rate: 1:1 │
└───────────────────┘
Activation
USER DECIDES TO CONVERT
│
▼
┌───────────────────┐
│ Check Gap Rate │
│ Today: 1 Joule = │
│ 1.5 Credits │
└─────────┬─────────┘
│
▼
┌───────────────────┐
│ Convert 1,000 │
│ from Pouch │
│ = 1,500 Credits │
└─────────┬─────────┘
│
▼
┌───────────────────┐
│ POUCH NOW HAS │
│ 4,000 seeds left │
└───────────────────┘
Spending
USER SPENDS CREDITS
│
▼
┌───────────────────┐
│ Buy product │
│ Pay bounty │
│ Vote on project │
└───────────────────┘
Why “Pouch” Not “Option”?
| Term | Problem |
|---|---|
| “Joule Option” | Sounds like financial derivatives (SEC concern) |
| “Joule Reserve” | Sounds like bank reserves |
| “Joule Credit” | Confusing (Credits are different) |
| “Joules Pouch” | Johnny Appleseed metaphor, friendly, accurate |
The Speckles Connection
Seeds in the pouch are like speckles on a pattern:
- Each speckle is small and identical
- Together they form a larger design
- The pattern only emerges when you step back
Joules in your pouch are speckles waiting to become the pattern of your contribution.
Implementation
Database Schema
CREATE TABLE joules_pouch (
id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
user_id UUID NOT NULL REFERENCES profiles(id),
joules_amount DECIMAL(12,2) NOT NULL,
locked_rate DECIMAL(6,4) NOT NULL DEFAULT 1.0000,
source TEXT NOT NULL, -- 'sponsorship', 'progress_bar', 'reward'
acquired_at TIMESTAMP WITH TIME ZONE DEFAULT NOW(),
activated_amount DECIMAL(12,2) DEFAULT 0,
activated_at TIMESTAMP WITH TIME ZONE
);
API Endpoints
| Endpoint | Action |
|---|---|
GET /api/pouch | View pouch contents |
POST /api/pouch/activate | Convert pouch → active Joules |
GET /api/pouch/gap-rate | Check current gap rate |
Little Red Hen Connection
In the Little Red Hen story:
- Hen plants seeds (sponsors distribute medallions)
- Seeds grow into wheat (recipients build value)
- Wheat becomes bread (community benefits)
- Those who helped share the bread (rewards)
The Joules Pouch is the Hen’s seed bag — where potential is stored before planting.
Related Documents
| Document | Relevance |
|---|---|
| Cloth & Bag Analogy | Foundation explanation |
| Credits & Joules | Currency system |
| Johnny Appleseed Program | Sponsorship metaphor |
| Little Red Hen Story | Animation narrative |
“Carry your seeds carefully. Plant them in good soil. Wait for the orchard.”