@aztec/wsdb 0.0.1-commit.031e54b

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.
@@ -0,0 +1,1091 @@
1
+ /** Schema version hash for compatibility checking */
2
+ export declare const SCHEMA_HASH = "90183fc3ff00d1a28bf97f82639c1db1a5f8f466ae3a1d3699e0bb666915c6c6";
3
+ export type BlockHeaderHash = Uint8Array;
4
+ export type BlockNumber = number;
5
+ export type ForkId = number;
6
+ export type Fr = Uint8Array;
7
+ export type LeafIndex = number;
8
+ export type MerkleTreeId = number;
9
+ export type Nullifier = Uint8Array;
10
+ export type PublicDataSlot = Uint8Array;
11
+ export type PublicDataValue = Uint8Array;
12
+ export interface TreeStateReference {
13
+ treeId: MerkleTreeId;
14
+ root: Fr;
15
+ size: LeafIndex;
16
+ }
17
+ export interface PublicDataLeafValue {
18
+ slot: PublicDataSlot;
19
+ value: PublicDataValue;
20
+ }
21
+ export interface NullifierLeafValue {
22
+ nullifier: Nullifier;
23
+ }
24
+ export interface IndexedPublicDataLeafValue {
25
+ leaf: PublicDataLeafValue;
26
+ nextIndex: LeafIndex;
27
+ nextKey: Fr;
28
+ }
29
+ export interface IndexedNullifierLeafValue {
30
+ leaf: NullifierLeafValue;
31
+ nextIndex: LeafIndex;
32
+ nextKey: Fr;
33
+ }
34
+ export interface SiblingPathAndIndex {
35
+ index: LeafIndex;
36
+ path: Fr[];
37
+ }
38
+ export interface PublicDataLeafUpdateWitnessData {
39
+ leaf: IndexedPublicDataLeafValue;
40
+ index: LeafIndex;
41
+ path: Fr[];
42
+ }
43
+ export interface SortedPublicDataLeaf {
44
+ leaf: PublicDataLeafValue;
45
+ index: LeafIndex;
46
+ }
47
+ export interface BatchInsertionResultPublicData {
48
+ lowLeafWitnessData: PublicDataLeafUpdateWitnessData[];
49
+ sortedLeaves: SortedPublicDataLeaf[];
50
+ subtreePath: Fr[];
51
+ }
52
+ export interface NullifierLeafUpdateWitnessData {
53
+ leaf: IndexedNullifierLeafValue;
54
+ index: LeafIndex;
55
+ path: Fr[];
56
+ }
57
+ export interface SortedNullifierLeaf {
58
+ leaf: NullifierLeafValue;
59
+ index: LeafIndex;
60
+ }
61
+ export interface BatchInsertionResultNullifier {
62
+ lowLeafWitnessData: NullifierLeafUpdateWitnessData[];
63
+ sortedLeaves: SortedNullifierLeaf[];
64
+ subtreePath: Fr[];
65
+ }
66
+ export interface SequentialInsertionResultPublicData {
67
+ lowLeafWitnessData: PublicDataLeafUpdateWitnessData[];
68
+ insertionWitnessData: PublicDataLeafUpdateWitnessData[];
69
+ }
70
+ export interface SequentialInsertionResultNullifier {
71
+ lowLeafWitnessData: NullifierLeafUpdateWitnessData[];
72
+ insertionWitnessData: NullifierLeafUpdateWitnessData[];
73
+ }
74
+ export interface WorldStateStatusSummary {
75
+ unfinalizedBlockNumber: number;
76
+ finalizedBlockNumber: number;
77
+ oldestHistoricalBlock: number;
78
+ treesAreSynched: boolean;
79
+ }
80
+ export interface DBStats {
81
+ name: string;
82
+ numDataItems: number;
83
+ totalUsedSize: number;
84
+ }
85
+ export interface TreeDBStats {
86
+ mapSize: number;
87
+ physicalFileSize: number;
88
+ blocksDBStats: DBStats;
89
+ nodesDBStats: DBStats;
90
+ leafPreimagesDBStats: DBStats;
91
+ leafIndicesDBStats: DBStats;
92
+ blockIndicesDBStats: DBStats;
93
+ }
94
+ export interface WorldStateDBStats {
95
+ noteHashTreeStats: TreeDBStats;
96
+ messageTreeStats: TreeDBStats;
97
+ archiveTreeStats: TreeDBStats;
98
+ publicDataTreeStats: TreeDBStats;
99
+ nullifierTreeStats: TreeDBStats;
100
+ }
101
+ export interface TreeMeta {
102
+ name: string;
103
+ depth: number;
104
+ size: number;
105
+ committedSize: number;
106
+ root: Fr;
107
+ initialSize: number;
108
+ initialRoot: Fr;
109
+ oldestHistoricBlock: number;
110
+ unfinalizedBlockHeight: number;
111
+ finalizedBlockHeight: number;
112
+ }
113
+ export interface WorldStateMeta {
114
+ noteHashTreeMeta: TreeMeta;
115
+ messageTreeMeta: TreeMeta;
116
+ archiveTreeMeta: TreeMeta;
117
+ publicDataTreeMeta: TreeMeta;
118
+ nullifierTreeMeta: TreeMeta;
119
+ }
120
+ export interface WorldStateStatusFull {
121
+ summary: WorldStateStatusSummary;
122
+ dbStats: WorldStateDBStats;
123
+ meta: WorldStateMeta;
124
+ }
125
+ export interface WorldStateRevision {
126
+ forkId: ForkId;
127
+ blockNumber: BlockNumber;
128
+ includeUncommitted: boolean;
129
+ }
130
+ export interface WsdbGetTreeInfo {
131
+ treeId: MerkleTreeId;
132
+ revision: WorldStateRevision;
133
+ }
134
+ export interface WsdbGetStateReference {
135
+ revision: WorldStateRevision;
136
+ }
137
+ export interface WsdbGetInitialStateReference {
138
+ }
139
+ export interface WsdbGetLeafValue {
140
+ treeId: MerkleTreeId;
141
+ revision: WorldStateRevision;
142
+ leafIndex: LeafIndex;
143
+ }
144
+ export interface WsdbGetPublicDataLeafValue {
145
+ revision: WorldStateRevision;
146
+ leafIndex: LeafIndex;
147
+ }
148
+ export interface WsdbGetNullifierLeafValue {
149
+ revision: WorldStateRevision;
150
+ leafIndex: LeafIndex;
151
+ }
152
+ export interface WsdbGetPublicDataLeafPreimage {
153
+ revision: WorldStateRevision;
154
+ leafIndex: LeafIndex;
155
+ }
156
+ export interface WsdbGetNullifierLeafPreimage {
157
+ revision: WorldStateRevision;
158
+ leafIndex: LeafIndex;
159
+ }
160
+ export interface WsdbGetSiblingPath {
161
+ treeId: MerkleTreeId;
162
+ revision: WorldStateRevision;
163
+ leafIndex: LeafIndex;
164
+ }
165
+ export interface WsdbGetBlockNumbersForLeafIndices {
166
+ treeId: MerkleTreeId;
167
+ revision: WorldStateRevision;
168
+ leafIndices: LeafIndex[];
169
+ }
170
+ export interface WsdbFindLeafIndices {
171
+ treeId: MerkleTreeId;
172
+ revision: WorldStateRevision;
173
+ leaves: Fr[];
174
+ startIndex: LeafIndex;
175
+ }
176
+ export interface WsdbFindPublicDataLeafIndices {
177
+ revision: WorldStateRevision;
178
+ leaves: PublicDataLeafValue[];
179
+ startIndex: LeafIndex;
180
+ }
181
+ export interface WsdbFindNullifierLeafIndices {
182
+ revision: WorldStateRevision;
183
+ leaves: NullifierLeafValue[];
184
+ startIndex: LeafIndex;
185
+ }
186
+ export interface WsdbFindLowLeaf {
187
+ treeId: MerkleTreeId;
188
+ revision: WorldStateRevision;
189
+ key: Fr;
190
+ }
191
+ export interface WsdbFindSiblingPaths {
192
+ treeId: MerkleTreeId;
193
+ revision: WorldStateRevision;
194
+ leaves: Fr[];
195
+ }
196
+ export interface WsdbFindPublicDataSiblingPaths {
197
+ revision: WorldStateRevision;
198
+ leaves: PublicDataLeafValue[];
199
+ }
200
+ export interface WsdbFindNullifierSiblingPaths {
201
+ revision: WorldStateRevision;
202
+ leaves: NullifierLeafValue[];
203
+ }
204
+ export interface WsdbAppendLeaves {
205
+ treeId: MerkleTreeId;
206
+ leaves: Fr[];
207
+ forkId: ForkId;
208
+ }
209
+ export interface WsdbAppendPublicDataLeaves {
210
+ leaves: PublicDataLeafValue[];
211
+ forkId: ForkId;
212
+ }
213
+ export interface WsdbAppendNullifierLeaves {
214
+ leaves: NullifierLeafValue[];
215
+ forkId: ForkId;
216
+ }
217
+ export interface WsdbBatchInsertPublicData {
218
+ leaves: PublicDataLeafValue[];
219
+ subtreeDepth: number;
220
+ forkId: ForkId;
221
+ }
222
+ export interface WsdbBatchInsertNullifier {
223
+ leaves: NullifierLeafValue[];
224
+ subtreeDepth: number;
225
+ forkId: ForkId;
226
+ }
227
+ export interface WsdbSequentialInsertPublicData {
228
+ leaves: PublicDataLeafValue[];
229
+ forkId: ForkId;
230
+ }
231
+ export interface WsdbSequentialInsertNullifier {
232
+ leaves: NullifierLeafValue[];
233
+ forkId: ForkId;
234
+ }
235
+ export interface WsdbUpdateArchive {
236
+ blockStateRef: TreeStateReference[];
237
+ blockHeaderHash: BlockHeaderHash;
238
+ forkId: ForkId;
239
+ }
240
+ export interface WsdbCommit {
241
+ }
242
+ export interface WsdbRollback {
243
+ }
244
+ export interface WsdbSyncBlock {
245
+ blockNumber: BlockNumber;
246
+ blockStateRef: TreeStateReference[];
247
+ blockHeaderHash: BlockHeaderHash;
248
+ paddedNoteHashes: Fr[];
249
+ paddedL1ToL2Messages: Fr[];
250
+ paddedNullifiers: NullifierLeafValue[];
251
+ publicDataWrites: PublicDataLeafValue[];
252
+ }
253
+ export interface WsdbCreateFork {
254
+ latest: boolean;
255
+ blockNumber: BlockNumber;
256
+ }
257
+ export interface WsdbDeleteFork {
258
+ forkId: ForkId;
259
+ }
260
+ export interface WsdbFinalizeBlocks {
261
+ toBlockNumber: BlockNumber;
262
+ }
263
+ export interface WsdbUnwindBlocks {
264
+ toBlockNumber: BlockNumber;
265
+ }
266
+ export interface WsdbRemoveHistoricalBlocks {
267
+ toBlockNumber: BlockNumber;
268
+ }
269
+ export interface WsdbGetStatus {
270
+ }
271
+ export interface WsdbCreateCheckpoint {
272
+ forkId: ForkId;
273
+ }
274
+ export interface WsdbCommitCheckpoint {
275
+ forkId: ForkId;
276
+ }
277
+ export interface WsdbRevertCheckpoint {
278
+ forkId: ForkId;
279
+ }
280
+ export interface WsdbCommitAllCheckpoints {
281
+ forkId: ForkId;
282
+ }
283
+ export interface WsdbRevertAllCheckpoints {
284
+ forkId: ForkId;
285
+ }
286
+ export interface WsdbCopyStores {
287
+ dstPath: string;
288
+ compact: boolean | null;
289
+ }
290
+ export interface WsdbErrorResponse {
291
+ message: string;
292
+ }
293
+ export interface WsdbGetTreeInfoResponse {
294
+ treeId: MerkleTreeId;
295
+ root: Fr;
296
+ size: LeafIndex;
297
+ depth: number;
298
+ }
299
+ export interface WsdbGetStateReferenceResponse {
300
+ state: TreeStateReference[];
301
+ }
302
+ export interface WsdbGetInitialStateReferenceResponse {
303
+ state: TreeStateReference[];
304
+ }
305
+ export interface WsdbGetLeafValueResponse {
306
+ value: Fr | null;
307
+ }
308
+ export interface WsdbGetPublicDataLeafValueResponse {
309
+ value: PublicDataLeafValue | null;
310
+ }
311
+ export interface WsdbGetNullifierLeafValueResponse {
312
+ value: NullifierLeafValue | null;
313
+ }
314
+ export interface WsdbGetPublicDataLeafPreimageResponse {
315
+ preimage: IndexedPublicDataLeafValue | null;
316
+ }
317
+ export interface WsdbGetNullifierLeafPreimageResponse {
318
+ preimage: IndexedNullifierLeafValue | null;
319
+ }
320
+ export interface WsdbGetSiblingPathResponse {
321
+ path: Fr[];
322
+ }
323
+ export interface WsdbGetBlockNumbersForLeafIndicesResponse {
324
+ blockNumbers: (BlockNumber | null)[];
325
+ }
326
+ export interface WsdbFindLeafIndicesResponse {
327
+ indices: (LeafIndex | null)[];
328
+ }
329
+ export interface WsdbFindPublicDataLeafIndicesResponse {
330
+ indices: (LeafIndex | null)[];
331
+ }
332
+ export interface WsdbFindNullifierLeafIndicesResponse {
333
+ indices: (LeafIndex | null)[];
334
+ }
335
+ export interface WsdbFindLowLeafResponse {
336
+ alreadyPresent: boolean;
337
+ index: LeafIndex;
338
+ }
339
+ export interface WsdbFindSiblingPathsResponse {
340
+ paths: (SiblingPathAndIndex | null)[];
341
+ }
342
+ export interface WsdbFindPublicDataSiblingPathsResponse {
343
+ paths: (SiblingPathAndIndex | null)[];
344
+ }
345
+ export interface WsdbFindNullifierSiblingPathsResponse {
346
+ paths: (SiblingPathAndIndex | null)[];
347
+ }
348
+ export interface WsdbAppendLeavesResponse {
349
+ }
350
+ export interface WsdbAppendPublicDataLeavesResponse {
351
+ }
352
+ export interface WsdbAppendNullifierLeavesResponse {
353
+ }
354
+ export interface WsdbBatchInsertPublicDataResponse {
355
+ result: BatchInsertionResultPublicData;
356
+ }
357
+ export interface WsdbBatchInsertNullifierResponse {
358
+ result: BatchInsertionResultNullifier;
359
+ }
360
+ export interface WsdbSequentialInsertPublicDataResponse {
361
+ result: SequentialInsertionResultPublicData;
362
+ }
363
+ export interface WsdbSequentialInsertNullifierResponse {
364
+ result: SequentialInsertionResultNullifier;
365
+ }
366
+ export interface WsdbUpdateArchiveResponse {
367
+ }
368
+ export interface WsdbCommitResponse {
369
+ status: WorldStateStatusFull;
370
+ }
371
+ export interface WsdbRollbackResponse {
372
+ }
373
+ export interface WsdbSyncBlockResponse {
374
+ status: WorldStateStatusFull;
375
+ }
376
+ export interface WsdbCreateForkResponse {
377
+ forkId: ForkId;
378
+ }
379
+ export interface WsdbDeleteForkResponse {
380
+ }
381
+ export interface WsdbFinalizeBlocksResponse {
382
+ status: WorldStateStatusSummary;
383
+ }
384
+ export interface WsdbUnwindBlocksResponse {
385
+ status: WorldStateStatusFull;
386
+ }
387
+ export interface WsdbRemoveHistoricalBlocksResponse {
388
+ status: WorldStateStatusFull;
389
+ }
390
+ export interface WsdbGetStatusResponse {
391
+ status: WorldStateStatusSummary;
392
+ }
393
+ export interface WsdbCreateCheckpointResponse {
394
+ }
395
+ export interface WsdbCommitCheckpointResponse {
396
+ }
397
+ export interface WsdbRevertCheckpointResponse {
398
+ }
399
+ export interface WsdbCommitAllCheckpointsResponse {
400
+ }
401
+ export interface WsdbRevertAllCheckpointsResponse {
402
+ }
403
+ export interface WsdbCopyStoresResponse {
404
+ }
405
+ interface MsgpackTreeStateReference {
406
+ treeId: number;
407
+ root: Uint8Array;
408
+ size: number;
409
+ }
410
+ interface MsgpackPublicDataLeafValue {
411
+ slot: Uint8Array;
412
+ value: Uint8Array;
413
+ }
414
+ interface MsgpackNullifierLeafValue {
415
+ nullifier: Uint8Array;
416
+ }
417
+ interface MsgpackIndexedPublicDataLeafValue {
418
+ leaf: MsgpackPublicDataLeafValue;
419
+ nextIndex: number;
420
+ nextKey: Uint8Array;
421
+ }
422
+ interface MsgpackIndexedNullifierLeafValue {
423
+ leaf: MsgpackNullifierLeafValue;
424
+ nextIndex: number;
425
+ nextKey: Uint8Array;
426
+ }
427
+ interface MsgpackSiblingPathAndIndex {
428
+ index: number;
429
+ path: Uint8Array[];
430
+ }
431
+ interface MsgpackPublicDataLeafUpdateWitnessData {
432
+ leaf: MsgpackIndexedPublicDataLeafValue;
433
+ index: number;
434
+ path: Uint8Array[];
435
+ }
436
+ interface MsgpackSortedPublicDataLeaf {
437
+ leaf: MsgpackPublicDataLeafValue;
438
+ index: number;
439
+ }
440
+ interface MsgpackBatchInsertionResultPublicData {
441
+ lowLeafWitnessData: MsgpackPublicDataLeafUpdateWitnessData[];
442
+ sortedLeaves: MsgpackSortedPublicDataLeaf[];
443
+ subtreePath: Uint8Array[];
444
+ }
445
+ interface MsgpackNullifierLeafUpdateWitnessData {
446
+ leaf: MsgpackIndexedNullifierLeafValue;
447
+ index: number;
448
+ path: Uint8Array[];
449
+ }
450
+ interface MsgpackSortedNullifierLeaf {
451
+ leaf: MsgpackNullifierLeafValue;
452
+ index: number;
453
+ }
454
+ interface MsgpackBatchInsertionResultNullifier {
455
+ lowLeafWitnessData: MsgpackNullifierLeafUpdateWitnessData[];
456
+ sortedLeaves: MsgpackSortedNullifierLeaf[];
457
+ subtreePath: Uint8Array[];
458
+ }
459
+ interface MsgpackSequentialInsertionResultPublicData {
460
+ lowLeafWitnessData: MsgpackPublicDataLeafUpdateWitnessData[];
461
+ insertionWitnessData: MsgpackPublicDataLeafUpdateWitnessData[];
462
+ }
463
+ interface MsgpackSequentialInsertionResultNullifier {
464
+ lowLeafWitnessData: MsgpackNullifierLeafUpdateWitnessData[];
465
+ insertionWitnessData: MsgpackNullifierLeafUpdateWitnessData[];
466
+ }
467
+ interface MsgpackWorldStateStatusSummary {
468
+ unfinalizedBlockNumber: number;
469
+ finalizedBlockNumber: number;
470
+ oldestHistoricalBlock: number;
471
+ treesAreSynched: boolean;
472
+ }
473
+ interface MsgpackDBStats {
474
+ name: string;
475
+ numDataItems: number;
476
+ totalUsedSize: number;
477
+ }
478
+ interface MsgpackTreeDBStats {
479
+ mapSize: number;
480
+ physicalFileSize: number;
481
+ blocksDBStats: MsgpackDBStats;
482
+ nodesDBStats: MsgpackDBStats;
483
+ leafPreimagesDBStats: MsgpackDBStats;
484
+ leafIndicesDBStats: MsgpackDBStats;
485
+ blockIndicesDBStats: MsgpackDBStats;
486
+ }
487
+ interface MsgpackWorldStateDBStats {
488
+ noteHashTreeStats: MsgpackTreeDBStats;
489
+ messageTreeStats: MsgpackTreeDBStats;
490
+ archiveTreeStats: MsgpackTreeDBStats;
491
+ publicDataTreeStats: MsgpackTreeDBStats;
492
+ nullifierTreeStats: MsgpackTreeDBStats;
493
+ }
494
+ interface MsgpackTreeMeta {
495
+ name: string;
496
+ depth: number;
497
+ size: number;
498
+ committedSize: number;
499
+ root: Uint8Array;
500
+ initialSize: number;
501
+ initialRoot: Uint8Array;
502
+ oldestHistoricBlock: number;
503
+ unfinalizedBlockHeight: number;
504
+ finalizedBlockHeight: number;
505
+ }
506
+ interface MsgpackWorldStateMeta {
507
+ noteHashTreeMeta: MsgpackTreeMeta;
508
+ messageTreeMeta: MsgpackTreeMeta;
509
+ archiveTreeMeta: MsgpackTreeMeta;
510
+ publicDataTreeMeta: MsgpackTreeMeta;
511
+ nullifierTreeMeta: MsgpackTreeMeta;
512
+ }
513
+ interface MsgpackWorldStateStatusFull {
514
+ summary: MsgpackWorldStateStatusSummary;
515
+ dbStats: MsgpackWorldStateDBStats;
516
+ meta: MsgpackWorldStateMeta;
517
+ }
518
+ interface MsgpackWorldStateRevision {
519
+ forkId: number;
520
+ blockNumber: number;
521
+ includeUncommitted: boolean;
522
+ }
523
+ interface MsgpackWsdbGetTreeInfo {
524
+ treeId: number;
525
+ revision: MsgpackWorldStateRevision;
526
+ }
527
+ interface MsgpackWsdbGetStateReference {
528
+ revision: MsgpackWorldStateRevision;
529
+ }
530
+ interface MsgpackWsdbGetInitialStateReference {
531
+ }
532
+ interface MsgpackWsdbGetLeafValue {
533
+ treeId: number;
534
+ revision: MsgpackWorldStateRevision;
535
+ leafIndex: number;
536
+ }
537
+ interface MsgpackWsdbGetPublicDataLeafValue {
538
+ revision: MsgpackWorldStateRevision;
539
+ leafIndex: number;
540
+ }
541
+ interface MsgpackWsdbGetNullifierLeafValue {
542
+ revision: MsgpackWorldStateRevision;
543
+ leafIndex: number;
544
+ }
545
+ interface MsgpackWsdbGetPublicDataLeafPreimage {
546
+ revision: MsgpackWorldStateRevision;
547
+ leafIndex: number;
548
+ }
549
+ interface MsgpackWsdbGetNullifierLeafPreimage {
550
+ revision: MsgpackWorldStateRevision;
551
+ leafIndex: number;
552
+ }
553
+ interface MsgpackWsdbGetSiblingPath {
554
+ treeId: number;
555
+ revision: MsgpackWorldStateRevision;
556
+ leafIndex: number;
557
+ }
558
+ interface MsgpackWsdbGetBlockNumbersForLeafIndices {
559
+ treeId: number;
560
+ revision: MsgpackWorldStateRevision;
561
+ leafIndices: number[];
562
+ }
563
+ interface MsgpackWsdbFindLeafIndices {
564
+ treeId: number;
565
+ revision: MsgpackWorldStateRevision;
566
+ leaves: Uint8Array[];
567
+ startIndex: number;
568
+ }
569
+ interface MsgpackWsdbFindPublicDataLeafIndices {
570
+ revision: MsgpackWorldStateRevision;
571
+ leaves: MsgpackPublicDataLeafValue[];
572
+ startIndex: number;
573
+ }
574
+ interface MsgpackWsdbFindNullifierLeafIndices {
575
+ revision: MsgpackWorldStateRevision;
576
+ leaves: MsgpackNullifierLeafValue[];
577
+ startIndex: number;
578
+ }
579
+ interface MsgpackWsdbFindLowLeaf {
580
+ treeId: number;
581
+ revision: MsgpackWorldStateRevision;
582
+ key: Uint8Array;
583
+ }
584
+ interface MsgpackWsdbFindSiblingPaths {
585
+ treeId: number;
586
+ revision: MsgpackWorldStateRevision;
587
+ leaves: Uint8Array[];
588
+ }
589
+ interface MsgpackWsdbFindPublicDataSiblingPaths {
590
+ revision: MsgpackWorldStateRevision;
591
+ leaves: MsgpackPublicDataLeafValue[];
592
+ }
593
+ interface MsgpackWsdbFindNullifierSiblingPaths {
594
+ revision: MsgpackWorldStateRevision;
595
+ leaves: MsgpackNullifierLeafValue[];
596
+ }
597
+ interface MsgpackWsdbAppendLeaves {
598
+ treeId: number;
599
+ leaves: Uint8Array[];
600
+ forkId: number;
601
+ }
602
+ interface MsgpackWsdbAppendPublicDataLeaves {
603
+ leaves: MsgpackPublicDataLeafValue[];
604
+ forkId: number;
605
+ }
606
+ interface MsgpackWsdbAppendNullifierLeaves {
607
+ leaves: MsgpackNullifierLeafValue[];
608
+ forkId: number;
609
+ }
610
+ interface MsgpackWsdbBatchInsertPublicData {
611
+ leaves: MsgpackPublicDataLeafValue[];
612
+ subtreeDepth: number;
613
+ forkId: number;
614
+ }
615
+ interface MsgpackWsdbBatchInsertNullifier {
616
+ leaves: MsgpackNullifierLeafValue[];
617
+ subtreeDepth: number;
618
+ forkId: number;
619
+ }
620
+ interface MsgpackWsdbSequentialInsertPublicData {
621
+ leaves: MsgpackPublicDataLeafValue[];
622
+ forkId: number;
623
+ }
624
+ interface MsgpackWsdbSequentialInsertNullifier {
625
+ leaves: MsgpackNullifierLeafValue[];
626
+ forkId: number;
627
+ }
628
+ interface MsgpackWsdbUpdateArchive {
629
+ blockStateRef: MsgpackTreeStateReference[];
630
+ blockHeaderHash: Uint8Array;
631
+ forkId: number;
632
+ }
633
+ interface MsgpackWsdbCommit {
634
+ }
635
+ interface MsgpackWsdbRollback {
636
+ }
637
+ interface MsgpackWsdbSyncBlock {
638
+ blockNumber: number;
639
+ blockStateRef: MsgpackTreeStateReference[];
640
+ blockHeaderHash: Uint8Array;
641
+ paddedNoteHashes: Uint8Array[];
642
+ paddedL1ToL2Messages: Uint8Array[];
643
+ paddedNullifiers: MsgpackNullifierLeafValue[];
644
+ publicDataWrites: MsgpackPublicDataLeafValue[];
645
+ }
646
+ interface MsgpackWsdbCreateFork {
647
+ latest: boolean;
648
+ blockNumber: number;
649
+ }
650
+ interface MsgpackWsdbDeleteFork {
651
+ forkId: number;
652
+ }
653
+ interface MsgpackWsdbFinalizeBlocks {
654
+ toBlockNumber: number;
655
+ }
656
+ interface MsgpackWsdbUnwindBlocks {
657
+ toBlockNumber: number;
658
+ }
659
+ interface MsgpackWsdbRemoveHistoricalBlocks {
660
+ toBlockNumber: number;
661
+ }
662
+ interface MsgpackWsdbGetStatus {
663
+ }
664
+ interface MsgpackWsdbCreateCheckpoint {
665
+ forkId: number;
666
+ }
667
+ interface MsgpackWsdbCommitCheckpoint {
668
+ forkId: number;
669
+ }
670
+ interface MsgpackWsdbRevertCheckpoint {
671
+ forkId: number;
672
+ }
673
+ interface MsgpackWsdbCommitAllCheckpoints {
674
+ forkId: number;
675
+ }
676
+ interface MsgpackWsdbRevertAllCheckpoints {
677
+ forkId: number;
678
+ }
679
+ interface MsgpackWsdbCopyStores {
680
+ dstPath: string;
681
+ compact: boolean | null;
682
+ }
683
+ interface MsgpackWsdbErrorResponse {
684
+ message: string;
685
+ }
686
+ interface MsgpackWsdbGetTreeInfoResponse {
687
+ treeId: number;
688
+ root: Uint8Array;
689
+ size: number;
690
+ depth: number;
691
+ }
692
+ interface MsgpackWsdbGetStateReferenceResponse {
693
+ state: MsgpackTreeStateReference[];
694
+ }
695
+ interface MsgpackWsdbGetInitialStateReferenceResponse {
696
+ state: MsgpackTreeStateReference[];
697
+ }
698
+ interface MsgpackWsdbGetLeafValueResponse {
699
+ value: Uint8Array | null;
700
+ }
701
+ interface MsgpackWsdbGetPublicDataLeafValueResponse {
702
+ value: MsgpackPublicDataLeafValue | null;
703
+ }
704
+ interface MsgpackWsdbGetNullifierLeafValueResponse {
705
+ value: MsgpackNullifierLeafValue | null;
706
+ }
707
+ interface MsgpackWsdbGetPublicDataLeafPreimageResponse {
708
+ preimage: MsgpackIndexedPublicDataLeafValue | null;
709
+ }
710
+ interface MsgpackWsdbGetNullifierLeafPreimageResponse {
711
+ preimage: MsgpackIndexedNullifierLeafValue | null;
712
+ }
713
+ interface MsgpackWsdbGetSiblingPathResponse {
714
+ path: Uint8Array[];
715
+ }
716
+ interface MsgpackWsdbGetBlockNumbersForLeafIndicesResponse {
717
+ blockNumbers: (number | null)[];
718
+ }
719
+ interface MsgpackWsdbFindLeafIndicesResponse {
720
+ indices: (number | null)[];
721
+ }
722
+ interface MsgpackWsdbFindPublicDataLeafIndicesResponse {
723
+ indices: (number | null)[];
724
+ }
725
+ interface MsgpackWsdbFindNullifierLeafIndicesResponse {
726
+ indices: (number | null)[];
727
+ }
728
+ interface MsgpackWsdbFindLowLeafResponse {
729
+ alreadyPresent: boolean;
730
+ index: number;
731
+ }
732
+ interface MsgpackWsdbFindSiblingPathsResponse {
733
+ paths: (MsgpackSiblingPathAndIndex | null)[];
734
+ }
735
+ interface MsgpackWsdbFindPublicDataSiblingPathsResponse {
736
+ paths: (MsgpackSiblingPathAndIndex | null)[];
737
+ }
738
+ interface MsgpackWsdbFindNullifierSiblingPathsResponse {
739
+ paths: (MsgpackSiblingPathAndIndex | null)[];
740
+ }
741
+ interface MsgpackWsdbAppendLeavesResponse {
742
+ }
743
+ interface MsgpackWsdbAppendPublicDataLeavesResponse {
744
+ }
745
+ interface MsgpackWsdbAppendNullifierLeavesResponse {
746
+ }
747
+ interface MsgpackWsdbBatchInsertPublicDataResponse {
748
+ result: MsgpackBatchInsertionResultPublicData;
749
+ }
750
+ interface MsgpackWsdbBatchInsertNullifierResponse {
751
+ result: MsgpackBatchInsertionResultNullifier;
752
+ }
753
+ interface MsgpackWsdbSequentialInsertPublicDataResponse {
754
+ result: MsgpackSequentialInsertionResultPublicData;
755
+ }
756
+ interface MsgpackWsdbSequentialInsertNullifierResponse {
757
+ result: MsgpackSequentialInsertionResultNullifier;
758
+ }
759
+ interface MsgpackWsdbUpdateArchiveResponse {
760
+ }
761
+ interface MsgpackWsdbCommitResponse {
762
+ status: MsgpackWorldStateStatusFull;
763
+ }
764
+ interface MsgpackWsdbRollbackResponse {
765
+ }
766
+ interface MsgpackWsdbSyncBlockResponse {
767
+ status: MsgpackWorldStateStatusFull;
768
+ }
769
+ interface MsgpackWsdbCreateForkResponse {
770
+ forkId: number;
771
+ }
772
+ interface MsgpackWsdbDeleteForkResponse {
773
+ }
774
+ interface MsgpackWsdbFinalizeBlocksResponse {
775
+ status: MsgpackWorldStateStatusSummary;
776
+ }
777
+ interface MsgpackWsdbUnwindBlocksResponse {
778
+ status: MsgpackWorldStateStatusFull;
779
+ }
780
+ interface MsgpackWsdbRemoveHistoricalBlocksResponse {
781
+ status: MsgpackWorldStateStatusFull;
782
+ }
783
+ interface MsgpackWsdbGetStatusResponse {
784
+ status: MsgpackWorldStateStatusSummary;
785
+ }
786
+ interface MsgpackWsdbCreateCheckpointResponse {
787
+ }
788
+ interface MsgpackWsdbCommitCheckpointResponse {
789
+ }
790
+ interface MsgpackWsdbRevertCheckpointResponse {
791
+ }
792
+ interface MsgpackWsdbCommitAllCheckpointsResponse {
793
+ }
794
+ interface MsgpackWsdbRevertAllCheckpointsResponse {
795
+ }
796
+ interface MsgpackWsdbCopyStoresResponse {
797
+ }
798
+ export declare function toTreeStateReference(o: MsgpackTreeStateReference): TreeStateReference;
799
+ export declare function toPublicDataLeafValue(o: MsgpackPublicDataLeafValue): PublicDataLeafValue;
800
+ export declare function toNullifierLeafValue(o: MsgpackNullifierLeafValue): NullifierLeafValue;
801
+ export declare function toIndexedPublicDataLeafValue(o: MsgpackIndexedPublicDataLeafValue): IndexedPublicDataLeafValue;
802
+ export declare function toIndexedNullifierLeafValue(o: MsgpackIndexedNullifierLeafValue): IndexedNullifierLeafValue;
803
+ export declare function toSiblingPathAndIndex(o: MsgpackSiblingPathAndIndex): SiblingPathAndIndex;
804
+ export declare function toPublicDataLeafUpdateWitnessData(o: MsgpackPublicDataLeafUpdateWitnessData): PublicDataLeafUpdateWitnessData;
805
+ export declare function toSortedPublicDataLeaf(o: MsgpackSortedPublicDataLeaf): SortedPublicDataLeaf;
806
+ export declare function toBatchInsertionResultPublicData(o: MsgpackBatchInsertionResultPublicData): BatchInsertionResultPublicData;
807
+ export declare function toNullifierLeafUpdateWitnessData(o: MsgpackNullifierLeafUpdateWitnessData): NullifierLeafUpdateWitnessData;
808
+ export declare function toSortedNullifierLeaf(o: MsgpackSortedNullifierLeaf): SortedNullifierLeaf;
809
+ export declare function toBatchInsertionResultNullifier(o: MsgpackBatchInsertionResultNullifier): BatchInsertionResultNullifier;
810
+ export declare function toSequentialInsertionResultPublicData(o: MsgpackSequentialInsertionResultPublicData): SequentialInsertionResultPublicData;
811
+ export declare function toSequentialInsertionResultNullifier(o: MsgpackSequentialInsertionResultNullifier): SequentialInsertionResultNullifier;
812
+ export declare function toWorldStateStatusSummary(o: MsgpackWorldStateStatusSummary): WorldStateStatusSummary;
813
+ export declare function toDBStats(o: MsgpackDBStats): DBStats;
814
+ export declare function toTreeDBStats(o: MsgpackTreeDBStats): TreeDBStats;
815
+ export declare function toWorldStateDBStats(o: MsgpackWorldStateDBStats): WorldStateDBStats;
816
+ export declare function toTreeMeta(o: MsgpackTreeMeta): TreeMeta;
817
+ export declare function toWorldStateMeta(o: MsgpackWorldStateMeta): WorldStateMeta;
818
+ export declare function toWorldStateStatusFull(o: MsgpackWorldStateStatusFull): WorldStateStatusFull;
819
+ export declare function toWorldStateRevision(o: MsgpackWorldStateRevision): WorldStateRevision;
820
+ export declare function toWsdbGetTreeInfo(o: MsgpackWsdbGetTreeInfo): WsdbGetTreeInfo;
821
+ export declare function toWsdbGetStateReference(o: MsgpackWsdbGetStateReference): WsdbGetStateReference;
822
+ export declare function toWsdbGetInitialStateReference(o: MsgpackWsdbGetInitialStateReference): WsdbGetInitialStateReference;
823
+ export declare function toWsdbGetLeafValue(o: MsgpackWsdbGetLeafValue): WsdbGetLeafValue;
824
+ export declare function toWsdbGetPublicDataLeafValue(o: MsgpackWsdbGetPublicDataLeafValue): WsdbGetPublicDataLeafValue;
825
+ export declare function toWsdbGetNullifierLeafValue(o: MsgpackWsdbGetNullifierLeafValue): WsdbGetNullifierLeafValue;
826
+ export declare function toWsdbGetPublicDataLeafPreimage(o: MsgpackWsdbGetPublicDataLeafPreimage): WsdbGetPublicDataLeafPreimage;
827
+ export declare function toWsdbGetNullifierLeafPreimage(o: MsgpackWsdbGetNullifierLeafPreimage): WsdbGetNullifierLeafPreimage;
828
+ export declare function toWsdbGetSiblingPath(o: MsgpackWsdbGetSiblingPath): WsdbGetSiblingPath;
829
+ export declare function toWsdbGetBlockNumbersForLeafIndices(o: MsgpackWsdbGetBlockNumbersForLeafIndices): WsdbGetBlockNumbersForLeafIndices;
830
+ export declare function toWsdbFindLeafIndices(o: MsgpackWsdbFindLeafIndices): WsdbFindLeafIndices;
831
+ export declare function toWsdbFindPublicDataLeafIndices(o: MsgpackWsdbFindPublicDataLeafIndices): WsdbFindPublicDataLeafIndices;
832
+ export declare function toWsdbFindNullifierLeafIndices(o: MsgpackWsdbFindNullifierLeafIndices): WsdbFindNullifierLeafIndices;
833
+ export declare function toWsdbFindLowLeaf(o: MsgpackWsdbFindLowLeaf): WsdbFindLowLeaf;
834
+ export declare function toWsdbFindSiblingPaths(o: MsgpackWsdbFindSiblingPaths): WsdbFindSiblingPaths;
835
+ export declare function toWsdbFindPublicDataSiblingPaths(o: MsgpackWsdbFindPublicDataSiblingPaths): WsdbFindPublicDataSiblingPaths;
836
+ export declare function toWsdbFindNullifierSiblingPaths(o: MsgpackWsdbFindNullifierSiblingPaths): WsdbFindNullifierSiblingPaths;
837
+ export declare function toWsdbAppendLeaves(o: MsgpackWsdbAppendLeaves): WsdbAppendLeaves;
838
+ export declare function toWsdbAppendPublicDataLeaves(o: MsgpackWsdbAppendPublicDataLeaves): WsdbAppendPublicDataLeaves;
839
+ export declare function toWsdbAppendNullifierLeaves(o: MsgpackWsdbAppendNullifierLeaves): WsdbAppendNullifierLeaves;
840
+ export declare function toWsdbBatchInsertPublicData(o: MsgpackWsdbBatchInsertPublicData): WsdbBatchInsertPublicData;
841
+ export declare function toWsdbBatchInsertNullifier(o: MsgpackWsdbBatchInsertNullifier): WsdbBatchInsertNullifier;
842
+ export declare function toWsdbSequentialInsertPublicData(o: MsgpackWsdbSequentialInsertPublicData): WsdbSequentialInsertPublicData;
843
+ export declare function toWsdbSequentialInsertNullifier(o: MsgpackWsdbSequentialInsertNullifier): WsdbSequentialInsertNullifier;
844
+ export declare function toWsdbUpdateArchive(o: MsgpackWsdbUpdateArchive): WsdbUpdateArchive;
845
+ export declare function toWsdbCommit(o: MsgpackWsdbCommit): WsdbCommit;
846
+ export declare function toWsdbRollback(o: MsgpackWsdbRollback): WsdbRollback;
847
+ export declare function toWsdbSyncBlock(o: MsgpackWsdbSyncBlock): WsdbSyncBlock;
848
+ export declare function toWsdbCreateFork(o: MsgpackWsdbCreateFork): WsdbCreateFork;
849
+ export declare function toWsdbDeleteFork(o: MsgpackWsdbDeleteFork): WsdbDeleteFork;
850
+ export declare function toWsdbFinalizeBlocks(o: MsgpackWsdbFinalizeBlocks): WsdbFinalizeBlocks;
851
+ export declare function toWsdbUnwindBlocks(o: MsgpackWsdbUnwindBlocks): WsdbUnwindBlocks;
852
+ export declare function toWsdbRemoveHistoricalBlocks(o: MsgpackWsdbRemoveHistoricalBlocks): WsdbRemoveHistoricalBlocks;
853
+ export declare function toWsdbGetStatus(o: MsgpackWsdbGetStatus): WsdbGetStatus;
854
+ export declare function toWsdbCreateCheckpoint(o: MsgpackWsdbCreateCheckpoint): WsdbCreateCheckpoint;
855
+ export declare function toWsdbCommitCheckpoint(o: MsgpackWsdbCommitCheckpoint): WsdbCommitCheckpoint;
856
+ export declare function toWsdbRevertCheckpoint(o: MsgpackWsdbRevertCheckpoint): WsdbRevertCheckpoint;
857
+ export declare function toWsdbCommitAllCheckpoints(o: MsgpackWsdbCommitAllCheckpoints): WsdbCommitAllCheckpoints;
858
+ export declare function toWsdbRevertAllCheckpoints(o: MsgpackWsdbRevertAllCheckpoints): WsdbRevertAllCheckpoints;
859
+ export declare function toWsdbCopyStores(o: MsgpackWsdbCopyStores): WsdbCopyStores;
860
+ export declare function toWsdbErrorResponse(o: MsgpackWsdbErrorResponse): WsdbErrorResponse;
861
+ export declare function toWsdbGetTreeInfoResponse(o: MsgpackWsdbGetTreeInfoResponse): WsdbGetTreeInfoResponse;
862
+ export declare function toWsdbGetStateReferenceResponse(o: MsgpackWsdbGetStateReferenceResponse): WsdbGetStateReferenceResponse;
863
+ export declare function toWsdbGetInitialStateReferenceResponse(o: MsgpackWsdbGetInitialStateReferenceResponse): WsdbGetInitialStateReferenceResponse;
864
+ export declare function toWsdbGetLeafValueResponse(o: MsgpackWsdbGetLeafValueResponse): WsdbGetLeafValueResponse;
865
+ export declare function toWsdbGetPublicDataLeafValueResponse(o: MsgpackWsdbGetPublicDataLeafValueResponse): WsdbGetPublicDataLeafValueResponse;
866
+ export declare function toWsdbGetNullifierLeafValueResponse(o: MsgpackWsdbGetNullifierLeafValueResponse): WsdbGetNullifierLeafValueResponse;
867
+ export declare function toWsdbGetPublicDataLeafPreimageResponse(o: MsgpackWsdbGetPublicDataLeafPreimageResponse): WsdbGetPublicDataLeafPreimageResponse;
868
+ export declare function toWsdbGetNullifierLeafPreimageResponse(o: MsgpackWsdbGetNullifierLeafPreimageResponse): WsdbGetNullifierLeafPreimageResponse;
869
+ export declare function toWsdbGetSiblingPathResponse(o: MsgpackWsdbGetSiblingPathResponse): WsdbGetSiblingPathResponse;
870
+ export declare function toWsdbGetBlockNumbersForLeafIndicesResponse(o: MsgpackWsdbGetBlockNumbersForLeafIndicesResponse): WsdbGetBlockNumbersForLeafIndicesResponse;
871
+ export declare function toWsdbFindLeafIndicesResponse(o: MsgpackWsdbFindLeafIndicesResponse): WsdbFindLeafIndicesResponse;
872
+ export declare function toWsdbFindPublicDataLeafIndicesResponse(o: MsgpackWsdbFindPublicDataLeafIndicesResponse): WsdbFindPublicDataLeafIndicesResponse;
873
+ export declare function toWsdbFindNullifierLeafIndicesResponse(o: MsgpackWsdbFindNullifierLeafIndicesResponse): WsdbFindNullifierLeafIndicesResponse;
874
+ export declare function toWsdbFindLowLeafResponse(o: MsgpackWsdbFindLowLeafResponse): WsdbFindLowLeafResponse;
875
+ export declare function toWsdbFindSiblingPathsResponse(o: MsgpackWsdbFindSiblingPathsResponse): WsdbFindSiblingPathsResponse;
876
+ export declare function toWsdbFindPublicDataSiblingPathsResponse(o: MsgpackWsdbFindPublicDataSiblingPathsResponse): WsdbFindPublicDataSiblingPathsResponse;
877
+ export declare function toWsdbFindNullifierSiblingPathsResponse(o: MsgpackWsdbFindNullifierSiblingPathsResponse): WsdbFindNullifierSiblingPathsResponse;
878
+ export declare function toWsdbAppendLeavesResponse(o: MsgpackWsdbAppendLeavesResponse): WsdbAppendLeavesResponse;
879
+ export declare function toWsdbAppendPublicDataLeavesResponse(o: MsgpackWsdbAppendPublicDataLeavesResponse): WsdbAppendPublicDataLeavesResponse;
880
+ export declare function toWsdbAppendNullifierLeavesResponse(o: MsgpackWsdbAppendNullifierLeavesResponse): WsdbAppendNullifierLeavesResponse;
881
+ export declare function toWsdbBatchInsertPublicDataResponse(o: MsgpackWsdbBatchInsertPublicDataResponse): WsdbBatchInsertPublicDataResponse;
882
+ export declare function toWsdbBatchInsertNullifierResponse(o: MsgpackWsdbBatchInsertNullifierResponse): WsdbBatchInsertNullifierResponse;
883
+ export declare function toWsdbSequentialInsertPublicDataResponse(o: MsgpackWsdbSequentialInsertPublicDataResponse): WsdbSequentialInsertPublicDataResponse;
884
+ export declare function toWsdbSequentialInsertNullifierResponse(o: MsgpackWsdbSequentialInsertNullifierResponse): WsdbSequentialInsertNullifierResponse;
885
+ export declare function toWsdbUpdateArchiveResponse(o: MsgpackWsdbUpdateArchiveResponse): WsdbUpdateArchiveResponse;
886
+ export declare function toWsdbCommitResponse(o: MsgpackWsdbCommitResponse): WsdbCommitResponse;
887
+ export declare function toWsdbRollbackResponse(o: MsgpackWsdbRollbackResponse): WsdbRollbackResponse;
888
+ export declare function toWsdbSyncBlockResponse(o: MsgpackWsdbSyncBlockResponse): WsdbSyncBlockResponse;
889
+ export declare function toWsdbCreateForkResponse(o: MsgpackWsdbCreateForkResponse): WsdbCreateForkResponse;
890
+ export declare function toWsdbDeleteForkResponse(o: MsgpackWsdbDeleteForkResponse): WsdbDeleteForkResponse;
891
+ export declare function toWsdbFinalizeBlocksResponse(o: MsgpackWsdbFinalizeBlocksResponse): WsdbFinalizeBlocksResponse;
892
+ export declare function toWsdbUnwindBlocksResponse(o: MsgpackWsdbUnwindBlocksResponse): WsdbUnwindBlocksResponse;
893
+ export declare function toWsdbRemoveHistoricalBlocksResponse(o: MsgpackWsdbRemoveHistoricalBlocksResponse): WsdbRemoveHistoricalBlocksResponse;
894
+ export declare function toWsdbGetStatusResponse(o: MsgpackWsdbGetStatusResponse): WsdbGetStatusResponse;
895
+ export declare function toWsdbCreateCheckpointResponse(o: MsgpackWsdbCreateCheckpointResponse): WsdbCreateCheckpointResponse;
896
+ export declare function toWsdbCommitCheckpointResponse(o: MsgpackWsdbCommitCheckpointResponse): WsdbCommitCheckpointResponse;
897
+ export declare function toWsdbRevertCheckpointResponse(o: MsgpackWsdbRevertCheckpointResponse): WsdbRevertCheckpointResponse;
898
+ export declare function toWsdbCommitAllCheckpointsResponse(o: MsgpackWsdbCommitAllCheckpointsResponse): WsdbCommitAllCheckpointsResponse;
899
+ export declare function toWsdbRevertAllCheckpointsResponse(o: MsgpackWsdbRevertAllCheckpointsResponse): WsdbRevertAllCheckpointsResponse;
900
+ export declare function toWsdbCopyStoresResponse(o: MsgpackWsdbCopyStoresResponse): WsdbCopyStoresResponse;
901
+ export declare function fromTreeStateReference(o: TreeStateReference): MsgpackTreeStateReference;
902
+ export declare function fromPublicDataLeafValue(o: PublicDataLeafValue): MsgpackPublicDataLeafValue;
903
+ export declare function fromNullifierLeafValue(o: NullifierLeafValue): MsgpackNullifierLeafValue;
904
+ export declare function fromIndexedPublicDataLeafValue(o: IndexedPublicDataLeafValue): MsgpackIndexedPublicDataLeafValue;
905
+ export declare function fromIndexedNullifierLeafValue(o: IndexedNullifierLeafValue): MsgpackIndexedNullifierLeafValue;
906
+ export declare function fromSiblingPathAndIndex(o: SiblingPathAndIndex): MsgpackSiblingPathAndIndex;
907
+ export declare function fromPublicDataLeafUpdateWitnessData(o: PublicDataLeafUpdateWitnessData): MsgpackPublicDataLeafUpdateWitnessData;
908
+ export declare function fromSortedPublicDataLeaf(o: SortedPublicDataLeaf): MsgpackSortedPublicDataLeaf;
909
+ export declare function fromBatchInsertionResultPublicData(o: BatchInsertionResultPublicData): MsgpackBatchInsertionResultPublicData;
910
+ export declare function fromNullifierLeafUpdateWitnessData(o: NullifierLeafUpdateWitnessData): MsgpackNullifierLeafUpdateWitnessData;
911
+ export declare function fromSortedNullifierLeaf(o: SortedNullifierLeaf): MsgpackSortedNullifierLeaf;
912
+ export declare function fromBatchInsertionResultNullifier(o: BatchInsertionResultNullifier): MsgpackBatchInsertionResultNullifier;
913
+ export declare function fromSequentialInsertionResultPublicData(o: SequentialInsertionResultPublicData): MsgpackSequentialInsertionResultPublicData;
914
+ export declare function fromSequentialInsertionResultNullifier(o: SequentialInsertionResultNullifier): MsgpackSequentialInsertionResultNullifier;
915
+ export declare function fromWorldStateStatusSummary(o: WorldStateStatusSummary): MsgpackWorldStateStatusSummary;
916
+ export declare function fromDBStats(o: DBStats): MsgpackDBStats;
917
+ export declare function fromTreeDBStats(o: TreeDBStats): MsgpackTreeDBStats;
918
+ export declare function fromWorldStateDBStats(o: WorldStateDBStats): MsgpackWorldStateDBStats;
919
+ export declare function fromTreeMeta(o: TreeMeta): MsgpackTreeMeta;
920
+ export declare function fromWorldStateMeta(o: WorldStateMeta): MsgpackWorldStateMeta;
921
+ export declare function fromWorldStateStatusFull(o: WorldStateStatusFull): MsgpackWorldStateStatusFull;
922
+ export declare function fromWorldStateRevision(o: WorldStateRevision): MsgpackWorldStateRevision;
923
+ export declare function fromWsdbGetTreeInfo(o: WsdbGetTreeInfo): MsgpackWsdbGetTreeInfo;
924
+ export declare function fromWsdbGetStateReference(o: WsdbGetStateReference): MsgpackWsdbGetStateReference;
925
+ export declare function fromWsdbGetInitialStateReference(o: WsdbGetInitialStateReference): MsgpackWsdbGetInitialStateReference;
926
+ export declare function fromWsdbGetLeafValue(o: WsdbGetLeafValue): MsgpackWsdbGetLeafValue;
927
+ export declare function fromWsdbGetPublicDataLeafValue(o: WsdbGetPublicDataLeafValue): MsgpackWsdbGetPublicDataLeafValue;
928
+ export declare function fromWsdbGetNullifierLeafValue(o: WsdbGetNullifierLeafValue): MsgpackWsdbGetNullifierLeafValue;
929
+ export declare function fromWsdbGetPublicDataLeafPreimage(o: WsdbGetPublicDataLeafPreimage): MsgpackWsdbGetPublicDataLeafPreimage;
930
+ export declare function fromWsdbGetNullifierLeafPreimage(o: WsdbGetNullifierLeafPreimage): MsgpackWsdbGetNullifierLeafPreimage;
931
+ export declare function fromWsdbGetSiblingPath(o: WsdbGetSiblingPath): MsgpackWsdbGetSiblingPath;
932
+ export declare function fromWsdbGetBlockNumbersForLeafIndices(o: WsdbGetBlockNumbersForLeafIndices): MsgpackWsdbGetBlockNumbersForLeafIndices;
933
+ export declare function fromWsdbFindLeafIndices(o: WsdbFindLeafIndices): MsgpackWsdbFindLeafIndices;
934
+ export declare function fromWsdbFindPublicDataLeafIndices(o: WsdbFindPublicDataLeafIndices): MsgpackWsdbFindPublicDataLeafIndices;
935
+ export declare function fromWsdbFindNullifierLeafIndices(o: WsdbFindNullifierLeafIndices): MsgpackWsdbFindNullifierLeafIndices;
936
+ export declare function fromWsdbFindLowLeaf(o: WsdbFindLowLeaf): MsgpackWsdbFindLowLeaf;
937
+ export declare function fromWsdbFindSiblingPaths(o: WsdbFindSiblingPaths): MsgpackWsdbFindSiblingPaths;
938
+ export declare function fromWsdbFindPublicDataSiblingPaths(o: WsdbFindPublicDataSiblingPaths): MsgpackWsdbFindPublicDataSiblingPaths;
939
+ export declare function fromWsdbFindNullifierSiblingPaths(o: WsdbFindNullifierSiblingPaths): MsgpackWsdbFindNullifierSiblingPaths;
940
+ export declare function fromWsdbAppendLeaves(o: WsdbAppendLeaves): MsgpackWsdbAppendLeaves;
941
+ export declare function fromWsdbAppendPublicDataLeaves(o: WsdbAppendPublicDataLeaves): MsgpackWsdbAppendPublicDataLeaves;
942
+ export declare function fromWsdbAppendNullifierLeaves(o: WsdbAppendNullifierLeaves): MsgpackWsdbAppendNullifierLeaves;
943
+ export declare function fromWsdbBatchInsertPublicData(o: WsdbBatchInsertPublicData): MsgpackWsdbBatchInsertPublicData;
944
+ export declare function fromWsdbBatchInsertNullifier(o: WsdbBatchInsertNullifier): MsgpackWsdbBatchInsertNullifier;
945
+ export declare function fromWsdbSequentialInsertPublicData(o: WsdbSequentialInsertPublicData): MsgpackWsdbSequentialInsertPublicData;
946
+ export declare function fromWsdbSequentialInsertNullifier(o: WsdbSequentialInsertNullifier): MsgpackWsdbSequentialInsertNullifier;
947
+ export declare function fromWsdbUpdateArchive(o: WsdbUpdateArchive): MsgpackWsdbUpdateArchive;
948
+ export declare function fromWsdbCommit(o: WsdbCommit): MsgpackWsdbCommit;
949
+ export declare function fromWsdbRollback(o: WsdbRollback): MsgpackWsdbRollback;
950
+ export declare function fromWsdbSyncBlock(o: WsdbSyncBlock): MsgpackWsdbSyncBlock;
951
+ export declare function fromWsdbCreateFork(o: WsdbCreateFork): MsgpackWsdbCreateFork;
952
+ export declare function fromWsdbDeleteFork(o: WsdbDeleteFork): MsgpackWsdbDeleteFork;
953
+ export declare function fromWsdbFinalizeBlocks(o: WsdbFinalizeBlocks): MsgpackWsdbFinalizeBlocks;
954
+ export declare function fromWsdbUnwindBlocks(o: WsdbUnwindBlocks): MsgpackWsdbUnwindBlocks;
955
+ export declare function fromWsdbRemoveHistoricalBlocks(o: WsdbRemoveHistoricalBlocks): MsgpackWsdbRemoveHistoricalBlocks;
956
+ export declare function fromWsdbGetStatus(o: WsdbGetStatus): MsgpackWsdbGetStatus;
957
+ export declare function fromWsdbCreateCheckpoint(o: WsdbCreateCheckpoint): MsgpackWsdbCreateCheckpoint;
958
+ export declare function fromWsdbCommitCheckpoint(o: WsdbCommitCheckpoint): MsgpackWsdbCommitCheckpoint;
959
+ export declare function fromWsdbRevertCheckpoint(o: WsdbRevertCheckpoint): MsgpackWsdbRevertCheckpoint;
960
+ export declare function fromWsdbCommitAllCheckpoints(o: WsdbCommitAllCheckpoints): MsgpackWsdbCommitAllCheckpoints;
961
+ export declare function fromWsdbRevertAllCheckpoints(o: WsdbRevertAllCheckpoints): MsgpackWsdbRevertAllCheckpoints;
962
+ export declare function fromWsdbCopyStores(o: WsdbCopyStores): MsgpackWsdbCopyStores;
963
+ export declare function fromWsdbErrorResponse(o: WsdbErrorResponse): MsgpackWsdbErrorResponse;
964
+ export declare function fromWsdbGetTreeInfoResponse(o: WsdbGetTreeInfoResponse): MsgpackWsdbGetTreeInfoResponse;
965
+ export declare function fromWsdbGetStateReferenceResponse(o: WsdbGetStateReferenceResponse): MsgpackWsdbGetStateReferenceResponse;
966
+ export declare function fromWsdbGetInitialStateReferenceResponse(o: WsdbGetInitialStateReferenceResponse): MsgpackWsdbGetInitialStateReferenceResponse;
967
+ export declare function fromWsdbGetLeafValueResponse(o: WsdbGetLeafValueResponse): MsgpackWsdbGetLeafValueResponse;
968
+ export declare function fromWsdbGetPublicDataLeafValueResponse(o: WsdbGetPublicDataLeafValueResponse): MsgpackWsdbGetPublicDataLeafValueResponse;
969
+ export declare function fromWsdbGetNullifierLeafValueResponse(o: WsdbGetNullifierLeafValueResponse): MsgpackWsdbGetNullifierLeafValueResponse;
970
+ export declare function fromWsdbGetPublicDataLeafPreimageResponse(o: WsdbGetPublicDataLeafPreimageResponse): MsgpackWsdbGetPublicDataLeafPreimageResponse;
971
+ export declare function fromWsdbGetNullifierLeafPreimageResponse(o: WsdbGetNullifierLeafPreimageResponse): MsgpackWsdbGetNullifierLeafPreimageResponse;
972
+ export declare function fromWsdbGetSiblingPathResponse(o: WsdbGetSiblingPathResponse): MsgpackWsdbGetSiblingPathResponse;
973
+ export declare function fromWsdbGetBlockNumbersForLeafIndicesResponse(o: WsdbGetBlockNumbersForLeafIndicesResponse): MsgpackWsdbGetBlockNumbersForLeafIndicesResponse;
974
+ export declare function fromWsdbFindLeafIndicesResponse(o: WsdbFindLeafIndicesResponse): MsgpackWsdbFindLeafIndicesResponse;
975
+ export declare function fromWsdbFindPublicDataLeafIndicesResponse(o: WsdbFindPublicDataLeafIndicesResponse): MsgpackWsdbFindPublicDataLeafIndicesResponse;
976
+ export declare function fromWsdbFindNullifierLeafIndicesResponse(o: WsdbFindNullifierLeafIndicesResponse): MsgpackWsdbFindNullifierLeafIndicesResponse;
977
+ export declare function fromWsdbFindLowLeafResponse(o: WsdbFindLowLeafResponse): MsgpackWsdbFindLowLeafResponse;
978
+ export declare function fromWsdbFindSiblingPathsResponse(o: WsdbFindSiblingPathsResponse): MsgpackWsdbFindSiblingPathsResponse;
979
+ export declare function fromWsdbFindPublicDataSiblingPathsResponse(o: WsdbFindPublicDataSiblingPathsResponse): MsgpackWsdbFindPublicDataSiblingPathsResponse;
980
+ export declare function fromWsdbFindNullifierSiblingPathsResponse(o: WsdbFindNullifierSiblingPathsResponse): MsgpackWsdbFindNullifierSiblingPathsResponse;
981
+ export declare function fromWsdbAppendLeavesResponse(o: WsdbAppendLeavesResponse): MsgpackWsdbAppendLeavesResponse;
982
+ export declare function fromWsdbAppendPublicDataLeavesResponse(o: WsdbAppendPublicDataLeavesResponse): MsgpackWsdbAppendPublicDataLeavesResponse;
983
+ export declare function fromWsdbAppendNullifierLeavesResponse(o: WsdbAppendNullifierLeavesResponse): MsgpackWsdbAppendNullifierLeavesResponse;
984
+ export declare function fromWsdbBatchInsertPublicDataResponse(o: WsdbBatchInsertPublicDataResponse): MsgpackWsdbBatchInsertPublicDataResponse;
985
+ export declare function fromWsdbBatchInsertNullifierResponse(o: WsdbBatchInsertNullifierResponse): MsgpackWsdbBatchInsertNullifierResponse;
986
+ export declare function fromWsdbSequentialInsertPublicDataResponse(o: WsdbSequentialInsertPublicDataResponse): MsgpackWsdbSequentialInsertPublicDataResponse;
987
+ export declare function fromWsdbSequentialInsertNullifierResponse(o: WsdbSequentialInsertNullifierResponse): MsgpackWsdbSequentialInsertNullifierResponse;
988
+ export declare function fromWsdbUpdateArchiveResponse(o: WsdbUpdateArchiveResponse): MsgpackWsdbUpdateArchiveResponse;
989
+ export declare function fromWsdbCommitResponse(o: WsdbCommitResponse): MsgpackWsdbCommitResponse;
990
+ export declare function fromWsdbRollbackResponse(o: WsdbRollbackResponse): MsgpackWsdbRollbackResponse;
991
+ export declare function fromWsdbSyncBlockResponse(o: WsdbSyncBlockResponse): MsgpackWsdbSyncBlockResponse;
992
+ export declare function fromWsdbCreateForkResponse(o: WsdbCreateForkResponse): MsgpackWsdbCreateForkResponse;
993
+ export declare function fromWsdbDeleteForkResponse(o: WsdbDeleteForkResponse): MsgpackWsdbDeleteForkResponse;
994
+ export declare function fromWsdbFinalizeBlocksResponse(o: WsdbFinalizeBlocksResponse): MsgpackWsdbFinalizeBlocksResponse;
995
+ export declare function fromWsdbUnwindBlocksResponse(o: WsdbUnwindBlocksResponse): MsgpackWsdbUnwindBlocksResponse;
996
+ export declare function fromWsdbRemoveHistoricalBlocksResponse(o: WsdbRemoveHistoricalBlocksResponse): MsgpackWsdbRemoveHistoricalBlocksResponse;
997
+ export declare function fromWsdbGetStatusResponse(o: WsdbGetStatusResponse): MsgpackWsdbGetStatusResponse;
998
+ export declare function fromWsdbCreateCheckpointResponse(o: WsdbCreateCheckpointResponse): MsgpackWsdbCreateCheckpointResponse;
999
+ export declare function fromWsdbCommitCheckpointResponse(o: WsdbCommitCheckpointResponse): MsgpackWsdbCommitCheckpointResponse;
1000
+ export declare function fromWsdbRevertCheckpointResponse(o: WsdbRevertCheckpointResponse): MsgpackWsdbRevertCheckpointResponse;
1001
+ export declare function fromWsdbCommitAllCheckpointsResponse(o: WsdbCommitAllCheckpointsResponse): MsgpackWsdbCommitAllCheckpointsResponse;
1002
+ export declare function fromWsdbRevertAllCheckpointsResponse(o: WsdbRevertAllCheckpointsResponse): MsgpackWsdbRevertAllCheckpointsResponse;
1003
+ export declare function fromWsdbCopyStoresResponse(o: WsdbCopyStoresResponse): MsgpackWsdbCopyStoresResponse;
1004
+ export interface AsyncApiBase {
1005
+ getTreeInfo(command: WsdbGetTreeInfo): Promise<WsdbGetTreeInfoResponse>;
1006
+ getStateReference(command: WsdbGetStateReference): Promise<WsdbGetStateReferenceResponse>;
1007
+ getInitialStateReference(command: WsdbGetInitialStateReference): Promise<WsdbGetInitialStateReferenceResponse>;
1008
+ getLeafValue(command: WsdbGetLeafValue): Promise<WsdbGetLeafValueResponse>;
1009
+ getPublicDataLeafValue(command: WsdbGetPublicDataLeafValue): Promise<WsdbGetPublicDataLeafValueResponse>;
1010
+ getNullifierLeafValue(command: WsdbGetNullifierLeafValue): Promise<WsdbGetNullifierLeafValueResponse>;
1011
+ getPublicDataLeafPreimage(command: WsdbGetPublicDataLeafPreimage): Promise<WsdbGetPublicDataLeafPreimageResponse>;
1012
+ getNullifierLeafPreimage(command: WsdbGetNullifierLeafPreimage): Promise<WsdbGetNullifierLeafPreimageResponse>;
1013
+ getSiblingPath(command: WsdbGetSiblingPath): Promise<WsdbGetSiblingPathResponse>;
1014
+ getBlockNumbersForLeafIndices(command: WsdbGetBlockNumbersForLeafIndices): Promise<WsdbGetBlockNumbersForLeafIndicesResponse>;
1015
+ findLeafIndices(command: WsdbFindLeafIndices): Promise<WsdbFindLeafIndicesResponse>;
1016
+ findPublicDataLeafIndices(command: WsdbFindPublicDataLeafIndices): Promise<WsdbFindPublicDataLeafIndicesResponse>;
1017
+ findNullifierLeafIndices(command: WsdbFindNullifierLeafIndices): Promise<WsdbFindNullifierLeafIndicesResponse>;
1018
+ findLowLeaf(command: WsdbFindLowLeaf): Promise<WsdbFindLowLeafResponse>;
1019
+ findSiblingPaths(command: WsdbFindSiblingPaths): Promise<WsdbFindSiblingPathsResponse>;
1020
+ findPublicDataSiblingPaths(command: WsdbFindPublicDataSiblingPaths): Promise<WsdbFindPublicDataSiblingPathsResponse>;
1021
+ findNullifierSiblingPaths(command: WsdbFindNullifierSiblingPaths): Promise<WsdbFindNullifierSiblingPathsResponse>;
1022
+ appendLeaves(command: WsdbAppendLeaves): Promise<WsdbAppendLeavesResponse>;
1023
+ appendPublicDataLeaves(command: WsdbAppendPublicDataLeaves): Promise<WsdbAppendPublicDataLeavesResponse>;
1024
+ appendNullifierLeaves(command: WsdbAppendNullifierLeaves): Promise<WsdbAppendNullifierLeavesResponse>;
1025
+ batchInsertPublicData(command: WsdbBatchInsertPublicData): Promise<WsdbBatchInsertPublicDataResponse>;
1026
+ batchInsertNullifier(command: WsdbBatchInsertNullifier): Promise<WsdbBatchInsertNullifierResponse>;
1027
+ sequentialInsertPublicData(command: WsdbSequentialInsertPublicData): Promise<WsdbSequentialInsertPublicDataResponse>;
1028
+ sequentialInsertNullifier(command: WsdbSequentialInsertNullifier): Promise<WsdbSequentialInsertNullifierResponse>;
1029
+ updateArchive(command: WsdbUpdateArchive): Promise<WsdbUpdateArchiveResponse>;
1030
+ commit(command: WsdbCommit): Promise<WsdbCommitResponse>;
1031
+ rollback(command: WsdbRollback): Promise<WsdbRollbackResponse>;
1032
+ syncBlock(command: WsdbSyncBlock): Promise<WsdbSyncBlockResponse>;
1033
+ createFork(command: WsdbCreateFork): Promise<WsdbCreateForkResponse>;
1034
+ deleteFork(command: WsdbDeleteFork): Promise<WsdbDeleteForkResponse>;
1035
+ finalizeBlocks(command: WsdbFinalizeBlocks): Promise<WsdbFinalizeBlocksResponse>;
1036
+ unwindBlocks(command: WsdbUnwindBlocks): Promise<WsdbUnwindBlocksResponse>;
1037
+ removeHistoricalBlocks(command: WsdbRemoveHistoricalBlocks): Promise<WsdbRemoveHistoricalBlocksResponse>;
1038
+ getStatus(command: WsdbGetStatus): Promise<WsdbGetStatusResponse>;
1039
+ createCheckpoint(command: WsdbCreateCheckpoint): Promise<WsdbCreateCheckpointResponse>;
1040
+ commitCheckpoint(command: WsdbCommitCheckpoint): Promise<WsdbCommitCheckpointResponse>;
1041
+ revertCheckpoint(command: WsdbRevertCheckpoint): Promise<WsdbRevertCheckpointResponse>;
1042
+ commitAllCheckpoints(command: WsdbCommitAllCheckpoints): Promise<WsdbCommitAllCheckpointsResponse>;
1043
+ revertAllCheckpoints(command: WsdbRevertAllCheckpoints): Promise<WsdbRevertAllCheckpointsResponse>;
1044
+ copyStores(command: WsdbCopyStores): Promise<WsdbCopyStoresResponse>;
1045
+ destroy(): Promise<void>;
1046
+ }
1047
+ export interface SyncApiBase {
1048
+ getTreeInfo(command: WsdbGetTreeInfo): WsdbGetTreeInfoResponse;
1049
+ getStateReference(command: WsdbGetStateReference): WsdbGetStateReferenceResponse;
1050
+ getInitialStateReference(command: WsdbGetInitialStateReference): WsdbGetInitialStateReferenceResponse;
1051
+ getLeafValue(command: WsdbGetLeafValue): WsdbGetLeafValueResponse;
1052
+ getPublicDataLeafValue(command: WsdbGetPublicDataLeafValue): WsdbGetPublicDataLeafValueResponse;
1053
+ getNullifierLeafValue(command: WsdbGetNullifierLeafValue): WsdbGetNullifierLeafValueResponse;
1054
+ getPublicDataLeafPreimage(command: WsdbGetPublicDataLeafPreimage): WsdbGetPublicDataLeafPreimageResponse;
1055
+ getNullifierLeafPreimage(command: WsdbGetNullifierLeafPreimage): WsdbGetNullifierLeafPreimageResponse;
1056
+ getSiblingPath(command: WsdbGetSiblingPath): WsdbGetSiblingPathResponse;
1057
+ getBlockNumbersForLeafIndices(command: WsdbGetBlockNumbersForLeafIndices): WsdbGetBlockNumbersForLeafIndicesResponse;
1058
+ findLeafIndices(command: WsdbFindLeafIndices): WsdbFindLeafIndicesResponse;
1059
+ findPublicDataLeafIndices(command: WsdbFindPublicDataLeafIndices): WsdbFindPublicDataLeafIndicesResponse;
1060
+ findNullifierLeafIndices(command: WsdbFindNullifierLeafIndices): WsdbFindNullifierLeafIndicesResponse;
1061
+ findLowLeaf(command: WsdbFindLowLeaf): WsdbFindLowLeafResponse;
1062
+ findSiblingPaths(command: WsdbFindSiblingPaths): WsdbFindSiblingPathsResponse;
1063
+ findPublicDataSiblingPaths(command: WsdbFindPublicDataSiblingPaths): WsdbFindPublicDataSiblingPathsResponse;
1064
+ findNullifierSiblingPaths(command: WsdbFindNullifierSiblingPaths): WsdbFindNullifierSiblingPathsResponse;
1065
+ appendLeaves(command: WsdbAppendLeaves): WsdbAppendLeavesResponse;
1066
+ appendPublicDataLeaves(command: WsdbAppendPublicDataLeaves): WsdbAppendPublicDataLeavesResponse;
1067
+ appendNullifierLeaves(command: WsdbAppendNullifierLeaves): WsdbAppendNullifierLeavesResponse;
1068
+ batchInsertPublicData(command: WsdbBatchInsertPublicData): WsdbBatchInsertPublicDataResponse;
1069
+ batchInsertNullifier(command: WsdbBatchInsertNullifier): WsdbBatchInsertNullifierResponse;
1070
+ sequentialInsertPublicData(command: WsdbSequentialInsertPublicData): WsdbSequentialInsertPublicDataResponse;
1071
+ sequentialInsertNullifier(command: WsdbSequentialInsertNullifier): WsdbSequentialInsertNullifierResponse;
1072
+ updateArchive(command: WsdbUpdateArchive): WsdbUpdateArchiveResponse;
1073
+ commit(command: WsdbCommit): WsdbCommitResponse;
1074
+ rollback(command: WsdbRollback): WsdbRollbackResponse;
1075
+ syncBlock(command: WsdbSyncBlock): WsdbSyncBlockResponse;
1076
+ createFork(command: WsdbCreateFork): WsdbCreateForkResponse;
1077
+ deleteFork(command: WsdbDeleteFork): WsdbDeleteForkResponse;
1078
+ finalizeBlocks(command: WsdbFinalizeBlocks): WsdbFinalizeBlocksResponse;
1079
+ unwindBlocks(command: WsdbUnwindBlocks): WsdbUnwindBlocksResponse;
1080
+ removeHistoricalBlocks(command: WsdbRemoveHistoricalBlocks): WsdbRemoveHistoricalBlocksResponse;
1081
+ getStatus(command: WsdbGetStatus): WsdbGetStatusResponse;
1082
+ createCheckpoint(command: WsdbCreateCheckpoint): WsdbCreateCheckpointResponse;
1083
+ commitCheckpoint(command: WsdbCommitCheckpoint): WsdbCommitCheckpointResponse;
1084
+ revertCheckpoint(command: WsdbRevertCheckpoint): WsdbRevertCheckpointResponse;
1085
+ commitAllCheckpoints(command: WsdbCommitAllCheckpoints): WsdbCommitAllCheckpointsResponse;
1086
+ revertAllCheckpoints(command: WsdbRevertAllCheckpoints): WsdbRevertAllCheckpointsResponse;
1087
+ copyStores(command: WsdbCopyStores): WsdbCopyStoresResponse;
1088
+ destroy(): void;
1089
+ }
1090
+ export {};
1091
+ //# sourceMappingURL=api_types.d.ts.map