/** * PONDUS_V1 — the per-request WEIGHT of a read Pythia serves: * * pondus = classBase + sqrt(gasUsed)/2 + responseBytes/4096 * * The square root MUST be applied PER REQUEST (`sqrt(a) + sqrt(b) != sqrt(a+b)`), * so it is computed by whoever SERVED the read. Pythia computes it for her gateway * reads; an entity with its own direct node access (the AncientHub) imports this * SAME pure function to compute byte-identical weights locally for PythXP * attribution — no round trip to Pythia. Keyless: it reads only a node's reported * `gas` and the response byte size; it signs nothing and holds no keys. */ /** classBase per Pythia read verb: `/read` is a Pact `local` (10), `/poll` is a * status/mempool query (5). */ export declare const CLASS_BASE: { readonly read: 10; readonly poll: 5; }; export declare function pondus(input: { classBase: number; gasUsed: number; responseBytes: number; }): number;