@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?: string;
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?: string;
362
+ builtAt: string;
363
363
  sponsorWallet: string | null;
364
364
  }
365
365
  export interface WalletDetails {
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@glowlabs-org/utils",
3
- "version": "0.2.90",
3
+ "version": "0.2.91",
4
4
  "description": "A library containing all typechain types and addresses relating to the glow guarded launch",
5
5
  "keywords": [],
6
6
  "author": "",
@@ -299,7 +299,7 @@ export interface SponsoredFarm {
299
299
  protocolDepositPayerWallet: string | null;
300
300
  builtEpoch: number;
301
301
  isPurchased: boolean;
302
- builtAt?: string;
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?: string; // ISO 8601
454
+ builtAt: string; // ISO 8601
455
455
  sponsorWallet: string | null;
456
456
  }
457
457