@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
|
-
|
|
177
|
-
|
|
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
|
-
|
|
177
|
-
|
|
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
package/src/lib/types/index.ts
CHANGED
|
@@ -221,10 +221,15 @@ export interface SponsoredFarm {
|
|
|
221
221
|
farmId: string;
|
|
222
222
|
installerId: string;
|
|
223
223
|
ownerId: string;
|
|
224
|
-
|
|
225
|
-
|
|
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 {
|