Docs/Chapter 9
Chapter 9

Municipal Bonds - DAO Treasury Bonds

8 min read12 min read

Municipal bonds are the original DAO treasury bonds—$4 trillion in debt issued by 50,000 state and local governments to fund everything from schools to sewers. They're tax-exempt yield farms where rich people avoid taxes while funding public infrastructure that mostly benefits them anyway. When these DAOs (cities) go bankrupt, bondholders discover that "full faith and credit" means nothing when there's no money left and you can't liquidate a city hall.

The Muni Bond Stack: How Cities Mint Debt

Municipal bonds are debt securities issued by state and local governments:

The Issuance Framework

// Municipal bond issuance
function issueMuniBond(project, amount, years, tax_exempt) {
    // Determine bond type
    if (revenue_generating_project) {
        bond_type = "Revenue Bond";  // Backed by project income
        security = project_revenues;
    } else {
        bond_type = "General Obligation";  // Backed by taxes
        security = taxing_power;
    }
    
    // Tax exemption value
    if (tax_exempt) {
        // Federal tax rate = 37%, state = 13% (CA)
        tax_value = coupon * 0.50;  // Worth 50% more!
        taxable_equivalent_yield = coupon / (1 - tax_rate);
    }
    
    // Pricing
    yield = treasury_yield - tax_benefit + credit_spread;
    
    return {
        proceeds: amount - issuance_costs,
        annual_payment: amount * coupon,
        taxpayer_liability: bond_type === "GO" ? amount : 0
    };
}

It's DeFi governance tokens if the protocol could force users to pay back bondholders through taxes.

The $4 Trillion Muni Market Structure

The municipal bond market breakdown:

By Issuer Type

Issuer Outstanding Purpose Default Rate
States $500B General operations 0.01%
Cities/Counties $800B Infrastructure 0.08%
School Districts $600B Education facilities 0.02%
Utilities $700B Water/Power systems 0.05%
Transportation $500B Roads/Airports 0.10%
Healthcare $400B Hospitals 0.30%
Housing $500B Affordable housing 0.15%

By Bond Type

  • General Obligation (GO): $1.5T - Backed by taxes
  • Revenue Bonds: $2.5T - Backed by project income
  • Conduit Bonds: $500B - Pass-through for private entities

Tax-Exempt Status: The Original Yield Subsidy

The killer feature of munis is tax exemption:

Tax-Equivalent Yield Calculation

// Why rich people love munis
function taxEquivalentYield(muni_yield, tax_bracket) {
    // Example: 4% muni for 50% tax bracket
    TEY = muni_yield / (1 - tax_bracket);
    // = 0.04 / (1 - 0.50) = 8%
    
    // Comparison
    if (federal_tax === 0.37 && state_tax === 0.13) {
        combined_rate = 0.50;
        
        // 4% muni = 8% taxable
        // 3% muni = 6% taxable
        // 5% muni = 10% taxable!
    }
    
    return TEY;
}

Who Benefits from Tax Exemption

Income Level Tax Rate Muni Benefit Buyers
<$50k 12% Minimal ~0%
$50-200k 24% Some 5%
$200k-500k 35% Significant 30%
>$500k 50%+ Massive 65%

It's a regressive subsidy—the richer you are, the more the government pays you to lend money.

General Obligation Bonds: The Full Faith and Credit Scam

GO bonds are backed by the "full taxing power" of the issuer:

The GO Security Stack

  1. Property Taxes: Primary source
  2. Sales Taxes: Secondary
  3. Income Taxes: Where applicable
  4. Fees/Fines: Last resort
  5. Asset Sales: Emergency only

The Taxation Power

// GO bond security
function generalObligationSecurity(city) {
    // City can raise taxes to pay bonds
    if (bond_payment_due && insufficient_funds) {
        property_tax_rate += 0.5%;  // Just raise taxes!
        // Until...
        if (voters_revolt || people_leave) {
            detroit_scenario();  // Bankruptcy
        }
    }
    
    // Constitutional priority in some states
    if (state === "California") {
        bond_payments_rank = 1;  // Before schools, police
        education_funding_rank = 2;
    }
}

