@uniswap/client-data-api 0.0.143 → 0.0.144
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.
|
@@ -53,7 +53,11 @@ export declare enum TokensOrderBy {
|
|
|
53
53
|
/**
|
|
54
54
|
* @generated from enum value: TOKENS_ORDER_BY_MARKET_CAP = 11;
|
|
55
55
|
*/
|
|
56
|
-
MARKET_CAP = 11
|
|
56
|
+
MARKET_CAP = 11,
|
|
57
|
+
/**
|
|
58
|
+
* @generated from enum value: TOKENS_ORDER_BY_PRICE = 12;
|
|
59
|
+
*/
|
|
60
|
+
PRICE = 12
|
|
57
61
|
}
|
|
58
62
|
/**
|
|
59
63
|
* The fiat currencies the legacy GraphQL convert resolver accepts
|
package/dist/data/v2/types_pb.js
CHANGED
|
@@ -58,6 +58,10 @@ export var TokensOrderBy;
|
|
|
58
58
|
* @generated from enum value: TOKENS_ORDER_BY_MARKET_CAP = 11;
|
|
59
59
|
*/
|
|
60
60
|
TokensOrderBy[TokensOrderBy["MARKET_CAP"] = 11] = "MARKET_CAP";
|
|
61
|
+
/**
|
|
62
|
+
* @generated from enum value: TOKENS_ORDER_BY_PRICE = 12;
|
|
63
|
+
*/
|
|
64
|
+
TokensOrderBy[TokensOrderBy["PRICE"] = 12] = "PRICE";
|
|
61
65
|
})(TokensOrderBy || (TokensOrderBy = {}));
|
|
62
66
|
// Retrieve enum metadata with: proto3.getEnumType(TokensOrderBy)
|
|
63
67
|
proto3.util.setEnumType(TokensOrderBy, "data.v2.TokensOrderBy", [
|
|
@@ -73,6 +77,7 @@ proto3.util.setEnumType(TokensOrderBy, "data.v2.TokensOrderBy", [
|
|
|
73
77
|
{ no: 9, name: "TOKENS_ORDER_BY_PRICE_CHANGE_1H" },
|
|
74
78
|
{ no: 10, name: "TOKENS_ORDER_BY_PRICE_CHANGE_1D" },
|
|
75
79
|
{ no: 11, name: "TOKENS_ORDER_BY_MARKET_CAP" },
|
|
80
|
+
{ no: 12, name: "TOKENS_ORDER_BY_PRICE" },
|
|
76
81
|
]);
|
|
77
82
|
/**
|
|
78
83
|
* The fiat currencies the legacy GraphQL convert resolver accepts
|