yellowstone-fumarole-client 0.1.0__py3-none-any.whl
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.
- yellowstone_fumarole_client/__init__.py +297 -0
- yellowstone_fumarole_client/config.py +26 -0
- yellowstone_fumarole_client/grpc_connectivity.py +197 -0
- yellowstone_fumarole_client/runtime/__init__.py +0 -0
- yellowstone_fumarole_client/runtime/aio.py +525 -0
- yellowstone_fumarole_client/runtime/state_machine.py +326 -0
- yellowstone_fumarole_client/utils/__init__.py +0 -0
- yellowstone_fumarole_client/utils/aio.py +29 -0
- yellowstone_fumarole_client/utils/collections.py +37 -0
- yellowstone_fumarole_client-0.1.0.dist-info/METADATA +110 -0
- yellowstone_fumarole_client-0.1.0.dist-info/RECORD +22 -0
- yellowstone_fumarole_client-0.1.0.dist-info/WHEEL +4 -0
- yellowstone_fumarole_proto/__init__.py +0 -0
- yellowstone_fumarole_proto/fumarole_v2_pb2.py +122 -0
- yellowstone_fumarole_proto/fumarole_v2_pb2.pyi +328 -0
- yellowstone_fumarole_proto/fumarole_v2_pb2_grpc.py +400 -0
- yellowstone_fumarole_proto/geyser_pb2.py +144 -0
- yellowstone_fumarole_proto/geyser_pb2.pyi +501 -0
- yellowstone_fumarole_proto/geyser_pb2_grpc.py +355 -0
- yellowstone_fumarole_proto/solana_storage_pb2.py +75 -0
- yellowstone_fumarole_proto/solana_storage_pb2.pyi +238 -0
- yellowstone_fumarole_proto/solana_storage_pb2_grpc.py +24 -0
@@ -0,0 +1,400 @@
|
|
1
|
+
# Generated by the gRPC Python protocol compiler plugin. DO NOT EDIT!
|
2
|
+
"""Client and server classes corresponding to protobuf-defined services."""
|
3
|
+
import grpc
|
4
|
+
import warnings
|
5
|
+
|
6
|
+
import yellowstone_fumarole_proto.fumarole_v2_pb2 as fumarole__v2__pb2
|
7
|
+
|
8
|
+
GRPC_GENERATED_VERSION = '1.71.0'
|
9
|
+
GRPC_VERSION = grpc.__version__
|
10
|
+
_version_not_supported = False
|
11
|
+
|
12
|
+
try:
|
13
|
+
from grpc._utilities import first_version_is_lower
|
14
|
+
_version_not_supported = first_version_is_lower(GRPC_VERSION, GRPC_GENERATED_VERSION)
|
15
|
+
except ImportError:
|
16
|
+
_version_not_supported = True
|
17
|
+
|
18
|
+
if _version_not_supported:
|
19
|
+
raise RuntimeError(
|
20
|
+
f'The grpc package installed is at version {GRPC_VERSION},'
|
21
|
+
+ f' but the generated code in fumarole_v2_pb2_grpc.py depends on'
|
22
|
+
+ f' grpcio>={GRPC_GENERATED_VERSION}.'
|
23
|
+
+ f' Please upgrade your grpc module to grpcio>={GRPC_GENERATED_VERSION}'
|
24
|
+
+ f' or downgrade your generated code using grpcio-tools<={GRPC_VERSION}.'
|
25
|
+
)
|
26
|
+
|
27
|
+
|
28
|
+
class FumaroleStub(object):
|
29
|
+
"""Missing associated documentation comment in .proto file."""
|
30
|
+
|
31
|
+
def __init__(self, channel):
|
32
|
+
"""Constructor.
|
33
|
+
|
34
|
+
Args:
|
35
|
+
channel: A grpc.Channel.
|
36
|
+
"""
|
37
|
+
self.GetConsumerGroupInfo = channel.unary_unary(
|
38
|
+
'/fumarole_v2.Fumarole/GetConsumerGroupInfo',
|
39
|
+
request_serializer=fumarole__v2__pb2.GetConsumerGroupInfoRequest.SerializeToString,
|
40
|
+
response_deserializer=fumarole__v2__pb2.ConsumerGroupInfo.FromString,
|
41
|
+
_registered_method=True)
|
42
|
+
self.ListConsumerGroups = channel.unary_unary(
|
43
|
+
'/fumarole_v2.Fumarole/ListConsumerGroups',
|
44
|
+
request_serializer=fumarole__v2__pb2.ListConsumerGroupsRequest.SerializeToString,
|
45
|
+
response_deserializer=fumarole__v2__pb2.ListConsumerGroupsResponse.FromString,
|
46
|
+
_registered_method=True)
|
47
|
+
self.DeleteConsumerGroup = channel.unary_unary(
|
48
|
+
'/fumarole_v2.Fumarole/DeleteConsumerGroup',
|
49
|
+
request_serializer=fumarole__v2__pb2.DeleteConsumerGroupRequest.SerializeToString,
|
50
|
+
response_deserializer=fumarole__v2__pb2.DeleteConsumerGroupResponse.FromString,
|
51
|
+
_registered_method=True)
|
52
|
+
self.CreateConsumerGroup = channel.unary_unary(
|
53
|
+
'/fumarole_v2.Fumarole/CreateConsumerGroup',
|
54
|
+
request_serializer=fumarole__v2__pb2.CreateConsumerGroupRequest.SerializeToString,
|
55
|
+
response_deserializer=fumarole__v2__pb2.CreateConsumerGroupResponse.FromString,
|
56
|
+
_registered_method=True)
|
57
|
+
self.DownloadBlock = channel.unary_stream(
|
58
|
+
'/fumarole_v2.Fumarole/DownloadBlock',
|
59
|
+
request_serializer=fumarole__v2__pb2.DownloadBlockShard.SerializeToString,
|
60
|
+
response_deserializer=fumarole__v2__pb2.DataResponse.FromString,
|
61
|
+
_registered_method=True)
|
62
|
+
self.SubscribeData = channel.stream_stream(
|
63
|
+
'/fumarole_v2.Fumarole/SubscribeData',
|
64
|
+
request_serializer=fumarole__v2__pb2.DataCommand.SerializeToString,
|
65
|
+
response_deserializer=fumarole__v2__pb2.DataResponse.FromString,
|
66
|
+
_registered_method=True)
|
67
|
+
self.Subscribe = channel.stream_stream(
|
68
|
+
'/fumarole_v2.Fumarole/Subscribe',
|
69
|
+
request_serializer=fumarole__v2__pb2.ControlCommand.SerializeToString,
|
70
|
+
response_deserializer=fumarole__v2__pb2.ControlResponse.FromString,
|
71
|
+
_registered_method=True)
|
72
|
+
self.Version = channel.unary_unary(
|
73
|
+
'/fumarole_v2.Fumarole/Version',
|
74
|
+
request_serializer=fumarole__v2__pb2.VersionRequest.SerializeToString,
|
75
|
+
response_deserializer=fumarole__v2__pb2.VersionResponse.FromString,
|
76
|
+
_registered_method=True)
|
77
|
+
|
78
|
+
|
79
|
+
class FumaroleServicer(object):
|
80
|
+
"""Missing associated documentation comment in .proto file."""
|
81
|
+
|
82
|
+
def GetConsumerGroupInfo(self, request, context):
|
83
|
+
"""Missing associated documentation comment in .proto file."""
|
84
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
85
|
+
context.set_details('Method not implemented!')
|
86
|
+
raise NotImplementedError('Method not implemented!')
|
87
|
+
|
88
|
+
def ListConsumerGroups(self, request, context):
|
89
|
+
"""Missing associated documentation comment in .proto file."""
|
90
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
91
|
+
context.set_details('Method not implemented!')
|
92
|
+
raise NotImplementedError('Method not implemented!')
|
93
|
+
|
94
|
+
def DeleteConsumerGroup(self, request, context):
|
95
|
+
"""Missing associated documentation comment in .proto file."""
|
96
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
97
|
+
context.set_details('Method not implemented!')
|
98
|
+
raise NotImplementedError('Method not implemented!')
|
99
|
+
|
100
|
+
def CreateConsumerGroup(self, request, context):
|
101
|
+
"""Missing associated documentation comment in .proto file."""
|
102
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
103
|
+
context.set_details('Method not implemented!')
|
104
|
+
raise NotImplementedError('Method not implemented!')
|
105
|
+
|
106
|
+
def DownloadBlock(self, request, context):
|
107
|
+
"""Missing associated documentation comment in .proto file."""
|
108
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
109
|
+
context.set_details('Method not implemented!')
|
110
|
+
raise NotImplementedError('Method not implemented!')
|
111
|
+
|
112
|
+
def SubscribeData(self, request_iterator, context):
|
113
|
+
"""Represents subscription to the data plane
|
114
|
+
"""
|
115
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
116
|
+
context.set_details('Method not implemented!')
|
117
|
+
raise NotImplementedError('Method not implemented!')
|
118
|
+
|
119
|
+
def Subscribe(self, request_iterator, context):
|
120
|
+
"""Represents subscription to the control plane
|
121
|
+
"""
|
122
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
123
|
+
context.set_details('Method not implemented!')
|
124
|
+
raise NotImplementedError('Method not implemented!')
|
125
|
+
|
126
|
+
def Version(self, request, context):
|
127
|
+
"""Missing associated documentation comment in .proto file."""
|
128
|
+
context.set_code(grpc.StatusCode.UNIMPLEMENTED)
|
129
|
+
context.set_details('Method not implemented!')
|
130
|
+
raise NotImplementedError('Method not implemented!')
|
131
|
+
|
132
|
+
|
133
|
+
def add_FumaroleServicer_to_server(servicer, server):
|
134
|
+
rpc_method_handlers = {
|
135
|
+
'GetConsumerGroupInfo': grpc.unary_unary_rpc_method_handler(
|
136
|
+
servicer.GetConsumerGroupInfo,
|
137
|
+
request_deserializer=fumarole__v2__pb2.GetConsumerGroupInfoRequest.FromString,
|
138
|
+
response_serializer=fumarole__v2__pb2.ConsumerGroupInfo.SerializeToString,
|
139
|
+
),
|
140
|
+
'ListConsumerGroups': grpc.unary_unary_rpc_method_handler(
|
141
|
+
servicer.ListConsumerGroups,
|
142
|
+
request_deserializer=fumarole__v2__pb2.ListConsumerGroupsRequest.FromString,
|
143
|
+
response_serializer=fumarole__v2__pb2.ListConsumerGroupsResponse.SerializeToString,
|
144
|
+
),
|
145
|
+
'DeleteConsumerGroup': grpc.unary_unary_rpc_method_handler(
|
146
|
+
servicer.DeleteConsumerGroup,
|
147
|
+
request_deserializer=fumarole__v2__pb2.DeleteConsumerGroupRequest.FromString,
|
148
|
+
response_serializer=fumarole__v2__pb2.DeleteConsumerGroupResponse.SerializeToString,
|
149
|
+
),
|
150
|
+
'CreateConsumerGroup': grpc.unary_unary_rpc_method_handler(
|
151
|
+
servicer.CreateConsumerGroup,
|
152
|
+
request_deserializer=fumarole__v2__pb2.CreateConsumerGroupRequest.FromString,
|
153
|
+
response_serializer=fumarole__v2__pb2.CreateConsumerGroupResponse.SerializeToString,
|
154
|
+
),
|
155
|
+
'DownloadBlock': grpc.unary_stream_rpc_method_handler(
|
156
|
+
servicer.DownloadBlock,
|
157
|
+
request_deserializer=fumarole__v2__pb2.DownloadBlockShard.FromString,
|
158
|
+
response_serializer=fumarole__v2__pb2.DataResponse.SerializeToString,
|
159
|
+
),
|
160
|
+
'SubscribeData': grpc.stream_stream_rpc_method_handler(
|
161
|
+
servicer.SubscribeData,
|
162
|
+
request_deserializer=fumarole__v2__pb2.DataCommand.FromString,
|
163
|
+
response_serializer=fumarole__v2__pb2.DataResponse.SerializeToString,
|
164
|
+
),
|
165
|
+
'Subscribe': grpc.stream_stream_rpc_method_handler(
|
166
|
+
servicer.Subscribe,
|
167
|
+
request_deserializer=fumarole__v2__pb2.ControlCommand.FromString,
|
168
|
+
response_serializer=fumarole__v2__pb2.ControlResponse.SerializeToString,
|
169
|
+
),
|
170
|
+
'Version': grpc.unary_unary_rpc_method_handler(
|
171
|
+
servicer.Version,
|
172
|
+
request_deserializer=fumarole__v2__pb2.VersionRequest.FromString,
|
173
|
+
response_serializer=fumarole__v2__pb2.VersionResponse.SerializeToString,
|
174
|
+
),
|
175
|
+
}
|
176
|
+
generic_handler = grpc.method_handlers_generic_handler(
|
177
|
+
'fumarole_v2.Fumarole', rpc_method_handlers)
|
178
|
+
server.add_generic_rpc_handlers((generic_handler,))
|
179
|
+
server.add_registered_method_handlers('fumarole_v2.Fumarole', rpc_method_handlers)
|
180
|
+
|
181
|
+
|
182
|
+
# This class is part of an EXPERIMENTAL API.
|
183
|
+
class Fumarole(object):
|
184
|
+
"""Missing associated documentation comment in .proto file."""
|
185
|
+
|
186
|
+
@staticmethod
|
187
|
+
def GetConsumerGroupInfo(request,
|
188
|
+
target,
|
189
|
+
options=(),
|
190
|
+
channel_credentials=None,
|
191
|
+
call_credentials=None,
|
192
|
+
insecure=False,
|
193
|
+
compression=None,
|
194
|
+
wait_for_ready=None,
|
195
|
+
timeout=None,
|
196
|
+
metadata=None):
|
197
|
+
return grpc.experimental.unary_unary(
|
198
|
+
request,
|
199
|
+
target,
|
200
|
+
'/fumarole_v2.Fumarole/GetConsumerGroupInfo',
|
201
|
+
fumarole__v2__pb2.GetConsumerGroupInfoRequest.SerializeToString,
|
202
|
+
fumarole__v2__pb2.ConsumerGroupInfo.FromString,
|
203
|
+
options,
|
204
|
+
channel_credentials,
|
205
|
+
insecure,
|
206
|
+
call_credentials,
|
207
|
+
compression,
|
208
|
+
wait_for_ready,
|
209
|
+
timeout,
|
210
|
+
metadata,
|
211
|
+
_registered_method=True)
|
212
|
+
|
213
|
+
@staticmethod
|
214
|
+
def ListConsumerGroups(request,
|
215
|
+
target,
|
216
|
+
options=(),
|
217
|
+
channel_credentials=None,
|
218
|
+
call_credentials=None,
|
219
|
+
insecure=False,
|
220
|
+
compression=None,
|
221
|
+
wait_for_ready=None,
|
222
|
+
timeout=None,
|
223
|
+
metadata=None):
|
224
|
+
return grpc.experimental.unary_unary(
|
225
|
+
request,
|
226
|
+
target,
|
227
|
+
'/fumarole_v2.Fumarole/ListConsumerGroups',
|
228
|
+
fumarole__v2__pb2.ListConsumerGroupsRequest.SerializeToString,
|
229
|
+
fumarole__v2__pb2.ListConsumerGroupsResponse.FromString,
|
230
|
+
options,
|
231
|
+
channel_credentials,
|
232
|
+
insecure,
|
233
|
+
call_credentials,
|
234
|
+
compression,
|
235
|
+
wait_for_ready,
|
236
|
+
timeout,
|
237
|
+
metadata,
|
238
|
+
_registered_method=True)
|
239
|
+
|
240
|
+
@staticmethod
|
241
|
+
def DeleteConsumerGroup(request,
|
242
|
+
target,
|
243
|
+
options=(),
|
244
|
+
channel_credentials=None,
|
245
|
+
call_credentials=None,
|
246
|
+
insecure=False,
|
247
|
+
compression=None,
|
248
|
+
wait_for_ready=None,
|
249
|
+
timeout=None,
|
250
|
+
metadata=None):
|
251
|
+
return grpc.experimental.unary_unary(
|
252
|
+
request,
|
253
|
+
target,
|
254
|
+
'/fumarole_v2.Fumarole/DeleteConsumerGroup',
|
255
|
+
fumarole__v2__pb2.DeleteConsumerGroupRequest.SerializeToString,
|
256
|
+
fumarole__v2__pb2.DeleteConsumerGroupResponse.FromString,
|
257
|
+
options,
|
258
|
+
channel_credentials,
|
259
|
+
insecure,
|
260
|
+
call_credentials,
|
261
|
+
compression,
|
262
|
+
wait_for_ready,
|
263
|
+
timeout,
|
264
|
+
metadata,
|
265
|
+
_registered_method=True)
|
266
|
+
|
267
|
+
@staticmethod
|
268
|
+
def CreateConsumerGroup(request,
|
269
|
+
target,
|
270
|
+
options=(),
|
271
|
+
channel_credentials=None,
|
272
|
+
call_credentials=None,
|
273
|
+
insecure=False,
|
274
|
+
compression=None,
|
275
|
+
wait_for_ready=None,
|
276
|
+
timeout=None,
|
277
|
+
metadata=None):
|
278
|
+
return grpc.experimental.unary_unary(
|
279
|
+
request,
|
280
|
+
target,
|
281
|
+
'/fumarole_v2.Fumarole/CreateConsumerGroup',
|
282
|
+
fumarole__v2__pb2.CreateConsumerGroupRequest.SerializeToString,
|
283
|
+
fumarole__v2__pb2.CreateConsumerGroupResponse.FromString,
|
284
|
+
options,
|
285
|
+
channel_credentials,
|
286
|
+
insecure,
|
287
|
+
call_credentials,
|
288
|
+
compression,
|
289
|
+
wait_for_ready,
|
290
|
+
timeout,
|
291
|
+
metadata,
|
292
|
+
_registered_method=True)
|
293
|
+
|
294
|
+
@staticmethod
|
295
|
+
def DownloadBlock(request,
|
296
|
+
target,
|
297
|
+
options=(),
|
298
|
+
channel_credentials=None,
|
299
|
+
call_credentials=None,
|
300
|
+
insecure=False,
|
301
|
+
compression=None,
|
302
|
+
wait_for_ready=None,
|
303
|
+
timeout=None,
|
304
|
+
metadata=None):
|
305
|
+
return grpc.experimental.unary_stream(
|
306
|
+
request,
|
307
|
+
target,
|
308
|
+
'/fumarole_v2.Fumarole/DownloadBlock',
|
309
|
+
fumarole__v2__pb2.DownloadBlockShard.SerializeToString,
|
310
|
+
fumarole__v2__pb2.DataResponse.FromString,
|
311
|
+
options,
|
312
|
+
channel_credentials,
|
313
|
+
insecure,
|
314
|
+
call_credentials,
|
315
|
+
compression,
|
316
|
+
wait_for_ready,
|
317
|
+
timeout,
|
318
|
+
metadata,
|
319
|
+
_registered_method=True)
|
320
|
+
|
321
|
+
@staticmethod
|
322
|
+
def SubscribeData(request_iterator,
|
323
|
+
target,
|
324
|
+
options=(),
|
325
|
+
channel_credentials=None,
|
326
|
+
call_credentials=None,
|
327
|
+
insecure=False,
|
328
|
+
compression=None,
|
329
|
+
wait_for_ready=None,
|
330
|
+
timeout=None,
|
331
|
+
metadata=None):
|
332
|
+
return grpc.experimental.stream_stream(
|
333
|
+
request_iterator,
|
334
|
+
target,
|
335
|
+
'/fumarole_v2.Fumarole/SubscribeData',
|
336
|
+
fumarole__v2__pb2.DataCommand.SerializeToString,
|
337
|
+
fumarole__v2__pb2.DataResponse.FromString,
|
338
|
+
options,
|
339
|
+
channel_credentials,
|
340
|
+
insecure,
|
341
|
+
call_credentials,
|
342
|
+
compression,
|
343
|
+
wait_for_ready,
|
344
|
+
timeout,
|
345
|
+
metadata,
|
346
|
+
_registered_method=True)
|
347
|
+
|
348
|
+
@staticmethod
|
349
|
+
def Subscribe(request_iterator,
|
350
|
+
target,
|
351
|
+
options=(),
|
352
|
+
channel_credentials=None,
|
353
|
+
call_credentials=None,
|
354
|
+
insecure=False,
|
355
|
+
compression=None,
|
356
|
+
wait_for_ready=None,
|
357
|
+
timeout=None,
|
358
|
+
metadata=None):
|
359
|
+
return grpc.experimental.stream_stream(
|
360
|
+
request_iterator,
|
361
|
+
target,
|
362
|
+
'/fumarole_v2.Fumarole/Subscribe',
|
363
|
+
fumarole__v2__pb2.ControlCommand.SerializeToString,
|
364
|
+
fumarole__v2__pb2.ControlResponse.FromString,
|
365
|
+
options,
|
366
|
+
channel_credentials,
|
367
|
+
insecure,
|
368
|
+
call_credentials,
|
369
|
+
compression,
|
370
|
+
wait_for_ready,
|
371
|
+
timeout,
|
372
|
+
metadata,
|
373
|
+
_registered_method=True)
|
374
|
+
|
375
|
+
@staticmethod
|
376
|
+
def Version(request,
|
377
|
+
target,
|
378
|
+
options=(),
|
379
|
+
channel_credentials=None,
|
380
|
+
call_credentials=None,
|
381
|
+
insecure=False,
|
382
|
+
compression=None,
|
383
|
+
wait_for_ready=None,
|
384
|
+
timeout=None,
|
385
|
+
metadata=None):
|
386
|
+
return grpc.experimental.unary_unary(
|
387
|
+
request,
|
388
|
+
target,
|
389
|
+
'/fumarole_v2.Fumarole/Version',
|
390
|
+
fumarole__v2__pb2.VersionRequest.SerializeToString,
|
391
|
+
fumarole__v2__pb2.VersionResponse.FromString,
|
392
|
+
options,
|
393
|
+
channel_credentials,
|
394
|
+
insecure,
|
395
|
+
call_credentials,
|
396
|
+
compression,
|
397
|
+
wait_for_ready,
|
398
|
+
timeout,
|
399
|
+
metadata,
|
400
|
+
_registered_method=True)
|
@@ -0,0 +1,144 @@
|
|
1
|
+
# -*- coding: utf-8 -*-
|
2
|
+
# Generated by the protocol buffer compiler. DO NOT EDIT!
|
3
|
+
# NO CHECKED-IN PROTOBUF GENCODE
|
4
|
+
# source: geyser.proto
|
5
|
+
# Protobuf Python Version: 5.29.0
|
6
|
+
"""Generated protocol buffer code."""
|
7
|
+
from google.protobuf import descriptor as _descriptor
|
8
|
+
from google.protobuf import descriptor_pool as _descriptor_pool
|
9
|
+
from google.protobuf import runtime_version as _runtime_version
|
10
|
+
from google.protobuf import symbol_database as _symbol_database
|
11
|
+
from google.protobuf.internal import builder as _builder
|
12
|
+
_runtime_version.ValidateProtobufRuntimeVersion(
|
13
|
+
_runtime_version.Domain.PUBLIC,
|
14
|
+
5,
|
15
|
+
29,
|
16
|
+
0,
|
17
|
+
'',
|
18
|
+
'geyser.proto'
|
19
|
+
)
|
20
|
+
# @@protoc_insertion_point(imports)
|
21
|
+
|
22
|
+
_sym_db = _symbol_database.Default()
|
23
|
+
|
24
|
+
|
25
|
+
from google.protobuf import timestamp_pb2 as google_dot_protobuf_dot_timestamp__pb2
|
26
|
+
import yellowstone_fumarole_proto.solana_storage_pb2 as solana__storage__pb2
|
27
|
+
|
28
|
+
from yellowstone_fumarole_proto.solana_storage_pb2 import *
|
29
|
+
|
30
|
+
DESCRIPTOR = _descriptor_pool.Default().AddSerializedFile(b'\n\x0cgeyser.proto\x12\x06geyser\x1a\x1fgoogle/protobuf/timestamp.proto\x1a\x14solana-storage.proto\"\x9c\n\n\x10SubscribeRequest\x12\x38\n\x08\x61\x63\x63ounts\x18\x01 \x03(\x0b\x32&.geyser.SubscribeRequest.AccountsEntry\x12\x32\n\x05slots\x18\x02 \x03(\x0b\x32#.geyser.SubscribeRequest.SlotsEntry\x12@\n\x0ctransactions\x18\x03 \x03(\x0b\x32*.geyser.SubscribeRequest.TransactionsEntry\x12M\n\x13transactions_status\x18\n \x03(\x0b\x32\x30.geyser.SubscribeRequest.TransactionsStatusEntry\x12\x34\n\x06\x62locks\x18\x04 \x03(\x0b\x32$.geyser.SubscribeRequest.BlocksEntry\x12=\n\x0b\x62locks_meta\x18\x05 \x03(\x0b\x32(.geyser.SubscribeRequest.BlocksMetaEntry\x12\x32\n\x05\x65ntry\x18\x08 \x03(\x0b\x32#.geyser.SubscribeRequest.EntryEntry\x12\x30\n\ncommitment\x18\x06 \x01(\x0e\x32\x17.geyser.CommitmentLevelH\x00\x88\x01\x01\x12\x46\n\x13\x61\x63\x63ounts_data_slice\x18\x07 \x03(\x0b\x32).geyser.SubscribeRequestAccountsDataSlice\x12/\n\x04ping\x18\t \x01(\x0b\x32\x1c.geyser.SubscribeRequestPingH\x01\x88\x01\x01\x12\x16\n\tfrom_slot\x18\x0b \x01(\x04H\x02\x88\x01\x01\x1aW\n\rAccountsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x35\n\x05value\x18\x02 \x01(\x0b\x32&.geyser.SubscribeRequestFilterAccounts:\x02\x38\x01\x1aQ\n\nSlotsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x32\n\x05value\x18\x02 \x01(\x0b\x32#.geyser.SubscribeRequestFilterSlots:\x02\x38\x01\x1a_\n\x11TransactionsEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x39\n\x05value\x18\x02 \x01(\x0b\x32*.geyser.SubscribeRequestFilterTransactions:\x02\x38\x01\x1a\x65\n\x17TransactionsStatusEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x39\n\x05value\x18\x02 \x01(\x0b\x32*.geyser.SubscribeRequestFilterTransactions:\x02\x38\x01\x1aS\n\x0b\x42locksEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x33\n\x05value\x18\x02 \x01(\x0b\x32$.geyser.SubscribeRequestFilterBlocks:\x02\x38\x01\x1a[\n\x0f\x42locksMetaEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x37\n\x05value\x18\x02 \x01(\x0b\x32(.geyser.SubscribeRequestFilterBlocksMeta:\x02\x38\x01\x1aQ\n\nEntryEntry\x12\x0b\n\x03key\x18\x01 \x01(\t\x12\x32\n\x05value\x18\x02 \x01(\x0b\x32#.geyser.SubscribeRequestFilterEntry:\x02\x38\x01\x42\r\n\x0b_commitmentB\x07\n\x05_pingB\x0c\n\n_from_slot\"\xbf\x01\n\x1eSubscribeRequestFilterAccounts\x12\x0f\n\x07\x61\x63\x63ount\x18\x02 \x03(\t\x12\r\n\x05owner\x18\x03 \x03(\t\x12=\n\x07\x66ilters\x18\x04 \x03(\x0b\x32,.geyser.SubscribeRequestFilterAccountsFilter\x12#\n\x16nonempty_txn_signature\x18\x05 \x01(\x08H\x00\x88\x01\x01\x42\x19\n\x17_nonempty_txn_signature\"\xf3\x01\n$SubscribeRequestFilterAccountsFilter\x12\x44\n\x06memcmp\x18\x01 \x01(\x0b\x32\x32.geyser.SubscribeRequestFilterAccountsFilterMemcmpH\x00\x12\x12\n\x08\x64\x61tasize\x18\x02 \x01(\x04H\x00\x12\x1d\n\x13token_account_state\x18\x03 \x01(\x08H\x00\x12H\n\x08lamports\x18\x04 \x01(\x0b\x32\x34.geyser.SubscribeRequestFilterAccountsFilterLamportsH\x00\x42\x08\n\x06\x66ilter\"y\n*SubscribeRequestFilterAccountsFilterMemcmp\x12\x0e\n\x06offset\x18\x01 \x01(\x04\x12\x0f\n\x05\x62ytes\x18\x02 \x01(\x0cH\x00\x12\x10\n\x06\x62\x61se58\x18\x03 \x01(\tH\x00\x12\x10\n\x06\x62\x61se64\x18\x04 \x01(\tH\x00\x42\x06\n\x04\x64\x61ta\"m\n,SubscribeRequestFilterAccountsFilterLamports\x12\x0c\n\x02\x65q\x18\x01 \x01(\x04H\x00\x12\x0c\n\x02ne\x18\x02 \x01(\x04H\x00\x12\x0c\n\x02lt\x18\x03 \x01(\x04H\x00\x12\x0c\n\x02gt\x18\x04 \x01(\x04H\x00\x42\x05\n\x03\x63mp\"\x8f\x01\n\x1bSubscribeRequestFilterSlots\x12!\n\x14\x66ilter_by_commitment\x18\x01 \x01(\x08H\x00\x88\x01\x01\x12\x1e\n\x11interslot_updates\x18\x02 \x01(\x08H\x01\x88\x01\x01\x42\x17\n\x15_filter_by_commitmentB\x14\n\x12_interslot_updates\"\xd2\x01\n\"SubscribeRequestFilterTransactions\x12\x11\n\x04vote\x18\x01 \x01(\x08H\x00\x88\x01\x01\x12\x13\n\x06\x66\x61iled\x18\x02 \x01(\x08H\x01\x88\x01\x01\x12\x16\n\tsignature\x18\x05 \x01(\tH\x02\x88\x01\x01\x12\x17\n\x0f\x61\x63\x63ount_include\x18\x03 \x03(\t\x12\x17\n\x0f\x61\x63\x63ount_exclude\x18\x04 \x03(\t\x12\x18\n\x10\x61\x63\x63ount_required\x18\x06 \x03(\tB\x07\n\x05_voteB\t\n\x07_failedB\x0c\n\n_signature\"\xd9\x01\n\x1cSubscribeRequestFilterBlocks\x12\x17\n\x0f\x61\x63\x63ount_include\x18\x01 \x03(\t\x12!\n\x14include_transactions\x18\x02 \x01(\x08H\x00\x88\x01\x01\x12\x1d\n\x10include_accounts\x18\x03 \x01(\x08H\x01\x88\x01\x01\x12\x1c\n\x0finclude_entries\x18\x04 \x01(\x08H\x02\x88\x01\x01\x42\x17\n\x15_include_transactionsB\x13\n\x11_include_accountsB\x12\n\x10_include_entries\"\"\n SubscribeRequestFilterBlocksMeta\"\x1d\n\x1bSubscribeRequestFilterEntry\"C\n!SubscribeRequestAccountsDataSlice\x12\x0e\n\x06offset\x18\x01 \x01(\x04\x12\x0e\n\x06length\x18\x02 \x01(\x04\"\"\n\x14SubscribeRequestPing\x12\n\n\x02id\x18\x01 \x01(\x05\"\xb5\x04\n\x0fSubscribeUpdate\x12\x0f\n\x07\x66ilters\x18\x01 \x03(\t\x12\x31\n\x07\x61\x63\x63ount\x18\x02 \x01(\x0b\x32\x1e.geyser.SubscribeUpdateAccountH\x00\x12+\n\x04slot\x18\x03 \x01(\x0b\x32\x1b.geyser.SubscribeUpdateSlotH\x00\x12\x39\n\x0btransaction\x18\x04 \x01(\x0b\x32\".geyser.SubscribeUpdateTransactionH\x00\x12\x46\n\x12transaction_status\x18\n \x01(\x0b\x32(.geyser.SubscribeUpdateTransactionStatusH\x00\x12-\n\x05\x62lock\x18\x05 \x01(\x0b\x32\x1c.geyser.SubscribeUpdateBlockH\x00\x12+\n\x04ping\x18\x06 \x01(\x0b\x32\x1b.geyser.SubscribeUpdatePingH\x00\x12+\n\x04pong\x18\t \x01(\x0b\x32\x1b.geyser.SubscribeUpdatePongH\x00\x12\x36\n\nblock_meta\x18\x07 \x01(\x0b\x32 .geyser.SubscribeUpdateBlockMetaH\x00\x12-\n\x05\x65ntry\x18\x08 \x01(\x0b\x32\x1c.geyser.SubscribeUpdateEntryH\x00\x12.\n\ncreated_at\x18\x0b \x01(\x0b\x32\x1a.google.protobuf.TimestampB\x0e\n\x0cupdate_oneof\"o\n\x16SubscribeUpdateAccount\x12\x33\n\x07\x61\x63\x63ount\x18\x01 \x01(\x0b\x32\".geyser.SubscribeUpdateAccountInfo\x12\x0c\n\x04slot\x18\x02 \x01(\x04\x12\x12\n\nis_startup\x18\x03 \x01(\x08\"\xc8\x01\n\x1aSubscribeUpdateAccountInfo\x12\x0e\n\x06pubkey\x18\x01 \x01(\x0c\x12\x10\n\x08lamports\x18\x02 \x01(\x04\x12\r\n\x05owner\x18\x03 \x01(\x0c\x12\x12\n\nexecutable\x18\x04 \x01(\x08\x12\x12\n\nrent_epoch\x18\x05 \x01(\x04\x12\x0c\n\x04\x64\x61ta\x18\x06 \x01(\x0c\x12\x15\n\rwrite_version\x18\x07 \x01(\x04\x12\x1a\n\rtxn_signature\x18\x08 \x01(\x0cH\x00\x88\x01\x01\x42\x10\n\x0e_txn_signature\"\x8f\x01\n\x13SubscribeUpdateSlot\x12\x0c\n\x04slot\x18\x01 \x01(\x04\x12\x13\n\x06parent\x18\x02 \x01(\x04H\x00\x88\x01\x01\x12\"\n\x06status\x18\x03 \x01(\x0e\x32\x12.geyser.SlotStatus\x12\x17\n\ndead_error\x18\x04 \x01(\tH\x01\x88\x01\x01\x42\t\n\x07_parentB\r\n\x0b_dead_error\"g\n\x1aSubscribeUpdateTransaction\x12;\n\x0btransaction\x18\x01 \x01(\x0b\x32&.geyser.SubscribeUpdateTransactionInfo\x12\x0c\n\x04slot\x18\x02 \x01(\x04\"\xd8\x01\n\x1eSubscribeUpdateTransactionInfo\x12\x11\n\tsignature\x18\x01 \x01(\x0c\x12\x0f\n\x07is_vote\x18\x02 \x01(\x08\x12?\n\x0btransaction\x18\x03 \x01(\x0b\x32*.solana.storage.ConfirmedBlock.Transaction\x12\x42\n\x04meta\x18\x04 \x01(\x0b\x32\x34.solana.storage.ConfirmedBlock.TransactionStatusMeta\x12\r\n\x05index\x18\x05 \x01(\x04\"\xa1\x01\n SubscribeUpdateTransactionStatus\x12\x0c\n\x04slot\x18\x01 \x01(\x04\x12\x11\n\tsignature\x18\x02 \x01(\x0c\x12\x0f\n\x07is_vote\x18\x03 \x01(\x08\x12\r\n\x05index\x18\x04 \x01(\x04\x12<\n\x03\x65rr\x18\x05 \x01(\x0b\x32/.solana.storage.ConfirmedBlock.TransactionError\"\xa0\x04\n\x14SubscribeUpdateBlock\x12\x0c\n\x04slot\x18\x01 \x01(\x04\x12\x11\n\tblockhash\x18\x02 \x01(\t\x12\x37\n\x07rewards\x18\x03 \x01(\x0b\x32&.solana.storage.ConfirmedBlock.Rewards\x12@\n\nblock_time\x18\x04 \x01(\x0b\x32,.solana.storage.ConfirmedBlock.UnixTimestamp\x12@\n\x0c\x62lock_height\x18\x05 \x01(\x0b\x32*.solana.storage.ConfirmedBlock.BlockHeight\x12\x13\n\x0bparent_slot\x18\x07 \x01(\x04\x12\x18\n\x10parent_blockhash\x18\x08 \x01(\t\x12\"\n\x1a\x65xecuted_transaction_count\x18\t \x01(\x04\x12<\n\x0ctransactions\x18\x06 \x03(\x0b\x32&.geyser.SubscribeUpdateTransactionInfo\x12\x1d\n\x15updated_account_count\x18\n \x01(\x04\x12\x34\n\x08\x61\x63\x63ounts\x18\x0b \x03(\x0b\x32\".geyser.SubscribeUpdateAccountInfo\x12\x15\n\rentries_count\x18\x0c \x01(\x04\x12-\n\x07\x65ntries\x18\r \x03(\x0b\x32\x1c.geyser.SubscribeUpdateEntry\"\xe2\x02\n\x18SubscribeUpdateBlockMeta\x12\x0c\n\x04slot\x18\x01 \x01(\x04\x12\x11\n\tblockhash\x18\x02 \x01(\t\x12\x37\n\x07rewards\x18\x03 \x01(\x0b\x32&.solana.storage.ConfirmedBlock.Rewards\x12@\n\nblock_time\x18\x04 \x01(\x0b\x32,.solana.storage.ConfirmedBlock.UnixTimestamp\x12@\n\x0c\x62lock_height\x18\x05 \x01(\x0b\x32*.solana.storage.ConfirmedBlock.BlockHeight\x12\x13\n\x0bparent_slot\x18\x06 \x01(\x04\x12\x18\n\x10parent_blockhash\x18\x07 \x01(\t\x12\"\n\x1a\x65xecuted_transaction_count\x18\x08 \x01(\x04\x12\x15\n\rentries_count\x18\t \x01(\x04\"\x9d\x01\n\x14SubscribeUpdateEntry\x12\x0c\n\x04slot\x18\x01 \x01(\x04\x12\r\n\x05index\x18\x02 \x01(\x04\x12\x12\n\nnum_hashes\x18\x03 \x01(\x04\x12\x0c\n\x04hash\x18\x04 \x01(\x0c\x12\"\n\x1a\x65xecuted_transaction_count\x18\x05 \x01(\x04\x12\"\n\x1astarting_transaction_index\x18\x06 \x01(\x04\"\x15\n\x13SubscribeUpdatePing\"!\n\x13SubscribeUpdatePong\x12\n\n\x02id\x18\x01 \x01(\x05\"\x1c\n\x0bPingRequest\x12\r\n\x05\x63ount\x18\x01 \x01(\x05\"\x1d\n\x0cPongResponse\x12\r\n\x05\x63ount\x18\x01 \x01(\x05\"\\\n\x19GetLatestBlockhashRequest\x12\x30\n\ncommitment\x18\x01 \x01(\x0e\x32\x17.geyser.CommitmentLevelH\x00\x88\x01\x01\x42\r\n\x0b_commitment\"^\n\x1aGetLatestBlockhashResponse\x12\x0c\n\x04slot\x18\x01 \x01(\x04\x12\x11\n\tblockhash\x18\x02 \x01(\t\x12\x1f\n\x17last_valid_block_height\x18\x03 \x01(\x04\"X\n\x15GetBlockHeightRequest\x12\x30\n\ncommitment\x18\x01 \x01(\x0e\x32\x17.geyser.CommitmentLevelH\x00\x88\x01\x01\x42\r\n\x0b_commitment\".\n\x16GetBlockHeightResponse\x12\x14\n\x0c\x62lock_height\x18\x01 \x01(\x04\"Q\n\x0eGetSlotRequest\x12\x30\n\ncommitment\x18\x01 \x01(\x0e\x32\x17.geyser.CommitmentLevelH\x00\x88\x01\x01\x42\r\n\x0b_commitment\"\x1f\n\x0fGetSlotResponse\x12\x0c\n\x04slot\x18\x01 \x01(\x04\"\x13\n\x11GetVersionRequest\"%\n\x12GetVersionResponse\x12\x0f\n\x07version\x18\x01 \x01(\t\"m\n\x17IsBlockhashValidRequest\x12\x11\n\tblockhash\x18\x01 \x01(\t\x12\x30\n\ncommitment\x18\x02 \x01(\x0e\x32\x17.geyser.CommitmentLevelH\x00\x88\x01\x01\x42\r\n\x0b_commitment\"7\n\x18IsBlockhashValidResponse\x12\x0c\n\x04slot\x18\x01 \x01(\x04\x12\r\n\x05valid\x18\x02 \x01(\x08*>\n\x0f\x43ommitmentLevel\x12\r\n\tPROCESSED\x10\x00\x12\r\n\tCONFIRMED\x10\x01\x12\r\n\tFINALIZED\x10\x02*\xa1\x01\n\nSlotStatus\x12\x12\n\x0eSLOT_PROCESSED\x10\x00\x12\x12\n\x0eSLOT_CONFIRMED\x10\x01\x12\x12\n\x0eSLOT_FINALIZED\x10\x02\x12\x1d\n\x19SLOT_FIRST_SHRED_RECEIVED\x10\x03\x12\x12\n\x0eSLOT_COMPLETED\x10\x04\x12\x15\n\x11SLOT_CREATED_BANK\x10\x05\x12\r\n\tSLOT_DEAD\x10\x06\x32\x93\x04\n\x06Geyser\x12\x44\n\tSubscribe\x12\x18.geyser.SubscribeRequest\x1a\x17.geyser.SubscribeUpdate\"\x00(\x01\x30\x01\x12\x33\n\x04Ping\x12\x13.geyser.PingRequest\x1a\x14.geyser.PongResponse\"\x00\x12]\n\x12GetLatestBlockhash\x12!.geyser.GetLatestBlockhashRequest\x1a\".geyser.GetLatestBlockhashResponse\"\x00\x12Q\n\x0eGetBlockHeight\x12\x1d.geyser.GetBlockHeightRequest\x1a\x1e.geyser.GetBlockHeightResponse\"\x00\x12<\n\x07GetSlot\x12\x16.geyser.GetSlotRequest\x1a\x17.geyser.GetSlotResponse\"\x00\x12W\n\x10IsBlockhashValid\x12\x1f.geyser.IsBlockhashValidRequest\x1a .geyser.IsBlockhashValidResponse\"\x00\x12\x45\n\nGetVersion\x12\x19.geyser.GetVersionRequest\x1a\x1a.geyser.GetVersionResponse\"\x00\x42;Z9github.com/rpcpool/yellowstone-grpc/examples/golang/protoP\x01\x62\x06proto3')
|
31
|
+
|
32
|
+
_globals = globals()
|
33
|
+
_builder.BuildMessageAndEnumDescriptors(DESCRIPTOR, _globals)
|
34
|
+
_builder.BuildTopDescriptorsAndMessages(DESCRIPTOR, 'geyser_pb2', _globals)
|
35
|
+
if not _descriptor._USE_C_DESCRIPTORS:
|
36
|
+
_globals['DESCRIPTOR']._loaded_options = None
|
37
|
+
_globals['DESCRIPTOR']._serialized_options = b'Z9github.com/rpcpool/yellowstone-grpc/examples/golang/proto'
|
38
|
+
_globals['_SUBSCRIBEREQUEST_ACCOUNTSENTRY']._loaded_options = None
|
39
|
+
_globals['_SUBSCRIBEREQUEST_ACCOUNTSENTRY']._serialized_options = b'8\001'
|
40
|
+
_globals['_SUBSCRIBEREQUEST_SLOTSENTRY']._loaded_options = None
|
41
|
+
_globals['_SUBSCRIBEREQUEST_SLOTSENTRY']._serialized_options = b'8\001'
|
42
|
+
_globals['_SUBSCRIBEREQUEST_TRANSACTIONSENTRY']._loaded_options = None
|
43
|
+
_globals['_SUBSCRIBEREQUEST_TRANSACTIONSENTRY']._serialized_options = b'8\001'
|
44
|
+
_globals['_SUBSCRIBEREQUEST_TRANSACTIONSSTATUSENTRY']._loaded_options = None
|
45
|
+
_globals['_SUBSCRIBEREQUEST_TRANSACTIONSSTATUSENTRY']._serialized_options = b'8\001'
|
46
|
+
_globals['_SUBSCRIBEREQUEST_BLOCKSENTRY']._loaded_options = None
|
47
|
+
_globals['_SUBSCRIBEREQUEST_BLOCKSENTRY']._serialized_options = b'8\001'
|
48
|
+
_globals['_SUBSCRIBEREQUEST_BLOCKSMETAENTRY']._loaded_options = None
|
49
|
+
_globals['_SUBSCRIBEREQUEST_BLOCKSMETAENTRY']._serialized_options = b'8\001'
|
50
|
+
_globals['_SUBSCRIBEREQUEST_ENTRYENTRY']._loaded_options = None
|
51
|
+
_globals['_SUBSCRIBEREQUEST_ENTRYENTRY']._serialized_options = b'8\001'
|
52
|
+
_globals['_COMMITMENTLEVEL']._serialized_start=6188
|
53
|
+
_globals['_COMMITMENTLEVEL']._serialized_end=6250
|
54
|
+
_globals['_SLOTSTATUS']._serialized_start=6253
|
55
|
+
_globals['_SLOTSTATUS']._serialized_end=6414
|
56
|
+
_globals['_SUBSCRIBEREQUEST']._serialized_start=80
|
57
|
+
_globals['_SUBSCRIBEREQUEST']._serialized_end=1388
|
58
|
+
_globals['_SUBSCRIBEREQUEST_ACCOUNTSENTRY']._serialized_start=719
|
59
|
+
_globals['_SUBSCRIBEREQUEST_ACCOUNTSENTRY']._serialized_end=806
|
60
|
+
_globals['_SUBSCRIBEREQUEST_SLOTSENTRY']._serialized_start=808
|
61
|
+
_globals['_SUBSCRIBEREQUEST_SLOTSENTRY']._serialized_end=889
|
62
|
+
_globals['_SUBSCRIBEREQUEST_TRANSACTIONSENTRY']._serialized_start=891
|
63
|
+
_globals['_SUBSCRIBEREQUEST_TRANSACTIONSENTRY']._serialized_end=986
|
64
|
+
_globals['_SUBSCRIBEREQUEST_TRANSACTIONSSTATUSENTRY']._serialized_start=988
|
65
|
+
_globals['_SUBSCRIBEREQUEST_TRANSACTIONSSTATUSENTRY']._serialized_end=1089
|
66
|
+
_globals['_SUBSCRIBEREQUEST_BLOCKSENTRY']._serialized_start=1091
|
67
|
+
_globals['_SUBSCRIBEREQUEST_BLOCKSENTRY']._serialized_end=1174
|
68
|
+
_globals['_SUBSCRIBEREQUEST_BLOCKSMETAENTRY']._serialized_start=1176
|
69
|
+
_globals['_SUBSCRIBEREQUEST_BLOCKSMETAENTRY']._serialized_end=1267
|
70
|
+
_globals['_SUBSCRIBEREQUEST_ENTRYENTRY']._serialized_start=1269
|
71
|
+
_globals['_SUBSCRIBEREQUEST_ENTRYENTRY']._serialized_end=1350
|
72
|
+
_globals['_SUBSCRIBEREQUESTFILTERACCOUNTS']._serialized_start=1391
|
73
|
+
_globals['_SUBSCRIBEREQUESTFILTERACCOUNTS']._serialized_end=1582
|
74
|
+
_globals['_SUBSCRIBEREQUESTFILTERACCOUNTSFILTER']._serialized_start=1585
|
75
|
+
_globals['_SUBSCRIBEREQUESTFILTERACCOUNTSFILTER']._serialized_end=1828
|
76
|
+
_globals['_SUBSCRIBEREQUESTFILTERACCOUNTSFILTERMEMCMP']._serialized_start=1830
|
77
|
+
_globals['_SUBSCRIBEREQUESTFILTERACCOUNTSFILTERMEMCMP']._serialized_end=1951
|
78
|
+
_globals['_SUBSCRIBEREQUESTFILTERACCOUNTSFILTERLAMPORTS']._serialized_start=1953
|
79
|
+
_globals['_SUBSCRIBEREQUESTFILTERACCOUNTSFILTERLAMPORTS']._serialized_end=2062
|
80
|
+
_globals['_SUBSCRIBEREQUESTFILTERSLOTS']._serialized_start=2065
|
81
|
+
_globals['_SUBSCRIBEREQUESTFILTERSLOTS']._serialized_end=2208
|
82
|
+
_globals['_SUBSCRIBEREQUESTFILTERTRANSACTIONS']._serialized_start=2211
|
83
|
+
_globals['_SUBSCRIBEREQUESTFILTERTRANSACTIONS']._serialized_end=2421
|
84
|
+
_globals['_SUBSCRIBEREQUESTFILTERBLOCKS']._serialized_start=2424
|
85
|
+
_globals['_SUBSCRIBEREQUESTFILTERBLOCKS']._serialized_end=2641
|
86
|
+
_globals['_SUBSCRIBEREQUESTFILTERBLOCKSMETA']._serialized_start=2643
|
87
|
+
_globals['_SUBSCRIBEREQUESTFILTERBLOCKSMETA']._serialized_end=2677
|
88
|
+
_globals['_SUBSCRIBEREQUESTFILTERENTRY']._serialized_start=2679
|
89
|
+
_globals['_SUBSCRIBEREQUESTFILTERENTRY']._serialized_end=2708
|
90
|
+
_globals['_SUBSCRIBEREQUESTACCOUNTSDATASLICE']._serialized_start=2710
|
91
|
+
_globals['_SUBSCRIBEREQUESTACCOUNTSDATASLICE']._serialized_end=2777
|
92
|
+
_globals['_SUBSCRIBEREQUESTPING']._serialized_start=2779
|
93
|
+
_globals['_SUBSCRIBEREQUESTPING']._serialized_end=2813
|
94
|
+
_globals['_SUBSCRIBEUPDATE']._serialized_start=2816
|
95
|
+
_globals['_SUBSCRIBEUPDATE']._serialized_end=3381
|
96
|
+
_globals['_SUBSCRIBEUPDATEACCOUNT']._serialized_start=3383
|
97
|
+
_globals['_SUBSCRIBEUPDATEACCOUNT']._serialized_end=3494
|
98
|
+
_globals['_SUBSCRIBEUPDATEACCOUNTINFO']._serialized_start=3497
|
99
|
+
_globals['_SUBSCRIBEUPDATEACCOUNTINFO']._serialized_end=3697
|
100
|
+
_globals['_SUBSCRIBEUPDATESLOT']._serialized_start=3700
|
101
|
+
_globals['_SUBSCRIBEUPDATESLOT']._serialized_end=3843
|
102
|
+
_globals['_SUBSCRIBEUPDATETRANSACTION']._serialized_start=3845
|
103
|
+
_globals['_SUBSCRIBEUPDATETRANSACTION']._serialized_end=3948
|
104
|
+
_globals['_SUBSCRIBEUPDATETRANSACTIONINFO']._serialized_start=3951
|
105
|
+
_globals['_SUBSCRIBEUPDATETRANSACTIONINFO']._serialized_end=4167
|
106
|
+
_globals['_SUBSCRIBEUPDATETRANSACTIONSTATUS']._serialized_start=4170
|
107
|
+
_globals['_SUBSCRIBEUPDATETRANSACTIONSTATUS']._serialized_end=4331
|
108
|
+
_globals['_SUBSCRIBEUPDATEBLOCK']._serialized_start=4334
|
109
|
+
_globals['_SUBSCRIBEUPDATEBLOCK']._serialized_end=4878
|
110
|
+
_globals['_SUBSCRIBEUPDATEBLOCKMETA']._serialized_start=4881
|
111
|
+
_globals['_SUBSCRIBEUPDATEBLOCKMETA']._serialized_end=5235
|
112
|
+
_globals['_SUBSCRIBEUPDATEENTRY']._serialized_start=5238
|
113
|
+
_globals['_SUBSCRIBEUPDATEENTRY']._serialized_end=5395
|
114
|
+
_globals['_SUBSCRIBEUPDATEPING']._serialized_start=5397
|
115
|
+
_globals['_SUBSCRIBEUPDATEPING']._serialized_end=5418
|
116
|
+
_globals['_SUBSCRIBEUPDATEPONG']._serialized_start=5420
|
117
|
+
_globals['_SUBSCRIBEUPDATEPONG']._serialized_end=5453
|
118
|
+
_globals['_PINGREQUEST']._serialized_start=5455
|
119
|
+
_globals['_PINGREQUEST']._serialized_end=5483
|
120
|
+
_globals['_PONGRESPONSE']._serialized_start=5485
|
121
|
+
_globals['_PONGRESPONSE']._serialized_end=5514
|
122
|
+
_globals['_GETLATESTBLOCKHASHREQUEST']._serialized_start=5516
|
123
|
+
_globals['_GETLATESTBLOCKHASHREQUEST']._serialized_end=5608
|
124
|
+
_globals['_GETLATESTBLOCKHASHRESPONSE']._serialized_start=5610
|
125
|
+
_globals['_GETLATESTBLOCKHASHRESPONSE']._serialized_end=5704
|
126
|
+
_globals['_GETBLOCKHEIGHTREQUEST']._serialized_start=5706
|
127
|
+
_globals['_GETBLOCKHEIGHTREQUEST']._serialized_end=5794
|
128
|
+
_globals['_GETBLOCKHEIGHTRESPONSE']._serialized_start=5796
|
129
|
+
_globals['_GETBLOCKHEIGHTRESPONSE']._serialized_end=5842
|
130
|
+
_globals['_GETSLOTREQUEST']._serialized_start=5844
|
131
|
+
_globals['_GETSLOTREQUEST']._serialized_end=5925
|
132
|
+
_globals['_GETSLOTRESPONSE']._serialized_start=5927
|
133
|
+
_globals['_GETSLOTRESPONSE']._serialized_end=5958
|
134
|
+
_globals['_GETVERSIONREQUEST']._serialized_start=5960
|
135
|
+
_globals['_GETVERSIONREQUEST']._serialized_end=5979
|
136
|
+
_globals['_GETVERSIONRESPONSE']._serialized_start=5981
|
137
|
+
_globals['_GETVERSIONRESPONSE']._serialized_end=6018
|
138
|
+
_globals['_ISBLOCKHASHVALIDREQUEST']._serialized_start=6020
|
139
|
+
_globals['_ISBLOCKHASHVALIDREQUEST']._serialized_end=6129
|
140
|
+
_globals['_ISBLOCKHASHVALIDRESPONSE']._serialized_start=6131
|
141
|
+
_globals['_ISBLOCKHASHVALIDRESPONSE']._serialized_end=6186
|
142
|
+
_globals['_GEYSER']._serialized_start=6417
|
143
|
+
_globals['_GEYSER']._serialized_end=6948
|
144
|
+
# @@protoc_insertion_point(module_scope)
|