/** * AUTO-GENERATED compute-unit costs for the Nosana jobs program instructions. * * Please DO NOT EDIT THIS FILE by hand. Regenerate it with: * * pnpm gen:cu * * which measures each instruction's real `unitsConsumed` against a local validator * (see packages/scenario/scripts/measure-compute-units.ts) and applies a margin. * * measuredAt: 2026-06-18T06:08:49.565Z * margin: max of 3 samples + 20%, rounded up to 1,000 CU */ /** * Measured compute-unit cost per jobs instruction, keyed by the operation name. * Each value is a conservative upper bound that includes the safety margin, * suitable for use directly as a `SetComputeUnitLimit`. * @group @nosana/kit */ export declare const JOBS_COMPUTE_UNITS: { readonly open: 37000; readonly list: 23000; readonly assign: 30000; readonly work: 17000; readonly complete: 5000; readonly finish: 17000; readonly quit: 7000; readonly stop: 5000; readonly extend: 17000; readonly delist: 13000; readonly close: 26000; readonly end: 16000; }; /** * Name of a jobs instruction with a known compute-unit cost. * @group @nosana/kit */ export type JobsInstructionName = keyof typeof JOBS_COMPUTE_UNITS; //# sourceMappingURL=computeUnits.generated.d.ts.map