@sentio/protos 2.26.1 → 2.26.2

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 (41) hide show
  1. package/lib/builtin.d.ts +6 -0
  2. package/lib/builtin.d.ts.map +1 -0
  3. package/lib/builtin.js +2 -0
  4. package/lib/builtin.js.map +1 -0
  5. package/lib/chainquery/protos/chainquery.d.ts +605 -0
  6. package/lib/chainquery/protos/chainquery.d.ts.map +1 -0
  7. package/lib/chainquery/protos/chainquery.js +1362 -0
  8. package/lib/chainquery/protos/chainquery.js.map +1 -0
  9. package/lib/google/protobuf/empty.d.ts +17 -0
  10. package/lib/google/protobuf/empty.d.ts.map +1 -0
  11. package/lib/google/protobuf/empty.js +39 -0
  12. package/lib/google/protobuf/empty.js.map +1 -0
  13. package/lib/google/protobuf/struct.d.ts +77 -0
  14. package/lib/google/protobuf/struct.d.ts.map +1 -0
  15. package/lib/google/protobuf/struct.js +377 -0
  16. package/lib/google/protobuf/struct.js.map +1 -0
  17. package/lib/google/protobuf/timestamp.d.ts +19 -0
  18. package/lib/google/protobuf/timestamp.d.ts.map +1 -0
  19. package/lib/google/protobuf/timestamp.js +69 -0
  20. package/lib/google/protobuf/timestamp.js.map +1 -0
  21. package/lib/index.d.ts +6 -0
  22. package/lib/index.d.ts.map +1 -0
  23. package/lib/index.js +6 -0
  24. package/lib/index.js.map +1 -0
  25. package/lib/processor/protos/processor.d.ts +1063 -0
  26. package/lib/processor/protos/processor.d.ts.map +1 -0
  27. package/lib/processor/protos/processor.js +5016 -0
  28. package/lib/processor/protos/processor.js.map +1 -0
  29. package/lib/service/price/protos/price.d.ts +210 -0
  30. package/lib/service/price/protos/price.d.ts.map +1 -0
  31. package/lib/service/price/protos/price.js +633 -0
  32. package/lib/service/price/protos/price.js.map +1 -0
  33. package/package.json +1 -1
  34. package/src/builtin.ts +11 -0
  35. package/src/chainquery/protos/chainquery.ts +1726 -0
  36. package/src/google/protobuf/empty.ts +55 -0
  37. package/src/google/protobuf/struct.ts +433 -0
  38. package/src/google/protobuf/timestamp.ts +90 -0
  39. package/src/index.ts +9 -0
  40. package/src/processor/protos/processor.ts +5849 -0
  41. package/src/service/price/protos/price.ts +777 -0
@@ -0,0 +1,210 @@
1
+ import type { CallContext, CallOptions } from "nice-grpc-common";
2
+ import _m0 from "protobufjs/minimal.js";
3
+ export interface CoinID {
4
+ symbol?: string | undefined;
5
+ address?: CoinID_AddressIdentifier | undefined;
6
+ }
7
+ export interface CoinID_AddressIdentifier {
8
+ address: string;
9
+ chain: string;
10
+ }
11
+ export interface GetPriceRequest {
12
+ timestamp: Date | undefined;
13
+ coinId: CoinID | undefined;
14
+ }
15
+ export interface GetPriceResponse {
16
+ price: number;
17
+ timestamp: Date | undefined;
18
+ }
19
+ export interface BatchGetPricesRequest {
20
+ timestamps: Date[];
21
+ coinIds: CoinID[];
22
+ }
23
+ export interface BatchGetPricesResponse {
24
+ prices: BatchGetPricesResponse_CoinPrice[];
25
+ }
26
+ export interface BatchGetPricesResponse_CoinPrice {
27
+ coinId: CoinID | undefined;
28
+ price?: BatchGetPricesResponse_CoinPrice_Price | undefined;
29
+ error?: string | undefined;
30
+ }
31
+ export interface BatchGetPricesResponse_CoinPrice_Price {
32
+ results: GetPriceResponse[];
33
+ }
34
+ export interface ListCoinsRequest {
35
+ limit: number;
36
+ offset: number;
37
+ searchQuery: string;
38
+ }
39
+ export interface ListCoinsResponse {
40
+ coins: CoinID[];
41
+ }
42
+ export declare const CoinID: {
43
+ encode(message: CoinID, writer?: _m0.Writer): _m0.Writer;
44
+ decode(input: _m0.Reader | Uint8Array, length?: number): CoinID;
45
+ fromJSON(object: any): CoinID;
46
+ toJSON(message: CoinID): unknown;
47
+ create(base?: DeepPartial<CoinID>): CoinID;
48
+ fromPartial(object: DeepPartial<CoinID>): CoinID;
49
+ };
50
+ export declare const CoinID_AddressIdentifier: {
51
+ encode(message: CoinID_AddressIdentifier, writer?: _m0.Writer): _m0.Writer;
52
+ decode(input: _m0.Reader | Uint8Array, length?: number): CoinID_AddressIdentifier;
53
+ fromJSON(object: any): CoinID_AddressIdentifier;
54
+ toJSON(message: CoinID_AddressIdentifier): unknown;
55
+ create(base?: DeepPartial<CoinID_AddressIdentifier>): CoinID_AddressIdentifier;
56
+ fromPartial(object: DeepPartial<CoinID_AddressIdentifier>): CoinID_AddressIdentifier;
57
+ };
58
+ export declare const GetPriceRequest: {
59
+ encode(message: GetPriceRequest, writer?: _m0.Writer): _m0.Writer;
60
+ decode(input: _m0.Reader | Uint8Array, length?: number): GetPriceRequest;
61
+ fromJSON(object: any): GetPriceRequest;
62
+ toJSON(message: GetPriceRequest): unknown;
63
+ create(base?: DeepPartial<GetPriceRequest>): GetPriceRequest;
64
+ fromPartial(object: DeepPartial<GetPriceRequest>): GetPriceRequest;
65
+ };
66
+ export declare const GetPriceResponse: {
67
+ encode(message: GetPriceResponse, writer?: _m0.Writer): _m0.Writer;
68
+ decode(input: _m0.Reader | Uint8Array, length?: number): GetPriceResponse;
69
+ fromJSON(object: any): GetPriceResponse;
70
+ toJSON(message: GetPriceResponse): unknown;
71
+ create(base?: DeepPartial<GetPriceResponse>): GetPriceResponse;
72
+ fromPartial(object: DeepPartial<GetPriceResponse>): GetPriceResponse;
73
+ };
74
+ export declare const BatchGetPricesRequest: {
75
+ encode(message: BatchGetPricesRequest, writer?: _m0.Writer): _m0.Writer;
76
+ decode(input: _m0.Reader | Uint8Array, length?: number): BatchGetPricesRequest;
77
+ fromJSON(object: any): BatchGetPricesRequest;
78
+ toJSON(message: BatchGetPricesRequest): unknown;
79
+ create(base?: DeepPartial<BatchGetPricesRequest>): BatchGetPricesRequest;
80
+ fromPartial(object: DeepPartial<BatchGetPricesRequest>): BatchGetPricesRequest;
81
+ };
82
+ export declare const BatchGetPricesResponse: {
83
+ encode(message: BatchGetPricesResponse, writer?: _m0.Writer): _m0.Writer;
84
+ decode(input: _m0.Reader | Uint8Array, length?: number): BatchGetPricesResponse;
85
+ fromJSON(object: any): BatchGetPricesResponse;
86
+ toJSON(message: BatchGetPricesResponse): unknown;
87
+ create(base?: DeepPartial<BatchGetPricesResponse>): BatchGetPricesResponse;
88
+ fromPartial(object: DeepPartial<BatchGetPricesResponse>): BatchGetPricesResponse;
89
+ };
90
+ export declare const BatchGetPricesResponse_CoinPrice: {
91
+ encode(message: BatchGetPricesResponse_CoinPrice, writer?: _m0.Writer): _m0.Writer;
92
+ decode(input: _m0.Reader | Uint8Array, length?: number): BatchGetPricesResponse_CoinPrice;
93
+ fromJSON(object: any): BatchGetPricesResponse_CoinPrice;
94
+ toJSON(message: BatchGetPricesResponse_CoinPrice): unknown;
95
+ create(base?: DeepPartial<BatchGetPricesResponse_CoinPrice>): BatchGetPricesResponse_CoinPrice;
96
+ fromPartial(object: DeepPartial<BatchGetPricesResponse_CoinPrice>): BatchGetPricesResponse_CoinPrice;
97
+ };
98
+ export declare const BatchGetPricesResponse_CoinPrice_Price: {
99
+ encode(message: BatchGetPricesResponse_CoinPrice_Price, writer?: _m0.Writer): _m0.Writer;
100
+ decode(input: _m0.Reader | Uint8Array, length?: number): BatchGetPricesResponse_CoinPrice_Price;
101
+ fromJSON(object: any): BatchGetPricesResponse_CoinPrice_Price;
102
+ toJSON(message: BatchGetPricesResponse_CoinPrice_Price): unknown;
103
+ create(base?: DeepPartial<BatchGetPricesResponse_CoinPrice_Price>): BatchGetPricesResponse_CoinPrice_Price;
104
+ fromPartial(object: DeepPartial<BatchGetPricesResponse_CoinPrice_Price>): BatchGetPricesResponse_CoinPrice_Price;
105
+ };
106
+ export declare const ListCoinsRequest: {
107
+ encode(message: ListCoinsRequest, writer?: _m0.Writer): _m0.Writer;
108
+ decode(input: _m0.Reader | Uint8Array, length?: number): ListCoinsRequest;
109
+ fromJSON(object: any): ListCoinsRequest;
110
+ toJSON(message: ListCoinsRequest): unknown;
111
+ create(base?: DeepPartial<ListCoinsRequest>): ListCoinsRequest;
112
+ fromPartial(object: DeepPartial<ListCoinsRequest>): ListCoinsRequest;
113
+ };
114
+ export declare const ListCoinsResponse: {
115
+ encode(message: ListCoinsResponse, writer?: _m0.Writer): _m0.Writer;
116
+ decode(input: _m0.Reader | Uint8Array, length?: number): ListCoinsResponse;
117
+ fromJSON(object: any): ListCoinsResponse;
118
+ toJSON(message: ListCoinsResponse): unknown;
119
+ create(base?: DeepPartial<ListCoinsResponse>): ListCoinsResponse;
120
+ fromPartial(object: DeepPartial<ListCoinsResponse>): ListCoinsResponse;
121
+ };
122
+ export type PriceServiceDefinition = typeof PriceServiceDefinition;
123
+ export declare const PriceServiceDefinition: {
124
+ readonly name: "PriceService";
125
+ readonly fullName: "price_service.PriceService";
126
+ readonly methods: {
127
+ readonly getPrice: {
128
+ readonly name: "GetPrice";
129
+ readonly requestType: {
130
+ encode(message: GetPriceRequest, writer?: _m0.Writer): _m0.Writer;
131
+ decode(input: _m0.Reader | Uint8Array, length?: number): GetPriceRequest;
132
+ fromJSON(object: any): GetPriceRequest;
133
+ toJSON(message: GetPriceRequest): unknown;
134
+ create(base?: DeepPartial<GetPriceRequest>): GetPriceRequest;
135
+ fromPartial(object: DeepPartial<GetPriceRequest>): GetPriceRequest;
136
+ };
137
+ readonly requestStream: false;
138
+ readonly responseType: {
139
+ encode(message: GetPriceResponse, writer?: _m0.Writer): _m0.Writer;
140
+ decode(input: _m0.Reader | Uint8Array, length?: number): GetPriceResponse;
141
+ fromJSON(object: any): GetPriceResponse;
142
+ toJSON(message: GetPriceResponse): unknown;
143
+ create(base?: DeepPartial<GetPriceResponse>): GetPriceResponse;
144
+ fromPartial(object: DeepPartial<GetPriceResponse>): GetPriceResponse;
145
+ };
146
+ readonly responseStream: false;
147
+ readonly options: {};
148
+ };
149
+ readonly batchGetPrices: {
150
+ readonly name: "BatchGetPrices";
151
+ readonly requestType: {
152
+ encode(message: BatchGetPricesRequest, writer?: _m0.Writer): _m0.Writer;
153
+ decode(input: _m0.Reader | Uint8Array, length?: number): BatchGetPricesRequest;
154
+ fromJSON(object: any): BatchGetPricesRequest;
155
+ toJSON(message: BatchGetPricesRequest): unknown;
156
+ create(base?: DeepPartial<BatchGetPricesRequest>): BatchGetPricesRequest;
157
+ fromPartial(object: DeepPartial<BatchGetPricesRequest>): BatchGetPricesRequest;
158
+ };
159
+ readonly requestStream: false;
160
+ readonly responseType: {
161
+ encode(message: BatchGetPricesResponse, writer?: _m0.Writer): _m0.Writer;
162
+ decode(input: _m0.Reader | Uint8Array, length?: number): BatchGetPricesResponse;
163
+ fromJSON(object: any): BatchGetPricesResponse;
164
+ toJSON(message: BatchGetPricesResponse): unknown;
165
+ create(base?: DeepPartial<BatchGetPricesResponse>): BatchGetPricesResponse;
166
+ fromPartial(object: DeepPartial<BatchGetPricesResponse>): BatchGetPricesResponse;
167
+ };
168
+ readonly responseStream: false;
169
+ readonly options: {};
170
+ };
171
+ readonly listCoins: {
172
+ readonly name: "ListCoins";
173
+ readonly requestType: {
174
+ encode(message: ListCoinsRequest, writer?: _m0.Writer): _m0.Writer;
175
+ decode(input: _m0.Reader | Uint8Array, length?: number): ListCoinsRequest;
176
+ fromJSON(object: any): ListCoinsRequest;
177
+ toJSON(message: ListCoinsRequest): unknown;
178
+ create(base?: DeepPartial<ListCoinsRequest>): ListCoinsRequest;
179
+ fromPartial(object: DeepPartial<ListCoinsRequest>): ListCoinsRequest;
180
+ };
181
+ readonly requestStream: false;
182
+ readonly responseType: {
183
+ encode(message: ListCoinsResponse, writer?: _m0.Writer): _m0.Writer;
184
+ decode(input: _m0.Reader | Uint8Array, length?: number): ListCoinsResponse;
185
+ fromJSON(object: any): ListCoinsResponse;
186
+ toJSON(message: ListCoinsResponse): unknown;
187
+ create(base?: DeepPartial<ListCoinsResponse>): ListCoinsResponse;
188
+ fromPartial(object: DeepPartial<ListCoinsResponse>): ListCoinsResponse;
189
+ };
190
+ readonly responseStream: false;
191
+ readonly options: {};
192
+ };
193
+ };
194
+ };
195
+ export interface PriceServiceImplementation<CallContextExt = {}> {
196
+ getPrice(request: GetPriceRequest, context: CallContext & CallContextExt): Promise<DeepPartial<GetPriceResponse>>;
197
+ batchGetPrices(request: BatchGetPricesRequest, context: CallContext & CallContextExt): Promise<DeepPartial<BatchGetPricesResponse>>;
198
+ listCoins(request: ListCoinsRequest, context: CallContext & CallContextExt): Promise<DeepPartial<ListCoinsResponse>>;
199
+ }
200
+ export interface PriceServiceClient<CallOptionsExt = {}> {
201
+ getPrice(request: DeepPartial<GetPriceRequest>, options?: CallOptions & CallOptionsExt): Promise<GetPriceResponse>;
202
+ batchGetPrices(request: DeepPartial<BatchGetPricesRequest>, options?: CallOptions & CallOptionsExt): Promise<BatchGetPricesResponse>;
203
+ listCoins(request: DeepPartial<ListCoinsRequest>, options?: CallOptions & CallOptionsExt): Promise<ListCoinsResponse>;
204
+ }
205
+ type Builtin = Date | Function | Uint8Array | string | number | boolean | undefined;
206
+ type DeepPartial<T> = T extends Builtin ? T : T extends Array<infer U> ? Array<DeepPartial<U>> : T extends ReadonlyArray<infer U> ? ReadonlyArray<DeepPartial<U>> : T extends {} ? {
207
+ [K in keyof T]?: DeepPartial<T[K]>;
208
+ } : Partial<T>;
209
+ export {};
210
+ //# 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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"}