IP Ledger: Foundation Documents Registry
Every idea has an origin. Every contribution has an owner. This is the permanent record.
Keep It Super Simple 3-Tier
Quick Tier (30 seconds)
The IP Ledger records who created what, when, and how it’s used. Permanent. Transparent. Attributable.
Standard Tier (5 minutes)
[Full explanation below]
Deep Tier (Academic)
What Is the IP Ledger?
The IP Ledger is the permanent, immutable record of all intellectual property within Liana Banyan:
| Record Type | Examples |
|---|---|
| Foundation Documents | Cloth/Bag Analogy, Core Philosophy |
| Innovations | #1-#1079+ documented innovations |
| Patent Bags | Bags 1-24+ for filing |
| Contributions | Who contributed what |
| Attributions | Proper credit chains |
Foundation Documents Registry
FOUNDATION-001: Cloth & Bag Currency Analogy
| Field | Value |
|---|---|
| Entry ID | FOUNDATION-001 |
| Title | The Cloth & Bag Analogy |
| Inventor | Jonathan Jones (Founder) |
| Date Recorded | February 2, 2026 |
| Description | Foundational explanation of Credits vs Joules |
| Status | Canonical |
| Location | /under-the-hood/cloth-bag-currency-analogy/ |
FOUNDATION-002: Credit Lifecycle Flowchart
| Field | Value |
|---|---|
| Entry ID | FOUNDATION-002 |
| Title | How Credits Flow: Before & After Collection |
| Inventor | Jonathan Jones (Founder) |
| Date Recorded | February 2, 2026 |
| Description | Complete lifecycle of Credits |
| Status | Canonical |
| Location | /how-it-works/credit-lifecycle-flowchart/ |
FOUNDATION-003: Johnny Appleseed / Joules Pouch
| Field | Value |
|---|---|
| Entry ID | FOUNDATION-003 |
| Title | The Joules Pouch Metaphor |
| Inventor | Jonathan Jones (Founder) |
| Date Recorded | February 2, 2026 |
| Description | Seeds in pouch → deferred Joules |
| Status | Canonical |
| Location | /under-the-hood/joules-pouch/ |
Innovation Registry (Summary)
| Range | Count | Bag | Status |
|---|---|---|---|
| #1-#50 | 50 | 1-5 | Filed |
| #51-#100 | 50 | 6-10 | Filed |
| #101-#500 | 400 | 11-15 | Documented |
| #501-#1000 | 500 | 16-20 | Documented |
| #1001-#1079 | 79 | 21-24 | Extracted |
| Total | 1,079+ | 24 | Growing |
Attribution Protocol
Who Gets Credit?
| Role | Attribution |
|---|---|
| Inventor | Named on patent filing |
| Contributor | Named in documentation |
| Implementer | Named in code comments |
| Reviewer | Named in review logs |
Chain of Attribution
Every innovation traces back through:
- Original concept (who thought of it)
- Documentation (who wrote it down)
- Refinement (who improved it)
- Implementation (who built it)
- Review (who verified it)
Fly on the Wall: Ledger View
What the Public Can See
| Visible | Hidden |
|---|---|
| Entry titles | Full descriptions |
| Entry dates | Implementation details |
| Entry status | Source code |
| Transaction counts | Specific values |
| Attribution names | Contact information |
Security Consideration
Risk: Could competitors use visible titles to anticipate our innovations?
Mitigation:
- Titles are general (“Currency System” not “Three-Gear Differential”)
- Details require membership
- Patent filings provide legal protection
- First-mover advantage from execution
Decision: Low risk. Transparency > secrecy for community trust.
Implementation
Database Schema
CREATE TABLE ip_ledger (
id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
entry_id TEXT UNIQUE NOT NULL, -- 'FOUNDATION-001', 'INNOVATION-1050'
entry_type TEXT NOT NULL, -- 'foundation', 'innovation', 'patent_bag'
title TEXT NOT NULL,
inventor_id UUID REFERENCES profiles(id),
inventor_name TEXT NOT NULL,
description TEXT,
date_recorded TIMESTAMP WITH TIME ZONE DEFAULT NOW(),
status TEXT DEFAULT 'documented', -- 'documented', 'filed', 'granted'
location TEXT, -- Cephas URL
patent_bag_id TEXT,
metadata JSONB,
created_at TIMESTAMP WITH TIME ZONE DEFAULT NOW()
);
CREATE TABLE ip_ledger_transactions (
id UUID PRIMARY KEY DEFAULT gen_random_uuid(),
ledger_entry_id UUID REFERENCES ip_ledger(id),
transaction_type TEXT NOT NULL, -- 'created', 'updated', 'filed', 'licensed'
actor_id UUID,
actor_name TEXT,
details JSONB,
timestamp TIMESTAMP WITH TIME ZONE DEFAULT NOW()
);
Fly on the Wall View Query
-- Public view: titles and dates only
SELECT
entry_id,
entry_type,
title,
inventor_name,
date_recorded,
status,
(SELECT COUNT(*) FROM ip_ledger_transactions WHERE ledger_entry_id = ip_ledger.id) as transaction_count
FROM ip_ledger
ORDER BY date_recorded DESC;
C.S. Lewis: Ghost to Solid
From The Great Divorce, when the narrator first arrives in Heaven and struggles to walk on grass that feels “hard as diamonds” to his insubstantial feet:
“If you will only stay, you will learn to eat and drink. But for now, I must tell you: the grass here would cut your feet to pieces at first. You are only a shadow. The first step is always the hardest.”
And later, a Bright Spirit explains:
“That is what mortals misunderstand. They say of some temporal suffering, ‘No future bliss can make up for it,’ not knowing that Heaven, once attained, will work backwards and turn even that agony into a glory.”
Application to Liana Banyan:
First-time users explore as ghosts — viewing but not participating. Through any action that commits them (membership, sponsorship, voting), they become solid — real participants with stake in the outcome.
| State | Access | Commitment |
|---|---|---|
| Ghost | View Fly on the Wall | None |
| Solid | Full participation | Membership/Sponsorship |
The transformation requires choosing. As Lewis wrote: “There are no passengers on spaceship Earth. We are all crew.”
3D Rendition Concept
The Virtual Tour
New users enter a 3D representation of Liana Banyan:
| Location | What’s There |
|---|---|
| Observatory | Academic papers (plugs on wall above Hexagon Senate) |
| Treasury | Credit/Joule/MARKS flows |
| Node Network | Geographic spread |
| Senate | Governance discussions |
| Library (Cephas) | All documentation |
| Fortress | IP Ledger, protected innovations |
Ghost Mode
- Can see everything
- Can read documentation
- Cannot vote, buy, or participate
- Prompted to “become solid” at every interaction
Solid Mode
- Full participation
- Voting rights
- Economic activity
- Community membership
Related Documents
| Document | Relevance |
|---|---|
| Fly on the Wall | Public transparency |
| Patent Bags | Filing documentation |
| Innovation Tracking | Status of all innovations |
“Every idea is recorded. Every contribution is attributed. Forever.”