@glowlabs-org/utils 0.2.32 → 0.2.34

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -216,6 +216,40 @@ export interface ActivationEvent {
216
216
  ts: string; // ISO 8601
217
217
  }
218
218
 
219
+ // ----------------------------- Region VCR View ------------------------------
220
+ export interface SponsoredFarm {
221
+ farmId: string;
222
+ installerId: string;
223
+ ownerId: string;
224
+ kwhCapacity: string;
225
+ solarPanelsQuantity: number;
226
+ adjustedWeeklyCarbonCredits: string;
227
+ protocolDepositAmount: string;
228
+ protocolDepositPayerWallet: string | null;
229
+ builtEpoch: number;
230
+ isPurchased: boolean;
231
+ builtAt?: string;
232
+ purchaserWallet: string | null;
233
+ }
234
+
235
+ export interface RegionVcr {
236
+ id: number;
237
+ name: string;
238
+ gctl: {
239
+ circulating: string;
240
+ staked: string;
241
+ };
242
+ verifiedInstallersCount: number;
243
+ description: string;
244
+ sponsoredFarms: SponsoredFarm[];
245
+ banner: string;
246
+ glwPerWeek: number;
247
+ usdgPerWeek: number;
248
+ gctlPerWeek: number;
249
+ carbonCreditsIssued: number;
250
+ carbonCreditsPerWeek: number;
251
+ }
252
+
219
253
  // ---------------------------------------------------------------------------
220
254
  // Barrel exports (convenience)
221
255
  // ---------------------------------------------------------------------------