# Overview

**The system that makes contribution—not capital—the source of power.**

***

{% hint style="info" %}

### 🗳️ Governance Architecture

{% endhint %}

|   📐 Voting   |   🔒 Ceiling   |   🛡️ Treasury   |       ⚖️ Balance      |
| :-----------: | :------------: | :--------------: | :-------------------: |
| **Quadratic** | **4× maximum** | **Safety rails** | **Contributors lead** |

{% hint style="info" %}
**🎯 Core Mechanism:** EQTBLT balance determines voting power. EQTBLT is earned, not bought.

**⚖️ Design Goal:** Capital can fund the DAO. Labor governs it.
{% endhint %}

***

## The Governance Problem

Most DAOs fail the same way: money becomes votes, whales dominate decisions, contributors exit.

| Failure Mode              | What Happens                        | Our Solution                    |
| ------------------------- | ----------------------------------- | ------------------------------- |
| 💰 **Plutocracy**         | Rich buy voting control             | EQTBLT cannot be purchased      |
| 🐋 **Whale capture**      | Single actors dominate              | 4× power ceiling                |
| 😴 **Passive ownership**  | Old holders control without working | Recency-weighted activity       |
| 🏃 **Contributor exodus** | Workers leave when capital captures | Contributors have primary power |
| ⚠️ **Treasury raids**     | Bad proposals drain funds           | Safety rails + council veto     |

Built By DAO's governance is designed to make these failures structurally impossible.

***

## Governance Flow

```mermaid
flowchart LR
    subgraph Earn["1️⃣ Earn Power"]
        WORK["🔨 Complete Tasks"]
        RENT["🏠 Pay Rent"]
        PART["🗳️ Participate"]
    end

    subgraph Hold["2️⃣ Hold EQTBLT"]
        EQ["💎 EQTBLT Balance"]
        RANK["🎖️ Rank Multiplier"]
        ACT["⏰ Activity Weight"]
    end

    subgraph Vote["3️⃣ Vote"]
        PROP["📝 Proposal"]
        QV["📊 Quadratic Vote"]
        CAP["🔒 4× Ceiling"]
    end

    subgraph Execute["4️⃣ Execute"]
        PASS["✅ Passes >50%"]
        RAILS["🛡️ Safety Rails"]
        AUTO["⚡ Auto-Execute"]
    end

    WORK --> EQ
    RENT --> EQ
    PART --> EQ

    EQ --> QV
    RANK --> QV
    ACT --> QV
    QV --> CAP

    PROP --> CAP
    CAP --> PASS
    PASS --> RAILS
    RAILS --> AUTO
```

**The path to power:** Contribution → EQTBLT → Voting Weight → Proposal Outcomes. No shortcuts.

***

{% tabs %}
{% tab title="📊 Voting Power" %}

### 📊 How Voting Power Works

Your voting power combines multiple factors, all capped at **4× maximum**.

***

#### Components

| Component                  | Range     | How It Works                 |
| -------------------------- | --------- | ---------------------------- |
| 🔢 **Base**                | 1.0×      | Every member starts here     |
| 🏠 **EQTBLT Balance**      | Quadratic | √(balance) × 100             |
| 🎖️ **Rank Bonus**         | 0-25%     | Higher ranks earn multiplier |
| ⏰ **Activity Recency**     | Weighted  | Recent activity counts more  |
| 💰 **Investor Multiplier** | 1.5×-5.0× | NFT tier bonus               |

***

#### The Quadratic Formula

```
Voting Power = √(EQTBLT Balance) × 100
```

This creates diminishing returns:

| EQTBLT  | Raw Power | Capped Power |
| ------- | --------- | ------------ |
| 100     | 1,000     | 1,000        |
| 1,000   | 3,162     | 3,162        |
| 10,000  | 10,000    | 4× ceiling   |
| 100,000 | 31,623    | 4× ceiling   |

The more you accumulate, the less each additional token matters. This prevents concentration.

***

#### The 4× Ceiling

**No one can have more than 4× the base voting power**, regardless of:

| Factor            | Still Capped? |
| ----------------- | :-----------: |
| EQTBLT balance    |       ✅       |
| Membership rank   |       ✅       |
| Investment amount |       ✅       |
| Activity level    |       ✅       |

Even the most active, highest-rank, biggest investor cannot exceed 4× base power.
{% endtab %}

{% tab title="📝 Proposals" %}

### 📝 The Proposal System

#### Proposal Types

| Type               | Threshold | Examples                          |
| ------------------ | :-------: | --------------------------------- |
| ⚙️ **Operational** |    >50%   | Platform updates, minor policy    |
| 💰 **Financial**   |    >60%   | Budget allocation, partnerships   |
| 🏛️ **Governance** |    >65%   | Structural changes, policy shifts |

Higher stakes require higher consensus.

***

#### Proposal Lifecycle

