@uniswap/client-data-api 0.0.64 → 0.0.66
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
|
@@ -1372,6 +1372,10 @@ export declare class GetTokenPricesRequest extends Message<GetTokenPricesRequest
|
|
|
1372
1372
|
* @generated from field: repeated data.v1.TokenPriceInput tokens = 1;
|
|
1373
1373
|
*/
|
|
1374
1374
|
tokens: TokenPriceInput[];
|
|
1375
|
+
/**
|
|
1376
|
+
* @generated from field: bool prefer_quote_prices = 2;
|
|
1377
|
+
*/
|
|
1378
|
+
preferQuotePrices: boolean;
|
|
1375
1379
|
constructor(data?: PartialMessage<GetTokenPricesRequest>);
|
|
1376
1380
|
static readonly runtime: typeof proto3;
|
|
1377
1381
|
static readonly typeName = "data.v1.GetTokenPricesRequest";
|
package/dist/data/v1/api_pb.js
CHANGED
|
@@ -1889,6 +1889,10 @@ export class GetTokenPricesRequest extends Message {
|
|
|
1889
1889
|
* @generated from field: repeated data.v1.TokenPriceInput tokens = 1;
|
|
1890
1890
|
*/
|
|
1891
1891
|
this.tokens = [];
|
|
1892
|
+
/**
|
|
1893
|
+
* @generated from field: bool prefer_quote_prices = 2;
|
|
1894
|
+
*/
|
|
1895
|
+
this.preferQuotePrices = false;
|
|
1892
1896
|
proto3.util.initPartial(data, this);
|
|
1893
1897
|
}
|
|
1894
1898
|
static fromBinary(bytes, options) {
|
|
@@ -1908,6 +1912,7 @@ GetTokenPricesRequest.runtime = proto3;
|
|
|
1908
1912
|
GetTokenPricesRequest.typeName = "data.v1.GetTokenPricesRequest";
|
|
1909
1913
|
GetTokenPricesRequest.fields = proto3.util.newFieldList(() => [
|
|
1910
1914
|
{ no: 1, name: "tokens", kind: "message", T: TokenPriceInput, repeated: true },
|
|
1915
|
+
{ no: 2, name: "prefer_quote_prices", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
1911
1916
|
]);
|
|
1912
1917
|
/**
|
|
1913
1918
|
* @generated from message data.v1.GetTokenPricesResponse
|
|
@@ -810,6 +810,10 @@ export declare class ChainBalance extends Message<ChainBalance> {
|
|
|
810
810
|
* @generated from field: double value_usd = 5;
|
|
811
811
|
*/
|
|
812
812
|
valueUsd: number;
|
|
813
|
+
/**
|
|
814
|
+
* @generated from field: bool is_hidden = 6;
|
|
815
|
+
*/
|
|
816
|
+
isHidden: boolean;
|
|
813
817
|
constructor(data?: PartialMessage<ChainBalance>);
|
|
814
818
|
static readonly runtime: typeof proto3;
|
|
815
819
|
static readonly typeName = "data.v1.ChainBalance";
|
package/dist/data/v1/types_pb.js
CHANGED
|
@@ -1082,6 +1082,10 @@ export class ChainBalance extends Message {
|
|
|
1082
1082
|
* @generated from field: double value_usd = 5;
|
|
1083
1083
|
*/
|
|
1084
1084
|
this.valueUsd = 0;
|
|
1085
|
+
/**
|
|
1086
|
+
* @generated from field: bool is_hidden = 6;
|
|
1087
|
+
*/
|
|
1088
|
+
this.isHidden = false;
|
|
1085
1089
|
proto3.util.initPartial(data, this);
|
|
1086
1090
|
}
|
|
1087
1091
|
static fromBinary(bytes, options) {
|
|
@@ -1105,6 +1109,7 @@ ChainBalance.fields = proto3.util.newFieldList(() => [
|
|
|
1105
1109
|
{ no: 3, name: "decimals", kind: "scalar", T: 13 /* ScalarType.UINT32 */ },
|
|
1106
1110
|
{ no: 4, name: "amount", kind: "message", T: Amount },
|
|
1107
1111
|
{ no: 5, name: "value_usd", kind: "scalar", T: 1 /* ScalarType.DOUBLE */ },
|
|
1112
|
+
{ no: 6, name: "is_hidden", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
1108
1113
|
]);
|
|
1109
1114
|
/**
|
|
1110
1115
|
* A token aggregated across multiple chains
|