@uniswap/client-data-api 0.0.116 → 0.0.117
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
CHANGED
|
@@ -257,6 +257,14 @@ export declare class GetTokenHistoryVolumeRequest extends Message<GetTokenHistor
|
|
|
257
257
|
* @generated from field: data.v2.HistoryDuration duration = 3;
|
|
258
258
|
*/
|
|
259
259
|
duration: HistoryDuration;
|
|
260
|
+
/**
|
|
261
|
+
* Multichain filter: aggregate only these chains. Empty = all chains in the
|
|
262
|
+
* asset's group. Ignored for the single_chain target. Solana volume is
|
|
263
|
+
* included only when its chain id appears here (or the filter is empty).
|
|
264
|
+
*
|
|
265
|
+
* @generated from field: repeated uint32 chain_ids = 4;
|
|
266
|
+
*/
|
|
267
|
+
chainIds: number[];
|
|
260
268
|
constructor(data?: PartialMessage<GetTokenHistoryVolumeRequest>);
|
|
261
269
|
static readonly runtime: typeof proto3;
|
|
262
270
|
static readonly typeName = "data.v2.GetTokenHistoryVolumeRequest";
|
package/dist/data/v2/api_pb.js
CHANGED
|
@@ -314,6 +314,14 @@ export class GetTokenHistoryVolumeRequest extends Message {
|
|
|
314
314
|
* @generated from field: data.v2.HistoryDuration duration = 3;
|
|
315
315
|
*/
|
|
316
316
|
this.duration = HistoryDuration.UNSPECIFIED;
|
|
317
|
+
/**
|
|
318
|
+
* Multichain filter: aggregate only these chains. Empty = all chains in the
|
|
319
|
+
* asset's group. Ignored for the single_chain target. Solana volume is
|
|
320
|
+
* included only when its chain id appears here (or the filter is empty).
|
|
321
|
+
*
|
|
322
|
+
* @generated from field: repeated uint32 chain_ids = 4;
|
|
323
|
+
*/
|
|
324
|
+
this.chainIds = [];
|
|
317
325
|
proto3.util.initPartial(data, this);
|
|
318
326
|
}
|
|
319
327
|
static fromBinary(bytes, options) {
|
|
@@ -335,6 +343,7 @@ GetTokenHistoryVolumeRequest.fields = proto3.util.newFieldList(() => [
|
|
|
335
343
|
{ no: 1, name: "single_chain", kind: "message", T: TokenIdentifier, oneof: "target" },
|
|
336
344
|
{ no: 2, name: "multichain", kind: "message", T: MultichainTarget, oneof: "target" },
|
|
337
345
|
{ no: 3, name: "duration", kind: "enum", T: proto3.getEnumType(HistoryDuration) },
|
|
346
|
+
{ no: 4, name: "chain_ids", kind: "scalar", T: 13 /* ScalarType.UINT32 */, repeated: true },
|
|
338
347
|
]);
|
|
339
348
|
/**
|
|
340
349
|
* @generated from message data.v2.GetTokenHistoryVolumeResponse
|