@uniswap/client-data-api 0.0.54 → 0.0.55

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.
@@ -372,6 +372,32 @@ export declare class Auction extends Message<Auction> {
372
372
  * @generated from field: optional int32 currency_token_decimals = 34;
373
373
  */
374
374
  currencyTokenDecimals?: number;
375
+ /**
376
+ * Whether the auction's token name or symbol contains inappropriate language
377
+ *
378
+ * @generated from field: optional bool is_flagged = 35;
379
+ */
380
+ isFlagged?: boolean;
381
+ /**
382
+ * LBP strategy fields (nullable - only set for auctions created via LBP strategy)
383
+ *
384
+ * @generated from field: optional string lbp_strategy_address = 36;
385
+ */
386
+ lbpStrategyAddress?: string;
387
+ /**
388
+ * @generated from field: optional string pool_key_hash = 37;
389
+ */
390
+ poolKeyHash?: string;
391
+ /**
392
+ * @generated from field: optional string initial_sqrt_price_x96 = 38;
393
+ */
394
+ initialSqrtPriceX96?: string;
395
+ /**
396
+ * LBP migration fields (nullable - only set after post-auction V4 pool migration)
397
+ *
398
+ * @generated from field: optional string lbp_migration_tx_hash = 39;
399
+ */
400
+ lbpMigrationTxHash?: string;
375
401
  constructor(data?: PartialMessage<Auction>);
376
402
  static readonly runtime: typeof proto3;
377
403
  static readonly typeName = "data.v1.Auction";
@@ -481,6 +481,11 @@ Auction.fields = proto3.util.newFieldList(() => [
481
481
  { no: 32, name: "currency_token_name", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
482
482
  { no: 33, name: "currency_token_symbol", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
483
483
  { no: 34, name: "currency_token_decimals", kind: "scalar", T: 5 /* ScalarType.INT32 */, opt: true },
484
+ { no: 35, name: "is_flagged", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
485
+ { no: 36, name: "lbp_strategy_address", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
486
+ { no: 37, name: "pool_key_hash", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
487
+ { no: 38, name: "initial_sqrt_price_x96", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
488
+ { no: 39, name: "lbp_migration_tx_hash", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
484
489
  ]);
485
490
  /**
486
491
  * Response containing auctions.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniswap/client-data-api",
3
- "version": "0.0.54",
3
+ "version": "0.0.55",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },