harb/services/ponder
openhands 85350caf52 feat: OptimizerV3 with direct 2D staking-to-LP parameter mapping
Core protocol changes for launch readiness:

- OptimizerV3: binary bear/bull mapping from (staking%, avgTax) — avoids
  exploitable AW 30-90 kill zone. Bear: AS=30%, AW=100, CI=0, DD=0.3e18.
  Bull: AS=100%, AW=20, CI=0, DD=1e18. UUPS upgradeable with __gap[48].
- Directional VWAP: only records prices on ETH inflow (buys), preventing
  sell-side dilution of price memory
- Floor formula: unified max(scarcity, mirror, clamp) — VWAP mirror uses
  distance from adjusted VWAP as floor distance, no branching
- PriceOracle (M-1 fix): correct fallback TWAP divisor (60000s, not 300s)
- Access control (M-2 fix): deployer-only guard on one-time setters
- Recenter rate limit (M-3 fix): 60-second cooldown for open recenters
- Safe fallback params: recenter() optimizer-failure defaults changed from
  exploitable CI=50%/AW=50 to safe bear-mode CI=0/AW=100
- Recentered event for monitoring and indexing
- VERSION bump to 2, kraiken-lib COMPATIBLE_CONTRACT_VERSIONS updated

Co-Authored-By: Claude Opus 4.6 <noreply@anthropic.com>
2026-02-13 18:21:18 +00:00
..
.husky feat(ponder): Add strict ESLint + Prettier with pre-commit hooks (#52) 2025-10-04 15:37:26 +02:00
abis feat: OptimizerV3 with direct 2D staking-to-LP parameter mapping 2026-02-13 18:21:18 +00:00
generated feat: surface stack versions in app footer 2025-10-11 17:21:45 +00:00
scripts move ponder 2025-09-23 20:29:51 +02:00
src feat: surface stack versions in app footer 2025-10-11 17:21:45 +00:00
.env.example move ponder 2025-09-23 20:29:51 +02:00
.gitignore drop lock 2025-09-25 18:57:38 +02:00
.lintstagedrc.json feat(ponder): Add strict ESLint + Prettier with pre-commit hooks (#52) 2025-10-04 15:37:26 +02:00
.prettierrc feat(ponder): Add strict ESLint + Prettier with pre-commit hooks (#52) 2025-10-04 15:37:26 +02:00
AGENTS.md migrate/podman-to-docker (#92) 2025-11-08 14:08:46 +01:00
CLAUDE.md feat: add ABI validation helpers for Ponder (#29) 2025-09-30 20:02:43 +02:00
DEPLOYMENT.md move ponder 2025-09-23 20:29:51 +02:00
eslint.config.js feat(ponder): Add strict ESLint + Prettier with pre-commit hooks (#52) 2025-10-04 15:37:26 +02:00
package-lock.json first integration tests (#64) 2025-10-05 19:40:14 +02:00
package.json feat(ponder): Add strict ESLint + Prettier with pre-commit hooks (#52) 2025-10-04 15:37:26 +02:00
ponder-env.d.ts tax rate, version and compose (#70) 2025-10-07 19:26:08 +02:00
ponder.config.ts refactor: migrate kraiken-lib to explicit subpath imports (BREAKING CHANGE) (#89) 2025-11-20 18:54:53 +01:00
ponder.schema.ts feat: surface stack versions in app footer 2025-10-11 17:21:45 +00:00
README.md health checks (#39) 2025-10-02 14:37:59 +02:00
tsconfig.json move ponder 2025-09-23 20:29:51 +02:00

KRAIKEN Ponder Indexer

A high-performance blockchain indexer for the KRAIKEN protocol using Ponder framework, providing 10-15x faster indexing than The Graph with superior developer experience.

Features

  • Multi-network support: Local (Anvil fork), Base Sepolia, Base mainnet
  • Hot reload: Instant updates during development
  • Type safety: Full TypeScript support with auto-completion
  • Ring buffer: 7-day hourly metrics with projections
  • GraphQL API: Auto-generated from schema
  • Efficient indexing: In-memory operations during sync

Quick Start

1. Install Dependencies

npm install

2. Configure Environment

cp .env.example .env

Edit .env to select your network:

  • PONDER_NETWORK=BASE_SEPOLIA_LOCAL_FORK - Local Anvil fork managed by scripts/dev.sh
  • PONDER_NETWORK=BASE_SEPOLIA - Base Sepolia testnet
  • PONDER_NETWORK=BASE - Base mainnet

3. Local Development (Anvil Fork)

# Terminal 1: Start Anvil fork of Base mainnet
anvil --fork-url https://base.llamarpc.com

# Terminal 2: Start Ponder indexer
PONDER_NETWORK=BASE_SEPOLIA_LOCAL_FORK npm run dev

4. Testnet Deployment (Base Sepolia)

PONDER_NETWORK=BASE_SEPOLIA npm run dev

5. Production Deployment (Base Mainnet)

PONDER_NETWORK=BASE npm run start

GraphQL Queries

Once running, access the GraphQL playground at http://localhost:42069/graphql

Example Queries

Get Protocol Stats

{
  stats(id: "0x01") {
    kraikenTotalSupply
    stakeTotalSupply
    outstandingStake
    mintedLastWeek
    mintedLastDay
    mintNextHourProjected
    burnedLastWeek
    burnedLastDay
    burnNextHourProjected
  }
}

Get All Positions

{
  positions(where: { status: "Active" }) {
    items {
      id
      owner
      share
      taxRate
      kraikenDeposit
      taxPaid
      createdAt
    }
  }
}

Get User Positions

{
  positions(where: { owner: "0x..." }) {
    items {
      id
      share
      taxRate
      kraikenDeposit
      stakeDeposit
      taxPaid
      status
    }
  }
}

Architecture

Schema (ponder.schema.ts)

  • stats: Global protocol metrics with ring buffer
  • hourlyData: 168-hour circular buffer for time-series
  • positions: Harberger tax staking positions

Event Handlers

  • kraiken.ts: Handles Transfer events for minting, burning, tax, UBI
  • stake.ts: Handles position lifecycle events

Ring Buffer Implementation

  • 168 hourly slots (7 days)
  • Automatic hourly rollover
  • Projection calculation using median smoothing
  • Rolling 24h and 7d aggregations

Comparison with Subgraph

Feature Subgraph Ponder
Sync Speed 1x 10-15x faster
Hot Reload
Language AssemblyScript TypeScript
Setup Complex (PostgreSQL, IPFS, Graph Node) Simple (Node.js)
NPM Packages
Type Safety Requires codegen Automatic

Deployment Options

npm run build
# Deploy to Railway with DATABASE_URL configured

Self-Hosted

DATABASE_URL=postgresql://... npm run start

Docker

FROM node:20-alpine
WORKDIR /app
COPY package*.json ./
RUN npm ci --only=production
COPY . .
ENV PONDER_NETWORK=BASE
CMD ["npm", "run", "start"]

Troubleshooting

Issue: "No chain configured"

Solution: Ensure PONDER_NETWORK is set correctly in .env

Issue: Slow initial sync

Solution: Provide a faster RPC URL via environment variables

Issue: Database errors

Solution: For production, use PostgreSQL instead of SQLite:

DATABASE_URL=postgresql://user:pass@host:5432/db npm run start

Migration from Subgraph

This Ponder implementation maintains complete parity with the original subgraph:

  • Same entity structure (Stats, Positions)
  • Identical ring buffer logic
  • Same tax rate mappings
  • Compatible GraphQL queries

Key improvements:

  • 10-15x faster indexing
  • No Docker/Graph Node required
  • Hot reload for development
  • Direct SQL access for complex queries
  • Full Node.js ecosystem access

License

GPL-3.0-or-later