@glowlabs-org/utils 0.2.33 → 0.2.35

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.
@@ -171,12 +171,18 @@ export interface ActivationEvent {
171
171
  }
172
172
  export interface SponsoredFarm {
173
173
  farmId: string;
174
+ name: string;
174
175
  installerId: string;
175
176
  ownerId: string;
176
- mwCapacity: string;
177
- expectedCredits: string;
177
+ kwhCapacity: string;
178
+ solarPanelsQuantity: number;
179
+ adjustedWeeklyCarbonCredits: string;
180
+ protocolDepositAmount: string;
181
+ protocolDepositPayerWallet: string | null;
178
182
  builtEpoch: number;
179
183
  isPurchased: boolean;
184
+ builtAt?: string;
185
+ purchaserWallet: string | null;
180
186
  }
181
187
  export interface RegionVcr {
182
188
  id: number;
@@ -171,12 +171,18 @@ export interface ActivationEvent {
171
171
  }
172
172
  export interface SponsoredFarm {
173
173
  farmId: string;
174
+ name: string;
174
175
  installerId: string;
175
176
  ownerId: string;
176
- mwCapacity: string;
177
- expectedCredits: string;
177
+ kwhCapacity: string;
178
+ solarPanelsQuantity: number;
179
+ adjustedWeeklyCarbonCredits: string;
180
+ protocolDepositAmount: string;
181
+ protocolDepositPayerWallet: string | null;
178
182
  builtEpoch: number;
179
183
  isPurchased: boolean;
184
+ builtAt?: string;
185
+ purchaserWallet: string | null;
180
186
  }
181
187
  export interface RegionVcr {
182
188
  id: number;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@glowlabs-org/utils",
3
- "version": "0.2.33",
3
+ "version": "0.2.35",
4
4
  "description": "A library containing all typechain types and addresses relating to the glow guarded launch",
5
5
  "keywords": [],
6
6
  "author": "",
@@ -219,12 +219,18 @@ export interface ActivationEvent {
219
219
  // ----------------------------- Region VCR View ------------------------------
220
220
  export interface SponsoredFarm {
221
221
  farmId: string;
222
+ name: string;
222
223
  installerId: string;
223
224
  ownerId: string;
224
- mwCapacity: string;
225
- expectedCredits: string;
225
+ kwhCapacity: string;
226
+ solarPanelsQuantity: number;
227
+ adjustedWeeklyCarbonCredits: string;
228
+ protocolDepositAmount: string;
229
+ protocolDepositPayerWallet: string | null;
226
230
  builtEpoch: number;
227
231
  isPurchased: boolean;
232
+ builtAt?: string;
233
+ purchaserWallet: string | null;
228
234
  }
229
235
 
230
236
  export interface RegionVcr {