Technology

PONSDAQ is a self-trading index: fees in, momentum-scored basket out. Five components, each verifiable on-chain.

  1. 01

    Fee Collector

    The 3% $PSDQ creator fee on every buy and sell, accrued in the Pons fee escrow on Robinhood Chain. The escrow address is public and its inflow is the only source of funds for distributions.

  2. 02

    Momentum Engine

    Scores every indexed Pons launch off live chain logs: transfer count plus 3× unique active wallets over the signal window, normalized to a 0–100 momentum score. No self-reported data — a token that can't be read from chain can't enter.

  3. 03

    Hourly Rebalancer

    The top 10 launches by momentum rotate into the basket; weights are proportional to score. Tokens that stop moving rotate out. Every entry and exit is written as a public rotation event.

  4. 04

    Index Oracle

    Each rebalance writes an immutable checkpoint — basket, weights, scores, chain block — so the entire history of the index is auditable by anyone, from day one.

  5. 05

    Distribution Engine

    The keeper claims the escrow, buys the basket at target weights through Pons liquidity, computes weighted units — balance × tier weight × loyalty multiplier — and pushes each holder's slice in one batched transaction. No claiming required.

Momentum formula

momentum(token) =
    transfers(token, window)          // every Transfer log, read from chain
  + 3 * unique_active_wallets(token)  // senders + recipients in the window
  → normalized 0–100 across candidates

basket  = top 10 candidates by momentum      // hourly rotation
weight(token) ∝ momentum(token)              // winners bought heavier

Distribution formula

weighted_units(wallet) =
    balance / 1_000_000
  * tier_weight(balance)        // 1x · 3.5x · 10x · 30x
  * loyalty_multiplier(days)    // 1x → 4x over 181 days

payout(wallet, token) =
    cycle_fees
  * basket_weight(token)        // set by the momentum rebalance
  * weighted_units(wallet) / total_weighted_units

Chain indexer

CONNECTING…

Reads Robinhood Chain directly over JSON-RPC. The fee stream watches the creator-fee wallet; the holder stream tracks every $PSDQ transfer and its holding age.

Keeper — dry run

HELD

The exact claim → basket → payout plan for the next cycle, simulated against live chain state. Nothing is signed or broadcast until live mode is switched on.

Claimable inflow
$0.00
0 indexed fee events
Recipients
0
0 weighted units
Keeper gas
no keeper wallet

Pons fee escrow

reading…

Status

  • · Momentum engine — live, scoring off Robinhood Chain logs
  • · Hourly rebalancer + rotation ledger — complete
  • · Index oracle checkpoints — write from the first rebalance
  • · Tier and loyalty logic — complete, mirrored in the estimator
  • · Chain indexer — live, scanning Robinhood Chain every five minutes
  • · $PSDQ token deployment on Robinhood Chain — pending launch