export const QUOTA_UNITS_PER_USD = 500000; export function quotaToUsd(quota: number): number { return quota / QUOTA_UNITS_PER_USD; }