@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,359 @@
1
+ import type { CallContext, CallOptions } from "nice-grpc-common";
2
+ import _m0 from "protobufjs/minimal.js";
3
+ import { Empty } from "../../../google/protobuf/empty.js";
4
+ export interface CoinID {
5
+ symbol?: string | undefined;
6
+ address?: CoinID_AddressIdentifier | undefined;
7
+ }
8
+ export interface CoinID_AddressIdentifier {
9
+ address: string;
10
+ chain: string;
11
+ }
12
+ export interface GetPriceRequest {
13
+ timestamp: Date | undefined;
14
+ coinId: CoinID | undefined;
15
+ source: string;
16
+ }
17
+ export interface GetPriceResponse {
18
+ price: number;
19
+ timestamp: Date | undefined;
20
+ }
21
+ export interface BatchGetPricesRequest {
22
+ timestamps: Date[];
23
+ coinIds: CoinID[];
24
+ }
25
+ export interface BatchGetPricesResponse {
26
+ prices: BatchGetPricesResponse_CoinPrice[];
27
+ }
28
+ export interface BatchGetPricesResponse_CoinPrice {
29
+ coinId: CoinID | undefined;
30
+ price?: BatchGetPricesResponse_CoinPrice_Price | undefined;
31
+ error?: string | undefined;
32
+ }
33
+ export interface BatchGetPricesResponse_CoinPrice_Price {
34
+ results: GetPriceResponse[];
35
+ }
36
+ export interface ListCoinsRequest {
37
+ limit: number;
38
+ offset: number;
39
+ searchQuery: string;
40
+ chain: string;
41
+ }
42
+ export interface ListCoinsResponse {
43
+ coins: CoinID[];
44
+ coinAddressesInChain: {
45
+ [key: string]: CoinID;
46
+ };
47
+ }
48
+ export interface ListCoinsResponse_CoinAddressesInChainEntry {
49
+ key: string;
50
+ value: CoinID | undefined;
51
+ }
52
+ export interface CheckLatestPriceResponse {
53
+ prices: CheckLatestPriceResponse_CoinPrice[];
54
+ latestPrice: CheckLatestPriceResponse_CoinPrice | undefined;
55
+ }
56
+ export interface CheckLatestPriceResponse_CoinPrice {
57
+ coinId: CoinID | undefined;
58
+ price: number;
59
+ timestamp: Date | undefined;
60
+ }
61
+ export interface BackfillCoinRequest {
62
+ name: string;
63
+ symbol: string;
64
+ chain: string;
65
+ address: string;
66
+ coingeckoId: string;
67
+ decimals: number;
68
+ logoUrl: string;
69
+ projectUrl: string;
70
+ accountAddress: string;
71
+ moduleName: string;
72
+ structName: string;
73
+ }
74
+ export interface BackfillCoinResponse {
75
+ symbol: string;
76
+ message: string;
77
+ }
78
+ export declare const CoinID: {
79
+ encode(message: CoinID, writer?: _m0.Writer): _m0.Writer;
80
+ decode(input: _m0.Reader | Uint8Array, length?: number): CoinID;
81
+ fromJSON(object: any): CoinID;
82
+ toJSON(message: CoinID): unknown;
83
+ create(base?: DeepPartial<CoinID>): CoinID;
84
+ fromPartial(object: DeepPartial<CoinID>): CoinID;
85
+ };
86
+ export declare const CoinID_AddressIdentifier: {
87
+ encode(message: CoinID_AddressIdentifier, writer?: _m0.Writer): _m0.Writer;
88
+ decode(input: _m0.Reader | Uint8Array, length?: number): CoinID_AddressIdentifier;
89
+ fromJSON(object: any): CoinID_AddressIdentifier;
90
+ toJSON(message: CoinID_AddressIdentifier): unknown;
91
+ create(base?: DeepPartial<CoinID_AddressIdentifier>): CoinID_AddressIdentifier;
92
+ fromPartial(object: DeepPartial<CoinID_AddressIdentifier>): CoinID_AddressIdentifier;
93
+ };
94
+ export declare const GetPriceRequest: {
95
+ encode(message: GetPriceRequest, writer?: _m0.Writer): _m0.Writer;
96
+ decode(input: _m0.Reader | Uint8Array, length?: number): GetPriceRequest;
97
+ fromJSON(object: any): GetPriceRequest;
98
+ toJSON(message: GetPriceRequest): unknown;
99
+ create(base?: DeepPartial<GetPriceRequest>): GetPriceRequest;
100
+ fromPartial(object: DeepPartial<GetPriceRequest>): GetPriceRequest;
101
+ };
102
+ export declare const GetPriceResponse: {
103
+ encode(message: GetPriceResponse, writer?: _m0.Writer): _m0.Writer;
104
+ decode(input: _m0.Reader | Uint8Array, length?: number): GetPriceResponse;
105
+ fromJSON(object: any): GetPriceResponse;
106
+ toJSON(message: GetPriceResponse): unknown;
107
+ create(base?: DeepPartial<GetPriceResponse>): GetPriceResponse;
108
+ fromPartial(object: DeepPartial<GetPriceResponse>): GetPriceResponse;
109
+ };
110
+ export declare const BatchGetPricesRequest: {
111
+ encode(message: BatchGetPricesRequest, writer?: _m0.Writer): _m0.Writer;
112
+ decode(input: _m0.Reader | Uint8Array, length?: number): BatchGetPricesRequest;
113
+ fromJSON(object: any): BatchGetPricesRequest;
114
+ toJSON(message: BatchGetPricesRequest): unknown;
115
+ create(base?: DeepPartial<BatchGetPricesRequest>): BatchGetPricesRequest;
116
+ fromPartial(object: DeepPartial<BatchGetPricesRequest>): BatchGetPricesRequest;
117
+ };
118
+ export declare const BatchGetPricesResponse: {
119
+ encode(message: BatchGetPricesResponse, writer?: _m0.Writer): _m0.Writer;
120
+ decode(input: _m0.Reader | Uint8Array, length?: number): BatchGetPricesResponse;
121
+ fromJSON(object: any): BatchGetPricesResponse;
122
+ toJSON(message: BatchGetPricesResponse): unknown;
123
+ create(base?: DeepPartial<BatchGetPricesResponse>): BatchGetPricesResponse;
124
+ fromPartial(object: DeepPartial<BatchGetPricesResponse>): BatchGetPricesResponse;
125
+ };
126
+ export declare const BatchGetPricesResponse_CoinPrice: {
127
+ encode(message: BatchGetPricesResponse_CoinPrice, writer?: _m0.Writer): _m0.Writer;
128
+ decode(input: _m0.Reader | Uint8Array, length?: number): BatchGetPricesResponse_CoinPrice;
129
+ fromJSON(object: any): BatchGetPricesResponse_CoinPrice;
130
+ toJSON(message: BatchGetPricesResponse_CoinPrice): unknown;
131
+ create(base?: DeepPartial<BatchGetPricesResponse_CoinPrice>): BatchGetPricesResponse_CoinPrice;
132
+ fromPartial(object: DeepPartial<BatchGetPricesResponse_CoinPrice>): BatchGetPricesResponse_CoinPrice;
133
+ };
134
+ export declare const BatchGetPricesResponse_CoinPrice_Price: {
135
+ encode(message: BatchGetPricesResponse_CoinPrice_Price, writer?: _m0.Writer): _m0.Writer;
136
+ decode(input: _m0.Reader | Uint8Array, length?: number): BatchGetPricesResponse_CoinPrice_Price;
137
+ fromJSON(object: any): BatchGetPricesResponse_CoinPrice_Price;
138
+ toJSON(message: BatchGetPricesResponse_CoinPrice_Price): unknown;
139
+ create(base?: DeepPartial<BatchGetPricesResponse_CoinPrice_Price>): BatchGetPricesResponse_CoinPrice_Price;
140
+ fromPartial(object: DeepPartial<BatchGetPricesResponse_CoinPrice_Price>): BatchGetPricesResponse_CoinPrice_Price;
141
+ };
142
+ export declare const ListCoinsRequest: {
143
+ encode(message: ListCoinsRequest, writer?: _m0.Writer): _m0.Writer;
144
+ decode(input: _m0.Reader | Uint8Array, length?: number): ListCoinsRequest;
145
+ fromJSON(object: any): ListCoinsRequest;
146
+ toJSON(message: ListCoinsRequest): unknown;
147
+ create(base?: DeepPartial<ListCoinsRequest>): ListCoinsRequest;
148
+ fromPartial(object: DeepPartial<ListCoinsRequest>): ListCoinsRequest;
149
+ };
150
+ export declare const ListCoinsResponse: {
151
+ encode(message: ListCoinsResponse, writer?: _m0.Writer): _m0.Writer;
152
+ decode(input: _m0.Reader | Uint8Array, length?: number): ListCoinsResponse;
153
+ fromJSON(object: any): ListCoinsResponse;
154
+ toJSON(message: ListCoinsResponse): unknown;
155
+ create(base?: DeepPartial<ListCoinsResponse>): ListCoinsResponse;
156
+ fromPartial(object: DeepPartial<ListCoinsResponse>): ListCoinsResponse;
157
+ };
158
+ export declare const ListCoinsResponse_CoinAddressesInChainEntry: {
159
+ encode(message: ListCoinsResponse_CoinAddressesInChainEntry, writer?: _m0.Writer): _m0.Writer;
160
+ decode(input: _m0.Reader | Uint8Array, length?: number): ListCoinsResponse_CoinAddressesInChainEntry;
161
+ fromJSON(object: any): ListCoinsResponse_CoinAddressesInChainEntry;
162
+ toJSON(message: ListCoinsResponse_CoinAddressesInChainEntry): unknown;
163
+ create(base?: DeepPartial<ListCoinsResponse_CoinAddressesInChainEntry>): ListCoinsResponse_CoinAddressesInChainEntry;
164
+ fromPartial(object: DeepPartial<ListCoinsResponse_CoinAddressesInChainEntry>): ListCoinsResponse_CoinAddressesInChainEntry;
165
+ };
166
+ export declare const CheckLatestPriceResponse: {
167
+ encode(message: CheckLatestPriceResponse, writer?: _m0.Writer): _m0.Writer;
168
+ decode(input: _m0.Reader | Uint8Array, length?: number): CheckLatestPriceResponse;
169
+ fromJSON(object: any): CheckLatestPriceResponse;
170
+ toJSON(message: CheckLatestPriceResponse): unknown;
171
+ create(base?: DeepPartial<CheckLatestPriceResponse>): CheckLatestPriceResponse;
172
+ fromPartial(object: DeepPartial<CheckLatestPriceResponse>): CheckLatestPriceResponse;
173
+ };
174
+ export declare const CheckLatestPriceResponse_CoinPrice: {
175
+ encode(message: CheckLatestPriceResponse_CoinPrice, writer?: _m0.Writer): _m0.Writer;
176
+ decode(input: _m0.Reader | Uint8Array, length?: number): CheckLatestPriceResponse_CoinPrice;
177
+ fromJSON(object: any): CheckLatestPriceResponse_CoinPrice;
178
+ toJSON(message: CheckLatestPriceResponse_CoinPrice): unknown;
179
+ create(base?: DeepPartial<CheckLatestPriceResponse_CoinPrice>): CheckLatestPriceResponse_CoinPrice;
180
+ fromPartial(object: DeepPartial<CheckLatestPriceResponse_CoinPrice>): CheckLatestPriceResponse_CoinPrice;
181
+ };
182
+ export declare const BackfillCoinRequest: {
183
+ encode(message: BackfillCoinRequest, writer?: _m0.Writer): _m0.Writer;
184
+ decode(input: _m0.Reader | Uint8Array, length?: number): BackfillCoinRequest;
185
+ fromJSON(object: any): BackfillCoinRequest;
186
+ toJSON(message: BackfillCoinRequest): unknown;
187
+ create(base?: DeepPartial<BackfillCoinRequest>): BackfillCoinRequest;
188
+ fromPartial(object: DeepPartial<BackfillCoinRequest>): BackfillCoinRequest;
189
+ };
190
+ export declare const BackfillCoinResponse: {
191
+ encode(message: BackfillCoinResponse, writer?: _m0.Writer): _m0.Writer;
192
+ decode(input: _m0.Reader | Uint8Array, length?: number): BackfillCoinResponse;
193
+ fromJSON(object: any): BackfillCoinResponse;
194
+ toJSON(message: BackfillCoinResponse): unknown;
195
+ create(base?: DeepPartial<BackfillCoinResponse>): BackfillCoinResponse;
196
+ fromPartial(object: DeepPartial<BackfillCoinResponse>): BackfillCoinResponse;
197
+ };
198
+ export type PriceServiceDefinition = typeof PriceServiceDefinition;
199
+ export declare const PriceServiceDefinition: {
200
+ readonly name: "PriceService";
201
+ readonly fullName: "price_service.PriceService";
202
+ readonly methods: {
203
+ readonly getPrice: {
204
+ readonly name: "GetPrice";
205
+ readonly requestType: {
206
+ encode(message: GetPriceRequest, writer?: _m0.Writer): _m0.Writer;
207
+ decode(input: _m0.Reader | Uint8Array, length?: number): GetPriceRequest;
208
+ fromJSON(object: any): GetPriceRequest;
209
+ toJSON(message: GetPriceRequest): unknown;
210
+ create(base?: DeepPartial<GetPriceRequest>): GetPriceRequest;
211
+ fromPartial(object: DeepPartial<GetPriceRequest>): GetPriceRequest;
212
+ };
213
+ readonly requestStream: false;
214
+ readonly responseType: {
215
+ encode(message: GetPriceResponse, writer?: _m0.Writer): _m0.Writer;
216
+ decode(input: _m0.Reader | Uint8Array, length?: number): GetPriceResponse;
217
+ fromJSON(object: any): GetPriceResponse;
218
+ toJSON(message: GetPriceResponse): unknown;
219
+ create(base?: DeepPartial<GetPriceResponse>): GetPriceResponse;
220
+ fromPartial(object: DeepPartial<GetPriceResponse>): GetPriceResponse;
221
+ };
222
+ readonly responseStream: false;
223
+ readonly options: {
224
+ readonly _unknownFields: {
225
+ readonly 8338: readonly [Uint8Array];
226
+ readonly 578365826: readonly [Uint8Array];
227
+ };
228
+ };
229
+ };
230
+ readonly batchGetPrices: {
231
+ readonly name: "BatchGetPrices";
232
+ readonly requestType: {
233
+ encode(message: BatchGetPricesRequest, writer?: _m0.Writer): _m0.Writer;
234
+ decode(input: _m0.Reader | Uint8Array, length?: number): BatchGetPricesRequest;
235
+ fromJSON(object: any): BatchGetPricesRequest;
236
+ toJSON(message: BatchGetPricesRequest): unknown;
237
+ create(base?: DeepPartial<BatchGetPricesRequest>): BatchGetPricesRequest;
238
+ fromPartial(object: DeepPartial<BatchGetPricesRequest>): BatchGetPricesRequest;
239
+ };
240
+ readonly requestStream: false;
241
+ readonly responseType: {
242
+ encode(message: BatchGetPricesResponse, writer?: _m0.Writer): _m0.Writer;
243
+ decode(input: _m0.Reader | Uint8Array, length?: number): BatchGetPricesResponse;
244
+ fromJSON(object: any): BatchGetPricesResponse;
245
+ toJSON(message: BatchGetPricesResponse): unknown;
246
+ create(base?: DeepPartial<BatchGetPricesResponse>): BatchGetPricesResponse;
247
+ fromPartial(object: DeepPartial<BatchGetPricesResponse>): BatchGetPricesResponse;
248
+ };
249
+ readonly responseStream: false;
250
+ readonly options: {
251
+ readonly _unknownFields: {
252
+ readonly 8338: readonly [Uint8Array];
253
+ readonly 578365826: readonly [Uint8Array];
254
+ };
255
+ };
256
+ };
257
+ readonly listCoins: {
258
+ readonly name: "ListCoins";
259
+ readonly requestType: {
260
+ encode(message: ListCoinsRequest, writer?: _m0.Writer): _m0.Writer;
261
+ decode(input: _m0.Reader | Uint8Array, length?: number): ListCoinsRequest;
262
+ fromJSON(object: any): ListCoinsRequest;
263
+ toJSON(message: ListCoinsRequest): unknown;
264
+ create(base?: DeepPartial<ListCoinsRequest>): ListCoinsRequest;
265
+ fromPartial(object: DeepPartial<ListCoinsRequest>): ListCoinsRequest;
266
+ };
267
+ readonly requestStream: false;
268
+ readonly responseType: {
269
+ encode(message: ListCoinsResponse, writer?: _m0.Writer): _m0.Writer;
270
+ decode(input: _m0.Reader | Uint8Array, length?: number): ListCoinsResponse;
271
+ fromJSON(object: any): ListCoinsResponse;
272
+ toJSON(message: ListCoinsResponse): unknown;
273
+ create(base?: DeepPartial<ListCoinsResponse>): ListCoinsResponse;
274
+ fromPartial(object: DeepPartial<ListCoinsResponse>): ListCoinsResponse;
275
+ };
276
+ readonly responseStream: false;
277
+ readonly options: {
278
+ readonly _unknownFields: {
279
+ readonly 8338: readonly [Uint8Array];
280
+ readonly 578365826: readonly [Uint8Array];
281
+ };
282
+ };
283
+ };
284
+ readonly checkLatestPrice: {
285
+ readonly name: "CheckLatestPrice";
286
+ readonly requestType: {
287
+ encode(_: Empty, writer?: _m0.Writer): _m0.Writer;
288
+ decode(input: _m0.Reader | Uint8Array, length?: number): Empty;
289
+ fromJSON(_: any): Empty;
290
+ toJSON(_: Empty): unknown;
291
+ create(base?: {}): Empty;
292
+ fromPartial(_: {}): Empty;
293
+ };
294
+ readonly requestStream: false;
295
+ readonly responseType: {
296
+ encode(message: CheckLatestPriceResponse, writer?: _m0.Writer): _m0.Writer;
297
+ decode(input: _m0.Reader | Uint8Array, length?: number): CheckLatestPriceResponse;
298
+ fromJSON(object: any): CheckLatestPriceResponse;
299
+ toJSON(message: CheckLatestPriceResponse): unknown;
300
+ create(base?: DeepPartial<CheckLatestPriceResponse>): CheckLatestPriceResponse;
301
+ fromPartial(object: DeepPartial<CheckLatestPriceResponse>): CheckLatestPriceResponse;
302
+ };
303
+ readonly responseStream: false;
304
+ readonly options: {
305
+ readonly _unknownFields: {
306
+ readonly 8338: readonly [Uint8Array];
307
+ readonly 578365826: readonly [Uint8Array];
308
+ };
309
+ };
310
+ };
311
+ readonly backfillCoin: {
312
+ readonly name: "BackfillCoin";
313
+ readonly requestType: {
314
+ encode(message: BackfillCoinRequest, writer?: _m0.Writer): _m0.Writer;
315
+ decode(input: _m0.Reader | Uint8Array, length?: number): BackfillCoinRequest;
316
+ fromJSON(object: any): BackfillCoinRequest;
317
+ toJSON(message: BackfillCoinRequest): unknown;
318
+ create(base?: DeepPartial<BackfillCoinRequest>): BackfillCoinRequest;
319
+ fromPartial(object: DeepPartial<BackfillCoinRequest>): BackfillCoinRequest;
320
+ };
321
+ readonly requestStream: false;
322
+ readonly responseType: {
323
+ encode(message: BackfillCoinResponse, writer?: _m0.Writer): _m0.Writer;
324
+ decode(input: _m0.Reader | Uint8Array, length?: number): BackfillCoinResponse;
325
+ fromJSON(object: any): BackfillCoinResponse;
326
+ toJSON(message: BackfillCoinResponse): unknown;
327
+ create(base?: DeepPartial<BackfillCoinResponse>): BackfillCoinResponse;
328
+ fromPartial(object: DeepPartial<BackfillCoinResponse>): BackfillCoinResponse;
329
+ };
330
+ readonly responseStream: false;
331
+ readonly options: {
332
+ readonly _unknownFields: {
333
+ readonly 578365818: readonly [Uint8Array];
334
+ readonly 578365826: readonly [Uint8Array];
335
+ };
336
+ };
337
+ };
338
+ };
339
+ };
340
+ export interface PriceServiceImplementation<CallContextExt = {}> {
341
+ getPrice(request: GetPriceRequest, context: CallContext & CallContextExt): Promise<DeepPartial<GetPriceResponse>>;
342
+ batchGetPrices(request: BatchGetPricesRequest, context: CallContext & CallContextExt): Promise<DeepPartial<BatchGetPricesResponse>>;
343
+ listCoins(request: ListCoinsRequest, context: CallContext & CallContextExt): Promise<DeepPartial<ListCoinsResponse>>;
344
+ checkLatestPrice(request: Empty, context: CallContext & CallContextExt): Promise<DeepPartial<CheckLatestPriceResponse>>;
345
+ backfillCoin(request: BackfillCoinRequest, context: CallContext & CallContextExt): Promise<DeepPartial<BackfillCoinResponse>>;
346
+ }
347
+ export interface PriceServiceClient<CallOptionsExt = {}> {
348
+ getPrice(request: DeepPartial<GetPriceRequest>, options?: CallOptions & CallOptionsExt): Promise<GetPriceResponse>;
349
+ batchGetPrices(request: DeepPartial<BatchGetPricesRequest>, options?: CallOptions & CallOptionsExt): Promise<BatchGetPricesResponse>;
350
+ listCoins(request: DeepPartial<ListCoinsRequest>, options?: CallOptions & CallOptionsExt): Promise<ListCoinsResponse>;
351
+ checkLatestPrice(request: DeepPartial<Empty>, options?: CallOptions & CallOptionsExt): Promise<CheckLatestPriceResponse>;
352
+ backfillCoin(request: DeepPartial<BackfillCoinRequest>, options?: CallOptions & CallOptionsExt): Promise<BackfillCoinResponse>;
353
+ }
354
+ type Builtin = Date | Function | Uint8Array | string | number | boolean | bigint | undefined;
355
+ 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 {} ? {
356
+ [K in keyof T]?: DeepPartial<T[K]>;
357
+ } : Partial<T>;
358
+ export {};
359
+ //# sourceMappingURL=price.d.ts.map
@@ -0,0 +1 @@
1
+ {"version":3,"file":"price.d.ts","sourceRoot":"","sources":["../../../../src/service/price/protos/price.ts"],"names":[],"mappings":"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"}