| Phase              | Duration    | What Happens                      |
| ------------------ | ----------- | --------------------------------- |
| 1️⃣ **Submission** | Immediate   | Stake 2 BLTBY, proposal goes live |
| 2️⃣ **Discussion** | 3-7 days    | Community review and refinement   |
| 3️⃣ **Voting**     | 5-7 days    | On-chain voting, recorded forever |
| 4️⃣ **Timelock**   | 24-48 hours | Delay before execution            |
| 5️⃣ **Execution**  | Automatic   | Smart contract executes if passed |

***

#### Submission Requirements

| Requirement                | Purpose                         |
| -------------------------- | ------------------------------- |
| 📝 **2 BLTBY stake**       | Prevents spam                   |
| 🎫 **Membership NFT**      | Only members can propose        |
| 📊 **Clear specification** | Actionable, measurable proposal |

Stake is returned after voting, regardless of outcome.

***

#### Quorum

Proposals require **minimum participation** to pass:

| Proposal Type | Quorum |
| ------------- | :----: |
| Operational   |   10%  |
| Financial     |   15%  |
| Governance    |   20%  |

Low-participation votes don't count, preventing quiet takeovers.
{% endtab %}

{% tab title="🛡️ Safety Rails" %}

### 🛡️ Treasury Protection

Built-in controls prevent rapid drainage, even from legitimate governance:

| Protection           | Limit                       |
| -------------------- | --------------------------- |
| 📝 **Per Proposal**  | Maximum 10% of treasury     |
| 📅 **Daily**         | Maximum 5% of treasury      |
| 📆 **Monthly**       | Maximum 20% of treasury     |
| 🔒 **Reserve Floor** | Minimum 15% always retained |

**These rails are hardcoded.** No governance vote can bypass them.

***

#### Why This Matters

| Attack                  | How Rails Prevent It  |
| ----------------------- | --------------------- |
| **Single bad proposal** | Can only take 10%     |
| **Rapid drainage**      | 5%/day maximum        |
| **Sustained attack**    | 20%/month cap         |
| **Total depletion**     | 15% floor always held |

Even a compromised governance system cannot fully drain the treasury.

***

#### Leadership Council

A final backstop for mission-critical decisions:

| Function              | Description                                    |
| --------------------- | ---------------------------------------------- |
| 👁️ **Oversight**     | Ensures proposals align with DAO mission       |
| 🚨 **Emergency veto** | Can block proposals that threaten core mission |
| 👥 **Dual signature** | Requires 2+ council members to veto            |
| 📋 **Limited scope**  | Only for existential threats                   |

The council cannot initiate actions—only block harmful ones.
{% endtab %}

{% tab title="👥 Eligibility" %}

### 👥 Who Can Vote

| Status              | Can Vote | Can Propose | Notes                                  |
| ------------------- | :------: | :---------: | -------------------------------------- |
| 🎫 **Member**       |     ✅    |      ✅      | Weight based on EQTBLT, rank, activity |
| 💰 **Investor**     |     ✅    |      ❌      | Multiplier applies to EQTBLT only      |
| 💎 **BLTBY Holder** |     ❌    |      ❌      | Cannot buy votes                       |
| 👤 **Non-member**   |     ❌    |      ❌      | Must complete onboarding               |

***

#### The Investor Dynamic

Investors get benefits, but not control:

| What Investors Get             | What Investors Don't Get           |
| ------------------------------ | ---------------------------------- |
| ✅ Vote with multiplied weight  | ❌ Proposal submission rights       |
| ✅ Governance participation     | ❌ Ability to override contributors |
| ✅ Quarterly reports and access | ❌ Unlimited voting power           |

**Key constraint:** Investor multipliers only apply to EQTBLT holdings. An investor with $5M and zero EQTBLT has zero voting power.

***

#### Earning Voting Power

| Method                | EQTBLT Earned            |
| --------------------- | ------------------------ |
| 🔨 **Complete tasks** | Per-task rewards         |
| 🏠 **Pay rent**       | 7-12% of rent            |
| 🗳️ **Participate**   | Governance activity      |
| 📚 **Train**          | Certification completion |

There is no other path to voting power.
{% endtab %}

{% tab title="🔍 Transparency" %}

### 🔍 On-Chain Governance

Everything is recorded on the blockchain:

| Data                  | Visibility                  |
| --------------------- | --------------------------- |
| 🗳️ **Every vote**    | Publicly verifiable         |
| 📝 **All proposals**  | Full history preserved      |
| 💰 **Treasury flows** | Every transaction auditable |
| ⚙️ **Execution**      | Automatic, deterministic    |

***

#### Technical Implementation

| Contract                         | Function                       |
| -------------------------------- | ------------------------------ |
| ⚖️ **Governance**                | Core proposal and voting logic |
| 🗳️ **RankVotingWeightRegistry** | Calculates voting weights      |
| 📊 **EQTBLTActivityTracker**     | 30/90/180 day activity windows |
| 🏦 **Treasury**                  | Enforces safety rails          |

All contracts are audited and verified on Basescan.

***

#### Verification

Anyone can verify:

| Check            | How                    |
| ---------------- | ---------------------- |
| Vote counts      | Read contract state    |
| Proposal status  | Query on-chain         |
| Treasury balance | View contract holdings |
| Execution        | Trace transactions     |

No trust required. Verify everything.
{% endtab %}

{% tab title="⚡ Quick Reference" %}

### ⚡ Governance Quick Reference

#### Voting Formula

```
Final Power = min(Raw Power, 4.0)

Raw Power = √(EQTBLT) × 100 × Rank Multiplier × Activity Weight × Investor Multiplier
```

***

#### Key Numbers

| Parameter             | Value   |
| --------------------- | ------- |
| Proposal stake        | 2 BLTBY |
| Power ceiling         | 4×      |
| Operational quorum    | 10%     |
| Financial quorum      | 15%     |
| Governance quorum     | 20%     |
| Operational threshold | >50%    |
| Financial threshold   | >60%    |
| Governance threshold  | >65%    |
| Treasury per-proposal | 10% max |
| Treasury daily        | 5% max  |
| Treasury monthly      | 20% max |
| Treasury floor        | 15% min |

***

#### Timeline

| Phase         | Duration    |
| ------------- | ----------- |
| Discussion    | 3-7 days    |
| Voting        | 5-7 days    |
| Timelock      | 24-48 hours |
| Execution     | Immediate   |
| {% endtab %}  |             |
| {% endtabs %} |             |

***

<details>

<summary>❓ Governance FAQ</summary>

**Q: Can investors control the DAO?** A: No. The 4× power ceiling and EQTBLT requirement ensures contributors maintain governance primacy. An investor with no EQTBLT has zero voting power.

**Q: What prevents whale capture?** A: Quadratic voting creates diminishing returns, and the 4× ceiling caps maximum power regardless of holdings.

**Q: Can the treasury be drained?** A: Safety rails limit withdrawals to 10%/proposal, 5%/day, 20%/month, with 15% always retained. These cannot be bypassed.

**Q: Who can submit proposals?** A: Any member with a Membership NFT who stakes 2 BLTBY. Investors cannot submit proposals.

**Q: What happens if governance is compromised?** A: The Leadership Council can emergency veto proposals that threaten the core mission. Multiple council members must agree.

</details>

***

{% hint style="success" %}

### 🔗 Governance Deep Dives

{% endhint %}

| Topic                      | Documentation                                            |
| -------------------------- | -------------------------------------------------------- |
| 📊 **Voting Power**        | [How Voting Works](/governance/voting.md)                |
| 📝 **Proposals**           | [Proposal System](/governance/proposals.md)              |
| 📋 **Proposal Types**      | [All Proposal Categories](/governance/proposal-types.md) |
| 🛡️ **Treasury**           | [Treasury & Safety Rails](/governance/treasury.md)       |
| 🔒 **Safety Rails**        | [Treasury Safeguards](/governance/safety-rails.md)       |
| 🏛️ **Leadership Council** | [Oversight Body](/governance/leadership-council.md)      |
| 🚨 **Veto Powers**         | [Emergency Protections](/governance/veto.md)             |
| ⚖️ **Compliance**          | [Legal & Regulatory](/governance/compliance.md)          |
| 📜 **Ethics**              | [Ethics Framework](/governance/ethics.md)                |
| 🔄 **Process**             | [Full Governance Flow](/governance/how-it-works.md)      |

***

## 🔗 Related Pages

{% content-ref url="/pages/TMsJogsDwsIM73e0Nki1" %}
[Voting Power](/governance/voting.md)
{% endcontent-ref %}

{% content-ref url="/pages/TR3xvCAhUfG2XtqqVRHU" %}
[Proposals](/governance/proposals.md)
{% endcontent-ref %}

{% content-ref url="/pages/bCRP9ZQJpZRem0j8thwf" %}
[Treasury](/governance/treasury.md)
{% endcontent-ref %}

{% content-ref url="/pages/4dyHkNojNrIrQGavsuXD" %}
[EQTBLT Token](/token-economy/eqtblt.md)
{% endcontent-ref %}

{% content-ref url="/pages/wCsHi9X5RfIeOlpdeVSV" %}
[Leadership Council](/governance/leadership-council.md)
{% endcontent-ref %}

{% content-ref url="/pages/hZilKDfriFzMvyBGHsW1" %}
[Safety Rails](/governance/safety-rails.md)
{% endcontent-ref %}

{% content-ref url="/pages/TfMk4Fcb1Hko9poxXI5Z" %}
[Compliance](/governance/compliance.md)
{% endcontent-ref %}

{% content-ref url="/pages/zAODaCVNqr4Noy81YMh4" %}
[Ethics](/governance/ethics.md)
{% endcontent-ref %}

{% content-ref url="/pages/2CpsPXS2onSy2cA8plzX" %}
[Overview](/membership/membership.md)
{% endcontent-ref %}


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://docs.builtbydao.com/governance/governance.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
