@uniswap/client-data-api 0.0.131 → 0.0.132

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.
@@ -980,9 +980,10 @@ export declare class ListLaunchpadsResponse extends Message<ListLaunchpadsRespon
980
980
  */
981
981
  export declare class ListLaunchesRequest extends Message<ListLaunchesRequest> {
982
982
  /**
983
- * empty = all launchpads
983
+ * Deprecated: use launchpad_ids. When both are set they are unioned.
984
984
  *
985
- * @generated from field: optional string launchpad_id = 1;
985
+ * @generated from field: optional string launchpad_id = 1 [deprecated = true];
986
+ * @deprecated
986
987
  */
987
988
  launchpadId?: string;
988
989
  /**
@@ -1001,6 +1002,12 @@ export declare class ListLaunchesRequest extends Message<ListLaunchesRequest> {
1001
1002
  * @generated from field: optional data.v2.PageRequest page = 4;
1002
1003
  */
1003
1004
  page?: PageRequest;
1005
+ /**
1006
+ * empty = all launchpads
1007
+ *
1008
+ * @generated from field: repeated string launchpad_ids = 5;
1009
+ */
1010
+ launchpadIds: string[];
1004
1011
  constructor(data?: PartialMessage<ListLaunchesRequest>);
1005
1012
  static readonly runtime: typeof proto3;
1006
1013
  static readonly typeName = "data.v2.ListLaunchesRequest";
@@ -1328,6 +1328,12 @@ export class ListLaunchesRequest extends Message {
1328
1328
  * @generated from field: data.v2.LaunchesOrderBy sort_by = 3;
1329
1329
  */
1330
1330
  this.sortBy = LaunchesOrderBy.UNSPECIFIED;
1331
+ /**
1332
+ * empty = all launchpads
1333
+ *
1334
+ * @generated from field: repeated string launchpad_ids = 5;
1335
+ */
1336
+ this.launchpadIds = [];
1331
1337
  proto3.util.initPartial(data, this);
1332
1338
  }
1333
1339
  static fromBinary(bytes, options) {
@@ -1350,6 +1356,7 @@ ListLaunchesRequest.fields = proto3.util.newFieldList(() => [
1350
1356
  { no: 2, name: "chain_ids", kind: "scalar", T: 13 /* ScalarType.UINT32 */, repeated: true },
1351
1357
  { no: 3, name: "sort_by", kind: "enum", T: proto3.getEnumType(LaunchesOrderBy) },
1352
1358
  { no: 4, name: "page", kind: "message", T: PageRequest, opt: true },
1359
+ { no: 5, name: "launchpad_ids", kind: "scalar", T: 9 /* ScalarType.STRING */, repeated: true },
1353
1360
  ]);
1354
1361
  /**
1355
1362
  * @generated from message data.v2.ListLaunchesResponse
@@ -881,6 +881,14 @@ export declare class LaunchStats extends Message<LaunchStats> {
881
881
  * @generated from field: optional double price_change_percent_24h = 6;
882
882
  */
883
883
  priceChangePercent24h?: number;
884
+ /**
885
+ * USD price sparkline over the trailing 24h, oldest first. Same shape as
886
+ * RankedMultichainToken.sparkline (Aurora-side timestamps are synthesized;
887
+ * CCA points are observed). Empty when no series is available.
888
+ *
889
+ * @generated from field: repeated data.v1.TimestampedValue sparkline = 7;
890
+ */
891
+ sparkline: TimestampedValue[];
884
892
  constructor(data?: PartialMessage<LaunchStats>);
885
893
  static readonly runtime: typeof proto3;
886
894
  static readonly typeName = "data.v2.LaunchStats";
@@ -932,6 +940,31 @@ export declare class Launch extends Message<Launch> {
932
940
  * @generated from field: optional bool graduated = 7;
933
941
  */
934
942
  graduated?: boolean;
943
+ /**
944
+ * CCA launches only, pre-graduation: bid volume as a percent of the
945
+ * required raise, clamped to [0, 100]. Unset once graduated, when the
946
+ * auction has no required raise, and for hook-attributed launches.
947
+ *
948
+ * @generated from field: optional double auction_fill_pct = 8;
949
+ */
950
+ auctionFillPct?: number;
951
+ /**
952
+ * CCA launches only, pre-graduation: the auction's end block number
953
+ * (bigint as string). Clients estimate calendar time from blocks, like the
954
+ * v1 auction start_block/end_block. Unset once graduated.
955
+ *
956
+ * @generated from field: optional string auction_end_block = 9;
957
+ */
958
+ auctionEndBlock?: string;
959
+ /**
960
+ * CCA launches only: distinct wallets that have placed bids in the auction
961
+ * (all bids, including withdrawn/exited — historical participation, so it
962
+ * stays set after graduation). Unset for hook-attributed launches, which
963
+ * have no auction. int32 matches the v1 auction total_bid_count.
964
+ *
965
+ * @generated from field: optional int32 bidder_count = 10;
966
+ */
967
+ bidderCount?: number;
935
968
  constructor(data?: PartialMessage<Launch>);
936
969
  static readonly runtime: typeof proto3;
937
970
  static readonly typeName = "data.v2.Launch";
@@ -1004,6 +1004,14 @@ LaunchToken.fields = proto3.util.newFieldList(() => [
1004
1004
  export class LaunchStats extends Message {
1005
1005
  constructor(data) {
1006
1006
  super();
1007
+ /**
1008
+ * USD price sparkline over the trailing 24h, oldest first. Same shape as
1009
+ * RankedMultichainToken.sparkline (Aurora-side timestamps are synthesized;
1010
+ * CCA points are observed). Empty when no series is available.
1011
+ *
1012
+ * @generated from field: repeated data.v1.TimestampedValue sparkline = 7;
1013
+ */
1014
+ this.sparkline = [];
1007
1015
  proto3.util.initPartial(data, this);
1008
1016
  }
1009
1017
  static fromBinary(bytes, options) {
@@ -1028,6 +1036,7 @@ LaunchStats.fields = proto3.util.newFieldList(() => [
1028
1036
  { no: 4, name: "fdv_usd", kind: "scalar", T: 1 /* ScalarType.DOUBLE */, opt: true },
1029
1037
  { no: 5, name: "price_change_percent_1h", kind: "scalar", T: 1 /* ScalarType.DOUBLE */, opt: true },
1030
1038
  { no: 6, name: "price_change_percent_24h", kind: "scalar", T: 1 /* ScalarType.DOUBLE */, opt: true },
1039
+ { no: 7, name: "sparkline", kind: "message", T: TimestampedValue, repeated: true },
1031
1040
  ]);
1032
1041
  /**
1033
1042
  * One token launch: the earliest pool a (token, launchpad) pair created.
@@ -1079,6 +1088,9 @@ Launch.fields = proto3.util.newFieldList(() => [
1079
1088
  { no: 5, name: "launched_at", kind: "scalar", T: 3 /* ScalarType.INT64 */ },
1080
1089
  { no: 6, name: "stats", kind: "message", T: LaunchStats },
1081
1090
  { no: 7, name: "graduated", kind: "scalar", T: 8 /* ScalarType.BOOL */, opt: true },
1091
+ { no: 8, name: "auction_fill_pct", kind: "scalar", T: 1 /* ScalarType.DOUBLE */, opt: true },
1092
+ { no: 9, name: "auction_end_block", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
1093
+ { no: 10, name: "bidder_count", kind: "scalar", T: 5 /* ScalarType.INT32 */, opt: true },
1082
1094
  ]);
1083
1095
  /**
1084
1096
  * @generated from message data.v2.NftImage
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniswap/client-data-api",
3
- "version": "0.0.131",
3
+ "version": "0.0.132",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },