@glowlabs-org/utils 0.2.33 → 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.
@@ -173,10 +173,15 @@ export interface SponsoredFarm {
173
173
  farmId: string;
174
174
  installerId: string;
175
175
  ownerId: string;
176
- mwCapacity: string;
177
- expectedCredits: string;
176
+ kwhCapacity: string;
177
+ solarPanelsQuantity: number;
178
+ adjustedWeeklyCarbonCredits: string;
179
+ protocolDepositAmount: string;
180
+ protocolDepositPayerWallet: string | null;
178
181
  builtEpoch: number;
179
182
  isPurchased: boolean;
183
+ builtAt?: string;
184
+ purchaserWallet: string | null;
180
185
  }
181
186
  export interface RegionVcr {
182
187
  id: number;
@@ -173,10 +173,15 @@ export interface SponsoredFarm {
173
173
  farmId: string;
174
174
  installerId: string;
175
175
  ownerId: string;
176
- mwCapacity: string;
177
- expectedCredits: string;
176
+ kwhCapacity: string;
177
+ solarPanelsQuantity: number;
178
+ adjustedWeeklyCarbonCredits: string;
179
+ protocolDepositAmount: string;
180
+ protocolDepositPayerWallet: string | null;
178
181
  builtEpoch: number;
179
182
  isPurchased: boolean;
183
+ builtAt?: string;
184
+ purchaserWallet: string | null;
180
185
  }
181
186
  export interface RegionVcr {
182
187
  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.34",
4
4
  "description": "A library containing all typechain types and addresses relating to the glow guarded launch",
5
5
  "keywords": [],
6
6
  "author": "",
@@ -221,10 +221,15 @@ export interface SponsoredFarm {
221
221
  farmId: string;
222
222
  installerId: string;
223
223
  ownerId: string;
224
- mwCapacity: string;
225
- expectedCredits: string;
224
+ kwhCapacity: string;
225
+ solarPanelsQuantity: number;
226
+ adjustedWeeklyCarbonCredits: string;
227
+ protocolDepositAmount: string;
228
+ protocolDepositPayerWallet: string | null;
226
229
  builtEpoch: number;
227
230
  isPurchased: boolean;
231
+ builtAt?: string;
232
+ purchaserWallet: string | null;
228
233
  }
229
234
 
230
235
  export interface RegionVcr {