@uniswap/client-data-api 0.0.44 → 0.0.45
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.
|
@@ -434,11 +434,13 @@ export declare class Checkpoint extends Message<Checkpoint> {
|
|
|
434
434
|
*/
|
|
435
435
|
cumulativeMps: number;
|
|
436
436
|
/**
|
|
437
|
-
* @generated from field: int32 total_bid_count = 5;
|
|
437
|
+
* @generated from field: int32 total_bid_count = 5 [deprecated = true];
|
|
438
|
+
* @deprecated
|
|
438
439
|
*/
|
|
439
440
|
totalBidCount: number;
|
|
440
441
|
/**
|
|
441
|
-
* @generated from field: string currency_raised = 6;
|
|
442
|
+
* @generated from field: string currency_raised = 6 [deprecated = true];
|
|
443
|
+
* @deprecated
|
|
442
444
|
*/
|
|
443
445
|
currencyRaised: string;
|
|
444
446
|
/**
|
|
@@ -476,7 +478,8 @@ export declare class Checkpoint extends Message<Checkpoint> {
|
|
|
476
478
|
/**
|
|
477
479
|
* bigint as string - total tokens cleared
|
|
478
480
|
*
|
|
479
|
-
* @generated from field: string total_cleared = 13;
|
|
481
|
+
* @generated from field: string total_cleared = 13 [deprecated = true];
|
|
482
|
+
* @deprecated
|
|
480
483
|
*/
|
|
481
484
|
totalCleared: string;
|
|
482
485
|
constructor(data?: PartialMessage<Checkpoint>);
|
|
@@ -498,6 +501,22 @@ export declare class GetLatestCheckpointResponse extends Message<GetLatestCheckp
|
|
|
498
501
|
* @generated from field: data.v1.Checkpoint checkpoint = 1;
|
|
499
502
|
*/
|
|
500
503
|
checkpoint?: Checkpoint;
|
|
504
|
+
/**
|
|
505
|
+
* @generated from field: data.v1.Checkpoint simulated_checkpoint = 2;
|
|
506
|
+
*/
|
|
507
|
+
simulatedCheckpoint?: Checkpoint;
|
|
508
|
+
/**
|
|
509
|
+
* @generated from field: int32 total_bid_count = 3;
|
|
510
|
+
*/
|
|
511
|
+
totalBidCount: number;
|
|
512
|
+
/**
|
|
513
|
+
* @generated from field: string currency_raised = 4;
|
|
514
|
+
*/
|
|
515
|
+
currencyRaised: string;
|
|
516
|
+
/**
|
|
517
|
+
* @generated from field: string total_cleared = 5;
|
|
518
|
+
*/
|
|
519
|
+
totalCleared: string;
|
|
501
520
|
constructor(data?: PartialMessage<GetLatestCheckpointResponse>);
|
|
502
521
|
static readonly runtime: typeof proto3;
|
|
503
522
|
static readonly typeName = "data.v1.GetLatestCheckpointResponse";
|
|
@@ -613,17 +613,20 @@ export class Checkpoint extends Message {
|
|
|
613
613
|
*/
|
|
614
614
|
this.cumulativeMps = 0;
|
|
615
615
|
/**
|
|
616
|
-
* @generated from field: int32 total_bid_count = 5;
|
|
616
|
+
* @generated from field: int32 total_bid_count = 5 [deprecated = true];
|
|
617
|
+
* @deprecated
|
|
617
618
|
*/
|
|
618
619
|
this.totalBidCount = 0;
|
|
619
620
|
/**
|
|
620
|
-
* @generated from field: string currency_raised = 6;
|
|
621
|
+
* @generated from field: string currency_raised = 6 [deprecated = true];
|
|
622
|
+
* @deprecated
|
|
621
623
|
*/
|
|
622
624
|
this.currencyRaised = "";
|
|
623
625
|
/**
|
|
624
626
|
* bigint as string - total tokens cleared
|
|
625
627
|
*
|
|
626
|
-
* @generated from field: string total_cleared = 13;
|
|
628
|
+
* @generated from field: string total_cleared = 13 [deprecated = true];
|
|
629
|
+
* @deprecated
|
|
627
630
|
*/
|
|
628
631
|
this.totalCleared = "";
|
|
629
632
|
proto3.util.initPartial(data, this);
|
|
@@ -666,6 +669,18 @@ Checkpoint.fields = proto3.util.newFieldList(() => [
|
|
|
666
669
|
export class GetLatestCheckpointResponse extends Message {
|
|
667
670
|
constructor(data) {
|
|
668
671
|
super();
|
|
672
|
+
/**
|
|
673
|
+
* @generated from field: int32 total_bid_count = 3;
|
|
674
|
+
*/
|
|
675
|
+
this.totalBidCount = 0;
|
|
676
|
+
/**
|
|
677
|
+
* @generated from field: string currency_raised = 4;
|
|
678
|
+
*/
|
|
679
|
+
this.currencyRaised = "";
|
|
680
|
+
/**
|
|
681
|
+
* @generated from field: string total_cleared = 5;
|
|
682
|
+
*/
|
|
683
|
+
this.totalCleared = "";
|
|
669
684
|
proto3.util.initPartial(data, this);
|
|
670
685
|
}
|
|
671
686
|
static fromBinary(bytes, options) {
|
|
@@ -685,6 +700,10 @@ GetLatestCheckpointResponse.runtime = proto3;
|
|
|
685
700
|
GetLatestCheckpointResponse.typeName = "data.v1.GetLatestCheckpointResponse";
|
|
686
701
|
GetLatestCheckpointResponse.fields = proto3.util.newFieldList(() => [
|
|
687
702
|
{ no: 1, name: "checkpoint", kind: "message", T: Checkpoint },
|
|
703
|
+
{ no: 2, name: "simulated_checkpoint", kind: "message", T: Checkpoint },
|
|
704
|
+
{ no: 3, name: "total_bid_count", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
|
|
705
|
+
{ no: 4, name: "currency_raised", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
706
|
+
{ no: 5, name: "total_cleared", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
688
707
|
]);
|
|
689
708
|
/**
|
|
690
709
|
* Request to fetch clearing price history for an auction.
|