@spheron/protocol-sdk
Version:
Spheron Protocol SDK
16 lines • 582 B
TypeScript
export interface IGpuConfig {
id: number;
name: string;
tier: 'Entry 1' | 'Entry 2' | 'Low 1' | 'Low 2' | 'Medium 1' | 'Medium 2' | 'High 1' | 'High 2' | 'Ultra High 1' | 'Ultra High 2' | 'Ultra High 3';
shortName: string;
multiplier: number;
baseFnPoints: number;
fizzGpuPricePerHour: number;
fizzGpuPricePerMonth: number;
fizzCpuPricePerMonth: number;
fizzRamPricePerGbPerMonth: number;
fizzStoragePricePerGbPerMonth: number;
vendor: 'nvidia';
}
export declare const GpuConfig: IGpuConfig[];
//# sourceMappingURL=gpu-config.d.ts.map