@uniswap/client-data-api 0.0.121 → 0.0.122
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/v2/api_pb.d.ts +9 -0
- package/dist/data/v2/api_pb.js +10 -0
- package/package.json +1 -1
package/dist/data/v2/api_pb.d.ts
CHANGED
|
@@ -74,6 +74,15 @@ export declare class GetTokenMarketsMultiChainRequest extends Message<GetTokenMa
|
|
|
74
74
|
* @generated from field: data.v2.HistoryDuration duration = 3;
|
|
75
75
|
*/
|
|
76
76
|
duration: HistoryDuration;
|
|
77
|
+
/**
|
|
78
|
+
* Aggregate volume_usd and TVL over only these chains. Empty = all chains in
|
|
79
|
+
* the asset's group. 52w price high/low is unaffected (always read from the
|
|
80
|
+
* asset's canonical chain, like the OHLC/price charts). EVM-only, matching
|
|
81
|
+
* the rest of the markets endpoints.
|
|
82
|
+
*
|
|
83
|
+
* @generated from field: repeated uint32 chain_ids = 4;
|
|
84
|
+
*/
|
|
85
|
+
chainIds: number[];
|
|
77
86
|
constructor(data?: PartialMessage<GetTokenMarketsMultiChainRequest>);
|
|
78
87
|
static readonly runtime: typeof proto3;
|
|
79
88
|
static readonly typeName = "data.v2.GetTokenMarketsMultiChainRequest";
|
package/dist/data/v2/api_pb.js
CHANGED
|
@@ -91,6 +91,15 @@ export class GetTokenMarketsMultiChainRequest extends Message {
|
|
|
91
91
|
* @generated from field: data.v2.HistoryDuration duration = 3;
|
|
92
92
|
*/
|
|
93
93
|
this.duration = HistoryDuration.UNSPECIFIED;
|
|
94
|
+
/**
|
|
95
|
+
* Aggregate volume_usd and TVL over only these chains. Empty = all chains in
|
|
96
|
+
* the asset's group. 52w price high/low is unaffected (always read from the
|
|
97
|
+
* asset's canonical chain, like the OHLC/price charts). EVM-only, matching
|
|
98
|
+
* the rest of the markets endpoints.
|
|
99
|
+
*
|
|
100
|
+
* @generated from field: repeated uint32 chain_ids = 4;
|
|
101
|
+
*/
|
|
102
|
+
this.chainIds = [];
|
|
94
103
|
proto3.util.initPartial(data, this);
|
|
95
104
|
}
|
|
96
105
|
static fromBinary(bytes, options) {
|
|
@@ -112,6 +121,7 @@ GetTokenMarketsMultiChainRequest.fields = proto3.util.newFieldList(() => [
|
|
|
112
121
|
{ no: 1, name: "multichain_ids", kind: "message", T: MultichainIdList, oneof: "identifier" },
|
|
113
122
|
{ no: 2, name: "tokens", kind: "message", T: TokenIdentifierList, oneof: "identifier" },
|
|
114
123
|
{ no: 3, name: "duration", kind: "enum", T: proto3.getEnumType(HistoryDuration) },
|
|
124
|
+
{ no: 4, name: "chain_ids", kind: "scalar", T: 13 /* ScalarType.UINT32 */, repeated: true },
|
|
115
125
|
]);
|
|
116
126
|
/**
|
|
117
127
|
* @generated from message data.v2.GetTokenMarketsMultiChainResponse
|