@uniswap/client-data-api 0.0.153 → 0.0.154

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.
@@ -1422,6 +1422,14 @@ export declare class LaunchStats extends Message<LaunchStats> {
1422
1422
  * @generated from field: repeated data.v1.TimestampedValue sparkline = 7;
1423
1423
  */
1424
1424
  sparkline: TimestampedValue[];
1425
+ /**
1426
+ * price_usd in ETH terms, derived at serve time as price_usd divided by
1427
+ * the chain's native-ETH USD rate. Only set on chains whose native
1428
+ * currency is ETH; unset when either price is unavailable.
1429
+ *
1430
+ * @generated from field: optional double price_eth = 8;
1431
+ */
1432
+ priceEth?: number;
1425
1433
  constructor(data?: PartialMessage<LaunchStats>);
1426
1434
  static readonly runtime: typeof proto3;
1427
1435
  static readonly typeName = "data.v2.LaunchStats";
@@ -1656,6 +1656,7 @@ LaunchStats.fields = proto3.util.newFieldList(() => [
1656
1656
  { no: 5, name: "price_change_percent_1h", kind: "scalar", T: 1 /* ScalarType.DOUBLE */, opt: true },
1657
1657
  { no: 6, name: "price_change_percent_24h", kind: "scalar", T: 1 /* ScalarType.DOUBLE */, opt: true },
1658
1658
  { no: 7, name: "sparkline", kind: "message", T: TimestampedValue, repeated: true },
1659
+ { no: 8, name: "price_eth", kind: "scalar", T: 1 /* ScalarType.DOUBLE */, opt: true },
1659
1660
  ]);
1660
1661
  /**
1661
1662
  * One token launch: the earliest pool a (token, launchpad) pair created.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniswap/client-data-api",
3
- "version": "0.0.153",
3
+ "version": "0.0.154",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },