@uniswap/client-data-api 0.0.174 → 0.0.176
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/auction_pb.d.ts +8 -0
- package/dist/data/v1/auction_pb.js +9 -0
- package/dist/data/v1/workerService-WorkerService_connectquery.d.ts +14 -1
- package/dist/data/v1/workerService-WorkerService_connectquery.js +14 -1
- package/dist/data/v1/workerService_connect.d.ts +10 -1
- package/dist/data/v1/workerService_connect.js +10 -1
- package/dist/data/v1/workerService_pb.d.ts +26 -0
- package/dist/data/v1/workerService_pb.js +48 -0
- package/package.json +1 -1
|
@@ -1038,6 +1038,14 @@ export declare class ListTopAuctionsRequest extends Message<ListTopAuctionsReque
|
|
|
1038
1038
|
* @generated from field: bool live_only = 3;
|
|
1039
1039
|
*/
|
|
1040
1040
|
liveOnly: boolean;
|
|
1041
|
+
/**
|
|
1042
|
+
* When true, serve only quick (crowd) launches — auctions whose persisted
|
|
1043
|
+
* is_quick_launch marker is true. Absent and false are the same request:
|
|
1044
|
+
* no filter, so the shared Explore surface keeps seeing every auction.
|
|
1045
|
+
*
|
|
1046
|
+
* @generated from field: bool quick_launch_only = 4;
|
|
1047
|
+
*/
|
|
1048
|
+
quickLaunchOnly: boolean;
|
|
1041
1049
|
constructor(data?: PartialMessage<ListTopAuctionsRequest>);
|
|
1042
1050
|
static readonly runtime: typeof proto3;
|
|
1043
1051
|
static readonly typeName = "data.v1.ListTopAuctionsRequest";
|
|
@@ -1260,6 +1260,14 @@ export class ListTopAuctionsRequest extends Message {
|
|
|
1260
1260
|
* @generated from field: bool live_only = 3;
|
|
1261
1261
|
*/
|
|
1262
1262
|
this.liveOnly = false;
|
|
1263
|
+
/**
|
|
1264
|
+
* When true, serve only quick (crowd) launches — auctions whose persisted
|
|
1265
|
+
* is_quick_launch marker is true. Absent and false are the same request:
|
|
1266
|
+
* no filter, so the shared Explore surface keeps seeing every auction.
|
|
1267
|
+
*
|
|
1268
|
+
* @generated from field: bool quick_launch_only = 4;
|
|
1269
|
+
*/
|
|
1270
|
+
this.quickLaunchOnly = false;
|
|
1263
1271
|
proto3.util.initPartial(data, this);
|
|
1264
1272
|
}
|
|
1265
1273
|
static fromBinary(bytes, options) {
|
|
@@ -1281,6 +1289,7 @@ ListTopAuctionsRequest.fields = proto3.util.newFieldList(() => [
|
|
|
1281
1289
|
{ no: 1, name: "page_size", kind: "scalar", T: 5 /* ScalarType.INT32 */ },
|
|
1282
1290
|
{ no: 2, name: "chain_ids", kind: "scalar", T: 5 /* ScalarType.INT32 */, repeated: true },
|
|
1283
1291
|
{ no: 3, name: "live_only", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
1292
|
+
{ no: 4, name: "quick_launch_only", kind: "scalar", T: 8 /* ScalarType.BOOL */ },
|
|
1284
1293
|
]);
|
|
1285
1294
|
/**
|
|
1286
1295
|
* An auction with its total bid volume stats.
|
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
import { MethodKind } from "@bufbuild/protobuf";
|
|
2
|
-
import { CheckSubgraphHealthRequest, CheckSubgraphHealthResponse, IngestBlockaidMetadataRequest, IngestBlockaidMetadataResponse, RefreshProtocolStatsRequest, RefreshProtocolStatsResponse, RunLaunchpadOrphanCleanupRequest, RunLaunchpadOrphanCleanupResponse } from "./workerService_pb.js";
|
|
2
|
+
import { CheckSubgraphHealthRequest, CheckSubgraphHealthResponse, IngestBlockaidMetadataRequest, IngestBlockaidMetadataResponse, RefreshProtocolStatsRequest, RefreshProtocolStatsResponse, RunLaunchpadOrphanCleanupRequest, RunLaunchpadOrphanCleanupResponse, RunQuickLaunchSweepRequest, RunQuickLaunchSweepResponse } from "./workerService_pb.js";
|
|
3
3
|
/**
|
|
4
4
|
* @generated from rpc data.v1.WorkerService.RefreshProtocolStats
|
|
5
5
|
*/
|
|
@@ -52,3 +52,16 @@ export declare const runLaunchpadOrphanCleanup: {
|
|
|
52
52
|
readonly typeName: "data.v1.WorkerService";
|
|
53
53
|
};
|
|
54
54
|
};
|
|
55
|
+
/**
|
|
56
|
+
* @generated from rpc data.v1.WorkerService.RunQuickLaunchSweep
|
|
57
|
+
*/
|
|
58
|
+
export declare const runQuickLaunchSweep: {
|
|
59
|
+
readonly localName: "runQuickLaunchSweep";
|
|
60
|
+
readonly name: "RunQuickLaunchSweep";
|
|
61
|
+
readonly kind: MethodKind.Unary;
|
|
62
|
+
readonly I: typeof RunQuickLaunchSweepRequest;
|
|
63
|
+
readonly O: typeof RunQuickLaunchSweepResponse;
|
|
64
|
+
readonly service: {
|
|
65
|
+
readonly typeName: "data.v1.WorkerService";
|
|
66
|
+
};
|
|
67
|
+
};
|
|
@@ -3,7 +3,7 @@
|
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
// @ts-nocheck
|
|
5
5
|
import { MethodKind } from "@bufbuild/protobuf";
|
|
6
|
-
import { CheckSubgraphHealthRequest, CheckSubgraphHealthResponse, IngestBlockaidMetadataRequest, IngestBlockaidMetadataResponse, RefreshProtocolStatsRequest, RefreshProtocolStatsResponse, RunLaunchpadOrphanCleanupRequest, RunLaunchpadOrphanCleanupResponse } from "./workerService_pb.js";
|
|
6
|
+
import { CheckSubgraphHealthRequest, CheckSubgraphHealthResponse, IngestBlockaidMetadataRequest, IngestBlockaidMetadataResponse, RefreshProtocolStatsRequest, RefreshProtocolStatsResponse, RunLaunchpadOrphanCleanupRequest, RunLaunchpadOrphanCleanupResponse, RunQuickLaunchSweepRequest, RunQuickLaunchSweepResponse } from "./workerService_pb.js";
|
|
7
7
|
/**
|
|
8
8
|
* @generated from rpc data.v1.WorkerService.RefreshProtocolStats
|
|
9
9
|
*/
|
|
@@ -56,3 +56,16 @@ export const runLaunchpadOrphanCleanup = {
|
|
|
56
56
|
typeName: "data.v1.WorkerService"
|
|
57
57
|
}
|
|
58
58
|
};
|
|
59
|
+
/**
|
|
60
|
+
* @generated from rpc data.v1.WorkerService.RunQuickLaunchSweep
|
|
61
|
+
*/
|
|
62
|
+
export const runQuickLaunchSweep = {
|
|
63
|
+
localName: "runQuickLaunchSweep",
|
|
64
|
+
name: "RunQuickLaunchSweep",
|
|
65
|
+
kind: MethodKind.Unary,
|
|
66
|
+
I: RunQuickLaunchSweepRequest,
|
|
67
|
+
O: RunQuickLaunchSweepResponse,
|
|
68
|
+
service: {
|
|
69
|
+
typeName: "data.v1.WorkerService"
|
|
70
|
+
}
|
|
71
|
+
};
|
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
import { CheckSubgraphHealthRequest, CheckSubgraphHealthResponse, IngestBlockaidMetadataRequest, IngestBlockaidMetadataResponse, RefreshProtocolStatsRequest, RefreshProtocolStatsResponse, RunLaunchpadOrphanCleanupRequest, RunLaunchpadOrphanCleanupResponse } from "./workerService_pb.js";
|
|
1
|
+
import { CheckSubgraphHealthRequest, CheckSubgraphHealthResponse, IngestBlockaidMetadataRequest, IngestBlockaidMetadataResponse, RefreshProtocolStatsRequest, RefreshProtocolStatsResponse, RunLaunchpadOrphanCleanupRequest, RunLaunchpadOrphanCleanupResponse, RunQuickLaunchSweepRequest, RunQuickLaunchSweepResponse } from "./workerService_pb.js";
|
|
2
2
|
import { MethodKind } from "@bufbuild/protobuf";
|
|
3
3
|
/**
|
|
4
4
|
* @generated from service data.v1.WorkerService
|
|
@@ -42,5 +42,14 @@ export declare const WorkerService: {
|
|
|
42
42
|
readonly O: typeof RunLaunchpadOrphanCleanupResponse;
|
|
43
43
|
readonly kind: MethodKind.Unary;
|
|
44
44
|
};
|
|
45
|
+
/**
|
|
46
|
+
* @generated from rpc data.v1.WorkerService.RunQuickLaunchSweep
|
|
47
|
+
*/
|
|
48
|
+
readonly runQuickLaunchSweep: {
|
|
49
|
+
readonly name: "RunQuickLaunchSweep";
|
|
50
|
+
readonly I: typeof RunQuickLaunchSweepRequest;
|
|
51
|
+
readonly O: typeof RunQuickLaunchSweepResponse;
|
|
52
|
+
readonly kind: MethodKind.Unary;
|
|
53
|
+
};
|
|
45
54
|
};
|
|
46
55
|
};
|
|
@@ -2,7 +2,7 @@
|
|
|
2
2
|
// @generated from file data/v1/workerService.proto (package data.v1, syntax proto3)
|
|
3
3
|
/* eslint-disable */
|
|
4
4
|
// @ts-nocheck
|
|
5
|
-
import { CheckSubgraphHealthRequest, CheckSubgraphHealthResponse, IngestBlockaidMetadataRequest, IngestBlockaidMetadataResponse, RefreshProtocolStatsRequest, RefreshProtocolStatsResponse, RunLaunchpadOrphanCleanupRequest, RunLaunchpadOrphanCleanupResponse } from "./workerService_pb.js";
|
|
5
|
+
import { CheckSubgraphHealthRequest, CheckSubgraphHealthResponse, IngestBlockaidMetadataRequest, IngestBlockaidMetadataResponse, RefreshProtocolStatsRequest, RefreshProtocolStatsResponse, RunLaunchpadOrphanCleanupRequest, RunLaunchpadOrphanCleanupResponse, RunQuickLaunchSweepRequest, RunQuickLaunchSweepResponse } from "./workerService_pb.js";
|
|
6
6
|
import { MethodKind } from "@bufbuild/protobuf";
|
|
7
7
|
/**
|
|
8
8
|
* @generated from service data.v1.WorkerService
|
|
@@ -46,5 +46,14 @@ export const WorkerService = {
|
|
|
46
46
|
O: RunLaunchpadOrphanCleanupResponse,
|
|
47
47
|
kind: MethodKind.Unary,
|
|
48
48
|
},
|
|
49
|
+
/**
|
|
50
|
+
* @generated from rpc data.v1.WorkerService.RunQuickLaunchSweep
|
|
51
|
+
*/
|
|
52
|
+
runQuickLaunchSweep: {
|
|
53
|
+
name: "RunQuickLaunchSweep",
|
|
54
|
+
I: RunQuickLaunchSweepRequest,
|
|
55
|
+
O: RunQuickLaunchSweepResponse,
|
|
56
|
+
kind: MethodKind.Unary,
|
|
57
|
+
},
|
|
49
58
|
}
|
|
50
59
|
};
|
|
@@ -153,3 +153,29 @@ export declare class RunLaunchpadOrphanCleanupResponse extends Message<RunLaunch
|
|
|
153
153
|
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): RunLaunchpadOrphanCleanupResponse;
|
|
154
154
|
static equals(a: RunLaunchpadOrphanCleanupResponse | PlainMessage<RunLaunchpadOrphanCleanupResponse> | undefined, b: RunLaunchpadOrphanCleanupResponse | PlainMessage<RunLaunchpadOrphanCleanupResponse> | undefined): boolean;
|
|
155
155
|
}
|
|
156
|
+
/**
|
|
157
|
+
* @generated from message data.v1.RunQuickLaunchSweepRequest
|
|
158
|
+
*/
|
|
159
|
+
export declare class RunQuickLaunchSweepRequest extends Message<RunQuickLaunchSweepRequest> {
|
|
160
|
+
constructor(data?: PartialMessage<RunQuickLaunchSweepRequest>);
|
|
161
|
+
static readonly runtime: typeof proto3;
|
|
162
|
+
static readonly typeName = "data.v1.RunQuickLaunchSweepRequest";
|
|
163
|
+
static readonly fields: FieldList;
|
|
164
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): RunQuickLaunchSweepRequest;
|
|
165
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): RunQuickLaunchSweepRequest;
|
|
166
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): RunQuickLaunchSweepRequest;
|
|
167
|
+
static equals(a: RunQuickLaunchSweepRequest | PlainMessage<RunQuickLaunchSweepRequest> | undefined, b: RunQuickLaunchSweepRequest | PlainMessage<RunQuickLaunchSweepRequest> | undefined): boolean;
|
|
168
|
+
}
|
|
169
|
+
/**
|
|
170
|
+
* @generated from message data.v1.RunQuickLaunchSweepResponse
|
|
171
|
+
*/
|
|
172
|
+
export declare class RunQuickLaunchSweepResponse extends Message<RunQuickLaunchSweepResponse> {
|
|
173
|
+
constructor(data?: PartialMessage<RunQuickLaunchSweepResponse>);
|
|
174
|
+
static readonly runtime: typeof proto3;
|
|
175
|
+
static readonly typeName = "data.v1.RunQuickLaunchSweepResponse";
|
|
176
|
+
static readonly fields: FieldList;
|
|
177
|
+
static fromBinary(bytes: Uint8Array, options?: Partial<BinaryReadOptions>): RunQuickLaunchSweepResponse;
|
|
178
|
+
static fromJson(jsonValue: JsonValue, options?: Partial<JsonReadOptions>): RunQuickLaunchSweepResponse;
|
|
179
|
+
static fromJsonString(jsonString: string, options?: Partial<JsonReadOptions>): RunQuickLaunchSweepResponse;
|
|
180
|
+
static equals(a: RunQuickLaunchSweepResponse | PlainMessage<RunQuickLaunchSweepResponse> | undefined, b: RunQuickLaunchSweepResponse | PlainMessage<RunQuickLaunchSweepResponse> | undefined): boolean;
|
|
181
|
+
}
|
|
@@ -266,3 +266,51 @@ export class RunLaunchpadOrphanCleanupResponse extends Message {
|
|
|
266
266
|
RunLaunchpadOrphanCleanupResponse.runtime = proto3;
|
|
267
267
|
RunLaunchpadOrphanCleanupResponse.typeName = "data.v1.RunLaunchpadOrphanCleanupResponse";
|
|
268
268
|
RunLaunchpadOrphanCleanupResponse.fields = proto3.util.newFieldList(() => []);
|
|
269
|
+
/**
|
|
270
|
+
* @generated from message data.v1.RunQuickLaunchSweepRequest
|
|
271
|
+
*/
|
|
272
|
+
export class RunQuickLaunchSweepRequest extends Message {
|
|
273
|
+
constructor(data) {
|
|
274
|
+
super();
|
|
275
|
+
proto3.util.initPartial(data, this);
|
|
276
|
+
}
|
|
277
|
+
static fromBinary(bytes, options) {
|
|
278
|
+
return new RunQuickLaunchSweepRequest().fromBinary(bytes, options);
|
|
279
|
+
}
|
|
280
|
+
static fromJson(jsonValue, options) {
|
|
281
|
+
return new RunQuickLaunchSweepRequest().fromJson(jsonValue, options);
|
|
282
|
+
}
|
|
283
|
+
static fromJsonString(jsonString, options) {
|
|
284
|
+
return new RunQuickLaunchSweepRequest().fromJsonString(jsonString, options);
|
|
285
|
+
}
|
|
286
|
+
static equals(a, b) {
|
|
287
|
+
return proto3.util.equals(RunQuickLaunchSweepRequest, a, b);
|
|
288
|
+
}
|
|
289
|
+
}
|
|
290
|
+
RunQuickLaunchSweepRequest.runtime = proto3;
|
|
291
|
+
RunQuickLaunchSweepRequest.typeName = "data.v1.RunQuickLaunchSweepRequest";
|
|
292
|
+
RunQuickLaunchSweepRequest.fields = proto3.util.newFieldList(() => []);
|
|
293
|
+
/**
|
|
294
|
+
* @generated from message data.v1.RunQuickLaunchSweepResponse
|
|
295
|
+
*/
|
|
296
|
+
export class RunQuickLaunchSweepResponse extends Message {
|
|
297
|
+
constructor(data) {
|
|
298
|
+
super();
|
|
299
|
+
proto3.util.initPartial(data, this);
|
|
300
|
+
}
|
|
301
|
+
static fromBinary(bytes, options) {
|
|
302
|
+
return new RunQuickLaunchSweepResponse().fromBinary(bytes, options);
|
|
303
|
+
}
|
|
304
|
+
static fromJson(jsonValue, options) {
|
|
305
|
+
return new RunQuickLaunchSweepResponse().fromJson(jsonValue, options);
|
|
306
|
+
}
|
|
307
|
+
static fromJsonString(jsonString, options) {
|
|
308
|
+
return new RunQuickLaunchSweepResponse().fromJsonString(jsonString, options);
|
|
309
|
+
}
|
|
310
|
+
static equals(a, b) {
|
|
311
|
+
return proto3.util.equals(RunQuickLaunchSweepResponse, a, b);
|
|
312
|
+
}
|
|
313
|
+
}
|
|
314
|
+
RunQuickLaunchSweepResponse.runtime = proto3;
|
|
315
|
+
RunQuickLaunchSweepResponse.typeName = "data.v1.RunQuickLaunchSweepResponse";
|
|
316
|
+
RunQuickLaunchSweepResponse.fields = proto3.util.newFieldList(() => []);
|