Famous GO Defaults

  • Detroit 2013: $7B default, largest city bankruptcy
  • Jefferson County AL: $4B sewer debt disaster
  • Stockton CA: Pension costs killed budget
  • Puerto Rico: $74B default (territory, not city)

"Full faith and credit" until the city runs out of money and residents.

Revenue Bonds: Project-Specific Yield Farms

Revenue bonds are backed by specific revenue streams:

Types of Revenue Bonds

Type Revenue Source Risk Example
Toll Roads Toll collections Traffic volume NY Thruway
Airports Landing fees, parking Air travel LAX bonds
Hospitals Patient revenue Healthcare demand Mayo Clinic
Universities Tuition, dorms Enrollment State university
Stadiums Ticket sales, concessions Team success Yankees stadium
Parking Meter/garage fees Urban demand Chicago meters

The Revenue Pledge

// Revenue bond waterfall
function revenueWaterfall(project_income) {
    // Gross revenues
    total_revenue = collectRevenue();
    
    // Payment priority
    1. operating_expenses;      // Keep lights on
    2. bond_interest;           // Senior debt service
    3. bond_principal;          // Debt amortization
    4. reserve_funds;           // Rainy day fund
    5. subordinate_debt;        // Junior bonds
    6. general_fund_transfer;   // Leftover to city
    
    if (revenue < bond_payment) {
        default_on_bonds();
        // No recourse to general funds!
    }
}

It's like protocol revenue bonds—if the protocol doesn't generate fees, tough luck.

Build America Bonds: The Stimulus Yield Farm

Build America Bonds (BABs) were taxable munis with federal subsidy:

BABs Structure (2009-2010)

  • Taxable Bonds: No tax exemption
  • Federal Subsidy: 35% of interest paid by Treasury
  • Result: 6.5% yield, issuer pays 4.2% net
  • Volume: $181B issued in 18 months

Why BABs Died

// BABs subsidy disaster
function buildAmericaBonds() {
    // Original promise
    federal_subsidy = interest_payment * 0.35;
    
    // Then sequestration hit
    actual_subsidy = interest_payment * 0.28;  // Cut!
    
    // Cities screwed
    expected_cost = 4.2%;
    actual_cost = 4.7%;
    
    // Lesson learned
    trust_federal_promises = false;
}

The federal government rugged municipalities on the subsidy. Classic DAO governance change.

Municipal Bond Insurance: The Protection Racket

Bond insurers guarantee payment if issuer defaults:

The Insurance Oligopoly

Insurer Insured Bonds Market Share Rating
AGM (Assured Guaranty) $400B 60% AA
BAM (Build America Mutual) $100B 25% AA
National/FGIC Dead 0% Was AAA
AMBAC/MBIA Zombies 15% Barely alive

How Bond Insurance Works

// Muni bond insurance
function bondInsurance(bond) {
    // Issuer pays 50-200 bps for insurance
    insurance_premium = bond.amount * 0.01;
    
    // Bond gets insurer's rating
    bond.rating = insurer.rating;  // AA even if city is BBB
    
    // If issuer defaults
    if (issuer.default) {
        insurer.makes_payments();
        insurer.sues_city();
        insurer.probably_loses();
    }
}

The 2008 Insurance Collapse

Insurers guaranteed mortgage bonds too:

  1. Insured muni bonds: Safe, low defaults
  2. Also insured subprime: Not safe
  3. Subprime exploded: Insurers died
  4. Muni insurance worthless: Systemic failure

Now only 7% of new munis are insured vs 60% pre-2008.

The Puerto Rico Disaster: When DAOs Fail

Puerto Rico's default is the largest muni bankruptcy ever:

The $74B Meltdown

  • Triple Tax Exempt: No federal, state, or local taxes
  • Yield Chasing: Funds loaded up
  • Constitutional Priority: Bonds before everything
  • Debt Spiral: Borrowed to pay previous debt
  • Migration: People left, tax base collapsed

Recovery Rates by Bond Type

Bond Type Original Recovery Haircut
GO Bonds $18B 80% -20%
COFINA Sales Tax $17B 93% -7%
PREPA (Electric) $9B 67% -33%
Highways $6B 56% -44%
Pension Bonds $3B 8% -92%

Pension bondholders got rugged hardest—8 cents on the dollar.

Conduit Bonds: The Private Activity Loophole

Municipalities issue tax-exempt bonds for private entities:

Conduit Bond Types

  • 501(c)(3): Hospitals, universities
  • Industrial Development: Factories, warehouses
  • Housing: Apartment complexes
  • Private Activity: Stadiums, convention centers

The Conduit Structure

// Conduit bond flow
function conduitBond(city, private_entity, project) {
    // City issues bond (gets tax exemption)
    city.issue_bond(amount);
    
    // Lends proceeds to private entity
    private_entity.receives(amount);
    
    // Private entity pays city
    private_entity.pays_debt_service();
    
    // City pays bondholders
    city.pays_bondholders();
    
    // City has NO obligation if private entity defaults
    if (private_entity.defaults()) {
        bondholders.lose();
        city.not_responsible();
    }
}

It's regulatory arbitrage—private companies getting tax-exempt financing through municipal wrapper.

Advance Refunding: The Muni Refinancing Game

Before 2017, munis could be refinanced tax-exempt:

The Advance Refunding Trade

  1. Issue new bonds at lower rate
  2. Buy Treasuries with proceeds
  3. Escrow Treasuries to pay old bonds
  4. Defease old bonds (legally dead)
  5. Arbitrage the spread between rates

Tax reform killed this in 2017—now only one tax-exempt refinancing allowed.

The Retail Dominance: Mom and Pop Yield Farming

Retail investors own 70% of munis:

Muni Ownership Distribution

Holder Type Amount Share Why
Direct Retail $1.5T 40% Rich individuals
Mutual Funds $900B 23% Retail via funds
Banks $600B 15% Regulatory capital
Insurance $500B 12% Duration matching
Foreign $100B 3% Special situations
Other $400B 7% Hedge funds, etc

Why Retail Dominates

  • Tax Benefit: Only matters for individuals
  • Institutions: Prefer taxable bonds
  • Complexity: Retail doesn't understand risk
  • Yield Chase: "5% tax-free!"

Credit Analysis: Nobody Does It

Muni analysis is hilariously bad:

The Analysis Problem

  • 50,000 issuers: Too many to track
  • $4T outstanding: 1 million+ different bonds
  • No Standards: Every city reports differently
  • Delayed Data: Financials 6-18 months old
  • Ratings Dominated: Everyone trusts Moody's

Information Asymmetry

// Muni disclosure quality
function municipalDisclosure(city_size) {
    if (city_size > 1_000_000) {
        disclosure = "Decent";
        timeliness = "Quarterly";
    } else if (city_size > 100_000) {
        disclosure = "Annual";
        timeliness = "6 months late";
    } else {
        disclosure = "Whatever they feel like";
        timeliness = "Maybe never";
    }
}

Small issuers basically don't report anything useful.

The Pension Bomb: Hidden Liabilities

Unfunded pensions threaten muni credit:

Pension Funding Status

State Funded Ratio Unfunded Per Capita
Illinois 39% $140B $11,000
Connecticut 44% $65B $18,000
Kentucky 45% $45B $10,000
New Jersey 38% $100B $11,000
Wisconsin 103% $0 $0

The Pension Death Spiral

  1. Promise Benefits: During good times
  2. Underfund: To keep taxes low
  3. Invest Aggressively: 7% return assumption
  4. Miss Returns: Reality = 5%
  5. Increase Contributions: Crowds out services
  6. People Leave: Tax base shrinks
  7. Default: On pensions or bonds

It's like protocol treasury management if you promised yields you can't deliver.

Green Bonds: ESG Virtue Signaling

Green bonds fund environmental projects:

Green Muni Categories

  • Clean Water: $50B outstanding
  • Public Transit: $40B
  • Renewable Energy: $30B
  • Energy Efficiency: $20B
  • Climate Adaptation: $10B

The Green Premium

// Green bond pricing
function greenBondPricing(standard_yield) {
    green_premium = -5 to -10 bps;  // Trade tighter
    
    // ESG funds must buy
    if (fund.mandate === "ESG") {
        must_buy_green = true;
        accept_lower_yield = true;
    }
    
    // But no enforcement
    use_of_proceeds_tracking = "Trust me bro";
    greenwashing_risk = "High";
}

Cities get cheaper funding by calling bonds "green"—no verification required.

Trading Municipal Bonds: The Opacity Game

Muni trading is even worse than corporate bonds:

The Muni Trading Landscape

  • No Exchange: 100% OTC
  • Wide Spreads: 1-3% for retail
  • No Transparency: Prices hidden
  • MSRB Reporting: 15-minute delayed
  • Minimum Size: Usually $5,000

Retail Gets Destroyed

Trade Size Spread Markup Effective Cost
<$25k 3% $750 Robbery
$25-100k 2% $1,500 Bad
$100k-1M 1% $5,000 Still bad
>$1M 0.25% $2,500 Institutional

Small investors pay 10x what institutions pay.

Variable Rate Demand Obligations: The Floating Rate Disaster

VRDOs are floating rate munis with put option:

VRDO Structure

  • Weekly Reset: Rate adjusts to market
  • Put Option: Investor can sell back anytime
  • Liquidity Provider: Bank backstops puts
  • Letter of Credit: Bank guarantees payment

The 2008 VRDO Crisis

// VRDO death spiral
function vrdoCrisis2008() {
    // Auction rate securities failed
    if (no_bidders_at_auction) {
        rate = penalty_rate;  // 15%!
    }
    
    // Banks pulled liquidity
    if (bank.credit_crisis) {
        no_backstop = true;
        investors.panic_sell();
    }
    
    // Rates exploded
    normal_rate = 2%;
    crisis_rate = 15%;
    cities_fucked = true;
}

Cities suddenly paying 15% on "variable rate" debt.

The Future: Blockchain Munis

Several pilots for tokenized munis:

Tokenization Attempts

  • Berkeley: Tried "blockchain bonds" in 2019
  • World Bank: Issued blockchain bond
  • Various Pilots: Keep failing

Benefits of Tokenized Munis

  • Fractional Ownership: $100 minimums not $5,000
  • Instant Settlement: T+0 not T+2
  • Transparent Pricing: On-chain price discovery
  • Programmable: Smart contract features
  • Global Access: Anyone can buy

Why It's Not Happening

  • Regulation: Securities laws
  • Tax Complexity: How to handle exemptions
  • Legacy Systems: 1970s infrastructure
  • Dealer Resistance: Kills their spreads
  • Issuer Apathy: Current system works

Conclusion: Public Debt as Private Subsidy

Municipal bonds are proof that $4 trillion in public debt can be:

  • Regressive: Rich people's tax shelter
  • Opaque: No real disclosure
  • Conflicted: Private benefit from public debt
  • Risky: Pension bombs everywhere
  • Inefficient: 3% spreads for retail

The muni market is DeFi governance tokens if:

  • Only rich people could buy them
  • They paid tax-free yields
  • The protocol could tax users to pay holders
  • Nobody did credit analysis
  • Dealers extracted 3% on every trade

It's a $4 trillion market that exists primarily to help rich people avoid taxes while funding infrastructure they use. States compete to issue debt, banks extract fees, retail gets destroyed on spreads, and when cities go bankrupt, pensioners get rugged while bondholders get paid.

Municipal bonds prove that even public finance can be captured by private interests. It's not about funding schools and roads—it's about tax-efficient yield farming for the wealthy, subsidized by everyone else who pays full taxes.

The muni market: Where DAOs issue debt, governance token holders avoid taxes, and when the protocol fails, users get liquidated through bankruptcy court.