@uniswap/client-data-api 0.0.47 → 0.0.49
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.
|
@@ -336,6 +336,18 @@ export declare class Auction extends Message<Auction> {
|
|
|
336
336
|
* @generated from field: data.v1.ProtectionInfo token_protection_info = 27;
|
|
337
337
|
*/
|
|
338
338
|
tokenProtectionInfo?: ProtectionInfo;
|
|
339
|
+
/**
|
|
340
|
+
* USD price of the currency token (for calculating auction USD value)
|
|
341
|
+
*
|
|
342
|
+
* @generated from field: optional string currency_price_usd = 28;
|
|
343
|
+
*/
|
|
344
|
+
currencyPriceUsd?: string;
|
|
345
|
+
/**
|
|
346
|
+
* Computed: total_bid_volume * currency_price_usd (convenience field for clients)
|
|
347
|
+
*
|
|
348
|
+
* @generated from field: optional string total_bid_volume_usd = 29;
|
|
349
|
+
*/
|
|
350
|
+
totalBidVolumeUsd?: string;
|
|
339
351
|
constructor(data?: PartialMessage<Auction>);
|
|
340
352
|
static readonly runtime: typeof proto3;
|
|
341
353
|
static readonly typeName = "data.v1.Auction";
|
|
@@ -474,6 +474,8 @@ Auction.fields = proto3.util.newFieldList(() => [
|
|
|
474
474
|
{ no: 25, name: "parsed_auction_steps", kind: "message", T: AuctionStep, repeated: true },
|
|
475
475
|
{ no: 26, name: "total_bid_volume", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
476
476
|
{ no: 27, name: "token_protection_info", kind: "message", T: ProtectionInfo },
|
|
477
|
+
{ no: 28, name: "currency_price_usd", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
478
|
+
{ no: 29, name: "total_bid_volume_usd", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
477
479
|
]);
|
|
478
480
|
/**
|
|
479
481
|
* Response containing auctions.
|