@uniswap/client-data-api 0.0.49 → 0.0.50

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.
@@ -348,6 +348,30 @@ export declare class Auction extends Message<Auction> {
348
348
  * @generated from field: optional string total_bid_volume_usd = 29;
349
349
  */
350
350
  totalBidVolumeUsd?: string;
351
+ /**
352
+ * ERC-20 metadata for the auctioned token (fetched via on-chain RPC)
353
+ *
354
+ * @generated from field: optional string token_name = 30;
355
+ */
356
+ tokenName?: string;
357
+ /**
358
+ * @generated from field: optional int32 token_decimals = 31;
359
+ */
360
+ tokenDecimals?: number;
361
+ /**
362
+ * ERC-20 metadata for the currency token (fetched via on-chain RPC, or native defaults for zero address)
363
+ *
364
+ * @generated from field: optional string currency_token_name = 32;
365
+ */
366
+ currencyTokenName?: string;
367
+ /**
368
+ * @generated from field: optional string currency_token_symbol = 33;
369
+ */
370
+ currencyTokenSymbol?: string;
371
+ /**
372
+ * @generated from field: optional int32 currency_token_decimals = 34;
373
+ */
374
+ currencyTokenDecimals?: number;
351
375
  constructor(data?: PartialMessage<Auction>);
352
376
  static readonly runtime: typeof proto3;
353
377
  static readonly typeName = "data.v1.Auction";
@@ -476,6 +476,11 @@ Auction.fields = proto3.util.newFieldList(() => [
476
476
  { no: 27, name: "token_protection_info", kind: "message", T: ProtectionInfo },
477
477
  { no: 28, name: "currency_price_usd", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
478
478
  { no: 29, name: "total_bid_volume_usd", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
479
+ { no: 30, name: "token_name", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
480
+ { no: 31, name: "token_decimals", kind: "scalar", T: 5 /* ScalarType.INT32 */, opt: true },
481
+ { no: 32, name: "currency_token_name", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
482
+ { no: 33, name: "currency_token_symbol", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
483
+ { no: 34, name: "currency_token_decimals", kind: "scalar", T: 5 /* ScalarType.INT32 */, opt: true },
479
484
  ]);
480
485
  /**
481
486
  * Response containing auctions.
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@uniswap/client-data-api",
3
- "version": "0.0.49",
3
+ "version": "0.0.50",
4
4
  "publishConfig": {
5
5
  "access": "public"
6
6
  },