@glowlabs-org/utils 0.2.90 → 0.2.91
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.
|
@@ -232,7 +232,7 @@ export interface SponsoredFarm {
|
|
|
232
232
|
protocolDepositPayerWallet: string | null;
|
|
233
233
|
builtEpoch: number;
|
|
234
234
|
isPurchased: boolean;
|
|
235
|
-
builtAt
|
|
235
|
+
builtAt: string;
|
|
236
236
|
sponsorWallet: string | null;
|
|
237
237
|
afterInstallPictures: {
|
|
238
238
|
id: string;
|
|
@@ -359,7 +359,7 @@ export interface WalletFarmInfo {
|
|
|
359
359
|
protocolDepositPayerWallet: string | null;
|
|
360
360
|
builtEpoch: number;
|
|
361
361
|
isPurchased: boolean;
|
|
362
|
-
builtAt
|
|
362
|
+
builtAt: string;
|
|
363
363
|
sponsorWallet: string | null;
|
|
364
364
|
}
|
|
365
365
|
export interface WalletDetails {
|
package/package.json
CHANGED
package/src/lib/types/index.ts
CHANGED
|
@@ -299,7 +299,7 @@ export interface SponsoredFarm {
|
|
|
299
299
|
protocolDepositPayerWallet: string | null;
|
|
300
300
|
builtEpoch: number;
|
|
301
301
|
isPurchased: boolean;
|
|
302
|
-
builtAt
|
|
302
|
+
builtAt: string;
|
|
303
303
|
sponsorWallet: string | null;
|
|
304
304
|
afterInstallPictures: {
|
|
305
305
|
id: string;
|
|
@@ -451,7 +451,7 @@ export interface WalletFarmInfo {
|
|
|
451
451
|
protocolDepositPayerWallet: string | null;
|
|
452
452
|
builtEpoch: number;
|
|
453
453
|
isPurchased: boolean;
|
|
454
|
-
builtAt
|
|
454
|
+
builtAt: string; // ISO 8601
|
|
455
455
|
sponsorWallet: string | null;
|
|
456
456
|
}
|
|
457
457
|
|