@uniswap/client-data-api 0.0.112 → 0.0.113

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.
@@ -410,6 +410,17 @@ export declare class Auction extends Message<Auction> {
410
410
  * @generated from field: optional string x_handle = 42;
411
411
  */
412
412
  xHandle?: string;
413
+ /**
414
+ * On-chain scheduled block at which post-auction LBP migration becomes
415
+ * allowed (the singleton strategy's MigratorParameters.migrationBlock,
416
+ * indexed via substreams). Null for old-factory LBP auctions, which emit no
417
+ * migration params — there is no computed fallback. This is when migrate() is
418
+ * permitted, NOT necessarily when it ran — for actual pool creation use
419
+ * lbp_migration_tx_hash / pool_key_hash.
420
+ *
421
+ * @generated from field: optional string lbp_migration_block = 43;
422
+ */
423
+ lbpMigrationBlock?: string;
413
424
  constructor(data?: PartialMessage<Auction>);
414
425
  static readonly runtime: typeof proto3;
415
426
  static readonly typeName = "data.v1.Auction";
@@ -489,6 +489,7 @@ Auction.fields = proto3.util.newFieldList(() => [
489
489
  { no: 40, name: "token_image_url", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
490
490
  { no: 41, name: "token_description", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
491
491
  { no: 42, name: "x_handle", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
492
+ { no: 43, name: "lbp_migration_block", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
492
493
  ]);
493
494
  /**
494
495
  * Response containing auctions.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniswap/client-data-api",
3
- "version": "0.0.112",
3
+ "version": "0.0.113",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },