Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
58 changes: 58 additions & 0 deletions ALPHA_README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,58 @@
# SuperDAO /alpha

The alpha version of SuperDAO - a DAO management platform built on the Zoon protocol.

## Features

### 1. DAO Explorer (`/alpha/explore`)
- Browse and discover DAOs in the ecosystem
- Search by name, address, or mission
- Sort by recent, popular, or name
- View DAO details (founders, members, tasks, governance params)

### 2. DAO Dashboard (`/alpha/dashboard`)
- View active tasks and proposals
- Vote on task outcomes
- Create new tasks/proposals
- Track voting progress

### 3. Onboarding Wizard (`/alpha/onboard`)
- 4-step DAO creation process:
1. DAO name and mission
2. Founder configuration (addresses + ZEIT allocation)
3. Governance parameters (voting type, quorum, voting period)
4. Review and deploy

## Tech Stack

- **Framework**: SolidJS + SolidStart (Vinxi)
- **Styling**: Custom CSS with dark theme
- **State**: SolidJS signals
- **Routing**: File-based routing via `@solidjs/start/router`

## Local Development

```bash
# Install dependencies
npm install

# Start dev server
npm run dev

# Visit http://localhost:3000/alpha
```

## Routes

- `/` - Landing page
- `/alpha` - Alpha home
- `/alpha/explore` - DAO explorer
- `/alpha/dashboard` - DAO dashboard
- `/alpha/onboard` - Create DAO wizard

## Contract Integration (TODO)

Currently uses mock data. Contract integration planned:
- Connect wallet via wagmi/viem
- Read DAO data from Zoon contracts
- Submit transactions for voting, task creation, etc.
90 changes: 84 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,25 +1,103 @@
# SuperDAO
---
<div align="center">
<a href="#hero">
<img src=".github/media/banner.png" alt="SuperDAO">
</a>
</a>
</div>

A SolidStart application.
<p align="center">
<a href="#mission">
<img src=".github/media/mission.png" alt="Mission">
</a>
</a>
</p>

<div align="center">
<a href="#main">
<img src=".github/media/main.png" alt="Develop">
</a>
</a>
</div>

---

## Mission

Solving the **founders problem** — defining venture creation through discovery.

### About Founding
The journey begins when a founder identifies an opportunity to create a venture. Through **discovery**, they explore the market landscape, identify gaps, and define what the venture will do.

### About Funding
Once discovery validates the concept, the venture needs **funding** to bring it to life. This capital provides the runway for execution — paying for development, marketing, and operations.

### About Execution
With funding and a clear direction, the venture **executes** — building the product, hiring the team, and delivering value. The team works toward achieving the mission, creating sustainable growth.

---

## Developing

Start the development server:
Start to development server:

```bash
bun run dev
```

## Building

Build for production:

```bash
bun run build
```

Start the production server:
Start to production server:

```bash
bun run start
```

## About

**SuperDAO** — A DAO built on Aragon OSX that solves the venture liquidity problem through zeit tokenization.

The core concept is simple: instead of founders/employees or investors controlling the venture, **control** is distributed through soul-bound zeit tokens. Contributors earn their stake by working, and the venture is managed by those who have proven their commitment.

**ZOON** — The Optimistic Oracle Network that SuperDAO is an instance of. It provides the infrastructure for creating queries (state changes) and actuation markets (who executes work, for how much).

---

## Mission

Solving the **founders problem** — defining venture creation through discovery.

### About Founding
The journey begins when a founder identifies an opportunity to create a venture. Through **discovery**, they explore the market landscape, identify gaps, and define what the venture will do.

### About Funding
Once discovery validates the concept, the venture needs **funding** to bring it to life. This capital provides the runway for execution — paying for development, marketing, and operations.

### About Execution
With funding and a clear direction, the venture **executes** — building the product, hiring the team, and delivering value. The team works toward achieving the mission, creating sustainable growth.

---

## Developing

Start to development server:

```bash
bun run dev
```

Build for production:

```bash
bun run build
```

Start to production server:

```bash
bun run start
```
Loading