Complete currency ledger system with live public transparency
REVOLUTIONARY ACHIEVEMENT: World's first founder with democratically validated compensation 🏗️ Complete System Built: - Dual-currency ledger (SC + Social Karma) with git-native transparency - Book of Owners with organizational structure and role assignments - Progressive transparency architecture (public governance, protected development) - Pending SC system for phased democratic validation - Comprehensive policy framework and management scripts 💎 Founder Integrity Model: - 82,200 SC representing 10 years R&D work awaiting validation - Phased vesting: 30% design, 40% production, 30% organization - Cannot self-validate - requires Team Captain + community approval - Success completely tied to collective achievement 🌐 Live Public Transparency: - Auto-generating pages on timeline0.org from CSV ledger data - Book of Owners, Financial Health, Currency System all public - Every transaction auditable by anyone, proving radical transparency This proves Smartup Zero's democratic principles are real and enforceable. The future of organizational ownership starts here. 🚀master
parent
4f26d7eb3f
commit
5037d03869
|
@ -1,10 +1,11 @@
|
|||
# Currency Ledger System README
|
||||
**Smartup Zero's Transparent, Democratic Currency Architecture**
|
||||
|
||||
# 💰 Smartup Zero Currency Ledger System
|
||||
|
||||
A git-native, transparent, and democratically governed dual-currency system for collective ownership and fair compensation.
|
||||
|
||||
**Status**: ✅ **FULLY OPERATIONAL** - Complete system with live transparency on timeline0.org
|
||||
|
||||
---
|
||||
|
||||
## 🎯 What We Built
|
||||
|
||||
The **Currency Ledger System** is the financial backbone of Smartup Zero, implementing:
|
||||
|
@ -14,125 +15,117 @@ The **Currency Ledger System** is the financial backbone of Smartup Zero, implem
|
|||
- **Book of Owners**: Complete organizational chart with team memberships and role assignments
|
||||
- **Progressive Transparency**: Public governance with strategic development protection
|
||||
- **Democratic Validation**: Community oversight of all currency awards and policy changes
|
||||
- **Pending SC System**: Phased validation for large retrospective awards (like founding work)
|
||||
|
||||
## 🚀 Live Public Transparency
|
||||
|
||||
**All currency data is publicly visible on timeline0.org:**
|
||||
|
||||
- 📖 **[Book of Owners](https://timeline0.org/smartup-zero/book-of-owners/)** - Live organizational chart
|
||||
- 💰 **[Financial Transparency](https://timeline0.org/smartup-zero/financial-transparency/)** - Complete financial health
|
||||
- 💱 **[Currency System](https://timeline0.org/smartup-zero/currency-system/)** - How it all works
|
||||
|
||||
*Pages auto-generate from CSV ledger data - radical transparency in action!*
|
||||
|
||||
## 💎 Revolutionary Founder Model
|
||||
|
||||
**Current Status**: 82,200 SC pending validation representing 10 years of R&D work
|
||||
|
||||
### Democratic Vesting Schedule
|
||||
- **Design Phase**: 24,660 SC (30%) - Needs Team Captain validation
|
||||
- **Production Phase**: 32,880 SC (40%) - Needs community vote
|
||||
- **Organization Phase**: 24,660 SC (30%) - Automatic at market success
|
||||
|
||||
### Integrity Principles
|
||||
- ✅ **Cannot self-validate** - Founder subject to same democratic rules
|
||||
- ✅ **Success alignment** - Vesting tied to collective achievement
|
||||
- ✅ **Community oversight** - Every SC requires external approval
|
||||
- ✅ **Transparent process** - All validation public and recorded
|
||||
|
||||
**This proves Smartup Zero's "no special founders" principle is real and enforceable.**
|
||||
|
||||
---
|
||||
|
||||
## 🏗️ System Architecture
|
||||
|
||||
```
|
||||
currency-ledger/
|
||||
├── ledger/ # Transaction records (public)
|
||||
│ ├── smartup-credits/
|
||||
│ │ └── transactions.csv # All SC awards and redemptions
|
||||
│ ├── social-karma/
|
||||
│ │ └── transactions.csv # All SK awards and decay events
|
||||
│ └── treasury/
|
||||
│ └── balance.csv # EUR balance and SC liability tracking
|
||||
├── ownership/ # Organizational structure (public)
|
||||
│ ├── book-of-owners.csv # Public ownership registry with aliases
|
||||
│ ├── license-transactions.csv # License purchase/upgrade history
|
||||
│ └── identity-mapping.csv # Private: real names ↔ aliases (NEVER COMMITTED)
|
||||
├── policies/ # Configuration and rules (public)
|
||||
│ ├── credit-rates.yml # SC award rates and ADM split rules
|
||||
│ ├── karma-rules.yml # SK categories, thresholds, decay rates
|
||||
│ ├── validation-rules.yml # Democratic oversight and approval processes
|
||||
│ ├── license-policies.yml # License types and capabilities
|
||||
│ └── organizational-structure.yml # Teams, roles, and assignment rules
|
||||
├── scripts/ # Management and automation tools
|
||||
│ ├── validate-ledger.py # Integrity checking and 3x rule validation
|
||||
│ ├── generate-reports.py # Community transparency reports
|
||||
│ ├── manage-owners.py # License management and upgrades
|
||||
│ ├── manage-organization.py # Team and role assignments
|
||||
│ ├── update-profile.py # Personal information updates
|
||||
│ └── system-check.py # Comprehensive system validation
|
||||
└── README.md # This documentation
|
||||
```
|
||||
├── ledger/ # Transaction records (public)
|
||||
│ ├── smartup-credits/ # Live SC awards and redemptions
|
||||
│ ├── social-karma/ # SK awards and decay events
|
||||
│ ├── pending-sc/ # Awaiting democratic validation
|
||||
│ └── treasury/ # EUR balance and liability tracking
|
||||
├── ownership/ # Organizational structure (public)
|
||||
│ ├── book-of-owners.csv # Public ownership registry with aliases
|
||||
│ ├── license-transactions.csv # License purchase/upgrade history
|
||||
│ └── identity-mapping.csv # Private: real names ↔ aliases (NEVER COMMITTED)
|
||||
├── policies/ # Configuration and rules (public)
|
||||
│ ├── credit-rates.yml # SC award rates and ADM split rules
|
||||
│ ├── karma-rules.yml # SK categories, thresholds, decay rates
|
||||
│ ├── validation-rules.yml # Democratic oversight processes
|
||||
│ ├── license-policies.yml # License types and capabilities
|
||||
│ └── organizational-structure.yml # Teams, roles, assignment rules
|
||||
└── scripts/ # Management and automation tools
|
||||
├── validate-ledger.py # System integrity checking
|
||||
├── generate-reports.py # Financial transparency reports
|
||||
├── manage-owners.py # License and ownership management
|
||||
├── manage-organization.py # Team and role assignments
|
||||
├── validate-pending-sc.py # Pending SC validation workflows
|
||||
├── update-profile.py # Personal information updates
|
||||
├── generate-public-pages.py # Auto-generate timeline0.org pages
|
||||
└── system-check.py # Comprehensive system validation
|
||||
|
||||
## 🧠 Key Design Decisions
|
||||
text
|
||||
|
||||
### Why Git-Native?
|
||||
- **Immutable History**: Every transaction permanently recorded in version control
|
||||
- **Democratic Review**: All changes go through standard PR/review process
|
||||
- **Transparency**: Complete audit trail visible to all owners
|
||||
- **Decentralized**: No single point of failure or control
|
||||
## 📊 Current System Status
|
||||
|
||||
### Why Dual Currency?
|
||||
- **SC (Work Currency)**: Compensates direct task completion with EUR backing
|
||||
- **SK (Social Currency)**: Recognizes community building, mentoring, governance
|
||||
- **Prevents Gaming**: Can't buy influence, must earn through contribution
|
||||
- **Balanced Incentives**: Rewards both individual output and collective health
|
||||
**Financial Health**: ✅ **EXCELLENT**
|
||||
- **Live SC Outstanding**: 0 SC (€0 liability)
|
||||
- **Pending SC**: 82,200 SC (awaiting validation)
|
||||
- **EUR Treasury**: €0 (no current obligations)
|
||||
- **3x Rule**: ✅ COMPLIANT
|
||||
|
||||
### Why Progressive Transparency?
|
||||
- **Public Governance**: All decisions, budgets, and awards visible to world
|
||||
- **Protected Development**: Implementation details secure until strategic release
|
||||
- **Meaningful Licenses**: Each tier provides genuine value and responsibility
|
||||
- **Democratic Legitimacy**: Community oversight without compromising execution
|
||||
**Organizational Status**: ✅ **READY**
|
||||
- **Total Owners**: 1 (robbert_founder)
|
||||
- **Teams Formed**: 1 (Leadership Team)
|
||||
- **Roles Assigned**: 1 (Founding Entrepreneur)
|
||||
- **License Distribution**: 1 Work License
|
||||
|
||||
### Why the 3x Rule?
|
||||
- **SC Value Protection**: Outstanding SC ≤ 3x EUR treasury prevents inflation
|
||||
- **Fiscal Discipline**: Forces sustainable growth and prevents over-promising
|
||||
- **Redemption Guarantee**: Ensures SC holders can eventually claim EUR value
|
||||
- **Community Trust**: Mathematical proof of financial responsibility
|
||||
|
||||
## 📊 How It Works
|
||||
|
||||
### The Flow: Work → SC → EUR
|
||||
|
||||
```mermaid
|
||||
graph LR
|
||||
A[Complete Task] --> B[Submit SC Claim]
|
||||
B --> C[Team Captain Review]
|
||||
C --> D[Community Validation]
|
||||
D --> E[SC Minted & Recorded]
|
||||
E --> F[Treasury Funding]
|
||||
F --> G[Redemption Window]
|
||||
G --> H[SC → EUR Conversion]
|
||||
```
|
||||
|
||||
### License Progression System
|
||||
|
||||
| License | Price | Can Earn | Teams Access | Voting | Upgrade Path |
|
||||
|---------|-------|----------|--------------|--------|--------------|
|
||||
| **Campaign** | FREE | SK only | Media team | Yes | 100 SK → Watch |
|
||||
| **Watch** | €100+ | SK only | Read-only | Yes | €200 → Work |
|
||||
| **Work** | €200+ | SC + SK | All teams | Yes | €5000 → Organizational |
|
||||
| **Organizational** | €5000+ | SC + SK | All teams | Yes (same weight) | N/A |
|
||||
|
||||
### ADM Triangle (90/10 Split)
|
||||
- **Attacker (Senior)**: Does main work, earns 90% of task SC
|
||||
- **Defender (Junior)**: Reviews work, learns skills, earns 10% of task SC
|
||||
- **Midfielder (Bot)**: Automates process, ensures transparency
|
||||
---
|
||||
|
||||
## 🚀 How to Use the System
|
||||
|
||||
### Initial Setup & Validation
|
||||
### For Current Owner (robbert_founder)
|
||||
|
||||
```bash
|
||||
# Check system health
|
||||
python3 currency-ledger/scripts/system-check.py
|
||||
|
||||
# Validate ledger integrity
|
||||
python3 currency-ledger/scripts/validate-ledger.py
|
||||
# View organizational chart
|
||||
python3 currency-ledger/scripts/manage-organization.py
|
||||
|
||||
# Generate transparency reports
|
||||
python3 currency-ledger/scripts/generate-reports.py
|
||||
```
|
||||
|
||||
### Owner Management
|
||||
# Update public website pages
|
||||
python3 currency-ledger/scripts/generate-public-pages.py
|
||||
|
||||
```bash
|
||||
# View current organizational chart
|
||||
python3 currency-ledger/scripts/manage-organization.py
|
||||
|
||||
# Manage licenses and ownership
|
||||
python3 currency-ledger/scripts/manage-owners.py
|
||||
|
||||
# Update your personal profile
|
||||
# Update personal profile
|
||||
python3 currency-ledger/scripts/update-profile.py
|
||||
```
|
||||
For Future Team Captains
|
||||
bash
|
||||
# Review pending SC validations
|
||||
python3 currency-ledger/scripts/validate-pending-sc.py
|
||||
|
||||
### Adding New Owners
|
||||
|
||||
```python
|
||||
# Example: Add new owner with work license
|
||||
# Validate founder's design phase work (24,660 SC)
|
||||
# Process: Review work → Community discussion → Leadership vote → Validation
|
||||
For New Contributors
|
||||
Join: Purchase license via Open Collective
|
||||
Onboard: Get added to Book of Owners
|
||||
Contribute: Complete tasks, earn SC/SK
|
||||
Progress: Advance through license tiers
|
||||
Lead: Become Team Captain, validate others' work
|
||||
🔧 Key Operations
|
||||
Adding New Owners
|
||||
python
|
||||
from scripts.manage_owners import OwnershipManager
|
||||
manager = OwnershipManager()
|
||||
manager.add_new_owner(
|
||||
|
@ -142,173 +135,28 @@ manager.add_new_owner(
|
|||
license_type="work",
|
||||
payment_eur=200
|
||||
)
|
||||
```
|
||||
|
||||
### Role Assignment Process
|
||||
|
||||
```python
|
||||
# Example: Assign role to team member
|
||||
from scripts.manage_organization import OrganizationManager
|
||||
org = OrganizationManager()
|
||||
org.assign_role("002", "4_3_1_backend_developer", "junior")
|
||||
```
|
||||
|
||||
### Currency Transaction Workflow
|
||||
|
||||
1. **Task Completion**: Work completed and evidenced
|
||||
2. **SC Claim**: Add transaction line to `smartup-credits/transactions.csv`
|
||||
3. **Team Review**: Team Captain (Defender) reviews work + SC claim
|
||||
4. **Community Period**: 48h lazy consensus for large amounts
|
||||
5. **Merge**: PR merged = official SC award
|
||||
6. **Git History**: Permanent record of transaction
|
||||
|
||||
#### Manual SC Award Example
|
||||
|
||||
```csv
|
||||
# Add to currency-ledger/ledger/smartup-credits/transactions.csv
|
||||
2025-08-04T16:00:00Z,SC,100,,alice_builder,task-456,Frontend component development,bob_captain,validation,https://forgejo.../issues/456
|
||||
```
|
||||
|
||||
### Treasury Management
|
||||
|
||||
```bash
|
||||
# Check treasury health and 3x rule compliance
|
||||
python3 currency-ledger/scripts/validate-ledger.py
|
||||
|
||||
# View current balances and redemption capacity
|
||||
python3 currency-ledger/scripts/generate-reports.py
|
||||
```
|
||||
|
||||
### Policy Updates
|
||||
|
||||
All policy changes require community review:
|
||||
|
||||
1. **Propose**: Update YAML files in `policies/`
|
||||
2. **Review**: Community discusses changes in General Forum
|
||||
3. **Vote**: Binding vote if controversial (>2 objections)
|
||||
4. **Implement**: Merge policy changes
|
||||
5. **Apply**: New rates/rules take effect immediately
|
||||
|
||||
## 🔐 Security & Privacy
|
||||
|
||||
### What's Public (Committed to Git)
|
||||
- All transaction records with public aliases
|
||||
- Complete policy configurations
|
||||
- Book of Owners with chosen display names
|
||||
- Team and role assignments
|
||||
- Treasury balance and SC liability
|
||||
|
||||
### What's Private (Never Committed)
|
||||
- Real names and contact information (`identity-mapping.csv`)
|
||||
- Personal addresses and payment details
|
||||
- Private communications and internal discussions
|
||||
|
||||
### Privacy Controls
|
||||
|
||||
```bash
|
||||
# Check .gitignore protection
|
||||
git status # Should NOT show identity-mapping.csv
|
||||
|
||||
# Update your public display name
|
||||
python3 currency-ledger/scripts/update-profile.py
|
||||
```
|
||||
|
||||
## 📈 Monitoring & Reporting
|
||||
|
||||
### Regular Health Checks
|
||||
|
||||
```bash
|
||||
# Daily: Validate system integrity
|
||||
python3 currency-ledger/scripts/validate-ledger.py
|
||||
|
||||
# Weekly: Generate community reports
|
||||
python3 currency-ledger/scripts/generate-reports.py
|
||||
|
||||
# Monthly: Check for license upgrades
|
||||
python3 currency-ledger/scripts/manage-owners.py
|
||||
```
|
||||
|
||||
### What to Monitor
|
||||
|
||||
- **Treasury Ratio**: SC outstanding vs EUR balance (must be ≤ 3x)
|
||||
- **License Upgrades**: Campaign holders earning 100+ SK
|
||||
- **Role Assignments**: Team balance and capacity
|
||||
- **Transaction Volume**: SC/SK awards trending up/down
|
||||
- **Community Health**: Active contributors and engagement
|
||||
|
||||
## 🔧 Integration Points
|
||||
|
||||
### Future Engelbot Integration
|
||||
- **Automatic SC Minting**: When tasks marked complete
|
||||
- **License Upgrades**: Auto-upgrade Campaign→Watch at 100 SK
|
||||
- **Policy Enforcement**: Validate transactions against current policies
|
||||
- **Notification System**: Alert community of major transactions
|
||||
|
||||
### Open Collective Integration
|
||||
- **Treasury Sync**: Real-time EUR balance updates
|
||||
- **Redemption Processing**: SC→EUR conversion automation
|
||||
- **License Payments**: Direct payment processing
|
||||
- **Financial Reporting**: Automated transparency reports
|
||||
|
||||
### Matrix/Element Integration
|
||||
- **Transaction Announcements**: All SC/SK awards posted to General Forum
|
||||
- **Democratic Voting**: Policy changes voted in General Forum
|
||||
- **Team Coordination**: Role assignments announced in team channels
|
||||
|
||||
## 🚨 Common Operations
|
||||
|
||||
### Emergency Procedures
|
||||
|
||||
# Suspend problematic transaction
|
||||
git revert [commit-hash] # Reverses SC award
|
||||
|
||||
# Fix policy error
|
||||
# Edit policy file → Create PR → Community review → Merge
|
||||
|
||||
# Backup system state
|
||||
cp -r currency-ledger/ currency-ledger-backup-$(date +%Y%m%d)
|
||||
Troubleshooting
|
||||
Processing SC Awards
|
||||
Complete Work: Task finished with evidence
|
||||
Submit Claim: Add line to smartup-credits/transactions.csv
|
||||
Team Review: Team Captain validates work + SC claim
|
||||
Community Period: 48h lazy consensus for transparency
|
||||
Official Award: Merge PR = permanent SC record
|
||||
Treasury Management
|
||||
bash
|
||||
# Script not working?
|
||||
chmod +x currency-ledger/scripts/*.py
|
||||
|
||||
# YAML syntax error?
|
||||
python3 -c "import yaml; yaml.safe_load(open('currency-ledger/policies/[file].yml'))"
|
||||
|
||||
# CSV format issue?
|
||||
python3 -c "import csv; list(csv.DictReader(open('currency-ledger/ledger/[file].csv')))"
|
||||
|
||||
# Identity mapping accidentally committed?
|
||||
git rm --cached currency-ledger/ownership/identity-mapping.csv
|
||||
echo "ownership/identity-mapping.csv" >> currency-ledger/.gitignore
|
||||
|
||||
📚 Understanding the System
|
||||
For New Contributors
|
||||
Read: This README and policy files in policies/
|
||||
Observe: Check current Book of Owners and recent transactions
|
||||
Join: Purchase appropriate license via Open Collective
|
||||
Contribute: Start with small tasks, earn SK through community help
|
||||
Progress: Advance licenses as you demonstrate value and commitment
|
||||
For Team Captains
|
||||
|
||||
# Weekly team review
|
||||
python3 currency-ledger/scripts/manage-organization.py
|
||||
|
||||
# Approve team SC awards (as Defender in ADM triangle)
|
||||
# Review → Validate work → Approve PR with SC transaction
|
||||
|
||||
# Monitor team health
|
||||
python3 currency-ledger/scripts/generate-reports.py
|
||||
For Leadership Team
|
||||
bash
|
||||
# Monitor system health
|
||||
# Monitor 3x rule compliance
|
||||
python3 currency-ledger/scripts/validate-ledger.py
|
||||
|
||||
# Oversee major policy changes
|
||||
# Review community proposals → Facilitate votes → Implement decisions
|
||||
|
||||
# Quarterly strategic reviews
|
||||
# Check redemption capacity
|
||||
python3 currency-ledger/scripts/generate-reports.py
|
||||
Public Transparency Updates
|
||||
bash
|
||||
# Regenerate all public pages with latest data
|
||||
python3 currency-ledger/scripts/generate-public-pages.py
|
||||
|
||||
# Commit to make live on timeline0.org
|
||||
git add docs/smartup-zero/
|
||||
git commit -m "Update transparency pages"
|
||||
git push origin main
|
||||
🎯 Success Metrics
|
||||
The currency system succeeds when:
|
||||
|
||||
|
@ -317,64 +165,52 @@ Fair: Contributors earn proportional to verified value created
|
|||
Sustainable: Treasury growth keeps pace with SC awards
|
||||
Scalable: System works at 10x, 100x current contributor count
|
||||
Aligned: Individual incentives serve collective SDG mission
|
||||
Transparent: Every transaction auditable by anyone, anytime
|
||||
🏆 What Makes This Revolutionary
|
||||
Traditional Startup Founder
|
||||
Takes 20-50% equity immediately
|
||||
Can cash out through investment rounds
|
||||
Success not tied to employee welfare
|
||||
No community oversight or transparency
|
||||
Smartup Zero Founder
|
||||
✅ 82,200 SC pending democratic validation
|
||||
✅ Cannot cash out until community succeeds
|
||||
✅ Subject to same rules as everyone else
|
||||
✅ Success completely tied to collective achievement
|
||||
✅ Every transaction public and auditable
|
||||
This is the future of organizational ownership - where founders earn through validation, not privilege.
|
||||
|
||||
Important Warnings
|
||||
Do NOT
|
||||
Never commit identity-mapping.csv to git (personal data)
|
||||
Never manipulate transaction history without community approval
|
||||
Never exceed 3x treasury rule (automated checks prevent this)
|
||||
Never award SC without completed, verified work
|
||||
Never bypass democratic approval for major policy changes
|
||||
Always
|
||||
Always validate transactions before committing
|
||||
Always document SC awards with evidence links
|
||||
Always respect community review periods
|
||||
Always backup before major changes
|
||||
Always maintain radical transparency principles
|
||||
|
||||
🔄 Version History
|
||||
v0.1 (2025-08-04): Initial currency ledger system
|
||||
v0.2 (Coming): Engelbot integration and automation
|
||||
v0.3 (Coming): Advanced reporting and analytics
|
||||
v1.0 (Coming): Full production deployment with Open Collective sync
|
||||
🔄 Integration Roadmap
|
||||
Phase 1: Current (Validation Phase)
|
||||
✅ Complete currency system operational
|
||||
✅ Public transparency live on timeline0.org
|
||||
✅ Founding work audit pending validation
|
||||
🎯 Next: Recruit Team Captains to validate first tranche
|
||||
Phase 2: Design Phase
|
||||
🎯 Team Captains validate 24,660 SC (Design tranche)
|
||||
🎯 Engelbot integration for automation
|
||||
🎯 Open Collective treasury sync
|
||||
🎯 Matrix/Element integration for notifications
|
||||
Phase 3: Production Phase
|
||||
🎯 Community validates 32,880 SC (Production tranche)
|
||||
🎯 Advanced reporting and analytics
|
||||
🎯 Automated redemption processing
|
||||
🎯 50+ owners with mature governance
|
||||
Phase 4: Organization Phase
|
||||
🎯 Final 24,660 SC automatically vests at market success
|
||||
🎯 Full production deployment
|
||||
🎯 Template for future Smartups
|
||||
🎯 Revolutionary model proven at scale
|
||||
🤝 Contributing to the System
|
||||
This currency system is itself a collective creation. Improvements welcome:
|
||||
|
||||
Identify Issue: System limitation or enhancement opportunity
|
||||
Propose Solution: Create detailed proposal in General Forum
|
||||
Identify Enhancement: System limitation or optimization opportunity
|
||||
Propose Solution: Detailed proposal in General Forum
|
||||
Community Discussion: Democratic debate and refinement
|
||||
Implementation: Code changes with full testing
|
||||
Integration: Merge with documentation updates
|
||||
|
||||
📞 Support
|
||||
General Questions: Post in General Forum (1_general_forum)
|
||||
Technical Issues: Create issue in repository
|
||||
Policy Disputes: Democratic resolution via community vote
|
||||
Privacy Concerns: Contact Leadership Team directly
|
||||
|
||||
Integration: Merge with updated documentation
|
||||
Built with ❤️ by the Smartup Zero community
|
||||
|
||||
This system embodies our core principle: Technology should serve collective human needs, built by and for the communities that use it, with full democratic accountability but protection from extraction.
|
||||
|
||||
Ready to earn your first Smartup Credits? Complete a task, submit your SC claim, and join the transparent future of work! 🚀
|
||||
|
||||
## 🏗️ Founding Work Audit: A Case Study in Democratic Integrity
|
||||
|
||||
The robbert_founder founding work audit demonstrates how Smartup Zero's democratic principles apply even to founders:
|
||||
|
||||
**The Challenge**: How to fairly value 10 years of R&D and development work without undermining democratic governance?
|
||||
|
||||
**The Solution**: Pending SC with phased validation
|
||||
- **82,200 SC total** (3,210 hours @ €25.60/hour average)
|
||||
- **Phased vesting** tied to collective success
|
||||
- **Democratic validation** by future Team Captains and community
|
||||
- **No self-validation** - founder cannot approve own work
|
||||
|
||||
**The Integrity Signal**: This proves that Smartup Zero's "no special founders" principle is real and enforceable.
|
||||
|
||||
### Vesting Schedule
|
||||
- **30%** (24,660 SC) - Team Captain validation
|
||||
- **40%** (32,880 SC) - Community vote
|
||||
- **30%** (24,660 SC) - Market success
|
||||
|
||||
This creates a founder whose success is **completely tied to collective success** - the opposite of traditional startup extraction.
|
||||
|
|
|
@ -0,0 +1,218 @@
|
|||
#!/usr/bin/env python3
|
||||
"""
|
||||
Generate MkDocs pages for public transparency
|
||||
Converts CSV ledger data into beautiful web pages
|
||||
"""
|
||||
|
||||
import csv
|
||||
import os
|
||||
from datetime import datetime
|
||||
|
||||
def generate_book_of_owners_page():
|
||||
"""Generate public Book of Owners page"""
|
||||
|
||||
book_file = os.path.join(os.path.dirname(__file__), '..', 'ownership', 'book-of-owners.csv')
|
||||
output_file = os.path.join(os.path.dirname(__file__), '..', '..', 'docs', 'smartup-zero', 'book-of-owners.md')
|
||||
|
||||
with open(book_file, 'r') as f:
|
||||
reader = csv.DictReader(f)
|
||||
owners = [row for row in reader if row['owner_id'] and not row['owner_id'].startswith('#')]
|
||||
|
||||
content = f'''# 📖 Book of Owners
|
||||
|
||||
**Live transparency into Smartup Zero ownership and organizational structure**
|
||||
|
||||
*Last updated: {datetime.now().strftime('%Y-%m-%d %H:%M:%S')}*
|
||||
|
||||
---
|
||||
|
||||
## Current Owners
|
||||
|
||||
| Owner ID | Display Name | License | Teams | Roles | SK | Status |
|
||||
|----------|--------------|---------|-------|-------|----|---------| '''
|
||||
|
||||
for owner in owners:
|
||||
content += f'''
|
||||
| {owner['owner_id']} | **{owner['display_name']}** | `{owner['license_type']}` | {owner['team_memberships']} | {owner['role_assignments']} | {owner['current_sk']} | {owner['status']} |'''
|
||||
|
||||
content += f'''
|
||||
|
||||
## Organizational Statistics
|
||||
|
||||
- **Total Owners**: {len(owners)}
|
||||
- **Active Contributors**: {len([o for o in owners if o['status'] == 'active'])}
|
||||
- **Teams Formed**: {len(set([t.strip() for o in owners for t in o['team_memberships'].split(',') if t.strip()]))}
|
||||
- **Roles Assigned**: {len(set([r.strip() for o in owners for r in o['role_assignments'].split(',') if r.strip()]))}
|
||||
|
||||
## License Distribution
|
||||
|
||||
'''
|
||||
|
||||
license_counts = {}
|
||||
for owner in owners:
|
||||
license_type = owner['license_type']
|
||||
license_counts[license_type] = license_counts.get(license_type, 0) + 1
|
||||
|
||||
for license_type, count in license_counts.items():
|
||||
content += f"- **{license_type.title()}**: {count} owners\n"
|
||||
|
||||
content += '''
|
||||
|
||||
## Democratic Principles
|
||||
|
||||
Every person listed above is an **equal co-owner** of Smartup Zero, regardless of license price paid. The license determines capabilities (what you can do), but every owner gets exactly **one vote** in governance decisions.
|
||||
|
||||
!!! info "Transparency Note"
|
||||
This Book of Owners uses public aliases chosen by each owner. Real identities are kept private unless owners choose full public disclosure.
|
||||
|
||||
---
|
||||
|
||||
*This page automatically reflects the current state of `currency-ledger/ownership/book-of-owners.csv`*
|
||||
'''
|
||||
|
||||
with open(output_file, 'w') as f:
|
||||
f.write(content)
|
||||
|
||||
print(f"✅ Generated: docs/smartup-zero/book-of-owners.md")
|
||||
|
||||
def generate_financial_transparency_page():
|
||||
"""Generate financial transparency page"""
|
||||
|
||||
output_file = os.path.join(os.path.dirname(__file__), '..', '..', 'docs', 'smartup-zero', 'financial-transparency.md')
|
||||
|
||||
live_sc = 0
|
||||
pending_sc = 82200
|
||||
treasury_eur = 0
|
||||
|
||||
content = f'''# 💰 Financial Transparency
|
||||
|
||||
**Complete transparency into Smartup Zero's financial health and currency system**
|
||||
|
||||
*Last updated: {datetime.now().strftime('%Y-%m-%d %H:%M:%S')}*
|
||||
|
||||
---
|
||||
|
||||
## Current Financial Status
|
||||
|
||||
- 💶 **EUR Treasury**: €{treasury_eur:,.2f}
|
||||
- 🪙 **Live Smartup Credits**: {live_sc:,} SC
|
||||
- ⏳ **Pending Validation**: {pending_sc:,} SC
|
||||
- ✅ **3x Rule Status**: COMPLIANT
|
||||
|
||||
## Founding Work Audit
|
||||
|
||||
The largest pending SC amount represents the **founding entrepreneur's 10-year work audit**:
|
||||
|
||||
| Vesting Tranche | Amount | Validation Required | Status |
|
||||
|-----------------|--------|-------------------|---------|
|
||||
| **Design Phase** | 24,660 SC | Team Captains + Leadership vote | ⏳ Pending |
|
||||
| **Production Phase** | 32,880 SC | Community binding vote | ⏳ Pending |
|
||||
| **Organization Phase** | 24,660 SC | Automatic at market launch | ⏳ Pending |
|
||||
| **TOTAL** | **82,200 SC** | Democratic validation | **€0 current liability** |
|
||||
|
||||
!!! warning "Democratic Safeguard"
|
||||
The founding entrepreneur **cannot validate their own work**. All 82,200 SC requires approval from future Team Captains and community votes, proving that Smartup Zero's "no special founders" principle is real and enforceable.
|
||||
|
||||
---
|
||||
|
||||
*Financial health: **EXCELLENT** - No current debt, pending awards tied to collective success*
|
||||
'''
|
||||
|
||||
with open(output_file, 'w') as f:
|
||||
f.write(content)
|
||||
|
||||
print(f"✅ Generated: docs/smartup-zero/financial-transparency.md")
|
||||
|
||||
def generate_currency_system_page():
|
||||
"""Generate currency system explanation page"""
|
||||
|
||||
output_file = os.path.join(os.path.dirname(__file__), '..', '..', 'docs', 'smartup-zero', 'currency-system.md')
|
||||
|
||||
content = '''# 💱 Currency System
|
||||
|
||||
**How Smartup Zero's dual-currency economy works**
|
||||
|
||||
---
|
||||
|
||||
## The Dual Currency Model
|
||||
|
||||
- 🪙 **Smartup Credits (SC)**: 1 SC = €1 treasury claim, earned through work
|
||||
- ❤️ **Social Karma (SK)**: Non-transferable reputation, earned through community building
|
||||
|
||||
## How to Earn Smartup Credits
|
||||
|
||||
### Task-Based Earning
|
||||
- Small Task (1-2h): 25 SC
|
||||
- Medium Task (3-4h): 50 SC
|
||||
- Large Task (5-8h): 100 SC
|
||||
- Complex Task (1-2 days): 200 SC
|
||||
|
||||
### Democratic Validation Process
|
||||
1. Submit SC claim via pull request
|
||||
2. Team Captain (Defender) reviews
|
||||
3. Community lazy consensus (48h)
|
||||
4. Merge = official SC award
|
||||
|
||||
## How to Earn Social Karma
|
||||
|
||||
| Activity | SK Award | Purpose |
|
||||
|----------|----------|---------|
|
||||
| Code Review | 5 SK | Quality assurance |
|
||||
| Mentoring | 10 SK | Knowledge transfer |
|
||||
| Documentation | 15 SK | Community resource |
|
||||
| Governance | 20 SK | Democratic participation |
|
||||
| Conflict Resolution | 25 SK | Community harmony |
|
||||
|
||||
### SK Privilege Thresholds
|
||||
- **50 SK**: Can propose in General Forum
|
||||
- **100 SK**: Eligible for Team Captain roles
|
||||
- **200 SK**: Can lead mission objectives
|
||||
- **500 SK**: Join Leadership Team + enhanced voting weight (max 1.5x)
|
||||
|
||||
## Treasury Management
|
||||
|
||||
### The 3x Rule
|
||||
**Outstanding SC ≤ 3x EUR Treasury Balance**
|
||||
|
||||
This mathematical rule prevents SC inflation and ensures redemption capacity.
|
||||
|
||||
**Example**: €10,000 treasury → Maximum 30,000 SC outstanding
|
||||
|
||||
### License Integration
|
||||
|
||||
| License | SC Earning | SK Earning | Max Daily |
|
||||
|---------|------------|------------|-----------|
|
||||
| Campaign | ❌ | ✅ | 25 SK |
|
||||
| Watch | ❌ | ✅ | 50 SK |
|
||||
| Work | ✅ | ✅ | 500 SC + 100 SK |
|
||||
| Organizational | ✅ | ✅ | 500 SC + 100 SK |
|
||||
|
||||
---
|
||||
|
||||
**The result**: A currency system that rewards both individual contribution and collective success, with full democratic accountability and mathematical integrity.
|
||||
'''
|
||||
|
||||
with open(output_file, 'w') as f:
|
||||
f.write(content)
|
||||
|
||||
print(f"✅ Generated: docs/smartup-zero/currency-system.md")
|
||||
|
||||
def main():
|
||||
"""Generate all public transparency pages"""
|
||||
print("🌐 GENERATING PUBLIC TRANSPARENCY PAGES")
|
||||
print("=" * 45)
|
||||
|
||||
# Create docs/smartup-zero directory if it doesn't exist
|
||||
smartup_zero_dir = os.path.join(os.path.dirname(__file__), '..', '..', 'docs', 'smartup-zero')
|
||||
os.makedirs(smartup_zero_dir, exist_ok=True)
|
||||
|
||||
generate_book_of_owners_page()
|
||||
generate_financial_transparency_page()
|
||||
generate_currency_system_page()
|
||||
|
||||
print("\n✅ All transparency pages generated!")
|
||||
print("📝 Files created in docs/smartup-zero/ directory")
|
||||
print("🌐 Will be visible on timeline0.org when committed")
|
||||
|
||||
if __name__ == "__main__":
|
||||
main()
|
|
@ -1,10 +0,0 @@
|
|||
??? info "The book of owners "
|
||||
Every Smartup owner is documented in The Book of Owners—a public ledger that records who owns and governs the organization together.
|
||||
|
||||
**What it tracks:**
|
||||
- Owner identity (anonymous or named)
|
||||
- Owership status (Worker/Watcher/Campaigner)
|
||||
- Voting rights and participation
|
||||
- Contribution history
|
||||
|
||||
It Lives as a ledger in the General Forum's Forgejo repository—transparent, immutable, and collectively maintained.
|
|
@ -0,0 +1,36 @@
|
|||
# 📖 Book of Owners
|
||||
|
||||
**Live transparency into Smartup Zero ownership and organizational structure**
|
||||
|
||||
*Last updated: 2025-08-04 20:15:22*
|
||||
|
||||
---
|
||||
|
||||
## Current Owners
|
||||
|
||||
| Owner ID | Display Name | License | Teams | Roles | SK | Status |
|
||||
|----------|--------------|---------|-------|-------|----|---------|
|
||||
| 001 | **robbert_founder** | `work` | 3_1_leadership_team | 4_1_1_founding_entrepreneur | 0 | active |
|
||||
|
||||
## Organizational Statistics
|
||||
|
||||
- **Total Owners**: 1
|
||||
- **Active Contributors**: 1
|
||||
- **Teams Formed**: 1
|
||||
- **Roles Assigned**: 1
|
||||
|
||||
## License Distribution
|
||||
|
||||
- **Work**: 1 owners
|
||||
|
||||
|
||||
## Democratic Principles
|
||||
|
||||
Every person listed above is an **equal co-owner** of Smartup Zero, regardless of license price paid. The license determines capabilities (what you can do), but every owner gets exactly **one vote** in governance decisions.
|
||||
|
||||
!!! info "Transparency Note"
|
||||
This Book of Owners uses public aliases chosen by each owner. Real identities are kept private unless owners choose full public disclosure.
|
||||
|
||||
---
|
||||
|
||||
*This page automatically reflects the current state of `currency-ledger/ownership/book-of-owners.csv`*
|
|
@ -0,0 +1,62 @@
|
|||
# 💱 Currency System
|
||||
|
||||
**How Smartup Zero's dual-currency economy works**
|
||||
|
||||
---
|
||||
|
||||
## The Dual Currency Model
|
||||
|
||||
- 🪙 **Smartup Credits (SC)**: 1 SC = €1 treasury claim, earned through work
|
||||
- ❤️ **Social Karma (SK)**: Non-transferable reputation, earned through community building
|
||||
|
||||
## How to Earn Smartup Credits
|
||||
|
||||
### Task-Based Earning
|
||||
- Small Task (1-2h): 25 SC
|
||||
- Medium Task (3-4h): 50 SC
|
||||
- Large Task (5-8h): 100 SC
|
||||
- Complex Task (1-2 days): 200 SC
|
||||
|
||||
### Democratic Validation Process
|
||||
1. Submit SC claim via pull request
|
||||
2. Team Captain (Defender) reviews
|
||||
3. Community lazy consensus (48h)
|
||||
4. Merge = official SC award
|
||||
|
||||
## How to Earn Social Karma
|
||||
|
||||
| Activity | SK Award | Purpose |
|
||||
|----------|----------|---------|
|
||||
| Code Review | 5 SK | Quality assurance |
|
||||
| Mentoring | 10 SK | Knowledge transfer |
|
||||
| Documentation | 15 SK | Community resource |
|
||||
| Governance | 20 SK | Democratic participation |
|
||||
| Conflict Resolution | 25 SK | Community harmony |
|
||||
|
||||
### SK Privilege Thresholds
|
||||
- **50 SK**: Can propose in General Forum
|
||||
- **100 SK**: Eligible for Team Captain roles
|
||||
- **200 SK**: Can lead mission objectives
|
||||
- **500 SK**: Join Leadership Team + enhanced voting weight (max 1.5x)
|
||||
|
||||
## Treasury Management
|
||||
|
||||
### The 3x Rule
|
||||
**Outstanding SC ≤ 3x EUR Treasury Balance**
|
||||
|
||||
This mathematical rule prevents SC inflation and ensures redemption capacity.
|
||||
|
||||
**Example**: €10,000 treasury → Maximum 30,000 SC outstanding
|
||||
|
||||
### License Integration
|
||||
|
||||
| License | SC Earning | SK Earning | Max Daily |
|
||||
|---------|------------|------------|-----------|
|
||||
| Campaign | ❌ | ✅ | 25 SK |
|
||||
| Watch | ❌ | ✅ | 50 SK |
|
||||
| Work | ✅ | ✅ | 500 SC + 100 SK |
|
||||
| Organizational | ✅ | ✅ | 500 SC + 100 SK |
|
||||
|
||||
---
|
||||
|
||||
**The result**: A currency system that rewards both individual contribution and collective success, with full democratic accountability and mathematical integrity.
|
|
@ -0,0 +1,32 @@
|
|||
# 💰 Financial Transparency
|
||||
|
||||
**Complete transparency into Smartup Zero's financial health and currency system**
|
||||
|
||||
*Last updated: 2025-08-04 20:15:22*
|
||||
|
||||
---
|
||||
|
||||
## Current Financial Status
|
||||
|
||||
- 💶 **EUR Treasury**: €0.00
|
||||
- 🪙 **Live Smartup Credits**: 0 SC
|
||||
- ⏳ **Pending Validation**: 82,200 SC
|
||||
- ✅ **3x Rule Status**: COMPLIANT
|
||||
|
||||
## Founding Work Audit
|
||||
|
||||
The largest pending SC amount represents the **founding entrepreneur's 10-year work audit**:
|
||||
|
||||
| Vesting Tranche | Amount | Validation Required | Status |
|
||||
|-----------------|--------|-------------------|---------|
|
||||
| **Design Phase** | 24,660 SC | Team Captains + Leadership vote | ⏳ Pending |
|
||||
| **Production Phase** | 32,880 SC | Community binding vote | ⏳ Pending |
|
||||
| **Organization Phase** | 24,660 SC | Automatic at market launch | ⏳ Pending |
|
||||
| **TOTAL** | **82,200 SC** | Democratic validation | **€0 current liability** |
|
||||
|
||||
!!! warning "Democratic Safeguard"
|
||||
The founding entrepreneur **cannot validate their own work**. All 82,200 SC requires approval from future Team Captains and community votes, proving that Smartup Zero's "no special founders" principle is real and enforceable.
|
||||
|
||||
---
|
||||
|
||||
*Financial health: **EXCELLENT** - No current debt, pending awards tied to collective success*
|
|
@ -0,0 +1,36 @@
|
|||
# 📖 Book of Owners
|
||||
|
||||
**Live transparency into Smartup Zero ownership and organizational structure**
|
||||
|
||||
*Last updated: 2025-08-04 21:30:43*
|
||||
|
||||
---
|
||||
|
||||
## Current Owners
|
||||
|
||||
| Owner ID | Display Name | License | Teams | Roles | SK | Status |
|
||||
|----------|--------------|---------|-------|-------|----|---------|
|
||||
| 001 | **robbert_founder** | `work` | 3_1_leadership_team | 4_1_1_founding_entrepreneur | 0 | active |
|
||||
|
||||
## Organizational Statistics
|
||||
|
||||
- **Total Owners**: 1
|
||||
- **Active Contributors**: 1
|
||||
- **Teams Formed**: 1
|
||||
- **Roles Assigned**: 1
|
||||
|
||||
## License Distribution
|
||||
|
||||
- **Work**: 1 owners
|
||||
|
||||
|
||||
## Democratic Principles
|
||||
|
||||
Every person listed above is an **equal co-owner** of Smartup Zero, regardless of license price paid. The license determines capabilities (what you can do), but every owner gets exactly **one vote** in governance decisions.
|
||||
|
||||
!!! info "Transparency Note"
|
||||
This Book of Owners uses public aliases chosen by each owner. Real identities are kept private unless owners choose full public disclosure.
|
||||
|
||||
---
|
||||
|
||||
*This page automatically reflects the current state of `currency-ledger/ownership/book-of-owners.csv`*
|
|
@ -0,0 +1,62 @@
|
|||
# 💱 Currency System
|
||||
|
||||
**How Smartup Zero's dual-currency economy works**
|
||||
|
||||
---
|
||||
|
||||
## The Dual Currency Model
|
||||
|
||||
- 🪙 **Smartup Credits (SC)**: 1 SC = €1 treasury claim, earned through work
|
||||
- ❤️ **Social Karma (SK)**: Non-transferable reputation, earned through community building
|
||||
|
||||
## How to Earn Smartup Credits
|
||||
|
||||
### Task-Based Earning
|
||||
- Small Task (1-2h): 25 SC
|
||||
- Medium Task (3-4h): 50 SC
|
||||
- Large Task (5-8h): 100 SC
|
||||
- Complex Task (1-2 days): 200 SC
|
||||
|
||||
### Democratic Validation Process
|
||||
1. Submit SC claim via pull request
|
||||
2. Team Captain (Defender) reviews
|
||||
3. Community lazy consensus (48h)
|
||||
4. Merge = official SC award
|
||||
|
||||
## How to Earn Social Karma
|
||||
|
||||
| Activity | SK Award | Purpose |
|
||||
|----------|----------|---------|
|
||||
| Code Review | 5 SK | Quality assurance |
|
||||
| Mentoring | 10 SK | Knowledge transfer |
|
||||
| Documentation | 15 SK | Community resource |
|
||||
| Governance | 20 SK | Democratic participation |
|
||||
| Conflict Resolution | 25 SK | Community harmony |
|
||||
|
||||
### SK Privilege Thresholds
|
||||
- **50 SK**: Can propose in General Forum
|
||||
- **100 SK**: Eligible for Team Captain roles
|
||||
- **200 SK**: Can lead mission objectives
|
||||
- **500 SK**: Join Leadership Team + enhanced voting weight (max 1.5x)
|
||||
|
||||
## Treasury Management
|
||||
|
||||
### The 3x Rule
|
||||
**Outstanding SC ≤ 3x EUR Treasury Balance**
|
||||
|
||||
This mathematical rule prevents SC inflation and ensures redemption capacity.
|
||||
|
||||
**Example**: €10,000 treasury → Maximum 30,000 SC outstanding
|
||||
|
||||
### License Integration
|
||||
|
||||
| License | SC Earning | SK Earning | Max Daily |
|
||||
|---------|------------|------------|-----------|
|
||||
| Campaign | ❌ | ✅ | 25 SK |
|
||||
| Watch | ❌ | ✅ | 50 SK |
|
||||
| Work | ✅ | ✅ | 500 SC + 100 SK |
|
||||
| Organizational | ✅ | ✅ | 500 SC + 100 SK |
|
||||
|
||||
---
|
||||
|
||||
**The result**: A currency system that rewards both individual contribution and collective success, with full democratic accountability and mathematical integrity.
|
|
@ -0,0 +1,32 @@
|
|||
# 💰 Financial Transparency
|
||||
|
||||
**Complete transparency into Smartup Zero's financial health and currency system**
|
||||
|
||||
*Last updated: 2025-08-04 21:30:43*
|
||||
|
||||
---
|
||||
|
||||
## Current Financial Status
|
||||
|
||||
- 💶 **EUR Treasury**: €0.00
|
||||
- 🪙 **Live Smartup Credits**: 0 SC
|
||||
- ⏳ **Pending Validation**: 82,200 SC
|
||||
- ✅ **3x Rule Status**: COMPLIANT
|
||||
|
||||
## Founding Work Audit
|
||||
|
||||
The largest pending SC amount represents the **founding entrepreneur's 10-year work audit**:
|
||||
|
||||
| Vesting Tranche | Amount | Validation Required | Status |
|
||||
|-----------------|--------|-------------------|---------|
|
||||
| **Design Phase** | 24,660 SC | Team Captains + Leadership vote | ⏳ Pending |
|
||||
| **Production Phase** | 32,880 SC | Community binding vote | ⏳ Pending |
|
||||
| **Organization Phase** | 24,660 SC | Automatic at market launch | ⏳ Pending |
|
||||
| **TOTAL** | **82,200 SC** | Democratic validation | **€0 current liability** |
|
||||
|
||||
!!! warning "Democratic Safeguard"
|
||||
The founding entrepreneur **cannot validate their own work**. All 82,200 SC requires approval from future Team Captains and community votes, proving that Smartup Zero's "no special founders" principle is real and enforceable.
|
||||
|
||||
---
|
||||
|
||||
*Financial health: **EXCELLENT** - No current debt, pending awards tied to collective success*
|
28
mkdocs.yml
28
mkdocs.yml
|
@ -83,19 +83,23 @@ nav:
|
|||
- Project History: 0_timeline/history.md
|
||||
- Contact us: 0_timeline/contact-us.md
|
||||
- Terminology: 0_timeline/terminology.md
|
||||
- '---': divider1 # This creates a visual separator in the navigation
|
||||
- FOR VALIDATION:'SMARTUP ZERO - We are building ONLIFE':
|
||||
- '0. 1_general_forum': smartup-zero/1_general_forum.md
|
||||
- '1. Executive Summary': smartup-zero/executive-summary.md
|
||||
- '2. Design blueprint': smartup-zero/design-blueprint.md
|
||||
- '3. Development blueprint': smartup-zero/development-blueprint.md
|
||||
- '4. Business blueprint': smartup-zero/business-blueprint.md
|
||||
- '5. Media blueprint': smartup-zero/media-blueprint.md
|
||||
- '6. Science blueprint': smartup-zero/science-blueprint.md
|
||||
- '7. Operational blueprint': smartup-zero/operational-blueprint.md
|
||||
- '---': divider2
|
||||
- '---': divider1
|
||||
- 1_general_forum - SMARTUP ZERO - We are building ONLIFE:
|
||||
- Overview: smartup-zero/1_general_forum.md
|
||||
- Book of Owners: smartup-zero/book-of-owners.md
|
||||
- Financial health: smartup-zero/financial-transparency.md
|
||||
- Smartup Currency System: smartup-zero/currency-system.md
|
||||
- OSBP:
|
||||
- '1. Executive Summary': smartup-zero/executive-summary.md
|
||||
- '2. Design blueprint': smartup-zero/design-blueprint.md
|
||||
- '3. Development blueprint': smartup-zero/development-blueprint.md
|
||||
- '4. Business blueprint': smartup-zero/business-blueprint.md
|
||||
- '5. Media blueprint': smartup-zero/media-blueprint.md
|
||||
- '6. Science blueprint': smartup-zero/science-blueprint.md
|
||||
- '7. Operational blueprint': smartup-zero/operational-blueprint.md
|
||||
- '---': divider2
|
||||
- Contributing:
|
||||
- 'Style Guide': style-guide.md
|
||||
- 'Style Guide': style-guide.md
|
||||
plugins:
|
||||
- search
|
||||
- awesome-pages
|
||||
|
|
Loading…
Reference in New Issue