@agoric/cosmic-proto 0.4.1-dev-7b3ac1e.0 → 0.4.1-dev-33a5708.0

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.
@@ -1,8 +1,8 @@
1
- import { Timestamp, type TimestampSDKType } from '../../google/protobuf/timestamp.js';
2
1
  import { Header, type HeaderSDKType } from '../types/types.js';
3
2
  import { ProofOps, type ProofOpsSDKType } from '../crypto/proof.js';
4
- import { EvidenceParams, type EvidenceParamsSDKType, ValidatorParams, type ValidatorParamsSDKType, VersionParams, type VersionParamsSDKType } from '../types/params.js';
3
+ import { ConsensusParams, type ConsensusParamsSDKType } from '../types/params.js';
5
4
  import { PublicKey, type PublicKeySDKType } from '../crypto/keys.js';
5
+ import { Timestamp, type TimestampSDKType } from '../../google/protobuf/timestamp.js';
6
6
  import { BinaryReader, BinaryWriter } from '../../binary.js';
7
7
  import { type JsonSafe } from '../../json-safe.js';
8
8
  export declare enum CheckTxType {
@@ -13,42 +13,6 @@ export declare enum CheckTxType {
13
13
  export declare const CheckTxTypeSDKType: typeof CheckTxType;
14
14
  export declare function checkTxTypeFromJSON(object: any): CheckTxType;
15
15
  export declare function checkTxTypeToJSON(object: CheckTxType): string;
16
- export declare enum ResponseOfferSnapshot_Result {
17
- /** UNKNOWN - Unknown result, abort all snapshot restoration */
18
- UNKNOWN = 0,
19
- /** ACCEPT - Snapshot accepted, apply chunks */
20
- ACCEPT = 1,
21
- /** ABORT - Abort all snapshot restoration */
22
- ABORT = 2,
23
- /** REJECT - Reject this specific snapshot, try others */
24
- REJECT = 3,
25
- /** REJECT_FORMAT - Reject all snapshots of this format, try others */
26
- REJECT_FORMAT = 4,
27
- /** REJECT_SENDER - Reject all snapshots from the sender(s), try others */
28
- REJECT_SENDER = 5,
29
- UNRECOGNIZED = -1
30
- }
31
- export declare const ResponseOfferSnapshot_ResultSDKType: typeof ResponseOfferSnapshot_Result;
32
- export declare function responseOfferSnapshot_ResultFromJSON(object: any): ResponseOfferSnapshot_Result;
33
- export declare function responseOfferSnapshot_ResultToJSON(object: ResponseOfferSnapshot_Result): string;
34
- export declare enum ResponseApplySnapshotChunk_Result {
35
- /** UNKNOWN - Unknown result, abort all snapshot restoration */
36
- UNKNOWN = 0,
37
- /** ACCEPT - Chunk successfully accepted */
38
- ACCEPT = 1,
39
- /** ABORT - Abort all snapshot restoration */
40
- ABORT = 2,
41
- /** RETRY - Retry chunk (combine with refetch and reject) */
42
- RETRY = 3,
43
- /** RETRY_SNAPSHOT - Retry snapshot (combine with refetch and reject) */
44
- RETRY_SNAPSHOT = 4,
45
- /** REJECT_SNAPSHOT - Reject this snapshot, try others */
46
- REJECT_SNAPSHOT = 5,
47
- UNRECOGNIZED = -1
48
- }
49
- export declare const ResponseApplySnapshotChunk_ResultSDKType: typeof ResponseApplySnapshotChunk_Result;
50
- export declare function responseApplySnapshotChunk_ResultFromJSON(object: any): ResponseApplySnapshotChunk_Result;
51
- export declare function responseApplySnapshotChunk_ResultToJSON(object: ResponseApplySnapshotChunk_Result): string;
52
16
  export declare enum EvidenceType {
53
17
  UNKNOWN = 0,
54
18
  DUPLICATE_VOTE = 1,
@@ -58,110 +22,54 @@ export declare enum EvidenceType {
58
22
  export declare const EvidenceTypeSDKType: typeof EvidenceType;
59
23
  export declare function evidenceTypeFromJSON(object: any): EvidenceType;
60
24
  export declare function evidenceTypeToJSON(object: EvidenceType): string;
61
- export interface Request {
62
- echo?: RequestEcho;
63
- flush?: RequestFlush;
64
- info?: RequestInfo;
65
- setOption?: RequestSetOption;
66
- initChain?: RequestInitChain;
67
- query?: RequestQuery;
68
- beginBlock?: RequestBeginBlock;
69
- checkTx?: RequestCheckTx;
70
- deliverTx?: RequestDeliverTx;
71
- endBlock?: RequestEndBlock;
72
- commit?: RequestCommit;
73
- listSnapshots?: RequestListSnapshots;
74
- offerSnapshot?: RequestOfferSnapshot;
75
- loadSnapshotChunk?: RequestLoadSnapshotChunk;
76
- applySnapshotChunk?: RequestApplySnapshotChunk;
77
- }
78
- export interface RequestProtoMsg {
79
- typeUrl: '/tendermint.abci.Request';
80
- value: Uint8Array;
81
- }
82
- export interface RequestSDKType {
83
- echo?: RequestEchoSDKType;
84
- flush?: RequestFlushSDKType;
85
- info?: RequestInfoSDKType;
86
- set_option?: RequestSetOptionSDKType;
87
- init_chain?: RequestInitChainSDKType;
88
- query?: RequestQuerySDKType;
89
- begin_block?: RequestBeginBlockSDKType;
90
- check_tx?: RequestCheckTxSDKType;
91
- deliver_tx?: RequestDeliverTxSDKType;
92
- end_block?: RequestEndBlockSDKType;
93
- commit?: RequestCommitSDKType;
94
- list_snapshots?: RequestListSnapshotsSDKType;
95
- offer_snapshot?: RequestOfferSnapshotSDKType;
96
- load_snapshot_chunk?: RequestLoadSnapshotChunkSDKType;
97
- apply_snapshot_chunk?: RequestApplySnapshotChunkSDKType;
98
- }
99
- export interface RequestEcho {
100
- message: string;
101
- }
102
- export interface RequestEchoProtoMsg {
103
- typeUrl: '/tendermint.abci.RequestEcho';
104
- value: Uint8Array;
105
- }
106
- export interface RequestEchoSDKType {
107
- message: string;
108
- }
109
- export interface RequestFlush {
110
- }
111
- export interface RequestFlushProtoMsg {
112
- typeUrl: '/tendermint.abci.RequestFlush';
113
- value: Uint8Array;
114
- }
115
- export interface RequestFlushSDKType {
116
- }
117
- export interface RequestInfo {
118
- version: string;
119
- blockVersion: bigint;
120
- p2pVersion: bigint;
121
- }
122
- export interface RequestInfoProtoMsg {
123
- typeUrl: '/tendermint.abci.RequestInfo';
124
- value: Uint8Array;
125
- }
126
- export interface RequestInfoSDKType {
127
- version: string;
128
- block_version: bigint;
129
- p2p_version: bigint;
130
- }
131
- /** nondeterministic */
132
- export interface RequestSetOption {
133
- key: string;
134
- value: string;
135
- }
136
- export interface RequestSetOptionProtoMsg {
137
- typeUrl: '/tendermint.abci.RequestSetOption';
138
- value: Uint8Array;
139
- }
140
- /** nondeterministic */
141
- export interface RequestSetOptionSDKType {
142
- key: string;
143
- value: string;
144
- }
145
- export interface RequestInitChain {
146
- time: Timestamp;
147
- chainId: string;
148
- consensusParams?: ConsensusParams;
149
- validators: ValidatorUpdate[];
150
- appStateBytes: Uint8Array;
151
- initialHeight: bigint;
152
- }
153
- export interface RequestInitChainProtoMsg {
154
- typeUrl: '/tendermint.abci.RequestInitChain';
155
- value: Uint8Array;
156
- }
157
- export interface RequestInitChainSDKType {
158
- time: TimestampSDKType;
159
- chain_id: string;
160
- consensus_params?: ConsensusParamsSDKType;
161
- validators: ValidatorUpdateSDKType[];
162
- app_state_bytes: Uint8Array;
163
- initial_height: bigint;
164
- }
25
+ /**
26
+ * message Request {
27
+ * oneof value {
28
+ * RequestEcho echo = 1;
29
+ * RequestFlush flush = 2;
30
+ * RequestInfo info = 3;
31
+ * RequestSetOption set_option = 4;
32
+ * RequestInitChain init_chain = 5;
33
+ * RequestQuery query = 6;
34
+ * RequestBeginBlock begin_block = 7;
35
+ * RequestCheckTx check_tx = 8;
36
+ * RequestDeliverTx deliver_tx = 9;
37
+ * RequestEndBlock end_block = 10;
38
+ * RequestCommit commit = 11;
39
+ * RequestListSnapshots list_snapshots = 12;
40
+ * RequestOfferSnapshot offer_snapshot = 13;
41
+ * RequestLoadSnapshotChunk load_snapshot_chunk = 14;
42
+ * RequestApplySnapshotChunk apply_snapshot_chunk = 15;
43
+ * }
44
+ * }
45
+ *
46
+ * message RequestEcho {
47
+ * string message = 1;
48
+ * }
49
+ *
50
+ * message RequestFlush {}
51
+ *
52
+ * message RequestInfo {
53
+ * string version = 1;
54
+ * uint64 block_version = 2;
55
+ * uint64 p2p_version = 3;
56
+ * }
57
+ *
58
+ * nondeterministic
59
+ * message RequestSetOption {
60
+ * string key = 1;
61
+ * string value = 2;
62
+ * }
63
+ *
64
+ * message RequestInitChain {
65
+ * google.protobuf.Timestamp time = 1 [(gogoproto.nullable) = false, (gogoproto.stdtime) = true];
66
+ * string chain_id = 2;
67
+ * ConsensusParams consensus_params = 3;
68
+ * repeated ValidatorUpdate validators = 4 [(gogoproto.nullable) = false];
69
+ * bytes app_state_bytes = 5;
70
+ * int64 initial_height = 6;
71
+ * }
72
+ */
165
73
  export interface RequestQuery {
166
74
  data: Uint8Array;
167
75
  path: string;
@@ -172,6 +80,54 @@ export interface RequestQueryProtoMsg {
172
80
  typeUrl: '/tendermint.abci.RequestQuery';
173
81
  value: Uint8Array;
174
82
  }
83
+ /**
84
+ * message Request {
85
+ * oneof value {
86
+ * RequestEcho echo = 1;
87
+ * RequestFlush flush = 2;
88
+ * RequestInfo info = 3;
89
+ * RequestSetOption set_option = 4;
90
+ * RequestInitChain init_chain = 5;
91
+ * RequestQuery query = 6;
92
+ * RequestBeginBlock begin_block = 7;
93
+ * RequestCheckTx check_tx = 8;
94
+ * RequestDeliverTx deliver_tx = 9;
95
+ * RequestEndBlock end_block = 10;
96
+ * RequestCommit commit = 11;
97
+ * RequestListSnapshots list_snapshots = 12;
98
+ * RequestOfferSnapshot offer_snapshot = 13;
99
+ * RequestLoadSnapshotChunk load_snapshot_chunk = 14;
100
+ * RequestApplySnapshotChunk apply_snapshot_chunk = 15;
101
+ * }
102
+ * }
103
+ *
104
+ * message RequestEcho {
105
+ * string message = 1;
106
+ * }
107
+ *
108
+ * message RequestFlush {}
109
+ *
110
+ * message RequestInfo {
111
+ * string version = 1;
112
+ * uint64 block_version = 2;
113
+ * uint64 p2p_version = 3;
114
+ * }
115
+ *
116
+ * nondeterministic
117
+ * message RequestSetOption {
118
+ * string key = 1;
119
+ * string value = 2;
120
+ * }
121
+ *
122
+ * message RequestInitChain {
123
+ * google.protobuf.Timestamp time = 1 [(gogoproto.nullable) = false, (gogoproto.stdtime) = true];
124
+ * string chain_id = 2;
125
+ * ConsensusParams consensus_params = 3;
126
+ * repeated ValidatorUpdate validators = 4 [(gogoproto.nullable) = false];
127
+ * bytes app_state_bytes = 5;
128
+ * int64 initial_height = 6;
129
+ * }
130
+ */
175
131
  export interface RequestQuerySDKType {
176
132
  data: Uint8Array;
177
133
  path: string;
@@ -234,183 +190,89 @@ export interface RequestCommitProtoMsg {
234
190
  }
235
191
  export interface RequestCommitSDKType {
236
192
  }
237
- /** lists available snapshots */
238
- export interface RequestListSnapshots {
239
- }
240
- export interface RequestListSnapshotsProtoMsg {
241
- typeUrl: '/tendermint.abci.RequestListSnapshots';
242
- value: Uint8Array;
243
- }
244
- /** lists available snapshots */
245
- export interface RequestListSnapshotsSDKType {
246
- }
247
- /** offers a snapshot to the application */
248
- export interface RequestOfferSnapshot {
249
- /** snapshot offered by peers */
250
- snapshot?: Snapshot;
251
- /** light client-verified app hash for snapshot height */
252
- appHash: Uint8Array;
253
- }
254
- export interface RequestOfferSnapshotProtoMsg {
255
- typeUrl: '/tendermint.abci.RequestOfferSnapshot';
256
- value: Uint8Array;
257
- }
258
- /** offers a snapshot to the application */
259
- export interface RequestOfferSnapshotSDKType {
260
- snapshot?: SnapshotSDKType;
261
- app_hash: Uint8Array;
262
- }
263
- /** loads a snapshot chunk */
264
- export interface RequestLoadSnapshotChunk {
265
- height: bigint;
266
- format: number;
267
- chunk: number;
268
- }
269
- export interface RequestLoadSnapshotChunkProtoMsg {
270
- typeUrl: '/tendermint.abci.RequestLoadSnapshotChunk';
271
- value: Uint8Array;
272
- }
273
- /** loads a snapshot chunk */
274
- export interface RequestLoadSnapshotChunkSDKType {
275
- height: bigint;
276
- format: number;
277
- chunk: number;
278
- }
279
- /** Applies a snapshot chunk */
280
- export interface RequestApplySnapshotChunk {
281
- index: number;
282
- chunk: Uint8Array;
283
- sender: string;
284
- }
285
- export interface RequestApplySnapshotChunkProtoMsg {
286
- typeUrl: '/tendermint.abci.RequestApplySnapshotChunk';
287
- value: Uint8Array;
288
- }
289
- /** Applies a snapshot chunk */
290
- export interface RequestApplySnapshotChunkSDKType {
291
- index: number;
292
- chunk: Uint8Array;
293
- sender: string;
294
- }
295
- export interface Response {
296
- exception?: ResponseException;
297
- echo?: ResponseEcho;
298
- flush?: ResponseFlush;
299
- info?: ResponseInfo;
300
- setOption?: ResponseSetOption;
301
- initChain?: ResponseInitChain;
302
- query?: ResponseQuery;
303
- beginBlock?: ResponseBeginBlock;
304
- checkTx?: ResponseCheckTx;
305
- deliverTx?: ResponseDeliverTx;
306
- endBlock?: ResponseEndBlock;
307
- commit?: ResponseCommit;
308
- listSnapshots?: ResponseListSnapshots;
309
- offerSnapshot?: ResponseOfferSnapshot;
310
- loadSnapshotChunk?: ResponseLoadSnapshotChunk;
311
- applySnapshotChunk?: ResponseApplySnapshotChunk;
312
- }
313
- export interface ResponseProtoMsg {
314
- typeUrl: '/tendermint.abci.Response';
315
- value: Uint8Array;
316
- }
317
- export interface ResponseSDKType {
318
- exception?: ResponseExceptionSDKType;
319
- echo?: ResponseEchoSDKType;
320
- flush?: ResponseFlushSDKType;
321
- info?: ResponseInfoSDKType;
322
- set_option?: ResponseSetOptionSDKType;
323
- init_chain?: ResponseInitChainSDKType;
324
- query?: ResponseQuerySDKType;
325
- begin_block?: ResponseBeginBlockSDKType;
326
- check_tx?: ResponseCheckTxSDKType;
327
- deliver_tx?: ResponseDeliverTxSDKType;
328
- end_block?: ResponseEndBlockSDKType;
329
- commit?: ResponseCommitSDKType;
330
- list_snapshots?: ResponseListSnapshotsSDKType;
331
- offer_snapshot?: ResponseOfferSnapshotSDKType;
332
- load_snapshot_chunk?: ResponseLoadSnapshotChunkSDKType;
333
- apply_snapshot_chunk?: ResponseApplySnapshotChunkSDKType;
334
- }
335
- /** nondeterministic */
336
- export interface ResponseException {
337
- error: string;
338
- }
339
- export interface ResponseExceptionProtoMsg {
340
- typeUrl: '/tendermint.abci.ResponseException';
341
- value: Uint8Array;
342
- }
343
- /** nondeterministic */
344
- export interface ResponseExceptionSDKType {
345
- error: string;
346
- }
347
- export interface ResponseEcho {
348
- message: string;
349
- }
350
- export interface ResponseEchoProtoMsg {
351
- typeUrl: '/tendermint.abci.ResponseEcho';
352
- value: Uint8Array;
353
- }
354
- export interface ResponseEchoSDKType {
355
- message: string;
356
- }
357
- export interface ResponseFlush {
358
- }
359
- export interface ResponseFlushProtoMsg {
360
- typeUrl: '/tendermint.abci.ResponseFlush';
361
- value: Uint8Array;
362
- }
363
- export interface ResponseFlushSDKType {
364
- }
365
- export interface ResponseInfo {
366
- data: string;
367
- version: string;
368
- appVersion: bigint;
369
- lastBlockHeight: bigint;
370
- lastBlockAppHash: Uint8Array;
371
- }
372
- export interface ResponseInfoProtoMsg {
373
- typeUrl: '/tendermint.abci.ResponseInfo';
374
- value: Uint8Array;
375
- }
376
- export interface ResponseInfoSDKType {
377
- data: string;
378
- version: string;
379
- app_version: bigint;
380
- last_block_height: bigint;
381
- last_block_app_hash: Uint8Array;
382
- }
383
- /** nondeterministic */
384
- export interface ResponseSetOption {
385
- code: number;
386
- /** bytes data = 2; */
387
- log: string;
388
- info: string;
389
- }
390
- export interface ResponseSetOptionProtoMsg {
391
- typeUrl: '/tendermint.abci.ResponseSetOption';
392
- value: Uint8Array;
393
- }
394
- /** nondeterministic */
395
- export interface ResponseSetOptionSDKType {
396
- code: number;
397
- log: string;
398
- info: string;
399
- }
400
- export interface ResponseInitChain {
401
- consensusParams?: ConsensusParams;
402
- validators: ValidatorUpdate[];
403
- appHash: Uint8Array;
404
- }
405
- export interface ResponseInitChainProtoMsg {
406
- typeUrl: '/tendermint.abci.ResponseInitChain';
407
- value: Uint8Array;
408
- }
409
- export interface ResponseInitChainSDKType {
410
- consensus_params?: ConsensusParamsSDKType;
411
- validators: ValidatorUpdateSDKType[];
412
- app_hash: Uint8Array;
413
- }
193
+ /**
194
+ * lists available snapshots
195
+ * message RequestListSnapshots {}
196
+ *
197
+ * offers a snapshot to the application
198
+ * message RequestOfferSnapshot {
199
+ * Snapshot snapshot = 1; // snapshot offered by peers
200
+ * bytes app_hash = 2; // light client-verified app hash for snapshot height
201
+ * }
202
+ *
203
+ * loads a snapshot chunk
204
+ * message RequestLoadSnapshotChunk {
205
+ * uint64 height = 1;
206
+ * uint32 format = 2;
207
+ * uint32 chunk = 3;
208
+ * }
209
+ *
210
+ * Applies a snapshot chunk
211
+ * message RequestApplySnapshotChunk {
212
+ * uint32 index = 1;
213
+ * bytes chunk = 2;
214
+ * string sender = 3;
215
+ * }
216
+ *
217
+ * ----------------------------------------
218
+ * Response types
219
+ *
220
+ * message Response {
221
+ * oneof value {
222
+ * ResponseException exception = 1;
223
+ * ResponseEcho echo = 2;
224
+ * ResponseFlush flush = 3;
225
+ * ResponseInfo info = 4;
226
+ * ResponseSetOption set_option = 5;
227
+ * ResponseInitChain init_chain = 6;
228
+ * ResponseQuery query = 7;
229
+ * ResponseBeginBlock begin_block = 8;
230
+ * ResponseCheckTx check_tx = 9;
231
+ * ResponseDeliverTx deliver_tx = 10;
232
+ * ResponseEndBlock end_block = 11;
233
+ * ResponseCommit commit = 12;
234
+ * ResponseListSnapshots list_snapshots = 13;
235
+ * ResponseOfferSnapshot offer_snapshot = 14;
236
+ * ResponseLoadSnapshotChunk load_snapshot_chunk = 15;
237
+ * ResponseApplySnapshotChunk apply_snapshot_chunk = 16;
238
+ * }
239
+ * }
240
+ *
241
+ * nondeterministic
242
+ * message ResponseException {
243
+ * string error = 1;
244
+ * }
245
+ *
246
+ * message ResponseEcho {
247
+ * string message = 1;
248
+ * }
249
+ *
250
+ * message ResponseFlush {}
251
+ *
252
+ * message ResponseInfo {
253
+ * string data = 1;
254
+ *
255
+ * string version = 2;
256
+ * uint64 app_version = 3;
257
+ *
258
+ * int64 last_block_height = 4;
259
+ * bytes last_block_app_hash = 5;
260
+ * }
261
+ *
262
+ * nondeterministic
263
+ * message ResponseSetOption {
264
+ * uint32 code = 1;
265
+ * bytes data = 2;
266
+ * string log = 3;
267
+ * string info = 4;
268
+ * }
269
+ *
270
+ * message ResponseInitChain {
271
+ * ConsensusParams consensus_params = 1;
272
+ * repeated ValidatorUpdate validators = 2 [(gogoproto.nullable) = false];
273
+ * bytes app_hash = 3;
274
+ * }
275
+ */
414
276
  export interface ResponseQuery {
415
277
  code: number;
416
278
  /** bytes data = 2; // use "value" instead. */
@@ -428,6 +290,89 @@ export interface ResponseQueryProtoMsg {
428
290
  typeUrl: '/tendermint.abci.ResponseQuery';
429
291
  value: Uint8Array;
430
292
  }
293
+ /**
294
+ * lists available snapshots
295
+ * message RequestListSnapshots {}
296
+ *
297
+ * offers a snapshot to the application
298
+ * message RequestOfferSnapshot {
299
+ * Snapshot snapshot = 1; // snapshot offered by peers
300
+ * bytes app_hash = 2; // light client-verified app hash for snapshot height
301
+ * }
302
+ *
303
+ * loads a snapshot chunk
304
+ * message RequestLoadSnapshotChunk {
305
+ * uint64 height = 1;
306
+ * uint32 format = 2;
307
+ * uint32 chunk = 3;
308
+ * }
309
+ *
310
+ * Applies a snapshot chunk
311
+ * message RequestApplySnapshotChunk {
312
+ * uint32 index = 1;
313
+ * bytes chunk = 2;
314
+ * string sender = 3;
315
+ * }
316
+ *
317
+ * ----------------------------------------
318
+ * Response types
319
+ *
320
+ * message Response {
321
+ * oneof value {
322
+ * ResponseException exception = 1;
323
+ * ResponseEcho echo = 2;
324
+ * ResponseFlush flush = 3;
325
+ * ResponseInfo info = 4;
326
+ * ResponseSetOption set_option = 5;
327
+ * ResponseInitChain init_chain = 6;
328
+ * ResponseQuery query = 7;
329
+ * ResponseBeginBlock begin_block = 8;
330
+ * ResponseCheckTx check_tx = 9;
331
+ * ResponseDeliverTx deliver_tx = 10;
332
+ * ResponseEndBlock end_block = 11;
333
+ * ResponseCommit commit = 12;
334
+ * ResponseListSnapshots list_snapshots = 13;
335
+ * ResponseOfferSnapshot offer_snapshot = 14;
336
+ * ResponseLoadSnapshotChunk load_snapshot_chunk = 15;
337
+ * ResponseApplySnapshotChunk apply_snapshot_chunk = 16;
338
+ * }
339
+ * }
340
+ *
341
+ * nondeterministic
342
+ * message ResponseException {
343
+ * string error = 1;
344
+ * }
345
+ *
346
+ * message ResponseEcho {
347
+ * string message = 1;
348
+ * }
349
+ *
350
+ * message ResponseFlush {}
351
+ *
352
+ * message ResponseInfo {
353
+ * string data = 1;
354
+ *
355
+ * string version = 2;
356
+ * uint64 app_version = 3;
357
+ *
358
+ * int64 last_block_height = 4;
359
+ * bytes last_block_app_hash = 5;
360
+ * }
361
+ *
362
+ * nondeterministic
363
+ * message ResponseSetOption {
364
+ * uint32 code = 1;
365
+ * bytes data = 2;
366
+ * string log = 3;
367
+ * string info = 4;
368
+ * }
369
+ *
370
+ * message ResponseInitChain {
371
+ * ConsensusParams consensus_params = 1;
372
+ * repeated ValidatorUpdate validators = 2 [(gogoproto.nullable) = false];
373
+ * bytes app_hash = 3;
374
+ * }
375
+ */
431
376
  export interface ResponseQuerySDKType {
432
377
  code: number;
433
378
  log: string;
@@ -528,92 +473,6 @@ export interface ResponseCommitSDKType {
528
473
  data: Uint8Array;
529
474
  retain_height: bigint;
530
475
  }
531
- export interface ResponseListSnapshots {
532
- snapshots: Snapshot[];
533
- }
534
- export interface ResponseListSnapshotsProtoMsg {
535
- typeUrl: '/tendermint.abci.ResponseListSnapshots';
536
- value: Uint8Array;
537
- }
538
- export interface ResponseListSnapshotsSDKType {
539
- snapshots: SnapshotSDKType[];
540
- }
541
- export interface ResponseOfferSnapshot {
542
- result: ResponseOfferSnapshot_Result;
543
- }
544
- export interface ResponseOfferSnapshotProtoMsg {
545
- typeUrl: '/tendermint.abci.ResponseOfferSnapshot';
546
- value: Uint8Array;
547
- }
548
- export interface ResponseOfferSnapshotSDKType {
549
- result: ResponseOfferSnapshot_Result;
550
- }
551
- export interface ResponseLoadSnapshotChunk {
552
- chunk: Uint8Array;
553
- }
554
- export interface ResponseLoadSnapshotChunkProtoMsg {
555
- typeUrl: '/tendermint.abci.ResponseLoadSnapshotChunk';
556
- value: Uint8Array;
557
- }
558
- export interface ResponseLoadSnapshotChunkSDKType {
559
- chunk: Uint8Array;
560
- }
561
- export interface ResponseApplySnapshotChunk {
562
- result: ResponseApplySnapshotChunk_Result;
563
- /** Chunks to refetch and reapply */
564
- refetchChunks: number[];
565
- /** Chunk senders to reject and ban */
566
- rejectSenders: string[];
567
- }
568
- export interface ResponseApplySnapshotChunkProtoMsg {
569
- typeUrl: '/tendermint.abci.ResponseApplySnapshotChunk';
570
- value: Uint8Array;
571
- }
572
- export interface ResponseApplySnapshotChunkSDKType {
573
- result: ResponseApplySnapshotChunk_Result;
574
- refetch_chunks: number[];
575
- reject_senders: string[];
576
- }
577
- /**
578
- * ConsensusParams contains all consensus-relevant parameters
579
- * that can be adjusted by the abci app
580
- */
581
- export interface ConsensusParams {
582
- block?: BlockParams;
583
- evidence?: EvidenceParams;
584
- validator?: ValidatorParams;
585
- version?: VersionParams;
586
- }
587
- export interface ConsensusParamsProtoMsg {
588
- typeUrl: '/tendermint.abci.ConsensusParams';
589
- value: Uint8Array;
590
- }
591
- /**
592
- * ConsensusParams contains all consensus-relevant parameters
593
- * that can be adjusted by the abci app
594
- */
595
- export interface ConsensusParamsSDKType {
596
- block?: BlockParamsSDKType;
597
- evidence?: EvidenceParamsSDKType;
598
- validator?: ValidatorParamsSDKType;
599
- version?: VersionParamsSDKType;
600
- }
601
- /** BlockParams contains limits on the block size. */
602
- export interface BlockParams {
603
- /** Note: must be greater than 0 */
604
- maxBytes: bigint;
605
- /** Note: must be greater or equal to -1 */
606
- maxGas: bigint;
607
- }
608
- export interface BlockParamsProtoMsg {
609
- typeUrl: '/tendermint.abci.BlockParams';
610
- value: Uint8Array;
611
- }
612
- /** BlockParams contains limits on the block size. */
613
- export interface BlockParamsSDKType {
614
- max_bytes: bigint;
615
- max_gas: bigint;
616
- }
617
476
  export interface LastCommitInfo {
618
477
  round: number;
619
478
  votes: VoteInfo[];
@@ -761,95 +620,6 @@ export interface EvidenceSDKType {
761
620
  time: TimestampSDKType;
762
621
  total_voting_power: bigint;
763
622
  }
764
- export interface Snapshot {
765
- /** The height at which the snapshot was taken */
766
- height: bigint;
767
- /** The application-specific snapshot format */
768
- format: number;
769
- /** Number of chunks in the snapshot */
770
- chunks: number;
771
- /** Arbitrary snapshot hash, equal only if identical */
772
- hash: Uint8Array;
773
- /** Arbitrary application metadata */
774
- metadata: Uint8Array;
775
- }
776
- export interface SnapshotProtoMsg {
777
- typeUrl: '/tendermint.abci.Snapshot';
778
- value: Uint8Array;
779
- }
780
- export interface SnapshotSDKType {
781
- height: bigint;
782
- format: number;
783
- chunks: number;
784
- hash: Uint8Array;
785
- metadata: Uint8Array;
786
- }
787
- export declare const Request: {
788
- typeUrl: string;
789
- encode(message: Request, writer?: BinaryWriter): BinaryWriter;
790
- decode(input: BinaryReader | Uint8Array, length?: number): Request;
791
- fromJSON(object: any): Request;
792
- toJSON(message: Request): JsonSafe<Request>;
793
- fromPartial(object: Partial<Request>): Request;
794
- fromProtoMsg(message: RequestProtoMsg): Request;
795
- toProto(message: Request): Uint8Array;
796
- toProtoMsg(message: Request): RequestProtoMsg;
797
- };
798
- export declare const RequestEcho: {
799
- typeUrl: string;
800
- encode(message: RequestEcho, writer?: BinaryWriter): BinaryWriter;
801
- decode(input: BinaryReader | Uint8Array, length?: number): RequestEcho;
802
- fromJSON(object: any): RequestEcho;
803
- toJSON(message: RequestEcho): JsonSafe<RequestEcho>;
804
- fromPartial(object: Partial<RequestEcho>): RequestEcho;
805
- fromProtoMsg(message: RequestEchoProtoMsg): RequestEcho;
806
- toProto(message: RequestEcho): Uint8Array;
807
- toProtoMsg(message: RequestEcho): RequestEchoProtoMsg;
808
- };
809
- export declare const RequestFlush: {
810
- typeUrl: string;
811
- encode(_: RequestFlush, writer?: BinaryWriter): BinaryWriter;
812
- decode(input: BinaryReader | Uint8Array, length?: number): RequestFlush;
813
- fromJSON(_: any): RequestFlush;
814
- toJSON(_: RequestFlush): JsonSafe<RequestFlush>;
815
- fromPartial(_: Partial<RequestFlush>): RequestFlush;
816
- fromProtoMsg(message: RequestFlushProtoMsg): RequestFlush;
817
- toProto(message: RequestFlush): Uint8Array;
818
- toProtoMsg(message: RequestFlush): RequestFlushProtoMsg;
819
- };
820
- export declare const RequestInfo: {
821
- typeUrl: string;
822
- encode(message: RequestInfo, writer?: BinaryWriter): BinaryWriter;
823
- decode(input: BinaryReader | Uint8Array, length?: number): RequestInfo;
824
- fromJSON(object: any): RequestInfo;
825
- toJSON(message: RequestInfo): JsonSafe<RequestInfo>;
826
- fromPartial(object: Partial<RequestInfo>): RequestInfo;
827
- fromProtoMsg(message: RequestInfoProtoMsg): RequestInfo;
828
- toProto(message: RequestInfo): Uint8Array;
829
- toProtoMsg(message: RequestInfo): RequestInfoProtoMsg;
830
- };
831
- export declare const RequestSetOption: {
832
- typeUrl: string;
833
- encode(message: RequestSetOption, writer?: BinaryWriter): BinaryWriter;
834
- decode(input: BinaryReader | Uint8Array, length?: number): RequestSetOption;
835
- fromJSON(object: any): RequestSetOption;
836
- toJSON(message: RequestSetOption): JsonSafe<RequestSetOption>;
837
- fromPartial(object: Partial<RequestSetOption>): RequestSetOption;
838
- fromProtoMsg(message: RequestSetOptionProtoMsg): RequestSetOption;
839
- toProto(message: RequestSetOption): Uint8Array;
840
- toProtoMsg(message: RequestSetOption): RequestSetOptionProtoMsg;
841
- };
842
- export declare const RequestInitChain: {
843
- typeUrl: string;
844
- encode(message: RequestInitChain, writer?: BinaryWriter): BinaryWriter;
845
- decode(input: BinaryReader | Uint8Array, length?: number): RequestInitChain;
846
- fromJSON(object: any): RequestInitChain;
847
- toJSON(message: RequestInitChain): JsonSafe<RequestInitChain>;
848
- fromPartial(object: Partial<RequestInitChain>): RequestInitChain;
849
- fromProtoMsg(message: RequestInitChainProtoMsg): RequestInitChain;
850
- toProto(message: RequestInitChain): Uint8Array;
851
- toProtoMsg(message: RequestInitChain): RequestInitChainProtoMsg;
852
- };
853
623
  export declare const RequestQuery: {
854
624
  typeUrl: string;
855
625
  encode(message: RequestQuery, writer?: BinaryWriter): BinaryWriter;
@@ -916,127 +686,6 @@ export declare const RequestCommit: {
916
686
  toProto(message: RequestCommit): Uint8Array;
917
687
  toProtoMsg(message: RequestCommit): RequestCommitProtoMsg;
918
688
  };
919
- export declare const RequestListSnapshots: {
920
- typeUrl: string;
921
- encode(_: RequestListSnapshots, writer?: BinaryWriter): BinaryWriter;
922
- decode(input: BinaryReader | Uint8Array, length?: number): RequestListSnapshots;
923
- fromJSON(_: any): RequestListSnapshots;
924
- toJSON(_: RequestListSnapshots): JsonSafe<RequestListSnapshots>;
925
- fromPartial(_: Partial<RequestListSnapshots>): RequestListSnapshots;
926
- fromProtoMsg(message: RequestListSnapshotsProtoMsg): RequestListSnapshots;
927
- toProto(message: RequestListSnapshots): Uint8Array;
928
- toProtoMsg(message: RequestListSnapshots): RequestListSnapshotsProtoMsg;
929
- };
930
- export declare const RequestOfferSnapshot: {
931
- typeUrl: string;
932
- encode(message: RequestOfferSnapshot, writer?: BinaryWriter): BinaryWriter;
933
- decode(input: BinaryReader | Uint8Array, length?: number): RequestOfferSnapshot;
934
- fromJSON(object: any): RequestOfferSnapshot;
935
- toJSON(message: RequestOfferSnapshot): JsonSafe<RequestOfferSnapshot>;
936
- fromPartial(object: Partial<RequestOfferSnapshot>): RequestOfferSnapshot;
937
- fromProtoMsg(message: RequestOfferSnapshotProtoMsg): RequestOfferSnapshot;
938
- toProto(message: RequestOfferSnapshot): Uint8Array;
939
- toProtoMsg(message: RequestOfferSnapshot): RequestOfferSnapshotProtoMsg;
940
- };
941
- export declare const RequestLoadSnapshotChunk: {
942
- typeUrl: string;
943
- encode(message: RequestLoadSnapshotChunk, writer?: BinaryWriter): BinaryWriter;
944
- decode(input: BinaryReader | Uint8Array, length?: number): RequestLoadSnapshotChunk;
945
- fromJSON(object: any): RequestLoadSnapshotChunk;
946
- toJSON(message: RequestLoadSnapshotChunk): JsonSafe<RequestLoadSnapshotChunk>;
947
- fromPartial(object: Partial<RequestLoadSnapshotChunk>): RequestLoadSnapshotChunk;
948
- fromProtoMsg(message: RequestLoadSnapshotChunkProtoMsg): RequestLoadSnapshotChunk;
949
- toProto(message: RequestLoadSnapshotChunk): Uint8Array;
950
- toProtoMsg(message: RequestLoadSnapshotChunk): RequestLoadSnapshotChunkProtoMsg;
951
- };
952
- export declare const RequestApplySnapshotChunk: {
953
- typeUrl: string;
954
- encode(message: RequestApplySnapshotChunk, writer?: BinaryWriter): BinaryWriter;
955
- decode(input: BinaryReader | Uint8Array, length?: number): RequestApplySnapshotChunk;
956
- fromJSON(object: any): RequestApplySnapshotChunk;
957
- toJSON(message: RequestApplySnapshotChunk): JsonSafe<RequestApplySnapshotChunk>;
958
- fromPartial(object: Partial<RequestApplySnapshotChunk>): RequestApplySnapshotChunk;
959
- fromProtoMsg(message: RequestApplySnapshotChunkProtoMsg): RequestApplySnapshotChunk;
960
- toProto(message: RequestApplySnapshotChunk): Uint8Array;
961
- toProtoMsg(message: RequestApplySnapshotChunk): RequestApplySnapshotChunkProtoMsg;
962
- };
963
- export declare const Response: {
964
- typeUrl: string;
965
- encode(message: Response, writer?: BinaryWriter): BinaryWriter;
966
- decode(input: BinaryReader | Uint8Array, length?: number): Response;
967
- fromJSON(object: any): Response;
968
- toJSON(message: Response): JsonSafe<Response>;
969
- fromPartial(object: Partial<Response>): Response;
970
- fromProtoMsg(message: ResponseProtoMsg): Response;
971
- toProto(message: Response): Uint8Array;
972
- toProtoMsg(message: Response): ResponseProtoMsg;
973
- };
974
- export declare const ResponseException: {
975
- typeUrl: string;
976
- encode(message: ResponseException, writer?: BinaryWriter): BinaryWriter;
977
- decode(input: BinaryReader | Uint8Array, length?: number): ResponseException;
978
- fromJSON(object: any): ResponseException;
979
- toJSON(message: ResponseException): JsonSafe<ResponseException>;
980
- fromPartial(object: Partial<ResponseException>): ResponseException;
981
- fromProtoMsg(message: ResponseExceptionProtoMsg): ResponseException;
982
- toProto(message: ResponseException): Uint8Array;
983
- toProtoMsg(message: ResponseException): ResponseExceptionProtoMsg;
984
- };
985
- export declare const ResponseEcho: {
986
- typeUrl: string;
987
- encode(message: ResponseEcho, writer?: BinaryWriter): BinaryWriter;
988
- decode(input: BinaryReader | Uint8Array, length?: number): ResponseEcho;
989
- fromJSON(object: any): ResponseEcho;
990
- toJSON(message: ResponseEcho): JsonSafe<ResponseEcho>;
991
- fromPartial(object: Partial<ResponseEcho>): ResponseEcho;
992
- fromProtoMsg(message: ResponseEchoProtoMsg): ResponseEcho;
993
- toProto(message: ResponseEcho): Uint8Array;
994
- toProtoMsg(message: ResponseEcho): ResponseEchoProtoMsg;
995
- };
996
- export declare const ResponseFlush: {
997
- typeUrl: string;
998
- encode(_: ResponseFlush, writer?: BinaryWriter): BinaryWriter;
999
- decode(input: BinaryReader | Uint8Array, length?: number): ResponseFlush;
1000
- fromJSON(_: any): ResponseFlush;
1001
- toJSON(_: ResponseFlush): JsonSafe<ResponseFlush>;
1002
- fromPartial(_: Partial<ResponseFlush>): ResponseFlush;
1003
- fromProtoMsg(message: ResponseFlushProtoMsg): ResponseFlush;
1004
- toProto(message: ResponseFlush): Uint8Array;
1005
- toProtoMsg(message: ResponseFlush): ResponseFlushProtoMsg;
1006
- };
1007
- export declare const ResponseInfo: {
1008
- typeUrl: string;
1009
- encode(message: ResponseInfo, writer?: BinaryWriter): BinaryWriter;
1010
- decode(input: BinaryReader | Uint8Array, length?: number): ResponseInfo;
1011
- fromJSON(object: any): ResponseInfo;
1012
- toJSON(message: ResponseInfo): JsonSafe<ResponseInfo>;
1013
- fromPartial(object: Partial<ResponseInfo>): ResponseInfo;
1014
- fromProtoMsg(message: ResponseInfoProtoMsg): ResponseInfo;
1015
- toProto(message: ResponseInfo): Uint8Array;
1016
- toProtoMsg(message: ResponseInfo): ResponseInfoProtoMsg;
1017
- };
1018
- export declare const ResponseSetOption: {
1019
- typeUrl: string;
1020
- encode(message: ResponseSetOption, writer?: BinaryWriter): BinaryWriter;
1021
- decode(input: BinaryReader | Uint8Array, length?: number): ResponseSetOption;
1022
- fromJSON(object: any): ResponseSetOption;
1023
- toJSON(message: ResponseSetOption): JsonSafe<ResponseSetOption>;
1024
- fromPartial(object: Partial<ResponseSetOption>): ResponseSetOption;
1025
- fromProtoMsg(message: ResponseSetOptionProtoMsg): ResponseSetOption;
1026
- toProto(message: ResponseSetOption): Uint8Array;
1027
- toProtoMsg(message: ResponseSetOption): ResponseSetOptionProtoMsg;
1028
- };
1029
- export declare const ResponseInitChain: {
1030
- typeUrl: string;
1031
- encode(message: ResponseInitChain, writer?: BinaryWriter): BinaryWriter;
1032
- decode(input: BinaryReader | Uint8Array, length?: number): ResponseInitChain;
1033
- fromJSON(object: any): ResponseInitChain;
1034
- toJSON(message: ResponseInitChain): JsonSafe<ResponseInitChain>;
1035
- fromPartial(object: Partial<ResponseInitChain>): ResponseInitChain;
1036
- fromProtoMsg(message: ResponseInitChainProtoMsg): ResponseInitChain;
1037
- toProto(message: ResponseInitChain): Uint8Array;
1038
- toProtoMsg(message: ResponseInitChain): ResponseInitChainProtoMsg;
1039
- };
1040
689
  export declare const ResponseQuery: {
1041
690
  typeUrl: string;
1042
691
  encode(message: ResponseQuery, writer?: BinaryWriter): BinaryWriter;
@@ -1103,72 +752,6 @@ export declare const ResponseCommit: {
1103
752
  toProto(message: ResponseCommit): Uint8Array;
1104
753
  toProtoMsg(message: ResponseCommit): ResponseCommitProtoMsg;
1105
754
  };
1106
- export declare const ResponseListSnapshots: {
1107
- typeUrl: string;
1108
- encode(message: ResponseListSnapshots, writer?: BinaryWriter): BinaryWriter;
1109
- decode(input: BinaryReader | Uint8Array, length?: number): ResponseListSnapshots;
1110
- fromJSON(object: any): ResponseListSnapshots;
1111
- toJSON(message: ResponseListSnapshots): JsonSafe<ResponseListSnapshots>;
1112
- fromPartial(object: Partial<ResponseListSnapshots>): ResponseListSnapshots;
1113
- fromProtoMsg(message: ResponseListSnapshotsProtoMsg): ResponseListSnapshots;
1114
- toProto(message: ResponseListSnapshots): Uint8Array;
1115
- toProtoMsg(message: ResponseListSnapshots): ResponseListSnapshotsProtoMsg;
1116
- };
1117
- export declare const ResponseOfferSnapshot: {
1118
- typeUrl: string;
1119
- encode(message: ResponseOfferSnapshot, writer?: BinaryWriter): BinaryWriter;
1120
- decode(input: BinaryReader | Uint8Array, length?: number): ResponseOfferSnapshot;
1121
- fromJSON(object: any): ResponseOfferSnapshot;
1122
- toJSON(message: ResponseOfferSnapshot): JsonSafe<ResponseOfferSnapshot>;
1123
- fromPartial(object: Partial<ResponseOfferSnapshot>): ResponseOfferSnapshot;
1124
- fromProtoMsg(message: ResponseOfferSnapshotProtoMsg): ResponseOfferSnapshot;
1125
- toProto(message: ResponseOfferSnapshot): Uint8Array;
1126
- toProtoMsg(message: ResponseOfferSnapshot): ResponseOfferSnapshotProtoMsg;
1127
- };
1128
- export declare const ResponseLoadSnapshotChunk: {
1129
- typeUrl: string;
1130
- encode(message: ResponseLoadSnapshotChunk, writer?: BinaryWriter): BinaryWriter;
1131
- decode(input: BinaryReader | Uint8Array, length?: number): ResponseLoadSnapshotChunk;
1132
- fromJSON(object: any): ResponseLoadSnapshotChunk;
1133
- toJSON(message: ResponseLoadSnapshotChunk): JsonSafe<ResponseLoadSnapshotChunk>;
1134
- fromPartial(object: Partial<ResponseLoadSnapshotChunk>): ResponseLoadSnapshotChunk;
1135
- fromProtoMsg(message: ResponseLoadSnapshotChunkProtoMsg): ResponseLoadSnapshotChunk;
1136
- toProto(message: ResponseLoadSnapshotChunk): Uint8Array;
1137
- toProtoMsg(message: ResponseLoadSnapshotChunk): ResponseLoadSnapshotChunkProtoMsg;
1138
- };
1139
- export declare const ResponseApplySnapshotChunk: {
1140
- typeUrl: string;
1141
- encode(message: ResponseApplySnapshotChunk, writer?: BinaryWriter): BinaryWriter;
1142
- decode(input: BinaryReader | Uint8Array, length?: number): ResponseApplySnapshotChunk;
1143
- fromJSON(object: any): ResponseApplySnapshotChunk;
1144
- toJSON(message: ResponseApplySnapshotChunk): JsonSafe<ResponseApplySnapshotChunk>;
1145
- fromPartial(object: Partial<ResponseApplySnapshotChunk>): ResponseApplySnapshotChunk;
1146
- fromProtoMsg(message: ResponseApplySnapshotChunkProtoMsg): ResponseApplySnapshotChunk;
1147
- toProto(message: ResponseApplySnapshotChunk): Uint8Array;
1148
- toProtoMsg(message: ResponseApplySnapshotChunk): ResponseApplySnapshotChunkProtoMsg;
1149
- };
1150
- export declare const ConsensusParams: {
1151
- typeUrl: string;
1152
- encode(message: ConsensusParams, writer?: BinaryWriter): BinaryWriter;
1153
- decode(input: BinaryReader | Uint8Array, length?: number): ConsensusParams;
1154
- fromJSON(object: any): ConsensusParams;
1155
- toJSON(message: ConsensusParams): JsonSafe<ConsensusParams>;
1156
- fromPartial(object: Partial<ConsensusParams>): ConsensusParams;
1157
- fromProtoMsg(message: ConsensusParamsProtoMsg): ConsensusParams;
1158
- toProto(message: ConsensusParams): Uint8Array;
1159
- toProtoMsg(message: ConsensusParams): ConsensusParamsProtoMsg;
1160
- };
1161
- export declare const BlockParams: {
1162
- typeUrl: string;
1163
- encode(message: BlockParams, writer?: BinaryWriter): BinaryWriter;
1164
- decode(input: BinaryReader | Uint8Array, length?: number): BlockParams;
1165
- fromJSON(object: any): BlockParams;
1166
- toJSON(message: BlockParams): JsonSafe<BlockParams>;
1167
- fromPartial(object: Partial<BlockParams>): BlockParams;
1168
- fromProtoMsg(message: BlockParamsProtoMsg): BlockParams;
1169
- toProto(message: BlockParams): Uint8Array;
1170
- toProtoMsg(message: BlockParams): BlockParamsProtoMsg;
1171
- };
1172
755
  export declare const LastCommitInfo: {
1173
756
  typeUrl: string;
1174
757
  encode(message: LastCommitInfo, writer?: BinaryWriter): BinaryWriter;
@@ -1257,14 +840,3 @@ export declare const Evidence: {
1257
840
  toProto(message: Evidence): Uint8Array;
1258
841
  toProtoMsg(message: Evidence): EvidenceProtoMsg;
1259
842
  };
1260
- export declare const Snapshot: {
1261
- typeUrl: string;
1262
- encode(message: Snapshot, writer?: BinaryWriter): BinaryWriter;
1263
- decode(input: BinaryReader | Uint8Array, length?: number): Snapshot;
1264
- fromJSON(object: any): Snapshot;
1265
- toJSON(message: Snapshot): JsonSafe<Snapshot>;
1266
- fromPartial(object: Partial<Snapshot>): Snapshot;
1267
- fromProtoMsg(message: SnapshotProtoMsg): Snapshot;
1268
- toProto(message: Snapshot): Uint8Array;
1269
- toProtoMsg(message: Snapshot): SnapshotProtoMsg;
1270
- };