@uniswap/client-data-api 0.0.34 → 0.0.36

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.
@@ -1213,6 +1213,10 @@ export declare class PlanTransaction extends Message<PlanTransaction> {
1213
1213
  * @generated from field: repeated string transaction_hashes = 13;
1214
1214
  */
1215
1215
  transactionHashes: string[];
1216
+ /**
1217
+ * @generated from field: optional string gas_fee = 14;
1218
+ */
1219
+ gasFee?: string;
1216
1220
  constructor(data?: PartialMessage<PlanTransaction>);
1217
1221
  static readonly runtime: typeof proto3;
1218
1222
  static readonly typeName = "data.v1.PlanTransaction";
@@ -1262,6 +1266,10 @@ export declare class PlanActivity extends Message<PlanActivity> {
1262
1266
  * @generated from field: optional uint32 chain_id = 9;
1263
1267
  */
1264
1268
  chainId?: number;
1269
+ /**
1270
+ * @generated from field: optional string gas_fee = 10;
1271
+ */
1272
+ gasFee?: string;
1265
1273
  constructor(data?: PartialMessage<PlanActivity>);
1266
1274
  static readonly runtime: typeof proto3;
1267
1275
  static readonly typeName = "data.v1.PlanActivity";
@@ -1583,6 +1583,7 @@ PlanTransaction.fields = proto3.util.newFieldList(() => [
1583
1583
  { no: 11, name: "swapper", kind: "scalar", T: 9 /* ScalarType.STRING */ },
1584
1584
  { no: 12, name: "recipient", kind: "scalar", T: 9 /* ScalarType.STRING */ },
1585
1585
  { no: 13, name: "transaction_hashes", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
1586
+ { no: 14, name: "gas_fee", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
1586
1587
  ]);
1587
1588
  /**
1588
1589
  * @generated from message data.v1.PlanActivity
@@ -1629,6 +1630,7 @@ PlanActivity.fields = proto3.util.newFieldList(() => [
1629
1630
  { no: 7, name: "status", kind: "enum", T: proto3.getEnumType(PlanStepStatus) },
1630
1631
  { no: 8, name: "transaction_hash", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
1631
1632
  { no: 9, name: "chain_id", kind: "scalar", T: 13 /* ScalarType.UINT32 */, opt: true },
1633
+ { no: 10, name: "gas_fee", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
1632
1634
  ]);
1633
1635
  /**
1634
1636
  * @generated from message data.v1.TokenAmount
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniswap/client-data-api",
3
- "version": "0.0.34",
3
+ "version": "0.0.36",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },