@uniswap/client-data-api 0.0.104 → 0.0.106
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.
package/dist/data/v1/api_pb.d.ts
CHANGED
|
@@ -2198,6 +2198,13 @@ export declare class RankedRwa extends Message<RankedRwa> {
|
|
|
2198
2198
|
* @generated from field: repeated data.v1.IssuerMultichainToken issuer_tokens = 11;
|
|
2199
2199
|
*/
|
|
2200
2200
|
issuerTokens: IssuerMultichainToken[];
|
|
2201
|
+
/**
|
|
2202
|
+
* Max percent deviation of any issuer variant's price from price_usd (the
|
|
2203
|
+
* top issuer's). 0 when the grouping has a single variant.
|
|
2204
|
+
*
|
|
2205
|
+
* @generated from field: optional double price_deviation_pct = 12;
|
|
2206
|
+
*/
|
|
2207
|
+
priceDeviationPct?: number;
|
|
2201
2208
|
constructor(data?: PartialMessage<RankedRwa>);
|
|
2202
2209
|
static readonly runtime: typeof proto3;
|
|
2203
2210
|
static readonly typeName = "data.v1.RankedRwa";
|
package/dist/data/v1/api_pb.js
CHANGED
|
@@ -2994,6 +2994,7 @@ RankedRwa.fields = proto3.util.newFieldList(() => [
|
|
|
2994
2994
|
{ no: 9, name: "price_change_24h_pct", kind: "scalar", T: 1 /* ScalarType.DOUBLE */, opt: true },
|
|
2995
2995
|
{ no: 10, name: "sparkline_1d", kind: "message", T: RwaSparkline, opt: true },
|
|
2996
2996
|
{ no: 11, name: "issuer_tokens", kind: "message", T: IssuerMultichainToken, repeated: true },
|
|
2997
|
+
{ no: 12, name: "price_deviation_pct", kind: "scalar", T: 1 /* ScalarType.DOUBLE */, opt: true },
|
|
2997
2998
|
]);
|
|
2998
2999
|
/**
|
|
2999
3000
|
* @generated from message data.v1.IssuerMultichainToken
|
|
@@ -398,6 +398,18 @@ export declare class Auction extends Message<Auction> {
|
|
|
398
398
|
* @generated from field: optional string lbp_migration_tx_hash = 39;
|
|
399
399
|
*/
|
|
400
400
|
lbpMigrationTxHash?: string;
|
|
401
|
+
/**
|
|
402
|
+
* @generated from field: optional string token_image_url = 40;
|
|
403
|
+
*/
|
|
404
|
+
tokenImageUrl?: string;
|
|
405
|
+
/**
|
|
406
|
+
* @generated from field: optional string token_description = 41;
|
|
407
|
+
*/
|
|
408
|
+
tokenDescription?: string;
|
|
409
|
+
/**
|
|
410
|
+
* @generated from field: optional string x_handle = 42;
|
|
411
|
+
*/
|
|
412
|
+
xHandle?: string;
|
|
401
413
|
constructor(data?: PartialMessage<Auction>);
|
|
402
414
|
static readonly runtime: typeof proto3;
|
|
403
415
|
static readonly typeName = "data.v1.Auction";
|
|
@@ -486,6 +486,9 @@ Auction.fields = proto3.util.newFieldList(() => [
|
|
|
486
486
|
{ no: 37, name: "pool_key_hash", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
487
487
|
{ no: 38, name: "initial_sqrt_price_x96", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
488
488
|
{ no: 39, name: "lbp_migration_tx_hash", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
489
|
+
{ no: 40, name: "token_image_url", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
490
|
+
{ no: 41, name: "token_description", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
491
|
+
{ no: 42, name: "x_handle", kind: "scalar", T: 9 /* ScalarType.STRING */, opt: true },
|
|
489
492
|
]);
|
|
490
493
|
/**
|
|
491
494
|
* Response containing auctions.
|