@uniswap/client-data-api 0.0.32 → 0.0.33
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.
|
@@ -396,6 +396,10 @@ export declare class Checkpoint extends Message<Checkpoint> {
|
|
|
396
396
|
* @generated from field: int32 total_bid_count = 5;
|
|
397
397
|
*/
|
|
398
398
|
totalBidCount: number;
|
|
399
|
+
/**
|
|
400
|
+
* @generated from field: string currency_raised = 6;
|
|
401
|
+
*/
|
|
402
|
+
currencyRaised: string;
|
|
399
403
|
constructor(data?: PartialMessage<Checkpoint>);
|
|
400
404
|
static readonly runtime: typeof proto3;
|
|
401
405
|
static readonly typeName = "data.v1.Checkpoint";
|
|
@@ -496,8 +500,6 @@ export declare class GetClearingPriceHistoryResponse extends Message<GetClearing
|
|
|
496
500
|
static equals(a: GetClearingPriceHistoryResponse | PlainMessage<GetClearingPriceHistoryResponse> | undefined, b: GetClearingPriceHistoryResponse | PlainMessage<GetClearingPriceHistoryResponse> | undefined): boolean;
|
|
497
501
|
}
|
|
498
502
|
/**
|
|
499
|
-
* Request to fetch recent auction activity (latest bids).
|
|
500
|
-
*
|
|
501
503
|
* @generated from message data.v1.GetAuctionActivityRequest
|
|
502
504
|
*/
|
|
503
505
|
export declare class GetAuctionActivityRequest extends Message<GetAuctionActivityRequest> {
|
|
@@ -519,8 +521,6 @@ export declare class GetAuctionActivityRequest extends Message<GetAuctionActivit
|
|
|
519
521
|
static equals(a: GetAuctionActivityRequest | PlainMessage<GetAuctionActivityRequest> | undefined, b: GetAuctionActivityRequest | PlainMessage<GetAuctionActivityRequest> | undefined): boolean;
|
|
520
522
|
}
|
|
521
523
|
/**
|
|
522
|
-
* A single activity entry representing a bid.
|
|
523
|
-
*
|
|
524
524
|
* @generated from message data.v1.AuctionActivityEntry
|
|
525
525
|
*/
|
|
526
526
|
export declare class AuctionActivityEntry extends Message<AuctionActivityEntry> {
|
|
@@ -533,8 +533,6 @@ export declare class AuctionActivityEntry extends Message<AuctionActivityEntry>
|
|
|
533
533
|
*/
|
|
534
534
|
wallet: string;
|
|
535
535
|
/**
|
|
536
|
-
* bid price as string
|
|
537
|
-
*
|
|
538
536
|
* @generated from field: string price = 3;
|
|
539
537
|
*/
|
|
540
538
|
price: string;
|
|
@@ -562,8 +560,6 @@ export declare class AuctionActivityEntry extends Message<AuctionActivityEntry>
|
|
|
562
560
|
static equals(a: AuctionActivityEntry | PlainMessage<AuctionActivityEntry> | undefined, b: AuctionActivityEntry | PlainMessage<AuctionActivityEntry> | undefined): boolean;
|
|
563
561
|
}
|
|
564
562
|
/**
|
|
565
|
-
* Response containing recent auction activity.
|
|
566
|
-
*
|
|
567
563
|
* @generated from message data.v1.GetAuctionActivityResponse
|
|
568
564
|
*/
|
|
569
565
|
export declare class GetAuctionActivityResponse extends Message<GetAuctionActivityResponse> {
|
|
@@ -562,6 +562,10 @@ export class Checkpoint extends Message {
|
|
|
562
562
|
* @generated from field: int32 total_bid_count = 5;
|
|
563
563
|
*/
|
|
564
564
|
this.totalBidCount = 0;
|
|
565
|
+
/**
|
|
566
|
+
* @generated from field: string currency_raised = 6;
|
|
567
|
+
*/
|
|
568
|
+
this.currencyRaised = "";
|
|
565
569
|
proto3.util.initPartial(data, this);
|
|
566
570
|
}
|
|
567
571
|
static fromBinary(bytes, options) {
|
|
@@ -585,6 +589,7 @@ Checkpoint.fields = proto3.util.newFieldList(() => [
|
|
|
585
589
|
{ no: 3, name: "cumulative_mps_per_price", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
586
590
|
{ no: 4, name: "cumulative_mps", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
|
|
587
591
|
{ no: 5, name: "total_bid_count", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
|
|
592
|
+
{ no: 6, name: "currency_raised", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
588
593
|
]);
|
|
589
594
|
/**
|
|
590
595
|
* Response containing the latest checkpoint.
|
|
@@ -728,8 +733,6 @@ GetClearingPriceHistoryResponse.fields = proto3.util.newFieldList(() => [
|
|
|
728
733
|
{ no: 1, name: "changes", kind: "message", T: ClearingPriceChange, repeated: true },
|
|
729
734
|
]);
|
|
730
735
|
/**
|
|
731
|
-
* Request to fetch recent auction activity (latest bids).
|
|
732
|
-
*
|
|
733
736
|
* @generated from message data.v1.GetAuctionActivityRequest
|
|
734
737
|
*/
|
|
735
738
|
export class GetAuctionActivityRequest extends Message {
|
|
@@ -765,8 +768,6 @@ GetAuctionActivityRequest.fields = proto3.util.newFieldList(() => [
|
|
|
765
768
|
{ no: 2, name: "address", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
766
769
|
]);
|
|
767
770
|
/**
|
|
768
|
-
* A single activity entry representing a bid.
|
|
769
|
-
*
|
|
770
771
|
* @generated from message data.v1.AuctionActivityEntry
|
|
771
772
|
*/
|
|
772
773
|
export class AuctionActivityEntry extends Message {
|
|
@@ -781,8 +782,6 @@ export class AuctionActivityEntry extends Message {
|
|
|
781
782
|
*/
|
|
782
783
|
this.wallet = "";
|
|
783
784
|
/**
|
|
784
|
-
* bid price as string
|
|
785
|
-
*
|
|
786
785
|
* @generated from field: string price = 3;
|
|
787
786
|
*/
|
|
788
787
|
this.price = "";
|
|
@@ -826,8 +825,6 @@ AuctionActivityEntry.fields = proto3.util.newFieldList(() => [
|
|
|
826
825
|
{ no: 6, name: "status", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
827
826
|
]);
|
|
828
827
|
/**
|
|
829
|
-
* Response containing recent auction activity.
|
|
830
|
-
*
|
|
831
828
|
* @generated from message data.v1.GetAuctionActivityResponse
|
|
832
829
|
*/
|
|
833
830
|
export class GetAuctionActivityResponse extends Message {
|