juno-network 0.10.0 → 0.11.0

Sign up to get free protection for your applications and to get access to all the features.
@@ -30,954 +30,254 @@ export declare namespace tendermint {
30
30
  Request: {
31
31
  encode(message: _82.Request, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
32
32
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _82.Request;
33
- fromPartial(object: {
34
- echo?: {
35
- message?: string;
36
- };
37
- flush?: {};
38
- info?: {
39
- version?: string;
40
- blockVersion?: any;
41
- p2pVersion?: any;
42
- };
43
- setOption?: {
44
- key?: string;
45
- value?: string;
46
- };
47
- initChain?: {
48
- time?: Date;
49
- chainId?: string;
50
- consensusParams?: {
51
- block?: {
52
- maxBytes?: any;
53
- maxGas?: any;
54
- };
55
- evidence?: {
56
- maxAgeNumBlocks?: any;
57
- maxAgeDuration?: {
58
- seconds?: any;
59
- nanos?: number;
60
- };
61
- maxBytes?: any;
62
- };
63
- validator?: {
64
- pubKeyTypes?: string[];
65
- };
66
- version?: {
67
- appVersion?: any;
68
- };
69
- };
70
- validators?: {
71
- pubKey?: {
72
- ed25519?: Uint8Array;
73
- secp256k1?: Uint8Array;
74
- };
75
- power?: any;
76
- }[];
77
- appStateBytes?: Uint8Array;
78
- initialHeight?: any;
79
- };
80
- query?: {
81
- data?: Uint8Array;
82
- path?: string;
83
- height?: any;
84
- prove?: boolean;
85
- };
86
- beginBlock?: {
87
- hash?: Uint8Array;
88
- header?: {
89
- version?: {
90
- block?: any;
91
- app?: any;
92
- };
93
- chainId?: string;
94
- height?: any;
95
- time?: Date;
96
- lastBlockId?: {
97
- hash?: Uint8Array;
98
- partSetHeader?: {
99
- total?: number;
100
- hash?: Uint8Array;
101
- };
102
- };
103
- lastCommitHash?: Uint8Array;
104
- dataHash?: Uint8Array;
105
- validatorsHash?: Uint8Array;
106
- nextValidatorsHash?: Uint8Array;
107
- consensusHash?: Uint8Array;
108
- appHash?: Uint8Array;
109
- lastResultsHash?: Uint8Array;
110
- evidenceHash?: Uint8Array;
111
- proposerAddress?: Uint8Array;
112
- };
113
- lastCommitInfo?: {
114
- round?: number;
115
- votes?: {
116
- validator?: {
117
- address?: Uint8Array;
118
- power?: any;
119
- };
120
- signedLastBlock?: boolean;
121
- }[];
122
- };
123
- byzantineValidators?: {
124
- type?: _82.EvidenceType;
125
- validator?: {
126
- address?: Uint8Array;
127
- power?: any;
128
- };
129
- height?: any;
130
- time?: Date;
131
- totalVotingPower?: any;
132
- }[];
133
- };
134
- checkTx?: {
135
- tx?: Uint8Array;
136
- type?: _82.CheckTxType;
137
- };
138
- deliverTx?: {
139
- tx?: Uint8Array;
140
- };
141
- endBlock?: {
142
- height?: any;
143
- };
144
- commit?: {};
145
- listSnapshots?: {};
146
- offerSnapshot?: {
147
- snapshot?: {
148
- height?: any;
149
- format?: number;
150
- chunks?: number;
151
- hash?: Uint8Array;
152
- metadata?: Uint8Array;
153
- };
154
- appHash?: Uint8Array;
155
- };
156
- loadSnapshotChunk?: {
157
- height?: any;
158
- format?: number;
159
- chunk?: number;
160
- };
161
- applySnapshotChunk?: {
162
- index?: number;
163
- chunk?: Uint8Array;
164
- sender?: string;
165
- };
166
- }): _82.Request;
33
+ fromPartial(object: any): _82.Request;
167
34
  };
168
35
  RequestEcho: {
169
36
  encode(message: _82.RequestEcho, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
170
37
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _82.RequestEcho;
171
- fromPartial(object: {
172
- message?: string;
173
- }): _82.RequestEcho;
38
+ fromPartial(object: any): _82.RequestEcho;
174
39
  };
175
40
  RequestFlush: {
176
41
  encode(_: _82.RequestFlush, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
177
42
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _82.RequestFlush;
178
- fromPartial(_: {}): _82.RequestFlush;
43
+ fromPartial(_: any): _82.RequestFlush;
179
44
  };
180
45
  RequestInfo: {
181
46
  encode(message: _82.RequestInfo, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
182
47
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _82.RequestInfo;
183
- fromPartial(object: {
184
- version?: string;
185
- blockVersion?: any;
186
- p2pVersion?: any;
187
- }): _82.RequestInfo;
48
+ fromPartial(object: any): _82.RequestInfo;
188
49
  };
189
50
  RequestSetOption: {
190
51
  encode(message: _82.RequestSetOption, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
191
52
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _82.RequestSetOption;
192
- fromPartial(object: {
193
- key?: string;
194
- value?: string;
195
- }): _82.RequestSetOption;
53
+ fromPartial(object: any): _82.RequestSetOption;
196
54
  };
197
55
  RequestInitChain: {
198
56
  encode(message: _82.RequestInitChain, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
199
57
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _82.RequestInitChain;
200
- fromPartial(object: {
201
- time?: Date;
202
- chainId?: string;
203
- consensusParams?: {
204
- block?: {
205
- maxBytes?: any;
206
- maxGas?: any;
207
- };
208
- evidence?: {
209
- maxAgeNumBlocks?: any;
210
- maxAgeDuration?: {
211
- seconds?: any;
212
- nanos?: number;
213
- };
214
- maxBytes?: any;
215
- };
216
- validator?: {
217
- pubKeyTypes?: string[];
218
- };
219
- version?: {
220
- appVersion?: any;
221
- };
222
- };
223
- validators?: {
224
- pubKey?: {
225
- ed25519?: Uint8Array;
226
- secp256k1?: Uint8Array;
227
- };
228
- power?: any;
229
- }[];
230
- appStateBytes?: Uint8Array;
231
- initialHeight?: any;
232
- }): _82.RequestInitChain;
58
+ fromPartial(object: any): _82.RequestInitChain;
233
59
  };
234
60
  RequestQuery: {
235
61
  encode(message: _82.RequestQuery, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
236
62
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _82.RequestQuery;
237
- fromPartial(object: {
238
- data?: Uint8Array;
239
- path?: string;
240
- height?: any;
241
- prove?: boolean;
242
- }): _82.RequestQuery;
63
+ fromPartial(object: any): _82.RequestQuery;
243
64
  };
244
65
  RequestBeginBlock: {
245
66
  encode(message: _82.RequestBeginBlock, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
246
67
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _82.RequestBeginBlock;
247
- fromPartial(object: {
248
- hash?: Uint8Array;
249
- header?: {
250
- version?: {
251
- block?: any;
252
- app?: any;
253
- };
254
- chainId?: string;
255
- height?: any;
256
- time?: Date;
257
- lastBlockId?: {
258
- hash?: Uint8Array;
259
- partSetHeader?: {
260
- total?: number;
261
- hash?: Uint8Array;
262
- };
263
- };
264
- lastCommitHash?: Uint8Array;
265
- dataHash?: Uint8Array;
266
- validatorsHash?: Uint8Array;
267
- nextValidatorsHash?: Uint8Array;
268
- consensusHash?: Uint8Array;
269
- appHash?: Uint8Array;
270
- lastResultsHash?: Uint8Array;
271
- evidenceHash?: Uint8Array;
272
- proposerAddress?: Uint8Array;
273
- };
274
- lastCommitInfo?: {
275
- round?: number;
276
- votes?: {
277
- validator?: {
278
- address?: Uint8Array;
279
- power?: any;
280
- };
281
- signedLastBlock?: boolean;
282
- }[];
283
- };
284
- byzantineValidators?: {
285
- type?: _82.EvidenceType;
286
- validator?: {
287
- address?: Uint8Array;
288
- power?: any;
289
- };
290
- height?: any;
291
- time?: Date;
292
- totalVotingPower?: any;
293
- }[];
294
- }): _82.RequestBeginBlock;
68
+ fromPartial(object: any): _82.RequestBeginBlock;
295
69
  };
296
70
  RequestCheckTx: {
297
71
  encode(message: _82.RequestCheckTx, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
298
72
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _82.RequestCheckTx;
299
- fromPartial(object: {
300
- tx?: Uint8Array;
301
- type?: _82.CheckTxType;
302
- }): _82.RequestCheckTx;
73
+ fromPartial(object: any): _82.RequestCheckTx;
303
74
  };
304
75
  RequestDeliverTx: {
305
76
  encode(message: _82.RequestDeliverTx, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
306
77
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _82.RequestDeliverTx;
307
- fromPartial(object: {
308
- tx?: Uint8Array;
309
- }): _82.RequestDeliverTx;
78
+ fromPartial(object: any): _82.RequestDeliverTx;
310
79
  };
311
80
  RequestEndBlock: {
312
81
  encode(message: _82.RequestEndBlock, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
313
82
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _82.RequestEndBlock;
314
- fromPartial(object: {
315
- height?: any;
316
- }): _82.RequestEndBlock;
83
+ fromPartial(object: any): _82.RequestEndBlock;
317
84
  };
318
85
  RequestCommit: {
319
86
  encode(_: _82.RequestCommit, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
320
87
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _82.RequestCommit;
321
- fromPartial(_: {}): _82.RequestCommit;
88
+ fromPartial(_: any): _82.RequestCommit;
322
89
  };
323
90
  RequestListSnapshots: {
324
91
  encode(_: _82.RequestListSnapshots, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
325
92
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _82.RequestListSnapshots;
326
- fromPartial(_: {}): _82.RequestListSnapshots;
93
+ fromPartial(_: any): _82.RequestListSnapshots;
327
94
  };
328
95
  RequestOfferSnapshot: {
329
96
  encode(message: _82.RequestOfferSnapshot, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
330
97
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _82.RequestOfferSnapshot;
331
- fromPartial(object: {
332
- snapshot?: {
333
- height?: any;
334
- format?: number;
335
- chunks?: number;
336
- hash?: Uint8Array;
337
- metadata?: Uint8Array;
338
- };
339
- appHash?: Uint8Array;
340
- }): _82.RequestOfferSnapshot;
98
+ fromPartial(object: any): _82.RequestOfferSnapshot;
341
99
  };
342
100
  RequestLoadSnapshotChunk: {
343
101
  encode(message: _82.RequestLoadSnapshotChunk, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
344
102
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _82.RequestLoadSnapshotChunk;
345
- fromPartial(object: {
346
- height?: any;
347
- format?: number;
348
- chunk?: number;
349
- }): _82.RequestLoadSnapshotChunk;
103
+ fromPartial(object: any): _82.RequestLoadSnapshotChunk;
350
104
  };
351
105
  RequestApplySnapshotChunk: {
352
106
  encode(message: _82.RequestApplySnapshotChunk, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
353
107
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _82.RequestApplySnapshotChunk;
354
- fromPartial(object: {
355
- index?: number;
356
- chunk?: Uint8Array;
357
- sender?: string;
358
- }): _82.RequestApplySnapshotChunk;
108
+ fromPartial(object: any): _82.RequestApplySnapshotChunk;
359
109
  };
360
110
  Response: {
361
111
  encode(message: _82.Response, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
362
112
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _82.Response;
363
- fromPartial(object: {
364
- exception?: {
365
- error?: string;
366
- };
367
- echo?: {
368
- message?: string;
369
- };
370
- flush?: {};
371
- info?: {
372
- data?: string;
373
- version?: string;
374
- appVersion?: any;
375
- lastBlockHeight?: any;
376
- lastBlockAppHash?: Uint8Array;
377
- };
378
- setOption?: {
379
- code?: number;
380
- log?: string;
381
- info?: string;
382
- };
383
- initChain?: {
384
- consensusParams?: {
385
- block?: {
386
- maxBytes?: any;
387
- maxGas?: any;
388
- };
389
- evidence?: {
390
- maxAgeNumBlocks?: any;
391
- maxAgeDuration?: {
392
- seconds?: any;
393
- nanos?: number;
394
- };
395
- maxBytes?: any;
396
- };
397
- validator?: {
398
- pubKeyTypes?: string[];
399
- };
400
- version?: {
401
- appVersion?: any;
402
- };
403
- };
404
- validators?: {
405
- pubKey?: {
406
- ed25519?: Uint8Array;
407
- secp256k1?: Uint8Array;
408
- };
409
- power?: any;
410
- }[];
411
- appHash?: Uint8Array;
412
- };
413
- query?: {
414
- code?: number;
415
- log?: string;
416
- info?: string;
417
- index?: any;
418
- key?: Uint8Array;
419
- value?: Uint8Array;
420
- proofOps?: {
421
- ops?: {
422
- type?: string;
423
- key?: Uint8Array;
424
- data?: Uint8Array;
425
- }[];
426
- };
427
- height?: any;
428
- codespace?: string;
429
- };
430
- beginBlock?: {
431
- events?: {
432
- type?: string;
433
- attributes?: {
434
- key?: Uint8Array;
435
- value?: Uint8Array;
436
- index?: boolean;
437
- }[];
438
- }[];
439
- };
440
- checkTx?: {
441
- code?: number;
442
- data?: Uint8Array;
443
- log?: string;
444
- info?: string;
445
- gasWanted?: any;
446
- gasUsed?: any;
447
- events?: {
448
- type?: string;
449
- attributes?: {
450
- key?: Uint8Array;
451
- value?: Uint8Array;
452
- index?: boolean;
453
- }[];
454
- }[];
455
- codespace?: string;
456
- };
457
- deliverTx?: {
458
- code?: number;
459
- data?: Uint8Array;
460
- log?: string;
461
- info?: string;
462
- gasWanted?: any;
463
- gasUsed?: any;
464
- events?: {
465
- type?: string;
466
- attributes?: {
467
- key?: Uint8Array;
468
- value?: Uint8Array;
469
- index?: boolean;
470
- }[];
471
- }[];
472
- codespace?: string;
473
- };
474
- endBlock?: {
475
- validatorUpdates?: {
476
- pubKey?: {
477
- ed25519?: Uint8Array;
478
- secp256k1?: Uint8Array;
479
- };
480
- power?: any;
481
- }[];
482
- consensusParamUpdates?: {
483
- block?: {
484
- maxBytes?: any;
485
- maxGas?: any;
486
- };
487
- evidence?: {
488
- maxAgeNumBlocks?: any;
489
- maxAgeDuration?: {
490
- seconds?: any;
491
- nanos?: number;
492
- };
493
- maxBytes?: any;
494
- };
495
- validator?: {
496
- pubKeyTypes?: string[];
497
- };
498
- version?: {
499
- appVersion?: any;
500
- };
501
- };
502
- events?: {
503
- type?: string;
504
- attributes?: {
505
- key?: Uint8Array;
506
- value?: Uint8Array;
507
- index?: boolean;
508
- }[];
509
- }[];
510
- };
511
- commit?: {
512
- data?: Uint8Array;
513
- retainHeight?: any;
514
- };
515
- listSnapshots?: {
516
- snapshots?: {
517
- height?: any;
518
- format?: number;
519
- chunks?: number;
520
- hash?: Uint8Array;
521
- metadata?: Uint8Array;
522
- }[];
523
- };
524
- offerSnapshot?: {
525
- result?: _82.ResponseOfferSnapshot_Result;
526
- };
527
- loadSnapshotChunk?: {
528
- chunk?: Uint8Array;
529
- };
530
- applySnapshotChunk?: {
531
- result?: _82.ResponseApplySnapshotChunk_Result;
532
- refetchChunks?: number[];
533
- rejectSenders?: string[];
534
- };
535
- }): _82.Response;
113
+ fromPartial(object: any): _82.Response;
536
114
  };
537
115
  ResponseException: {
538
116
  encode(message: _82.ResponseException, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
539
117
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _82.ResponseException;
540
- fromPartial(object: {
541
- error?: string;
542
- }): _82.ResponseException;
118
+ fromPartial(object: any): _82.ResponseException;
543
119
  };
544
120
  ResponseEcho: {
545
121
  encode(message: _82.ResponseEcho, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
546
122
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _82.ResponseEcho;
547
- fromPartial(object: {
548
- message?: string;
549
- }): _82.ResponseEcho;
123
+ fromPartial(object: any): _82.ResponseEcho;
550
124
  };
551
125
  ResponseFlush: {
552
126
  encode(_: _82.ResponseFlush, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
553
127
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _82.ResponseFlush;
554
- fromPartial(_: {}): _82.ResponseFlush;
128
+ fromPartial(_: any): _82.ResponseFlush;
555
129
  };
556
130
  ResponseInfo: {
557
131
  encode(message: _82.ResponseInfo, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
558
132
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _82.ResponseInfo;
559
- fromPartial(object: {
560
- data?: string;
561
- version?: string;
562
- appVersion?: any;
563
- lastBlockHeight?: any;
564
- lastBlockAppHash?: Uint8Array;
565
- }): _82.ResponseInfo;
133
+ fromPartial(object: any): _82.ResponseInfo;
566
134
  };
567
135
  ResponseSetOption: {
568
136
  encode(message: _82.ResponseSetOption, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
569
137
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _82.ResponseSetOption;
570
- fromPartial(object: {
571
- code?: number;
572
- log?: string;
573
- info?: string;
574
- }): _82.ResponseSetOption;
138
+ fromPartial(object: any): _82.ResponseSetOption;
575
139
  };
576
140
  ResponseInitChain: {
577
141
  encode(message: _82.ResponseInitChain, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
578
142
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _82.ResponseInitChain;
579
- fromPartial(object: {
580
- consensusParams?: {
581
- block?: {
582
- maxBytes?: any;
583
- maxGas?: any;
584
- };
585
- evidence?: {
586
- maxAgeNumBlocks?: any;
587
- maxAgeDuration?: {
588
- seconds?: any;
589
- nanos?: number;
590
- };
591
- maxBytes?: any;
592
- };
593
- validator?: {
594
- pubKeyTypes?: string[];
595
- };
596
- version?: {
597
- appVersion?: any;
598
- };
599
- };
600
- validators?: {
601
- pubKey?: {
602
- ed25519?: Uint8Array;
603
- secp256k1?: Uint8Array;
604
- };
605
- power?: any;
606
- }[];
607
- appHash?: Uint8Array;
608
- }): _82.ResponseInitChain;
143
+ fromPartial(object: any): _82.ResponseInitChain;
609
144
  };
610
145
  ResponseQuery: {
611
146
  encode(message: _82.ResponseQuery, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
612
147
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _82.ResponseQuery;
613
- fromPartial(object: {
614
- code?: number;
615
- log?: string;
616
- info?: string;
617
- index?: any;
618
- key?: Uint8Array;
619
- value?: Uint8Array;
620
- proofOps?: {
621
- ops?: {
622
- type?: string;
623
- key?: Uint8Array;
624
- data?: Uint8Array;
625
- }[];
626
- };
627
- height?: any;
628
- codespace?: string;
629
- }): _82.ResponseQuery;
148
+ fromPartial(object: any): _82.ResponseQuery;
630
149
  };
631
150
  ResponseBeginBlock: {
632
151
  encode(message: _82.ResponseBeginBlock, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
633
152
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _82.ResponseBeginBlock;
634
- fromPartial(object: {
635
- events?: {
636
- type?: string;
637
- attributes?: {
638
- key?: Uint8Array;
639
- value?: Uint8Array;
640
- index?: boolean;
641
- }[];
642
- }[];
643
- }): _82.ResponseBeginBlock;
153
+ fromPartial(object: any): _82.ResponseBeginBlock;
644
154
  };
645
155
  ResponseCheckTx: {
646
156
  encode(message: _82.ResponseCheckTx, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
647
157
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _82.ResponseCheckTx;
648
- fromPartial(object: {
649
- code?: number;
650
- data?: Uint8Array;
651
- log?: string;
652
- info?: string;
653
- gasWanted?: any;
654
- gasUsed?: any;
655
- events?: {
656
- type?: string;
657
- attributes?: {
658
- key?: Uint8Array;
659
- value?: Uint8Array;
660
- index?: boolean;
661
- }[];
662
- }[];
663
- codespace?: string;
664
- }): _82.ResponseCheckTx;
158
+ fromPartial(object: any): _82.ResponseCheckTx;
665
159
  };
666
160
  ResponseDeliverTx: {
667
161
  encode(message: _82.ResponseDeliverTx, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
668
162
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _82.ResponseDeliverTx;
669
- fromPartial(object: {
670
- code?: number;
671
- data?: Uint8Array;
672
- log?: string;
673
- info?: string;
674
- gasWanted?: any;
675
- gasUsed?: any;
676
- events?: {
677
- type?: string;
678
- attributes?: {
679
- key?: Uint8Array;
680
- value?: Uint8Array;
681
- index?: boolean;
682
- }[];
683
- }[];
684
- codespace?: string;
685
- }): _82.ResponseDeliverTx;
163
+ fromPartial(object: any): _82.ResponseDeliverTx;
686
164
  };
687
165
  ResponseEndBlock: {
688
166
  encode(message: _82.ResponseEndBlock, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
689
167
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _82.ResponseEndBlock;
690
- fromPartial(object: {
691
- validatorUpdates?: {
692
- pubKey?: {
693
- ed25519?: Uint8Array;
694
- secp256k1?: Uint8Array;
695
- };
696
- power?: any;
697
- }[];
698
- consensusParamUpdates?: {
699
- block?: {
700
- maxBytes?: any;
701
- maxGas?: any;
702
- };
703
- evidence?: {
704
- maxAgeNumBlocks?: any;
705
- maxAgeDuration?: {
706
- seconds?: any;
707
- nanos?: number;
708
- };
709
- maxBytes?: any;
710
- };
711
- validator?: {
712
- pubKeyTypes?: string[];
713
- };
714
- version?: {
715
- appVersion?: any;
716
- };
717
- };
718
- events?: {
719
- type?: string;
720
- attributes?: {
721
- key?: Uint8Array;
722
- value?: Uint8Array;
723
- index?: boolean;
724
- }[];
725
- }[];
726
- }): _82.ResponseEndBlock;
168
+ fromPartial(object: any): _82.ResponseEndBlock;
727
169
  };
728
170
  ResponseCommit: {
729
171
  encode(message: _82.ResponseCommit, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
730
172
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _82.ResponseCommit;
731
- fromPartial(object: {
732
- data?: Uint8Array;
733
- retainHeight?: any;
734
- }): _82.ResponseCommit;
173
+ fromPartial(object: any): _82.ResponseCommit;
735
174
  };
736
175
  ResponseListSnapshots: {
737
176
  encode(message: _82.ResponseListSnapshots, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
738
177
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _82.ResponseListSnapshots;
739
- fromPartial(object: {
740
- snapshots?: {
741
- height?: any;
742
- format?: number;
743
- chunks?: number;
744
- hash?: Uint8Array;
745
- metadata?: Uint8Array;
746
- }[];
747
- }): _82.ResponseListSnapshots;
178
+ fromPartial(object: any): _82.ResponseListSnapshots;
748
179
  };
749
180
  ResponseOfferSnapshot: {
750
181
  encode(message: _82.ResponseOfferSnapshot, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
751
182
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _82.ResponseOfferSnapshot;
752
- fromPartial(object: {
753
- result?: _82.ResponseOfferSnapshot_Result;
754
- }): _82.ResponseOfferSnapshot;
183
+ fromPartial(object: any): _82.ResponseOfferSnapshot;
755
184
  };
756
185
  ResponseLoadSnapshotChunk: {
757
186
  encode(message: _82.ResponseLoadSnapshotChunk, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
758
187
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _82.ResponseLoadSnapshotChunk;
759
- fromPartial(object: {
760
- chunk?: Uint8Array;
761
- }): _82.ResponseLoadSnapshotChunk;
188
+ fromPartial(object: any): _82.ResponseLoadSnapshotChunk;
762
189
  };
763
190
  ResponseApplySnapshotChunk: {
764
191
  encode(message: _82.ResponseApplySnapshotChunk, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
765
192
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _82.ResponseApplySnapshotChunk;
766
- fromPartial(object: {
767
- result?: _82.ResponseApplySnapshotChunk_Result;
768
- refetchChunks?: number[];
769
- rejectSenders?: string[];
770
- }): _82.ResponseApplySnapshotChunk;
193
+ fromPartial(object: any): _82.ResponseApplySnapshotChunk;
771
194
  };
772
195
  ConsensusParams: {
773
196
  encode(message: _82.ConsensusParams, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
774
197
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _82.ConsensusParams;
775
- fromPartial(object: {
776
- block?: {
777
- maxBytes?: any;
778
- maxGas?: any;
779
- };
780
- evidence?: {
781
- maxAgeNumBlocks?: any;
782
- maxAgeDuration?: {
783
- seconds?: any;
784
- nanos?: number;
785
- };
786
- maxBytes?: any;
787
- };
788
- validator?: {
789
- pubKeyTypes?: string[];
790
- };
791
- version?: {
792
- appVersion?: any;
793
- };
794
- }): _82.ConsensusParams;
198
+ fromPartial(object: any): _82.ConsensusParams;
795
199
  };
796
200
  BlockParams: {
797
201
  encode(message: _82.BlockParams, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
798
202
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _82.BlockParams;
799
- fromPartial(object: {
800
- maxBytes?: any;
801
- maxGas?: any;
802
- }): _82.BlockParams;
203
+ fromPartial(object: any): _82.BlockParams;
803
204
  };
804
205
  LastCommitInfo: {
805
206
  encode(message: _82.LastCommitInfo, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
806
207
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _82.LastCommitInfo;
807
- fromPartial(object: {
808
- round?: number;
809
- votes?: {
810
- validator?: {
811
- address?: Uint8Array;
812
- power?: any;
813
- };
814
- signedLastBlock?: boolean;
815
- }[];
816
- }): _82.LastCommitInfo;
208
+ fromPartial(object: any): _82.LastCommitInfo;
817
209
  };
818
210
  Event: {
819
211
  encode(message: _82.Event, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
820
212
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _82.Event;
821
- fromPartial(object: {
822
- type?: string;
823
- attributes?: {
824
- key?: Uint8Array;
825
- value?: Uint8Array;
826
- index?: boolean;
827
- }[];
828
- }): _82.Event;
213
+ fromPartial(object: any): _82.Event;
829
214
  };
830
215
  EventAttribute: {
831
216
  encode(message: _82.EventAttribute, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
832
217
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _82.EventAttribute;
833
- fromPartial(object: {
834
- key?: Uint8Array;
835
- value?: Uint8Array;
836
- index?: boolean;
837
- }): _82.EventAttribute;
218
+ fromPartial(object: any): _82.EventAttribute;
838
219
  };
839
220
  TxResult: {
840
221
  encode(message: _82.TxResult, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
841
222
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _82.TxResult;
842
- fromPartial(object: {
843
- height?: any;
844
- index?: number;
845
- tx?: Uint8Array;
846
- result?: {
847
- code?: number;
848
- data?: Uint8Array;
849
- log?: string;
850
- info?: string;
851
- gasWanted?: any;
852
- gasUsed?: any;
853
- events?: {
854
- type?: string;
855
- attributes?: {
856
- key?: Uint8Array;
857
- value?: Uint8Array;
858
- index?: boolean;
859
- }[];
860
- }[];
861
- codespace?: string;
862
- };
863
- }): _82.TxResult;
223
+ fromPartial(object: any): _82.TxResult;
864
224
  };
865
225
  Validator: {
866
226
  encode(message: _82.Validator, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
867
227
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _82.Validator;
868
- fromPartial(object: {
869
- address?: Uint8Array;
870
- power?: any;
871
- }): _82.Validator;
228
+ fromPartial(object: any): _82.Validator;
872
229
  };
873
230
  ValidatorUpdate: {
874
231
  encode(message: _82.ValidatorUpdate, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
875
232
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _82.ValidatorUpdate;
876
- fromPartial(object: {
877
- pubKey?: {
878
- ed25519?: Uint8Array;
879
- secp256k1?: Uint8Array;
880
- };
881
- power?: any;
882
- }): _82.ValidatorUpdate;
233
+ fromPartial(object: any): _82.ValidatorUpdate;
883
234
  };
884
235
  VoteInfo: {
885
236
  encode(message: _82.VoteInfo, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
886
237
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _82.VoteInfo;
887
- fromPartial(object: {
888
- validator?: {
889
- address?: Uint8Array;
890
- power?: any;
891
- };
892
- signedLastBlock?: boolean;
893
- }): _82.VoteInfo;
238
+ fromPartial(object: any): _82.VoteInfo;
894
239
  };
895
240
  Evidence: {
896
241
  encode(message: _82.Evidence, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
897
242
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _82.Evidence;
898
- fromPartial(object: {
899
- type?: _82.EvidenceType;
900
- validator?: {
901
- address?: Uint8Array;
902
- power?: any;
903
- };
904
- height?: any;
905
- time?: Date;
906
- totalVotingPower?: any;
907
- }): _82.Evidence;
243
+ fromPartial(object: any): _82.Evidence;
908
244
  };
909
245
  Snapshot: {
910
246
  encode(message: _82.Snapshot, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
911
247
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _82.Snapshot;
912
- fromPartial(object: {
913
- height?: any;
914
- format?: number;
915
- chunks?: number;
916
- hash?: Uint8Array;
917
- metadata?: Uint8Array;
918
- }): _82.Snapshot;
248
+ fromPartial(object: any): _82.Snapshot;
919
249
  };
920
250
  };
921
251
  const crypto: {
922
252
  Proof: {
923
253
  encode(message: _84.Proof, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
924
254
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _84.Proof;
925
- fromPartial(object: {
926
- total?: any;
927
- index?: any;
928
- leafHash?: Uint8Array;
929
- aunts?: Uint8Array[];
930
- }): _84.Proof;
255
+ fromPartial(object: any): _84.Proof;
931
256
  };
932
257
  ValueOp: {
933
258
  encode(message: _84.ValueOp, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
934
259
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _84.ValueOp;
935
- fromPartial(object: {
936
- key?: Uint8Array;
937
- proof?: {
938
- total?: any;
939
- index?: any;
940
- leafHash?: Uint8Array;
941
- aunts?: Uint8Array[];
942
- };
943
- }): _84.ValueOp;
260
+ fromPartial(object: any): _84.ValueOp;
944
261
  };
945
262
  DominoOp: {
946
263
  encode(message: _84.DominoOp, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
947
264
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _84.DominoOp;
948
- fromPartial(object: {
949
- key?: string;
950
- input?: string;
951
- output?: string;
952
- }): _84.DominoOp;
265
+ fromPartial(object: any): _84.DominoOp;
953
266
  };
954
267
  ProofOp: {
955
268
  encode(message: _84.ProofOp, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
956
269
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _84.ProofOp;
957
- fromPartial(object: {
958
- type?: string;
959
- key?: Uint8Array;
960
- data?: Uint8Array;
961
- }): _84.ProofOp;
270
+ fromPartial(object: any): _84.ProofOp;
962
271
  };
963
272
  ProofOps: {
964
273
  encode(message: _84.ProofOps, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
965
274
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _84.ProofOps;
966
- fromPartial(object: {
967
- ops?: {
968
- type?: string;
969
- key?: Uint8Array;
970
- data?: Uint8Array;
971
- }[];
972
- }): _84.ProofOps;
275
+ fromPartial(object: any): _84.ProofOps;
973
276
  };
974
277
  PublicKey: {
975
278
  encode(message: _83.PublicKey, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
976
279
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _83.PublicKey;
977
- fromPartial(object: {
978
- ed25519?: Uint8Array;
979
- secp256k1?: Uint8Array;
980
- }): _83.PublicKey;
280
+ fromPartial(object: any): _83.PublicKey;
981
281
  };
982
282
  };
983
283
  namespace libs {
@@ -985,10 +285,7 @@ export declare namespace tendermint {
985
285
  BitArray: {
986
286
  encode(message: _85.BitArray, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
987
287
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _85.BitArray;
988
- fromPartial(object: {
989
- bits?: any;
990
- elems?: any[];
991
- }): _85.BitArray;
288
+ fromPartial(object: any): _85.BitArray;
992
289
  };
993
290
  };
994
291
  }
@@ -996,115 +293,44 @@ export declare namespace tendermint {
996
293
  ProtocolVersion: {
997
294
  encode(message: _86.ProtocolVersion, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
998
295
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _86.ProtocolVersion;
999
- fromPartial(object: {
1000
- p2p?: any;
1001
- block?: any;
1002
- app?: any;
1003
- }): _86.ProtocolVersion;
296
+ fromPartial(object: any): _86.ProtocolVersion;
1004
297
  };
1005
298
  NodeInfo: {
1006
299
  encode(message: _86.NodeInfo, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1007
300
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _86.NodeInfo;
1008
- fromPartial(object: {
1009
- protocolVersion?: {
1010
- p2p?: any;
1011
- block?: any;
1012
- app?: any;
1013
- };
1014
- nodeId?: string;
1015
- listenAddr?: string;
1016
- network?: string;
1017
- version?: string;
1018
- channels?: Uint8Array;
1019
- moniker?: string;
1020
- other?: {
1021
- txIndex?: string;
1022
- rpcAddress?: string;
1023
- };
1024
- }): _86.NodeInfo;
301
+ fromPartial(object: any): _86.NodeInfo;
1025
302
  };
1026
303
  NodeInfoOther: {
1027
304
  encode(message: _86.NodeInfoOther, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1028
305
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _86.NodeInfoOther;
1029
- fromPartial(object: {
1030
- txIndex?: string;
1031
- rpcAddress?: string;
1032
- }): _86.NodeInfoOther;
306
+ fromPartial(object: any): _86.NodeInfoOther;
1033
307
  };
1034
308
  PeerInfo: {
1035
309
  encode(message: _86.PeerInfo, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1036
310
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _86.PeerInfo;
1037
- fromPartial(object: {
1038
- id?: string;
1039
- addressInfo?: {
1040
- address?: string;
1041
- lastDialSuccess?: Date;
1042
- lastDialFailure?: Date;
1043
- dialFailures?: number;
1044
- }[];
1045
- lastConnected?: Date;
1046
- }): _86.PeerInfo;
311
+ fromPartial(object: any): _86.PeerInfo;
1047
312
  };
1048
313
  PeerAddressInfo: {
1049
314
  encode(message: _86.PeerAddressInfo, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1050
315
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _86.PeerAddressInfo;
1051
- fromPartial(object: {
1052
- address?: string;
1053
- lastDialSuccess?: Date;
1054
- lastDialFailure?: Date;
1055
- dialFailures?: number;
1056
- }): _86.PeerAddressInfo;
316
+ fromPartial(object: any): _86.PeerAddressInfo;
1057
317
  };
1058
318
  };
1059
319
  const types: {
1060
320
  ValidatorSet: {
1061
321
  encode(message: _91.ValidatorSet, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1062
322
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _91.ValidatorSet;
1063
- fromPartial(object: {
1064
- validators?: {
1065
- address?: Uint8Array;
1066
- pubKey?: {
1067
- ed25519?: Uint8Array;
1068
- secp256k1?: Uint8Array;
1069
- };
1070
- votingPower?: any;
1071
- proposerPriority?: any;
1072
- }[];
1073
- proposer?: {
1074
- address?: Uint8Array;
1075
- pubKey?: {
1076
- ed25519?: Uint8Array;
1077
- secp256k1?: Uint8Array;
1078
- };
1079
- votingPower?: any;
1080
- proposerPriority?: any;
1081
- };
1082
- totalVotingPower?: any;
1083
- }): _91.ValidatorSet;
323
+ fromPartial(object: any): _91.ValidatorSet;
1084
324
  };
1085
325
  Validator: {
1086
326
  encode(message: _91.Validator, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1087
327
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _91.Validator;
1088
- fromPartial(object: {
1089
- address?: Uint8Array;
1090
- pubKey?: {
1091
- ed25519?: Uint8Array;
1092
- secp256k1?: Uint8Array;
1093
- };
1094
- votingPower?: any;
1095
- proposerPriority?: any;
1096
- }): _91.Validator;
328
+ fromPartial(object: any): _91.Validator;
1097
329
  };
1098
330
  SimpleValidator: {
1099
331
  encode(message: _91.SimpleValidator, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1100
332
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _91.SimpleValidator;
1101
- fromPartial(object: {
1102
- pubKey?: {
1103
- ed25519?: Uint8Array;
1104
- secp256k1?: Uint8Array;
1105
- };
1106
- votingPower?: any;
1107
- }): _91.SimpleValidator;
333
+ fromPartial(object: any): _91.SimpleValidator;
1108
334
  };
1109
335
  blockIDFlagFromJSON(object: any): _90.BlockIDFlag;
1110
336
  blockIDFlagToJSON(object: _90.BlockIDFlag): string;
@@ -1117,949 +343,134 @@ export declare namespace tendermint {
1117
343
  PartSetHeader: {
1118
344
  encode(message: _90.PartSetHeader, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1119
345
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _90.PartSetHeader;
1120
- fromPartial(object: {
1121
- total?: number;
1122
- hash?: Uint8Array;
1123
- }): _90.PartSetHeader;
346
+ fromPartial(object: any): _90.PartSetHeader;
1124
347
  };
1125
348
  Part: {
1126
349
  encode(message: _90.Part, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1127
350
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _90.Part;
1128
- fromPartial(object: {
1129
- index?: number;
1130
- bytes?: Uint8Array;
1131
- proof?: {
1132
- total?: any;
1133
- index?: any;
1134
- leafHash?: Uint8Array;
1135
- aunts?: Uint8Array[];
1136
- };
1137
- }): _90.Part;
351
+ fromPartial(object: any): _90.Part;
1138
352
  };
1139
353
  BlockID: {
1140
354
  encode(message: _90.BlockID, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1141
355
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _90.BlockID;
1142
- fromPartial(object: {
1143
- hash?: Uint8Array;
1144
- partSetHeader?: {
1145
- total?: number;
1146
- hash?: Uint8Array;
1147
- };
1148
- }): _90.BlockID;
356
+ fromPartial(object: any): _90.BlockID;
1149
357
  };
1150
358
  Header: {
1151
359
  encode(message: _90.Header, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1152
360
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _90.Header;
1153
- fromPartial(object: {
1154
- version?: {
1155
- block?: any;
1156
- app?: any;
1157
- };
1158
- chainId?: string;
1159
- height?: any;
1160
- time?: Date;
1161
- lastBlockId?: {
1162
- hash?: Uint8Array;
1163
- partSetHeader?: {
1164
- total?: number;
1165
- hash?: Uint8Array;
1166
- };
1167
- };
1168
- lastCommitHash?: Uint8Array;
1169
- dataHash?: Uint8Array;
1170
- validatorsHash?: Uint8Array;
1171
- nextValidatorsHash?: Uint8Array;
1172
- consensusHash?: Uint8Array;
1173
- appHash?: Uint8Array;
1174
- lastResultsHash?: Uint8Array;
1175
- evidenceHash?: Uint8Array;
1176
- proposerAddress?: Uint8Array;
1177
- }): _90.Header;
361
+ fromPartial(object: any): _90.Header;
1178
362
  };
1179
363
  Data: {
1180
364
  encode(message: _90.Data, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1181
365
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _90.Data;
1182
- fromPartial(object: {
1183
- txs?: Uint8Array[];
1184
- }): _90.Data;
366
+ fromPartial(object: any): _90.Data;
1185
367
  };
1186
368
  Vote: {
1187
369
  encode(message: _90.Vote, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1188
370
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _90.Vote;
1189
- fromPartial(object: {
1190
- type?: _90.SignedMsgType;
1191
- height?: any;
1192
- round?: number;
1193
- blockId?: {
1194
- hash?: Uint8Array;
1195
- partSetHeader?: {
1196
- total?: number;
1197
- hash?: Uint8Array;
1198
- };
1199
- };
1200
- timestamp?: Date;
1201
- validatorAddress?: Uint8Array;
1202
- validatorIndex?: number;
1203
- signature?: Uint8Array;
1204
- }): _90.Vote;
371
+ fromPartial(object: any): _90.Vote;
1205
372
  };
1206
373
  Commit: {
1207
374
  encode(message: _90.Commit, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1208
375
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _90.Commit;
1209
- fromPartial(object: {
1210
- height?: any;
1211
- round?: number;
1212
- blockId?: {
1213
- hash?: Uint8Array;
1214
- partSetHeader?: {
1215
- total?: number;
1216
- hash?: Uint8Array;
1217
- };
1218
- };
1219
- signatures?: {
1220
- blockIdFlag?: _90.BlockIDFlag;
1221
- validatorAddress?: Uint8Array;
1222
- timestamp?: Date;
1223
- signature?: Uint8Array;
1224
- }[];
1225
- }): _90.Commit;
376
+ fromPartial(object: any): _90.Commit;
1226
377
  };
1227
378
  CommitSig: {
1228
379
  encode(message: _90.CommitSig, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1229
380
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _90.CommitSig;
1230
- fromPartial(object: {
1231
- blockIdFlag?: _90.BlockIDFlag;
1232
- validatorAddress?: Uint8Array;
1233
- timestamp?: Date;
1234
- signature?: Uint8Array;
1235
- }): _90.CommitSig;
381
+ fromPartial(object: any): _90.CommitSig;
1236
382
  };
1237
383
  Proposal: {
1238
384
  encode(message: _90.Proposal, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1239
385
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _90.Proposal;
1240
- fromPartial(object: {
1241
- type?: _90.SignedMsgType;
1242
- height?: any;
1243
- round?: number;
1244
- polRound?: number;
1245
- blockId?: {
1246
- hash?: Uint8Array;
1247
- partSetHeader?: {
1248
- total?: number;
1249
- hash?: Uint8Array;
1250
- };
1251
- };
1252
- timestamp?: Date;
1253
- signature?: Uint8Array;
1254
- }): _90.Proposal;
386
+ fromPartial(object: any): _90.Proposal;
1255
387
  };
1256
388
  SignedHeader: {
1257
389
  encode(message: _90.SignedHeader, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1258
390
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _90.SignedHeader;
1259
- fromPartial(object: {
1260
- header?: {
1261
- version?: {
1262
- block?: any;
1263
- app?: any;
1264
- };
1265
- chainId?: string;
1266
- height?: any;
1267
- time?: Date;
1268
- lastBlockId?: {
1269
- hash?: Uint8Array;
1270
- partSetHeader?: {
1271
- total?: number;
1272
- hash?: Uint8Array;
1273
- };
1274
- };
1275
- lastCommitHash?: Uint8Array;
1276
- dataHash?: Uint8Array;
1277
- validatorsHash?: Uint8Array;
1278
- nextValidatorsHash?: Uint8Array;
1279
- consensusHash?: Uint8Array;
1280
- appHash?: Uint8Array;
1281
- lastResultsHash?: Uint8Array;
1282
- evidenceHash?: Uint8Array;
1283
- proposerAddress?: Uint8Array;
1284
- };
1285
- commit?: {
1286
- height?: any;
1287
- round?: number;
1288
- blockId?: {
1289
- hash?: Uint8Array;
1290
- partSetHeader?: {
1291
- total?: number;
1292
- hash?: Uint8Array;
1293
- };
1294
- };
1295
- signatures?: {
1296
- blockIdFlag?: _90.BlockIDFlag;
1297
- validatorAddress?: Uint8Array;
1298
- timestamp?: Date;
1299
- signature?: Uint8Array;
1300
- }[];
1301
- };
1302
- }): _90.SignedHeader;
391
+ fromPartial(object: any): _90.SignedHeader;
1303
392
  };
1304
393
  LightBlock: {
1305
394
  encode(message: _90.LightBlock, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1306
395
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _90.LightBlock;
1307
- fromPartial(object: {
1308
- signedHeader?: {
1309
- header?: {
1310
- version?: {
1311
- block?: any;
1312
- app?: any;
1313
- };
1314
- chainId?: string;
1315
- height?: any;
1316
- time?: Date;
1317
- lastBlockId?: {
1318
- hash?: Uint8Array;
1319
- partSetHeader?: {
1320
- total?: number;
1321
- hash?: Uint8Array;
1322
- };
1323
- };
1324
- lastCommitHash?: Uint8Array;
1325
- dataHash?: Uint8Array;
1326
- validatorsHash?: Uint8Array;
1327
- nextValidatorsHash?: Uint8Array;
1328
- consensusHash?: Uint8Array;
1329
- appHash?: Uint8Array;
1330
- lastResultsHash?: Uint8Array;
1331
- evidenceHash?: Uint8Array;
1332
- proposerAddress?: Uint8Array;
1333
- };
1334
- commit?: {
1335
- height?: any;
1336
- round?: number;
1337
- blockId?: {
1338
- hash?: Uint8Array;
1339
- partSetHeader?: {
1340
- total?: number;
1341
- hash?: Uint8Array;
1342
- };
1343
- };
1344
- signatures?: {
1345
- blockIdFlag?: _90.BlockIDFlag;
1346
- validatorAddress?: Uint8Array;
1347
- timestamp?: Date;
1348
- signature?: Uint8Array;
1349
- }[];
1350
- };
1351
- };
1352
- validatorSet?: {
1353
- validators?: {
1354
- address?: Uint8Array;
1355
- pubKey?: {
1356
- ed25519?: Uint8Array;
1357
- secp256k1?: Uint8Array;
1358
- };
1359
- votingPower?: any;
1360
- proposerPriority?: any;
1361
- }[];
1362
- proposer?: {
1363
- address?: Uint8Array;
1364
- pubKey?: {
1365
- ed25519?: Uint8Array;
1366
- secp256k1?: Uint8Array;
1367
- };
1368
- votingPower?: any;
1369
- proposerPriority?: any;
1370
- };
1371
- totalVotingPower?: any;
1372
- };
1373
- }): _90.LightBlock;
396
+ fromPartial(object: any): _90.LightBlock;
1374
397
  };
1375
398
  BlockMeta: {
1376
399
  encode(message: _90.BlockMeta, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1377
400
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _90.BlockMeta;
1378
- fromPartial(object: {
1379
- blockId?: {
1380
- hash?: Uint8Array;
1381
- partSetHeader?: {
1382
- total?: number;
1383
- hash?: Uint8Array;
1384
- };
1385
- };
1386
- blockSize?: any;
1387
- header?: {
1388
- version?: {
1389
- block?: any;
1390
- app?: any;
1391
- };
1392
- chainId?: string;
1393
- height?: any;
1394
- time?: Date;
1395
- lastBlockId?: {
1396
- hash?: Uint8Array;
1397
- partSetHeader?: {
1398
- total?: number;
1399
- hash?: Uint8Array;
1400
- };
1401
- };
1402
- lastCommitHash?: Uint8Array;
1403
- dataHash?: Uint8Array;
1404
- validatorsHash?: Uint8Array;
1405
- nextValidatorsHash?: Uint8Array;
1406
- consensusHash?: Uint8Array;
1407
- appHash?: Uint8Array;
1408
- lastResultsHash?: Uint8Array;
1409
- evidenceHash?: Uint8Array;
1410
- proposerAddress?: Uint8Array;
1411
- };
1412
- numTxs?: any;
1413
- }): _90.BlockMeta;
401
+ fromPartial(object: any): _90.BlockMeta;
1414
402
  };
1415
403
  TxProof: {
1416
404
  encode(message: _90.TxProof, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1417
405
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _90.TxProof;
1418
- fromPartial(object: {
1419
- rootHash?: Uint8Array;
1420
- data?: Uint8Array;
1421
- proof?: {
1422
- total?: any;
1423
- index?: any;
1424
- leafHash?: Uint8Array;
1425
- aunts?: Uint8Array[];
1426
- };
1427
- }): _90.TxProof;
406
+ fromPartial(object: any): _90.TxProof;
1428
407
  };
1429
408
  ConsensusParams: {
1430
409
  encode(message: _89.ConsensusParams, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1431
410
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _89.ConsensusParams;
1432
- fromPartial(object: {
1433
- block?: {
1434
- maxBytes?: any;
1435
- maxGas?: any;
1436
- timeIotaMs?: any;
1437
- };
1438
- evidence?: {
1439
- maxAgeNumBlocks?: any;
1440
- maxAgeDuration?: {
1441
- seconds?: any;
1442
- nanos?: number;
1443
- };
1444
- maxBytes?: any;
1445
- };
1446
- validator?: {
1447
- pubKeyTypes?: string[];
1448
- };
1449
- version?: {
1450
- appVersion?: any;
1451
- };
1452
- }): _89.ConsensusParams;
411
+ fromPartial(object: any): _89.ConsensusParams;
1453
412
  };
1454
413
  BlockParams: {
1455
414
  encode(message: _89.BlockParams, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1456
415
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _89.BlockParams;
1457
- fromPartial(object: {
1458
- maxBytes?: any;
1459
- maxGas?: any;
1460
- timeIotaMs?: any;
1461
- }): _89.BlockParams;
416
+ fromPartial(object: any): _89.BlockParams;
1462
417
  };
1463
418
  EvidenceParams: {
1464
419
  encode(message: _89.EvidenceParams, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1465
420
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _89.EvidenceParams;
1466
- fromPartial(object: {
1467
- maxAgeNumBlocks?: any;
1468
- maxAgeDuration?: {
1469
- seconds?: any;
1470
- nanos?: number;
1471
- };
1472
- maxBytes?: any;
1473
- }): _89.EvidenceParams;
421
+ fromPartial(object: any): _89.EvidenceParams;
1474
422
  };
1475
423
  ValidatorParams: {
1476
424
  encode(message: _89.ValidatorParams, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1477
425
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _89.ValidatorParams;
1478
- fromPartial(object: {
1479
- pubKeyTypes?: string[];
1480
- }): _89.ValidatorParams;
426
+ fromPartial(object: any): _89.ValidatorParams;
1481
427
  };
1482
428
  VersionParams: {
1483
429
  encode(message: _89.VersionParams, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1484
430
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _89.VersionParams;
1485
- fromPartial(object: {
1486
- appVersion?: any;
1487
- }): _89.VersionParams;
431
+ fromPartial(object: any): _89.VersionParams;
1488
432
  };
1489
433
  HashedParams: {
1490
434
  encode(message: _89.HashedParams, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1491
435
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _89.HashedParams;
1492
- fromPartial(object: {
1493
- blockMaxBytes?: any;
1494
- blockMaxGas?: any;
1495
- }): _89.HashedParams;
436
+ fromPartial(object: any): _89.HashedParams;
1496
437
  };
1497
438
  Evidence: {
1498
439
  encode(message: _88.Evidence, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1499
440
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _88.Evidence;
1500
- fromPartial(object: {
1501
- duplicateVoteEvidence?: {
1502
- voteA?: {
1503
- type?: _90.SignedMsgType;
1504
- height?: any;
1505
- round?: number;
1506
- blockId?: {
1507
- hash?: Uint8Array;
1508
- partSetHeader?: {
1509
- total?: number;
1510
- hash?: Uint8Array;
1511
- };
1512
- };
1513
- timestamp?: Date;
1514
- validatorAddress?: Uint8Array;
1515
- validatorIndex?: number;
1516
- signature?: Uint8Array;
1517
- };
1518
- voteB?: {
1519
- type?: _90.SignedMsgType;
1520
- height?: any;
1521
- round?: number;
1522
- blockId?: {
1523
- hash?: Uint8Array;
1524
- partSetHeader?: {
1525
- total?: number;
1526
- hash?: Uint8Array;
1527
- };
1528
- };
1529
- timestamp?: Date;
1530
- validatorAddress?: Uint8Array;
1531
- validatorIndex?: number;
1532
- signature?: Uint8Array;
1533
- };
1534
- totalVotingPower?: any;
1535
- validatorPower?: any;
1536
- timestamp?: Date;
1537
- };
1538
- lightClientAttackEvidence?: {
1539
- conflictingBlock?: {
1540
- signedHeader?: {
1541
- header?: {
1542
- version?: {
1543
- block?: any;
1544
- app?: any;
1545
- };
1546
- chainId?: string;
1547
- height?: any;
1548
- time?: Date;
1549
- lastBlockId?: {
1550
- hash?: Uint8Array;
1551
- partSetHeader?: {
1552
- total?: number;
1553
- hash?: Uint8Array;
1554
- };
1555
- };
1556
- lastCommitHash?: Uint8Array;
1557
- dataHash?: Uint8Array;
1558
- validatorsHash?: Uint8Array;
1559
- nextValidatorsHash?: Uint8Array;
1560
- consensusHash?: Uint8Array;
1561
- appHash?: Uint8Array;
1562
- lastResultsHash?: Uint8Array;
1563
- evidenceHash?: Uint8Array;
1564
- proposerAddress?: Uint8Array;
1565
- };
1566
- commit?: {
1567
- height?: any;
1568
- round?: number;
1569
- blockId?: {
1570
- hash?: Uint8Array;
1571
- partSetHeader?: {
1572
- total?: number;
1573
- hash?: Uint8Array;
1574
- };
1575
- };
1576
- signatures?: {
1577
- blockIdFlag?: _90.BlockIDFlag;
1578
- validatorAddress?: Uint8Array;
1579
- timestamp?: Date;
1580
- signature?: Uint8Array;
1581
- }[];
1582
- };
1583
- };
1584
- validatorSet?: {
1585
- validators?: {
1586
- address?: Uint8Array;
1587
- pubKey?: {
1588
- ed25519?: Uint8Array;
1589
- secp256k1?: Uint8Array;
1590
- };
1591
- votingPower?: any;
1592
- proposerPriority?: any;
1593
- }[];
1594
- proposer?: {
1595
- address?: Uint8Array;
1596
- pubKey?: {
1597
- ed25519?: Uint8Array;
1598
- secp256k1?: Uint8Array;
1599
- };
1600
- votingPower?: any;
1601
- proposerPriority?: any;
1602
- };
1603
- totalVotingPower?: any;
1604
- };
1605
- };
1606
- commonHeight?: any;
1607
- byzantineValidators?: {
1608
- address?: Uint8Array;
1609
- pubKey?: {
1610
- ed25519?: Uint8Array;
1611
- secp256k1?: Uint8Array;
1612
- };
1613
- votingPower?: any;
1614
- proposerPriority?: any;
1615
- }[];
1616
- totalVotingPower?: any;
1617
- timestamp?: Date;
1618
- };
1619
- }): _88.Evidence;
441
+ fromPartial(object: any): _88.Evidence;
1620
442
  };
1621
443
  DuplicateVoteEvidence: {
1622
444
  encode(message: _88.DuplicateVoteEvidence, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1623
445
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _88.DuplicateVoteEvidence;
1624
- fromPartial(object: {
1625
- voteA?: {
1626
- type?: _90.SignedMsgType;
1627
- height?: any;
1628
- round?: number;
1629
- blockId?: {
1630
- hash?: Uint8Array;
1631
- partSetHeader?: {
1632
- total?: number;
1633
- hash?: Uint8Array;
1634
- };
1635
- };
1636
- timestamp?: Date;
1637
- validatorAddress?: Uint8Array;
1638
- validatorIndex?: number;
1639
- signature?: Uint8Array;
1640
- };
1641
- voteB?: {
1642
- type?: _90.SignedMsgType;
1643
- height?: any;
1644
- round?: number;
1645
- blockId?: {
1646
- hash?: Uint8Array;
1647
- partSetHeader?: {
1648
- total?: number;
1649
- hash?: Uint8Array;
1650
- };
1651
- };
1652
- timestamp?: Date;
1653
- validatorAddress?: Uint8Array;
1654
- validatorIndex?: number;
1655
- signature?: Uint8Array;
1656
- };
1657
- totalVotingPower?: any;
1658
- validatorPower?: any;
1659
- timestamp?: Date;
1660
- }): _88.DuplicateVoteEvidence;
446
+ fromPartial(object: any): _88.DuplicateVoteEvidence;
1661
447
  };
1662
448
  LightClientAttackEvidence: {
1663
449
  encode(message: _88.LightClientAttackEvidence, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1664
450
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _88.LightClientAttackEvidence;
1665
- fromPartial(object: {
1666
- conflictingBlock?: {
1667
- signedHeader?: {
1668
- header?: {
1669
- version?: {
1670
- block?: any;
1671
- app?: any;
1672
- };
1673
- chainId?: string;
1674
- height?: any;
1675
- time?: Date;
1676
- lastBlockId?: {
1677
- hash?: Uint8Array;
1678
- partSetHeader?: {
1679
- total?: number;
1680
- hash?: Uint8Array;
1681
- };
1682
- };
1683
- lastCommitHash?: Uint8Array;
1684
- dataHash?: Uint8Array;
1685
- validatorsHash?: Uint8Array;
1686
- nextValidatorsHash?: Uint8Array;
1687
- consensusHash?: Uint8Array;
1688
- appHash?: Uint8Array;
1689
- lastResultsHash?: Uint8Array;
1690
- evidenceHash?: Uint8Array;
1691
- proposerAddress?: Uint8Array;
1692
- };
1693
- commit?: {
1694
- height?: any;
1695
- round?: number;
1696
- blockId?: {
1697
- hash?: Uint8Array;
1698
- partSetHeader?: {
1699
- total?: number;
1700
- hash?: Uint8Array;
1701
- };
1702
- };
1703
- signatures?: {
1704
- blockIdFlag?: _90.BlockIDFlag;
1705
- validatorAddress?: Uint8Array;
1706
- timestamp?: Date;
1707
- signature?: Uint8Array;
1708
- }[];
1709
- };
1710
- };
1711
- validatorSet?: {
1712
- validators?: {
1713
- address?: Uint8Array;
1714
- pubKey?: {
1715
- ed25519?: Uint8Array;
1716
- secp256k1?: Uint8Array;
1717
- };
1718
- votingPower?: any;
1719
- proposerPriority?: any;
1720
- }[];
1721
- proposer?: {
1722
- address?: Uint8Array;
1723
- pubKey?: {
1724
- ed25519?: Uint8Array;
1725
- secp256k1?: Uint8Array;
1726
- };
1727
- votingPower?: any;
1728
- proposerPriority?: any;
1729
- };
1730
- totalVotingPower?: any;
1731
- };
1732
- };
1733
- commonHeight?: any;
1734
- byzantineValidators?: {
1735
- address?: Uint8Array;
1736
- pubKey?: {
1737
- ed25519?: Uint8Array;
1738
- secp256k1?: Uint8Array;
1739
- };
1740
- votingPower?: any;
1741
- proposerPriority?: any;
1742
- }[];
1743
- totalVotingPower?: any;
1744
- timestamp?: Date;
1745
- }): _88.LightClientAttackEvidence;
451
+ fromPartial(object: any): _88.LightClientAttackEvidence;
1746
452
  };
1747
453
  EvidenceList: {
1748
454
  encode(message: _88.EvidenceList, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1749
455
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _88.EvidenceList;
1750
- fromPartial(object: {
1751
- evidence?: {
1752
- duplicateVoteEvidence?: {
1753
- voteA?: {
1754
- type?: _90.SignedMsgType;
1755
- height?: any;
1756
- round?: number;
1757
- blockId?: {
1758
- hash?: Uint8Array;
1759
- partSetHeader?: {
1760
- total?: number;
1761
- hash?: Uint8Array;
1762
- };
1763
- };
1764
- timestamp?: Date;
1765
- validatorAddress?: Uint8Array;
1766
- validatorIndex?: number;
1767
- signature?: Uint8Array;
1768
- };
1769
- voteB?: {
1770
- type?: _90.SignedMsgType;
1771
- height?: any;
1772
- round?: number;
1773
- blockId?: {
1774
- hash?: Uint8Array;
1775
- partSetHeader?: {
1776
- total?: number;
1777
- hash?: Uint8Array;
1778
- };
1779
- };
1780
- timestamp?: Date;
1781
- validatorAddress?: Uint8Array;
1782
- validatorIndex?: number;
1783
- signature?: Uint8Array;
1784
- };
1785
- totalVotingPower?: any;
1786
- validatorPower?: any;
1787
- timestamp?: Date;
1788
- };
1789
- lightClientAttackEvidence?: {
1790
- conflictingBlock?: {
1791
- signedHeader?: {
1792
- header?: {
1793
- version?: {
1794
- block?: any;
1795
- app?: any;
1796
- };
1797
- chainId?: string;
1798
- height?: any;
1799
- time?: Date;
1800
- lastBlockId?: {
1801
- hash?: Uint8Array;
1802
- partSetHeader?: {
1803
- total?: number;
1804
- hash?: Uint8Array;
1805
- };
1806
- };
1807
- lastCommitHash?: Uint8Array;
1808
- dataHash?: Uint8Array;
1809
- validatorsHash?: Uint8Array;
1810
- nextValidatorsHash?: Uint8Array;
1811
- consensusHash?: Uint8Array;
1812
- appHash?: Uint8Array;
1813
- lastResultsHash?: Uint8Array;
1814
- evidenceHash?: Uint8Array;
1815
- proposerAddress?: Uint8Array;
1816
- };
1817
- commit?: {
1818
- height?: any;
1819
- round?: number;
1820
- blockId?: {
1821
- hash?: Uint8Array;
1822
- partSetHeader?: {
1823
- total?: number;
1824
- hash?: Uint8Array;
1825
- };
1826
- };
1827
- signatures?: {
1828
- blockIdFlag?: _90.BlockIDFlag;
1829
- validatorAddress?: Uint8Array;
1830
- timestamp?: Date;
1831
- signature?: Uint8Array;
1832
- }[];
1833
- };
1834
- };
1835
- validatorSet?: {
1836
- validators?: {
1837
- address?: Uint8Array;
1838
- pubKey?: {
1839
- ed25519?: Uint8Array;
1840
- secp256k1?: Uint8Array;
1841
- };
1842
- votingPower?: any;
1843
- proposerPriority?: any;
1844
- }[];
1845
- proposer?: {
1846
- address?: Uint8Array;
1847
- pubKey?: {
1848
- ed25519?: Uint8Array;
1849
- secp256k1?: Uint8Array;
1850
- };
1851
- votingPower?: any;
1852
- proposerPriority?: any;
1853
- };
1854
- totalVotingPower?: any;
1855
- };
1856
- };
1857
- commonHeight?: any;
1858
- byzantineValidators?: {
1859
- address?: Uint8Array;
1860
- pubKey?: {
1861
- ed25519?: Uint8Array;
1862
- secp256k1?: Uint8Array;
1863
- };
1864
- votingPower?: any;
1865
- proposerPriority?: any;
1866
- }[];
1867
- totalVotingPower?: any;
1868
- timestamp?: Date;
1869
- };
1870
- }[];
1871
- }): _88.EvidenceList;
456
+ fromPartial(object: any): _88.EvidenceList;
1872
457
  };
1873
458
  Block: {
1874
459
  encode(message: _87.Block, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
1875
460
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _87.Block;
1876
- fromPartial(object: {
1877
- header?: {
1878
- version?: {
1879
- block?: any;
1880
- app?: any;
1881
- };
1882
- chainId?: string;
1883
- height?: any;
1884
- time?: Date;
1885
- lastBlockId?: {
1886
- hash?: Uint8Array;
1887
- partSetHeader?: {
1888
- total?: number;
1889
- hash?: Uint8Array;
1890
- };
1891
- };
1892
- lastCommitHash?: Uint8Array;
1893
- dataHash?: Uint8Array;
1894
- validatorsHash?: Uint8Array;
1895
- nextValidatorsHash?: Uint8Array;
1896
- consensusHash?: Uint8Array;
1897
- appHash?: Uint8Array;
1898
- lastResultsHash?: Uint8Array;
1899
- evidenceHash?: Uint8Array;
1900
- proposerAddress?: Uint8Array;
1901
- };
1902
- data?: {
1903
- txs?: Uint8Array[];
1904
- };
1905
- evidence?: {
1906
- evidence?: {
1907
- duplicateVoteEvidence?: {
1908
- voteA?: {
1909
- type?: _90.SignedMsgType;
1910
- height?: any;
1911
- round?: number;
1912
- blockId?: {
1913
- hash?: Uint8Array;
1914
- partSetHeader?: {
1915
- total?: number;
1916
- hash?: Uint8Array;
1917
- };
1918
- };
1919
- timestamp?: Date;
1920
- validatorAddress?: Uint8Array;
1921
- validatorIndex?: number;
1922
- signature?: Uint8Array;
1923
- };
1924
- voteB?: {
1925
- type?: _90.SignedMsgType;
1926
- height?: any;
1927
- round?: number;
1928
- blockId?: {
1929
- hash?: Uint8Array;
1930
- partSetHeader?: {
1931
- total?: number;
1932
- hash?: Uint8Array;
1933
- };
1934
- };
1935
- timestamp?: Date;
1936
- validatorAddress?: Uint8Array;
1937
- validatorIndex?: number;
1938
- signature?: Uint8Array;
1939
- };
1940
- totalVotingPower?: any;
1941
- validatorPower?: any;
1942
- timestamp?: Date;
1943
- };
1944
- lightClientAttackEvidence?: {
1945
- conflictingBlock?: {
1946
- signedHeader?: {
1947
- header?: {
1948
- version?: {
1949
- block?: any;
1950
- app?: any;
1951
- };
1952
- chainId?: string;
1953
- height?: any;
1954
- time?: Date;
1955
- lastBlockId?: {
1956
- hash?: Uint8Array;
1957
- partSetHeader?: {
1958
- total?: number;
1959
- hash?: Uint8Array;
1960
- };
1961
- };
1962
- lastCommitHash?: Uint8Array;
1963
- dataHash?: Uint8Array;
1964
- validatorsHash?: Uint8Array;
1965
- nextValidatorsHash?: Uint8Array;
1966
- consensusHash?: Uint8Array;
1967
- appHash?: Uint8Array;
1968
- lastResultsHash?: Uint8Array;
1969
- evidenceHash?: Uint8Array;
1970
- proposerAddress?: Uint8Array;
1971
- };
1972
- commit?: {
1973
- height?: any;
1974
- round?: number;
1975
- blockId?: {
1976
- hash?: Uint8Array;
1977
- partSetHeader?: {
1978
- total?: number;
1979
- hash?: Uint8Array;
1980
- };
1981
- };
1982
- signatures?: {
1983
- blockIdFlag?: _90.BlockIDFlag;
1984
- validatorAddress?: Uint8Array;
1985
- timestamp?: Date;
1986
- signature?: Uint8Array;
1987
- }[];
1988
- };
1989
- };
1990
- validatorSet?: {
1991
- validators?: {
1992
- address?: Uint8Array;
1993
- pubKey?: {
1994
- ed25519?: Uint8Array;
1995
- secp256k1?: Uint8Array;
1996
- };
1997
- votingPower?: any;
1998
- proposerPriority?: any;
1999
- }[];
2000
- proposer?: {
2001
- address?: Uint8Array;
2002
- pubKey?: {
2003
- ed25519?: Uint8Array;
2004
- secp256k1?: Uint8Array;
2005
- };
2006
- votingPower?: any;
2007
- proposerPriority?: any;
2008
- };
2009
- totalVotingPower?: any;
2010
- };
2011
- };
2012
- commonHeight?: any;
2013
- byzantineValidators?: {
2014
- address?: Uint8Array;
2015
- pubKey?: {
2016
- ed25519?: Uint8Array;
2017
- secp256k1?: Uint8Array;
2018
- };
2019
- votingPower?: any;
2020
- proposerPriority?: any;
2021
- }[];
2022
- totalVotingPower?: any;
2023
- timestamp?: Date;
2024
- };
2025
- }[];
2026
- };
2027
- lastCommit?: {
2028
- height?: any;
2029
- round?: number;
2030
- blockId?: {
2031
- hash?: Uint8Array;
2032
- partSetHeader?: {
2033
- total?: number;
2034
- hash?: Uint8Array;
2035
- };
2036
- };
2037
- signatures?: {
2038
- blockIdFlag?: _90.BlockIDFlag;
2039
- validatorAddress?: Uint8Array;
2040
- timestamp?: Date;
2041
- signature?: Uint8Array;
2042
- }[];
2043
- };
2044
- }): _87.Block;
461
+ fromPartial(object: any): _87.Block;
2045
462
  };
2046
463
  };
2047
464
  const version: {
2048
465
  App: {
2049
466
  encode(message: _92.App, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
2050
467
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _92.App;
2051
- fromPartial(object: {
2052
- protocol?: any;
2053
- software?: string;
2054
- }): _92.App;
468
+ fromPartial(object: any): _92.App;
2055
469
  };
2056
470
  Consensus: {
2057
471
  encode(message: _92.Consensus, writer?: import("protobufjs").Writer): import("protobufjs").Writer;
2058
472
  decode(input: Uint8Array | import("protobufjs").Reader, length?: number): _92.Consensus;
2059
- fromPartial(object: {
2060
- block?: any;
2061
- app?: any;
2062
- }): _92.Consensus;
473
+ fromPartial(object: any): _92.Consensus;
2063
474
  };
2064
475
  };
2065
476
  }