@uniswap/client-data-api 0.0.34 → 0.0.35
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.
|
@@ -432,6 +432,12 @@ export declare class Checkpoint extends Message<Checkpoint> {
|
|
|
432
432
|
* @generated from field: optional string created_at = 12;
|
|
433
433
|
*/
|
|
434
434
|
createdAt?: string;
|
|
435
|
+
/**
|
|
436
|
+
* bigint as string - total tokens cleared
|
|
437
|
+
*
|
|
438
|
+
* @generated from field: string total_cleared = 13;
|
|
439
|
+
*/
|
|
440
|
+
totalCleared: string;
|
|
435
441
|
constructor(data?: PartialMessage<Checkpoint>);
|
|
436
442
|
static readonly runtime: typeof proto3;
|
|
437
443
|
static readonly typeName = "data.v1.Checkpoint";
|
|
@@ -566,6 +566,12 @@ export class Checkpoint extends Message {
|
|
|
566
566
|
* @generated from field: string currency_raised = 6;
|
|
567
567
|
*/
|
|
568
568
|
this.currencyRaised = "";
|
|
569
|
+
/**
|
|
570
|
+
* bigint as string - total tokens cleared
|
|
571
|
+
*
|
|
572
|
+
* @generated from field: string total_cleared = 13;
|
|
573
|
+
*/
|
|
574
|
+
this.totalCleared = "";
|
|
569
575
|
proto3.util.initPartial(data, this);
|
|
570
576
|
}
|
|
571
577
|
static fromBinary(bytes, options) {
|
|
@@ -596,6 +602,7 @@ Checkpoint.fields = proto3.util.newFieldList(() => [
|
|
|
596
602
|
{ no: 10, name: "start_block", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
597
603
|
{ no: 11, name: "end_block", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
598
604
|
{ no: 12, name: "created_at", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
605
|
+
{ no: 13, name: "total_cleared", kind: "scalar", T: 9 /* ScalarType.STRING */ },
|
|
599
606
|
]);
|
|
600
607
|
/**
|
|
601
608
|
* Response containing the latest checkpoint.
|