@uniswap/client-data-api 0.0.29 → 0.0.30

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.
@@ -313,6 +313,12 @@ export declare class Auction extends Message<Auction> {
313
313
  * @generated from field: string auction_steps_data = 23;
314
314
  */
315
315
  auctionStepsData: string;
316
+ /**
317
+ * null if error on rpc call
318
+ *
319
+ * @generated from field: optional string token_total_supply = 24;
320
+ */
321
+ tokenTotalSupply?: string;
316
322
  constructor(data?: PartialMessage<Auction>);
317
323
  static readonly runtime: typeof proto3;
318
324
  static readonly typeName = "data.v1.Auction";
@@ -386,6 +392,10 @@ export declare class Checkpoint extends Message<Checkpoint> {
386
392
  * @generated from field: int32 cumulative_mps = 4;
387
393
  */
388
394
  cumulativeMps: number;
395
+ /**
396
+ * @generated from field: int32 total_bid_count = 5;
397
+ */
398
+ totalBidCount: number;
389
399
  constructor(data?: PartialMessage<Checkpoint>);
390
400
  static readonly runtime: typeof proto3;
391
401
  static readonly typeName = "data.v1.Checkpoint";
@@ -463,6 +463,7 @@ Auction.fields = proto3.util.newFieldList(() => [
463
463
  { no: 21, name: "floor_price", kind: "scalar", T: 9 /* ScalarType.STRING */ },
464
464
  { no: 22, name: "required_currency_raised", kind: "scalar", T: 9 /* ScalarType.STRING */ },
465
465
  { no: 23, name: "auction_steps_data", kind: "scalar", T: 9 /* ScalarType.STRING */ },
466
+ { no: 24, name: "token_total_supply", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
466
467
  ]);
467
468
  /**
468
469
  * Response containing auctions.
@@ -557,6 +558,10 @@ export class Checkpoint extends Message {
557
558
  * @generated from field: int32 cumulative_mps = 4;
558
559
  */
559
560
  this.cumulativeMps = 0;
561
+ /**
562
+ * @generated from field: int32 total_bid_count = 5;
563
+ */
564
+ this.totalBidCount = 0;
560
565
  proto3.util.initPartial(data, this);
561
566
  }
562
567
  static fromBinary(bytes, options) {
@@ -579,6 +584,7 @@ Checkpoint.fields = proto3.util.newFieldList(() => [
579
584
  { no: 2, name: "currency_raised_at_clearing_price_q96_x7", kind: "scalar", T: 9 /* ScalarType.STRING */ },
580
585
  { no: 3, name: "cumulative_mps_per_price", kind: "scalar", T: 9 /* ScalarType.STRING */ },
581
586
  { no: 4, name: "cumulative_mps", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
587
+ { no: 5, name: "total_bid_count", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
582
588
  ]);
583
589
  /**
584
590
  * Response containing the latest checkpoint.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniswap/client-data-api",
3
- "version": "0.0.29",
3
+ "version": "0.0.30",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },