@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
|
-
|
|
177
|
-
|
|
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
|
-
|
|
177
|
-
|
|
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
package/src/lib/types/index.ts
CHANGED
|
@@ -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
|
-
|
|
225
|
-
|
|
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 {
|