@uniswap/client-data-api 0.0.184 → 0.0.189

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.
@@ -591,6 +591,24 @@ export declare class Auction extends Message<Auction> {
591
591
  * @generated from field: optional google.protobuf.Timestamp estimated_end_time = 47;
592
592
  */
593
593
  estimatedEndTime?: Timestamp;
594
+ /**
595
+ * X profile image URL of the verified launcher account, captured from the
596
+ * launch's signed x-verification claims. Same gate as x_handle: served only
597
+ * when the inline-at-ingest Ed25519 verification passed. Unset for launches
598
+ * that predate claim capture (backfill pending) or carry no avatar.
599
+ *
600
+ * @generated from field: optional string x_profile_image_url = 48;
601
+ */
602
+ xProfileImageUrl?: string;
603
+ /**
604
+ * Whether the launcher's X account was verified (blue check) when captured.
605
+ * Tri-state via presence: unset = unknown (pre-feature launch, not yet
606
+ * backfilled), false = X reported not verified, true = verified. Same
607
+ * x_handle_status gate as x_handle / x_profile_image_url.
608
+ *
609
+ * @generated from field: optional bool x_verified = 49;
610
+ */
611
+ xVerified?: boolean;
594
612
  constructor(data?: PartialMessage<Auction>);
595
613
  static readonly runtime: typeof proto3;
596
614
  static readonly typeName = "data.v1.Auction";
@@ -655,6 +655,8 @@ Auction.fields = proto3.util.newFieldList(() => [
655
655
  { no: 45, name: "pool_owner", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
656
656
  { no: 46, name: "is_quick_launch", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
657
657
  { no: 47, name: "estimated_end_time", kind: "message", T: Timestamp, opt: true },
658
+ { no: 48, name: "x_profile_image_url", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
659
+ { no: 49, name: "x_verified", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
658
660
  ]);
659
661
  /**
660
662
  * Response containing auctions.
@@ -1088,6 +1088,20 @@ export declare class Pool extends Message<Pool> {
1088
1088
  * @generated from field: optional string liquidity = 12;
1089
1089
  */
1090
1090
  liquidity?: string;
1091
+ /**
1092
+ * Protocol fee (pips): additive on top of the LP fee for V4, a carve-out
1093
+ * of the fee tier for V2/V3. Unset when unavailable.
1094
+ *
1095
+ * @generated from field: optional uint32 protocol_fee = 13;
1096
+ */
1097
+ protocolFee?: number;
1098
+ /**
1099
+ * Effective (all-in) fee (pips): V4 fee_tier + protocol_fee; V2/V3 the fee
1100
+ * tier. Unset when protocol_fee is unavailable (incl. V4 dynamic-fee).
1101
+ *
1102
+ * @generated from field: optional uint32 effective_fee = 14;
1103
+ */
1104
+ effectiveFee?: number;
1091
1105
  constructor(data?: PartialMessage<Pool>);
1092
1106
  static readonly runtime: typeof proto3;
1093
1107
  static readonly typeName = "data.v2.Pool";
@@ -1722,6 +1736,24 @@ export declare class Launch extends Message<Launch> {
1722
1736
  * @generated from field: optional int64 auction_end_time = 21;
1723
1737
  */
1724
1738
  auctionEndTime?: bigint;
1739
+ /**
1740
+ * X profile image URL of the verified launcher account, captured from the
1741
+ * launch's signed x-verification claims. Same gate as x_handle: served only
1742
+ * when the inline-at-ingest Ed25519 verification passed. Unset for launches
1743
+ * that predate claim capture (backfill pending) or carry no avatar.
1744
+ *
1745
+ * @generated from field: optional string x_profile_image_url = 22;
1746
+ */
1747
+ xProfileImageUrl?: string;
1748
+ /**
1749
+ * Whether the launcher's X account was verified (blue check) when captured.
1750
+ * Tri-state via presence: unset = unknown (pre-feature launch, not yet
1751
+ * backfilled), false = X reported not verified, true = verified. Same
1752
+ * x_handle_status gate as x_handle / x_profile_image_url.
1753
+ *
1754
+ * @generated from field: optional bool x_verified = 23;
1755
+ */
1756
+ xVerified?: boolean;
1725
1757
  constructor(data?: PartialMessage<Launch>);
1726
1758
  static readonly runtime: typeof proto3;
1727
1759
  static readonly typeName = "data.v2.Launch";
@@ -1214,6 +1214,8 @@ Pool.fields = proto3.util.newFieldList(() => [
1214
1214
  { no: 10, name: "current_tick", kind: "scalar", T: 5 /* ScalarType.INT32 */, opt: true },
1215
1215
  { no: 11, name: "sqrt_price_x96", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
1216
1216
  { no: 12, name: "liquidity", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
1217
+ { no: 13, name: "protocol_fee", kind: "scalar", T: 13 /* ScalarType.UINT32 */, opt: true },
1218
+ { no: 14, name: "effective_fee", kind: "scalar", T: 13 /* ScalarType.UINT32 */, opt: true },
1217
1219
  ]);
1218
1220
  /**
1219
1221
  * @generated from message data.v2.PoolTokenFilter
@@ -1789,6 +1791,8 @@ Launch.fields = proto3.util.newFieldList(() => [
1789
1791
  { no: 19, name: "burned_to_zero", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
1790
1792
  { no: 20, name: "burned_to_dead", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
1791
1793
  { no: 21, name: "auction_end_time", kind: "scalar", T: 3 /* ScalarType.INT64 */, opt: true },
1794
+ { no: 22, name: "x_profile_image_url", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
1795
+ { no: 23, name: "x_verified", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
1792
1796
  ]);
1793
1797
  /**
1794
1798
  * One row of a launch token's holder list (GetLaunchHolders).
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniswap/client-data-api",
3
- "version": "0.0.184",
3
+ "version": "0.0.189",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },