@sentio/protos 0.0.0-rc.a

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.
Files changed (46) hide show
  1. package/LICENSE +55 -0
  2. package/lib/builtin.d.ts +6 -0
  3. package/lib/builtin.d.ts.map +1 -0
  4. package/lib/builtin.js +2 -0
  5. package/lib/builtin.js.map +1 -0
  6. package/lib/chainquery/protos/chainquery.d.ts +607 -0
  7. package/lib/chainquery/protos/chainquery.d.ts.map +1 -0
  8. package/lib/chainquery/protos/chainquery.js +1701 -0
  9. package/lib/chainquery/protos/chainquery.js.map +1 -0
  10. package/lib/google/protobuf/empty.d.ts +17 -0
  11. package/lib/google/protobuf/empty.d.ts.map +1 -0
  12. package/lib/google/protobuf/empty.js +40 -0
  13. package/lib/google/protobuf/empty.js.map +1 -0
  14. package/lib/google/protobuf/struct.d.ts +77 -0
  15. package/lib/google/protobuf/struct.d.ts.map +1 -0
  16. package/lib/google/protobuf/struct.js +429 -0
  17. package/lib/google/protobuf/struct.js.map +1 -0
  18. package/lib/google/protobuf/timestamp.d.ts +19 -0
  19. package/lib/google/protobuf/timestamp.d.ts.map +1 -0
  20. package/lib/google/protobuf/timestamp.js +83 -0
  21. package/lib/google/protobuf/timestamp.js.map +1 -0
  22. package/lib/index.d.ts +7 -0
  23. package/lib/index.d.ts.map +1 -0
  24. package/lib/index.js +7 -0
  25. package/lib/index.js.map +1 -0
  26. package/lib/processor/protos/processor.d.ts +1866 -0
  27. package/lib/processor/protos/processor.d.ts.map +1 -0
  28. package/lib/processor/protos/processor.js +11220 -0
  29. package/lib/processor/protos/processor.js.map +1 -0
  30. package/lib/service/common/protos/common.d.ts +1830 -0
  31. package/lib/service/common/protos/common.d.ts.map +1 -0
  32. package/lib/service/common/protos/common.js +12439 -0
  33. package/lib/service/common/protos/common.js.map +1 -0
  34. package/lib/service/price/protos/price.d.ts +359 -0
  35. package/lib/service/price/protos/price.d.ts.map +1 -0
  36. package/lib/service/price/protos/price.js +1435 -0
  37. package/lib/service/price/protos/price.js.map +1 -0
  38. package/package.json +29 -0
  39. package/src/builtin.ts +11 -0
  40. package/src/chainquery/protos/chainquery.ts +2126 -0
  41. package/src/google/protobuf/empty.ts +56 -0
  42. package/src/google/protobuf/struct.ts +494 -0
  43. package/src/google/protobuf/timestamp.ts +106 -0
  44. package/src/index.ts +11 -0
  45. package/src/processor/protos/processor.ts +13151 -0
  46. package/src/service/common/protos/common.ts +14452 -0
@@ -0,0 +1,607 @@
1
+ import type { CallContext, CallOptions } from "nice-grpc-common";
2
+ import _m0 from "protobufjs/minimal.js";
3
+ export interface AptosGetTxnsByFunctionRequest {
4
+ network: string;
5
+ fromVersion: bigint;
6
+ toVersion: bigint;
7
+ function: string;
8
+ matchAll: boolean;
9
+ typedArguments: string[];
10
+ includeChanges: boolean;
11
+ resourceChangesMoveTypePrefix: string;
12
+ }
13
+ export interface AptosGetTxnsByVersionRequest {
14
+ network: string;
15
+ fromVersion: bigint;
16
+ toVersion: bigint;
17
+ headerOnly?: boolean | undefined;
18
+ }
19
+ export interface AptosGetTxnsByEventRequest {
20
+ network: string;
21
+ fromVersion: bigint;
22
+ toVersion: bigint;
23
+ address: string;
24
+ type: string;
25
+ includeAllEvents: boolean;
26
+ includeChanges: boolean;
27
+ resourceChangesMoveTypePrefix: string;
28
+ }
29
+ export interface AptosSQLQueryRequest {
30
+ network: string;
31
+ fromVersion: bigint;
32
+ toVersion: bigint;
33
+ sql: string;
34
+ arbitraryRange: boolean;
35
+ }
36
+ export interface QueryPhaseSummary {
37
+ name: string;
38
+ timeTookMs: bigint;
39
+ }
40
+ export interface QueryExecutionSummary {
41
+ timeTookMs: bigint;
42
+ resultNumRows?: bigint | undefined;
43
+ resultNumBytes?: bigint | undefined;
44
+ numPartitionsWithMaterializedView?: bigint | undefined;
45
+ numPartitionsWithoutMaterializedView?: bigint | undefined;
46
+ numPartitions?: bigint | undefined;
47
+ phases: QueryPhaseSummary[];
48
+ qcacheSignature?: string | undefined;
49
+ qcacheHit?: boolean | undefined;
50
+ }
51
+ export interface AptosGetTxnsResponse {
52
+ documents: Uint8Array[];
53
+ executionSummary?: QueryExecutionSummary | undefined;
54
+ }
55
+ export interface AptosRefreshRequest {
56
+ }
57
+ export interface VoidResponse {
58
+ }
59
+ export interface EvmSQLQueryRequest {
60
+ network: string;
61
+ sql: string;
62
+ nocache?: boolean | undefined;
63
+ }
64
+ export interface EvmGetHeaderRequest {
65
+ network: string;
66
+ fromBlock?: bigint | undefined;
67
+ toBlock?: bigint | undefined;
68
+ blockNumbers: bigint[];
69
+ }
70
+ export interface EvmQueryResponse {
71
+ rows: Uint8Array[];
72
+ executionSummary?: QueryExecutionSummary | undefined;
73
+ }
74
+ export interface SuiGetCheckpointTimeRequest {
75
+ network: string;
76
+ checkpointSequenceNumber: bigint;
77
+ }
78
+ export interface SuiGetCheckpointTimeResponse {
79
+ checkpointTimestampMs?: bigint | undefined;
80
+ transactionMinTimestampMs?: bigint | undefined;
81
+ transactionMaxTimestampMs?: bigint | undefined;
82
+ }
83
+ export interface RemoteResultRequest {
84
+ token: string;
85
+ position: number;
86
+ keepAlive: boolean;
87
+ }
88
+ export interface RemoteResultResponse {
89
+ rows: Uint8Array[];
90
+ }
91
+ export declare const AptosGetTxnsByFunctionRequest: {
92
+ encode(message: AptosGetTxnsByFunctionRequest, writer?: _m0.Writer): _m0.Writer;
93
+ decode(input: _m0.Reader | Uint8Array, length?: number): AptosGetTxnsByFunctionRequest;
94
+ fromJSON(object: any): AptosGetTxnsByFunctionRequest;
95
+ toJSON(message: AptosGetTxnsByFunctionRequest): unknown;
96
+ create(base?: DeepPartial<AptosGetTxnsByFunctionRequest>): AptosGetTxnsByFunctionRequest;
97
+ fromPartial(object: DeepPartial<AptosGetTxnsByFunctionRequest>): AptosGetTxnsByFunctionRequest;
98
+ };
99
+ export declare const AptosGetTxnsByVersionRequest: {
100
+ encode(message: AptosGetTxnsByVersionRequest, writer?: _m0.Writer): _m0.Writer;
101
+ decode(input: _m0.Reader | Uint8Array, length?: number): AptosGetTxnsByVersionRequest;
102
+ fromJSON(object: any): AptosGetTxnsByVersionRequest;
103
+ toJSON(message: AptosGetTxnsByVersionRequest): unknown;
104
+ create(base?: DeepPartial<AptosGetTxnsByVersionRequest>): AptosGetTxnsByVersionRequest;
105
+ fromPartial(object: DeepPartial<AptosGetTxnsByVersionRequest>): AptosGetTxnsByVersionRequest;
106
+ };
107
+ export declare const AptosGetTxnsByEventRequest: {
108
+ encode(message: AptosGetTxnsByEventRequest, writer?: _m0.Writer): _m0.Writer;
109
+ decode(input: _m0.Reader | Uint8Array, length?: number): AptosGetTxnsByEventRequest;
110
+ fromJSON(object: any): AptosGetTxnsByEventRequest;
111
+ toJSON(message: AptosGetTxnsByEventRequest): unknown;
112
+ create(base?: DeepPartial<AptosGetTxnsByEventRequest>): AptosGetTxnsByEventRequest;
113
+ fromPartial(object: DeepPartial<AptosGetTxnsByEventRequest>): AptosGetTxnsByEventRequest;
114
+ };
115
+ export declare const AptosSQLQueryRequest: {
116
+ encode(message: AptosSQLQueryRequest, writer?: _m0.Writer): _m0.Writer;
117
+ decode(input: _m0.Reader | Uint8Array, length?: number): AptosSQLQueryRequest;
118
+ fromJSON(object: any): AptosSQLQueryRequest;
119
+ toJSON(message: AptosSQLQueryRequest): unknown;
120
+ create(base?: DeepPartial<AptosSQLQueryRequest>): AptosSQLQueryRequest;
121
+ fromPartial(object: DeepPartial<AptosSQLQueryRequest>): AptosSQLQueryRequest;
122
+ };
123
+ export declare const QueryPhaseSummary: {
124
+ encode(message: QueryPhaseSummary, writer?: _m0.Writer): _m0.Writer;
125
+ decode(input: _m0.Reader | Uint8Array, length?: number): QueryPhaseSummary;
126
+ fromJSON(object: any): QueryPhaseSummary;
127
+ toJSON(message: QueryPhaseSummary): unknown;
128
+ create(base?: DeepPartial<QueryPhaseSummary>): QueryPhaseSummary;
129
+ fromPartial(object: DeepPartial<QueryPhaseSummary>): QueryPhaseSummary;
130
+ };
131
+ export declare const QueryExecutionSummary: {
132
+ encode(message: QueryExecutionSummary, writer?: _m0.Writer): _m0.Writer;
133
+ decode(input: _m0.Reader | Uint8Array, length?: number): QueryExecutionSummary;
134
+ fromJSON(object: any): QueryExecutionSummary;
135
+ toJSON(message: QueryExecutionSummary): unknown;
136
+ create(base?: DeepPartial<QueryExecutionSummary>): QueryExecutionSummary;
137
+ fromPartial(object: DeepPartial<QueryExecutionSummary>): QueryExecutionSummary;
138
+ };
139
+ export declare const AptosGetTxnsResponse: {
140
+ encode(message: AptosGetTxnsResponse, writer?: _m0.Writer): _m0.Writer;
141
+ decode(input: _m0.Reader | Uint8Array, length?: number): AptosGetTxnsResponse;
142
+ fromJSON(object: any): AptosGetTxnsResponse;
143
+ toJSON(message: AptosGetTxnsResponse): unknown;
144
+ create(base?: DeepPartial<AptosGetTxnsResponse>): AptosGetTxnsResponse;
145
+ fromPartial(object: DeepPartial<AptosGetTxnsResponse>): AptosGetTxnsResponse;
146
+ };
147
+ export declare const AptosRefreshRequest: {
148
+ encode(_: AptosRefreshRequest, writer?: _m0.Writer): _m0.Writer;
149
+ decode(input: _m0.Reader | Uint8Array, length?: number): AptosRefreshRequest;
150
+ fromJSON(_: any): AptosRefreshRequest;
151
+ toJSON(_: AptosRefreshRequest): unknown;
152
+ create(base?: DeepPartial<AptosRefreshRequest>): AptosRefreshRequest;
153
+ fromPartial(_: DeepPartial<AptosRefreshRequest>): AptosRefreshRequest;
154
+ };
155
+ export declare const VoidResponse: {
156
+ encode(_: VoidResponse, writer?: _m0.Writer): _m0.Writer;
157
+ decode(input: _m0.Reader | Uint8Array, length?: number): VoidResponse;
158
+ fromJSON(_: any): VoidResponse;
159
+ toJSON(_: VoidResponse): unknown;
160
+ create(base?: DeepPartial<VoidResponse>): VoidResponse;
161
+ fromPartial(_: DeepPartial<VoidResponse>): VoidResponse;
162
+ };
163
+ export declare const EvmSQLQueryRequest: {
164
+ encode(message: EvmSQLQueryRequest, writer?: _m0.Writer): _m0.Writer;
165
+ decode(input: _m0.Reader | Uint8Array, length?: number): EvmSQLQueryRequest;
166
+ fromJSON(object: any): EvmSQLQueryRequest;
167
+ toJSON(message: EvmSQLQueryRequest): unknown;
168
+ create(base?: DeepPartial<EvmSQLQueryRequest>): EvmSQLQueryRequest;
169
+ fromPartial(object: DeepPartial<EvmSQLQueryRequest>): EvmSQLQueryRequest;
170
+ };
171
+ export declare const EvmGetHeaderRequest: {
172
+ encode(message: EvmGetHeaderRequest, writer?: _m0.Writer): _m0.Writer;
173
+ decode(input: _m0.Reader | Uint8Array, length?: number): EvmGetHeaderRequest;
174
+ fromJSON(object: any): EvmGetHeaderRequest;
175
+ toJSON(message: EvmGetHeaderRequest): unknown;
176
+ create(base?: DeepPartial<EvmGetHeaderRequest>): EvmGetHeaderRequest;
177
+ fromPartial(object: DeepPartial<EvmGetHeaderRequest>): EvmGetHeaderRequest;
178
+ };
179
+ export declare const EvmQueryResponse: {
180
+ encode(message: EvmQueryResponse, writer?: _m0.Writer): _m0.Writer;
181
+ decode(input: _m0.Reader | Uint8Array, length?: number): EvmQueryResponse;
182
+ fromJSON(object: any): EvmQueryResponse;
183
+ toJSON(message: EvmQueryResponse): unknown;
184
+ create(base?: DeepPartial<EvmQueryResponse>): EvmQueryResponse;
185
+ fromPartial(object: DeepPartial<EvmQueryResponse>): EvmQueryResponse;
186
+ };
187
+ export declare const SuiGetCheckpointTimeRequest: {
188
+ encode(message: SuiGetCheckpointTimeRequest, writer?: _m0.Writer): _m0.Writer;
189
+ decode(input: _m0.Reader | Uint8Array, length?: number): SuiGetCheckpointTimeRequest;
190
+ fromJSON(object: any): SuiGetCheckpointTimeRequest;
191
+ toJSON(message: SuiGetCheckpointTimeRequest): unknown;
192
+ create(base?: DeepPartial<SuiGetCheckpointTimeRequest>): SuiGetCheckpointTimeRequest;
193
+ fromPartial(object: DeepPartial<SuiGetCheckpointTimeRequest>): SuiGetCheckpointTimeRequest;
194
+ };
195
+ export declare const SuiGetCheckpointTimeResponse: {
196
+ encode(message: SuiGetCheckpointTimeResponse, writer?: _m0.Writer): _m0.Writer;
197
+ decode(input: _m0.Reader | Uint8Array, length?: number): SuiGetCheckpointTimeResponse;
198
+ fromJSON(object: any): SuiGetCheckpointTimeResponse;
199
+ toJSON(message: SuiGetCheckpointTimeResponse): unknown;
200
+ create(base?: DeepPartial<SuiGetCheckpointTimeResponse>): SuiGetCheckpointTimeResponse;
201
+ fromPartial(object: DeepPartial<SuiGetCheckpointTimeResponse>): SuiGetCheckpointTimeResponse;
202
+ };
203
+ export declare const RemoteResultRequest: {
204
+ encode(message: RemoteResultRequest, writer?: _m0.Writer): _m0.Writer;
205
+ decode(input: _m0.Reader | Uint8Array, length?: number): RemoteResultRequest;
206
+ fromJSON(object: any): RemoteResultRequest;
207
+ toJSON(message: RemoteResultRequest): unknown;
208
+ create(base?: DeepPartial<RemoteResultRequest>): RemoteResultRequest;
209
+ fromPartial(object: DeepPartial<RemoteResultRequest>): RemoteResultRequest;
210
+ };
211
+ export declare const RemoteResultResponse: {
212
+ encode(message: RemoteResultResponse, writer?: _m0.Writer): _m0.Writer;
213
+ decode(input: _m0.Reader | Uint8Array, length?: number): RemoteResultResponse;
214
+ fromJSON(object: any): RemoteResultResponse;
215
+ toJSON(message: RemoteResultResponse): unknown;
216
+ create(base?: DeepPartial<RemoteResultResponse>): RemoteResultResponse;
217
+ fromPartial(object: DeepPartial<RemoteResultResponse>): RemoteResultResponse;
218
+ };
219
+ export type AptosQueryDefinition = typeof AptosQueryDefinition;
220
+ export declare const AptosQueryDefinition: {
221
+ readonly name: "AptosQuery";
222
+ readonly fullName: "chainquery.AptosQuery";
223
+ readonly methods: {
224
+ readonly aptosGetTxnsByFunction: {
225
+ readonly name: "AptosGetTxnsByFunction";
226
+ readonly requestType: {
227
+ encode(message: AptosGetTxnsByFunctionRequest, writer?: _m0.Writer): _m0.Writer;
228
+ decode(input: _m0.Reader | Uint8Array, length?: number): AptosGetTxnsByFunctionRequest;
229
+ fromJSON(object: any): AptosGetTxnsByFunctionRequest;
230
+ toJSON(message: AptosGetTxnsByFunctionRequest): unknown;
231
+ create(base?: DeepPartial<AptosGetTxnsByFunctionRequest>): AptosGetTxnsByFunctionRequest;
232
+ fromPartial(object: DeepPartial<AptosGetTxnsByFunctionRequest>): AptosGetTxnsByFunctionRequest;
233
+ };
234
+ readonly requestStream: false;
235
+ readonly responseType: {
236
+ encode(message: AptosGetTxnsResponse, writer?: _m0.Writer): _m0.Writer;
237
+ decode(input: _m0.Reader | Uint8Array, length?: number): AptosGetTxnsResponse;
238
+ fromJSON(object: any): AptosGetTxnsResponse;
239
+ toJSON(message: AptosGetTxnsResponse): unknown;
240
+ create(base?: DeepPartial<AptosGetTxnsResponse>): AptosGetTxnsResponse;
241
+ fromPartial(object: DeepPartial<AptosGetTxnsResponse>): AptosGetTxnsResponse;
242
+ };
243
+ readonly responseStream: false;
244
+ readonly options: {};
245
+ };
246
+ readonly aptosGetTxnsByFunctionStream: {
247
+ readonly name: "AptosGetTxnsByFunctionStream";
248
+ readonly requestType: {
249
+ encode(message: AptosGetTxnsByFunctionRequest, writer?: _m0.Writer): _m0.Writer;
250
+ decode(input: _m0.Reader | Uint8Array, length?: number): AptosGetTxnsByFunctionRequest;
251
+ fromJSON(object: any): AptosGetTxnsByFunctionRequest;
252
+ toJSON(message: AptosGetTxnsByFunctionRequest): unknown;
253
+ create(base?: DeepPartial<AptosGetTxnsByFunctionRequest>): AptosGetTxnsByFunctionRequest;
254
+ fromPartial(object: DeepPartial<AptosGetTxnsByFunctionRequest>): AptosGetTxnsByFunctionRequest;
255
+ };
256
+ readonly requestStream: false;
257
+ readonly responseType: {
258
+ encode(message: AptosGetTxnsResponse, writer?: _m0.Writer): _m0.Writer;
259
+ decode(input: _m0.Reader | Uint8Array, length?: number): AptosGetTxnsResponse;
260
+ fromJSON(object: any): AptosGetTxnsResponse;
261
+ toJSON(message: AptosGetTxnsResponse): unknown;
262
+ create(base?: DeepPartial<AptosGetTxnsResponse>): AptosGetTxnsResponse;
263
+ fromPartial(object: DeepPartial<AptosGetTxnsResponse>): AptosGetTxnsResponse;
264
+ };
265
+ readonly responseStream: true;
266
+ readonly options: {};
267
+ };
268
+ readonly aptosGetTxnsByVersion: {
269
+ readonly name: "AptosGetTxnsByVersion";
270
+ readonly requestType: {
271
+ encode(message: AptosGetTxnsByVersionRequest, writer?: _m0.Writer): _m0.Writer;
272
+ decode(input: _m0.Reader | Uint8Array, length?: number): AptosGetTxnsByVersionRequest;
273
+ fromJSON(object: any): AptosGetTxnsByVersionRequest;
274
+ toJSON(message: AptosGetTxnsByVersionRequest): unknown;
275
+ create(base?: DeepPartial<AptosGetTxnsByVersionRequest>): AptosGetTxnsByVersionRequest;
276
+ fromPartial(object: DeepPartial<AptosGetTxnsByVersionRequest>): AptosGetTxnsByVersionRequest;
277
+ };
278
+ readonly requestStream: false;
279
+ readonly responseType: {
280
+ encode(message: AptosGetTxnsResponse, writer?: _m0.Writer): _m0.Writer;
281
+ decode(input: _m0.Reader | Uint8Array, length?: number): AptosGetTxnsResponse;
282
+ fromJSON(object: any): AptosGetTxnsResponse;
283
+ toJSON(message: AptosGetTxnsResponse): unknown;
284
+ create(base?: DeepPartial<AptosGetTxnsResponse>): AptosGetTxnsResponse;
285
+ fromPartial(object: DeepPartial<AptosGetTxnsResponse>): AptosGetTxnsResponse;
286
+ };
287
+ readonly responseStream: false;
288
+ readonly options: {};
289
+ };
290
+ readonly aptosGetTxnsByEvent: {
291
+ readonly name: "AptosGetTxnsByEvent";
292
+ readonly requestType: {
293
+ encode(message: AptosGetTxnsByEventRequest, writer?: _m0.Writer): _m0.Writer;
294
+ decode(input: _m0.Reader | Uint8Array, length?: number): AptosGetTxnsByEventRequest;
295
+ fromJSON(object: any): AptosGetTxnsByEventRequest;
296
+ toJSON(message: AptosGetTxnsByEventRequest): unknown;
297
+ create(base?: DeepPartial<AptosGetTxnsByEventRequest>): AptosGetTxnsByEventRequest;
298
+ fromPartial(object: DeepPartial<AptosGetTxnsByEventRequest>): AptosGetTxnsByEventRequest;
299
+ };
300
+ readonly requestStream: false;
301
+ readonly responseType: {
302
+ encode(message: AptosGetTxnsResponse, writer?: _m0.Writer): _m0.Writer;
303
+ decode(input: _m0.Reader | Uint8Array, length?: number): AptosGetTxnsResponse;
304
+ fromJSON(object: any): AptosGetTxnsResponse;
305
+ toJSON(message: AptosGetTxnsResponse): unknown;
306
+ create(base?: DeepPartial<AptosGetTxnsResponse>): AptosGetTxnsResponse;
307
+ fromPartial(object: DeepPartial<AptosGetTxnsResponse>): AptosGetTxnsResponse;
308
+ };
309
+ readonly responseStream: false;
310
+ readonly options: {};
311
+ };
312
+ readonly aptosGetTxnsByEventStream: {
313
+ readonly name: "AptosGetTxnsByEventStream";
314
+ readonly requestType: {
315
+ encode(message: AptosGetTxnsByEventRequest, writer?: _m0.Writer): _m0.Writer;
316
+ decode(input: _m0.Reader | Uint8Array, length?: number): AptosGetTxnsByEventRequest;
317
+ fromJSON(object: any): AptosGetTxnsByEventRequest;
318
+ toJSON(message: AptosGetTxnsByEventRequest): unknown;
319
+ create(base?: DeepPartial<AptosGetTxnsByEventRequest>): AptosGetTxnsByEventRequest;
320
+ fromPartial(object: DeepPartial<AptosGetTxnsByEventRequest>): AptosGetTxnsByEventRequest;
321
+ };
322
+ readonly requestStream: false;
323
+ readonly responseType: {
324
+ encode(message: AptosGetTxnsResponse, writer?: _m0.Writer): _m0.Writer;
325
+ decode(input: _m0.Reader | Uint8Array, length?: number): AptosGetTxnsResponse;
326
+ fromJSON(object: any): AptosGetTxnsResponse;
327
+ toJSON(message: AptosGetTxnsResponse): unknown;
328
+ create(base?: DeepPartial<AptosGetTxnsResponse>): AptosGetTxnsResponse;
329
+ fromPartial(object: DeepPartial<AptosGetTxnsResponse>): AptosGetTxnsResponse;
330
+ };
331
+ readonly responseStream: true;
332
+ readonly options: {};
333
+ };
334
+ readonly aptosRefresh: {
335
+ readonly name: "AptosRefresh";
336
+ readonly requestType: {
337
+ encode(_: AptosRefreshRequest, writer?: _m0.Writer): _m0.Writer;
338
+ decode(input: _m0.Reader | Uint8Array, length?: number): AptosRefreshRequest;
339
+ fromJSON(_: any): AptosRefreshRequest;
340
+ toJSON(_: AptosRefreshRequest): unknown;
341
+ create(base?: DeepPartial<AptosRefreshRequest>): AptosRefreshRequest;
342
+ fromPartial(_: DeepPartial<AptosRefreshRequest>): AptosRefreshRequest;
343
+ };
344
+ readonly requestStream: false;
345
+ readonly responseType: {
346
+ encode(_: VoidResponse, writer?: _m0.Writer): _m0.Writer;
347
+ decode(input: _m0.Reader | Uint8Array, length?: number): VoidResponse;
348
+ fromJSON(_: any): VoidResponse;
349
+ toJSON(_: VoidResponse): unknown;
350
+ create(base?: DeepPartial<VoidResponse>): VoidResponse;
351
+ fromPartial(_: DeepPartial<VoidResponse>): VoidResponse;
352
+ };
353
+ readonly responseStream: false;
354
+ readonly options: {};
355
+ };
356
+ readonly aptosSQLQuery: {
357
+ readonly name: "AptosSQLQuery";
358
+ readonly requestType: {
359
+ encode(message: AptosSQLQueryRequest, writer?: _m0.Writer): _m0.Writer;
360
+ decode(input: _m0.Reader | Uint8Array, length?: number): AptosSQLQueryRequest;
361
+ fromJSON(object: any): AptosSQLQueryRequest;
362
+ toJSON(message: AptosSQLQueryRequest): unknown;
363
+ create(base?: DeepPartial<AptosSQLQueryRequest>): AptosSQLQueryRequest;
364
+ fromPartial(object: DeepPartial<AptosSQLQueryRequest>): AptosSQLQueryRequest;
365
+ };
366
+ readonly requestStream: false;
367
+ readonly responseType: {
368
+ encode(message: AptosGetTxnsResponse, writer?: _m0.Writer): _m0.Writer;
369
+ decode(input: _m0.Reader | Uint8Array, length?: number): AptosGetTxnsResponse;
370
+ fromJSON(object: any): AptosGetTxnsResponse;
371
+ toJSON(message: AptosGetTxnsResponse): unknown;
372
+ create(base?: DeepPartial<AptosGetTxnsResponse>): AptosGetTxnsResponse;
373
+ fromPartial(object: DeepPartial<AptosGetTxnsResponse>): AptosGetTxnsResponse;
374
+ };
375
+ readonly responseStream: false;
376
+ readonly options: {};
377
+ };
378
+ };
379
+ };
380
+ export interface AptosQueryServiceImplementation<CallContextExt = {}> {
381
+ aptosGetTxnsByFunction(request: AptosGetTxnsByFunctionRequest, context: CallContext & CallContextExt): Promise<DeepPartial<AptosGetTxnsResponse>>;
382
+ aptosGetTxnsByFunctionStream(request: AptosGetTxnsByFunctionRequest, context: CallContext & CallContextExt): ServerStreamingMethodResult<DeepPartial<AptosGetTxnsResponse>>;
383
+ aptosGetTxnsByVersion(request: AptosGetTxnsByVersionRequest, context: CallContext & CallContextExt): Promise<DeepPartial<AptosGetTxnsResponse>>;
384
+ aptosGetTxnsByEvent(request: AptosGetTxnsByEventRequest, context: CallContext & CallContextExt): Promise<DeepPartial<AptosGetTxnsResponse>>;
385
+ aptosGetTxnsByEventStream(request: AptosGetTxnsByEventRequest, context: CallContext & CallContextExt): ServerStreamingMethodResult<DeepPartial<AptosGetTxnsResponse>>;
386
+ aptosRefresh(request: AptosRefreshRequest, context: CallContext & CallContextExt): Promise<DeepPartial<VoidResponse>>;
387
+ aptosSQLQuery(request: AptosSQLQueryRequest, context: CallContext & CallContextExt): Promise<DeepPartial<AptosGetTxnsResponse>>;
388
+ }
389
+ export interface AptosQueryClient<CallOptionsExt = {}> {
390
+ aptosGetTxnsByFunction(request: DeepPartial<AptosGetTxnsByFunctionRequest>, options?: CallOptions & CallOptionsExt): Promise<AptosGetTxnsResponse>;
391
+ aptosGetTxnsByFunctionStream(request: DeepPartial<AptosGetTxnsByFunctionRequest>, options?: CallOptions & CallOptionsExt): AsyncIterable<AptosGetTxnsResponse>;
392
+ aptosGetTxnsByVersion(request: DeepPartial<AptosGetTxnsByVersionRequest>, options?: CallOptions & CallOptionsExt): Promise<AptosGetTxnsResponse>;
393
+ aptosGetTxnsByEvent(request: DeepPartial<AptosGetTxnsByEventRequest>, options?: CallOptions & CallOptionsExt): Promise<AptosGetTxnsResponse>;
394
+ aptosGetTxnsByEventStream(request: DeepPartial<AptosGetTxnsByEventRequest>, options?: CallOptions & CallOptionsExt): AsyncIterable<AptosGetTxnsResponse>;
395
+ aptosRefresh(request: DeepPartial<AptosRefreshRequest>, options?: CallOptions & CallOptionsExt): Promise<VoidResponse>;
396
+ aptosSQLQuery(request: DeepPartial<AptosSQLQueryRequest>, options?: CallOptions & CallOptionsExt): Promise<AptosGetTxnsResponse>;
397
+ }
398
+ export type EvmQueryDefinition = typeof EvmQueryDefinition;
399
+ export declare const EvmQueryDefinition: {
400
+ readonly name: "EvmQuery";
401
+ readonly fullName: "chainquery.EvmQuery";
402
+ readonly methods: {
403
+ readonly evmSQLQuery: {
404
+ readonly name: "EvmSQLQuery";
405
+ readonly requestType: {
406
+ encode(message: EvmSQLQueryRequest, writer?: _m0.Writer): _m0.Writer;
407
+ decode(input: _m0.Reader | Uint8Array, length?: number): EvmSQLQueryRequest;
408
+ fromJSON(object: any): EvmSQLQueryRequest;
409
+ toJSON(message: EvmSQLQueryRequest): unknown;
410
+ create(base?: DeepPartial<EvmSQLQueryRequest>): EvmSQLQueryRequest;
411
+ fromPartial(object: DeepPartial<EvmSQLQueryRequest>): EvmSQLQueryRequest;
412
+ };
413
+ readonly requestStream: false;
414
+ readonly responseType: {
415
+ encode(message: EvmQueryResponse, writer?: _m0.Writer): _m0.Writer;
416
+ decode(input: _m0.Reader | Uint8Array, length?: number): EvmQueryResponse;
417
+ fromJSON(object: any): EvmQueryResponse;
418
+ toJSON(message: EvmQueryResponse): unknown;
419
+ create(base?: DeepPartial<EvmQueryResponse>): EvmQueryResponse;
420
+ fromPartial(object: DeepPartial<EvmQueryResponse>): EvmQueryResponse;
421
+ };
422
+ readonly responseStream: true;
423
+ readonly options: {};
424
+ };
425
+ readonly evmGetHeader: {
426
+ readonly name: "EvmGetHeader";
427
+ readonly requestType: {
428
+ encode(message: EvmGetHeaderRequest, writer?: _m0.Writer): _m0.Writer;
429
+ decode(input: _m0.Reader | Uint8Array, length?: number): EvmGetHeaderRequest;
430
+ fromJSON(object: any): EvmGetHeaderRequest;
431
+ toJSON(message: EvmGetHeaderRequest): unknown;
432
+ create(base?: DeepPartial<EvmGetHeaderRequest>): EvmGetHeaderRequest;
433
+ fromPartial(object: DeepPartial<EvmGetHeaderRequest>): EvmGetHeaderRequest;
434
+ };
435
+ readonly requestStream: false;
436
+ readonly responseType: {
437
+ encode(message: EvmQueryResponse, writer?: _m0.Writer): _m0.Writer;
438
+ decode(input: _m0.Reader | Uint8Array, length?: number): EvmQueryResponse;
439
+ fromJSON(object: any): EvmQueryResponse;
440
+ toJSON(message: EvmQueryResponse): unknown;
441
+ create(base?: DeepPartial<EvmQueryResponse>): EvmQueryResponse;
442
+ fromPartial(object: DeepPartial<EvmQueryResponse>): EvmQueryResponse;
443
+ };
444
+ readonly responseStream: false;
445
+ readonly options: {};
446
+ };
447
+ readonly evmHintHeaderCache: {
448
+ readonly name: "EvmHintHeaderCache";
449
+ readonly requestType: {
450
+ encode(message: EvmGetHeaderRequest, writer?: _m0.Writer): _m0.Writer;
451
+ decode(input: _m0.Reader | Uint8Array, length?: number): EvmGetHeaderRequest;
452
+ fromJSON(object: any): EvmGetHeaderRequest;
453
+ toJSON(message: EvmGetHeaderRequest): unknown;
454
+ create(base?: DeepPartial<EvmGetHeaderRequest>): EvmGetHeaderRequest;
455
+ fromPartial(object: DeepPartial<EvmGetHeaderRequest>): EvmGetHeaderRequest;
456
+ };
457
+ readonly requestStream: false;
458
+ readonly responseType: {
459
+ encode(_: VoidResponse, writer?: _m0.Writer): _m0.Writer;
460
+ decode(input: _m0.Reader | Uint8Array, length?: number): VoidResponse;
461
+ fromJSON(_: any): VoidResponse;
462
+ toJSON(_: VoidResponse): unknown;
463
+ create(base?: DeepPartial<VoidResponse>): VoidResponse;
464
+ fromPartial(_: DeepPartial<VoidResponse>): VoidResponse;
465
+ };
466
+ readonly responseStream: false;
467
+ readonly options: {};
468
+ };
469
+ };
470
+ };
471
+ export interface EvmQueryServiceImplementation<CallContextExt = {}> {
472
+ evmSQLQuery(request: EvmSQLQueryRequest, context: CallContext & CallContextExt): ServerStreamingMethodResult<DeepPartial<EvmQueryResponse>>;
473
+ evmGetHeader(request: EvmGetHeaderRequest, context: CallContext & CallContextExt): Promise<DeepPartial<EvmQueryResponse>>;
474
+ evmHintHeaderCache(request: EvmGetHeaderRequest, context: CallContext & CallContextExt): Promise<DeepPartial<VoidResponse>>;
475
+ }
476
+ export interface EvmQueryClient<CallOptionsExt = {}> {
477
+ evmSQLQuery(request: DeepPartial<EvmSQLQueryRequest>, options?: CallOptions & CallOptionsExt): AsyncIterable<EvmQueryResponse>;
478
+ evmGetHeader(request: DeepPartial<EvmGetHeaderRequest>, options?: CallOptions & CallOptionsExt): Promise<EvmQueryResponse>;
479
+ evmHintHeaderCache(request: DeepPartial<EvmGetHeaderRequest>, options?: CallOptions & CallOptionsExt): Promise<VoidResponse>;
480
+ }
481
+ export type SuiQueryDefinition = typeof SuiQueryDefinition;
482
+ export declare const SuiQueryDefinition: {
483
+ readonly name: "SuiQuery";
484
+ readonly fullName: "chainquery.SuiQuery";
485
+ readonly methods: {
486
+ readonly suiSQLQuery: {
487
+ readonly name: "SuiSQLQuery";
488
+ readonly requestType: {
489
+ encode(message: EvmSQLQueryRequest, writer?: _m0.Writer): _m0.Writer;
490
+ decode(input: _m0.Reader | Uint8Array, length?: number): EvmSQLQueryRequest;
491
+ fromJSON(object: any): EvmSQLQueryRequest;
492
+ toJSON(message: EvmSQLQueryRequest): unknown;
493
+ create(base?: DeepPartial<EvmSQLQueryRequest>): EvmSQLQueryRequest;
494
+ fromPartial(object: DeepPartial<EvmSQLQueryRequest>): EvmSQLQueryRequest;
495
+ };
496
+ readonly requestStream: false;
497
+ readonly responseType: {
498
+ encode(message: EvmQueryResponse, writer?: _m0.Writer): _m0.Writer;
499
+ decode(input: _m0.Reader | Uint8Array, length?: number): EvmQueryResponse;
500
+ fromJSON(object: any): EvmQueryResponse;
501
+ toJSON(message: EvmQueryResponse): unknown;
502
+ create(base?: DeepPartial<EvmQueryResponse>): EvmQueryResponse;
503
+ fromPartial(object: DeepPartial<EvmQueryResponse>): EvmQueryResponse;
504
+ };
505
+ readonly responseStream: true;
506
+ readonly options: {};
507
+ };
508
+ readonly getCheckpointTime: {
509
+ readonly name: "GetCheckpointTime";
510
+ readonly requestType: {
511
+ encode(message: SuiGetCheckpointTimeRequest, writer?: _m0.Writer): _m0.Writer;
512
+ decode(input: _m0.Reader | Uint8Array, length?: number): SuiGetCheckpointTimeRequest;
513
+ fromJSON(object: any): SuiGetCheckpointTimeRequest;
514
+ toJSON(message: SuiGetCheckpointTimeRequest): unknown;
515
+ create(base?: DeepPartial<SuiGetCheckpointTimeRequest>): SuiGetCheckpointTimeRequest;
516
+ fromPartial(object: DeepPartial<SuiGetCheckpointTimeRequest>): SuiGetCheckpointTimeRequest;
517
+ };
518
+ readonly requestStream: false;
519
+ readonly responseType: {
520
+ encode(message: SuiGetCheckpointTimeResponse, writer?: _m0.Writer): _m0.Writer;
521
+ decode(input: _m0.Reader | Uint8Array, length?: number): SuiGetCheckpointTimeResponse;
522
+ fromJSON(object: any): SuiGetCheckpointTimeResponse;
523
+ toJSON(message: SuiGetCheckpointTimeResponse): unknown;
524
+ create(base?: DeepPartial<SuiGetCheckpointTimeResponse>): SuiGetCheckpointTimeResponse;
525
+ fromPartial(object: DeepPartial<SuiGetCheckpointTimeResponse>): SuiGetCheckpointTimeResponse;
526
+ };
527
+ readonly responseStream: false;
528
+ readonly options: {};
529
+ };
530
+ };
531
+ };
532
+ export interface SuiQueryServiceImplementation<CallContextExt = {}> {
533
+ suiSQLQuery(request: EvmSQLQueryRequest, context: CallContext & CallContextExt): ServerStreamingMethodResult<DeepPartial<EvmQueryResponse>>;
534
+ getCheckpointTime(request: SuiGetCheckpointTimeRequest, context: CallContext & CallContextExt): Promise<DeepPartial<SuiGetCheckpointTimeResponse>>;
535
+ }
536
+ export interface SuiQueryClient<CallOptionsExt = {}> {
537
+ suiSQLQuery(request: DeepPartial<EvmSQLQueryRequest>, options?: CallOptions & CallOptionsExt): AsyncIterable<EvmQueryResponse>;
538
+ getCheckpointTime(request: DeepPartial<SuiGetCheckpointTimeRequest>, options?: CallOptions & CallOptionsExt): Promise<SuiGetCheckpointTimeResponse>;
539
+ }
540
+ export type RemoteResultTransferServiceDefinition = typeof RemoteResultTransferServiceDefinition;
541
+ export declare const RemoteResultTransferServiceDefinition: {
542
+ readonly name: "RemoteResultTransferService";
543
+ readonly fullName: "chainquery.RemoteResultTransferService";
544
+ readonly methods: {
545
+ readonly getResult: {
546
+ readonly name: "GetResult";
547
+ readonly requestType: {
548
+ encode(message: RemoteResultRequest, writer?: _m0.Writer): _m0.Writer;
549
+ decode(input: _m0.Reader | Uint8Array, length?: number): RemoteResultRequest;
550
+ fromJSON(object: any): RemoteResultRequest;
551
+ toJSON(message: RemoteResultRequest): unknown;
552
+ create(base?: DeepPartial<RemoteResultRequest>): RemoteResultRequest;
553
+ fromPartial(object: DeepPartial<RemoteResultRequest>): RemoteResultRequest;
554
+ };
555
+ readonly requestStream: false;
556
+ readonly responseType: {
557
+ encode(message: RemoteResultResponse, writer?: _m0.Writer): _m0.Writer;
558
+ decode(input: _m0.Reader | Uint8Array, length?: number): RemoteResultResponse;
559
+ fromJSON(object: any): RemoteResultResponse;
560
+ toJSON(message: RemoteResultResponse): unknown;
561
+ create(base?: DeepPartial<RemoteResultResponse>): RemoteResultResponse;
562
+ fromPartial(object: DeepPartial<RemoteResultResponse>): RemoteResultResponse;
563
+ };
564
+ readonly responseStream: false;
565
+ readonly options: {};
566
+ };
567
+ readonly destroyResult: {
568
+ readonly name: "DestroyResult";
569
+ readonly requestType: {
570
+ encode(message: RemoteResultRequest, writer?: _m0.Writer): _m0.Writer;
571
+ decode(input: _m0.Reader | Uint8Array, length?: number): RemoteResultRequest;
572
+ fromJSON(object: any): RemoteResultRequest;
573
+ toJSON(message: RemoteResultRequest): unknown;
574
+ create(base?: DeepPartial<RemoteResultRequest>): RemoteResultRequest;
575
+ fromPartial(object: DeepPartial<RemoteResultRequest>): RemoteResultRequest;
576
+ };
577
+ readonly requestStream: false;
578
+ readonly responseType: {
579
+ encode(_: VoidResponse, writer?: _m0.Writer): _m0.Writer;
580
+ decode(input: _m0.Reader | Uint8Array, length?: number): VoidResponse;
581
+ fromJSON(_: any): VoidResponse;
582
+ toJSON(_: VoidResponse): unknown;
583
+ create(base?: DeepPartial<VoidResponse>): VoidResponse;
584
+ fromPartial(_: DeepPartial<VoidResponse>): VoidResponse;
585
+ };
586
+ readonly responseStream: false;
587
+ readonly options: {};
588
+ };
589
+ };
590
+ };
591
+ export interface RemoteResultTransferServiceImplementation<CallContextExt = {}> {
592
+ getResult(request: RemoteResultRequest, context: CallContext & CallContextExt): Promise<DeepPartial<RemoteResultResponse>>;
593
+ destroyResult(request: RemoteResultRequest, context: CallContext & CallContextExt): Promise<DeepPartial<VoidResponse>>;
594
+ }
595
+ export interface RemoteResultTransferServiceClient<CallOptionsExt = {}> {
596
+ getResult(request: DeepPartial<RemoteResultRequest>, options?: CallOptions & CallOptionsExt): Promise<RemoteResultResponse>;
597
+ destroyResult(request: DeepPartial<RemoteResultRequest>, options?: CallOptions & CallOptionsExt): Promise<VoidResponse>;
598
+ }
599
+ type Builtin = Date | Function | Uint8Array | string | number | boolean | bigint | undefined;
600
+ type DeepPartial<T> = T extends Builtin ? T : T extends globalThis.Array<infer U> ? globalThis.Array<DeepPartial<U>> : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial<U>> : T extends {} ? {
601
+ [K in keyof T]?: DeepPartial<T[K]>;
602
+ } : Partial<T>;
603
+ export type ServerStreamingMethodResult<Response> = {
604
+ [Symbol.asyncIterator](): AsyncIterator<Response, void>;
605
+ };
606
+ export {};
607
+ //# sourceMappingURL=chainquery.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"chainquery.d.ts","sourceRoot":"","sources":["../../../src/chainquery/protos/chainquery.ts"],"names":[],"mappings":"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"}