@xyo-network/archivist-lmdb 5.3.25 → 5.3.26

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (2) hide show
  1. package/README.md +3851 -10
  2. package/package.json +26 -26
package/README.md CHANGED
@@ -1,23 +1,3864 @@
1
+ [![logo][]](https://xyo.network)
2
+
1
3
  # @xyo-network/archivist-lmdb
2
4
 
3
- [![logo][]](https://xyo.network)
5
+ [![npm][npm-badge]][npm-link]
6
+ [![license][license-badge]][license-link]
7
+
8
+ > Primary SDK for using XYO Protocol 2.0
9
+
10
+ ## Install
11
+
12
+ Using npm:
13
+
14
+ ```sh
15
+ npm install {{name}}
16
+ ```
17
+
18
+ Using yarn:
4
19
 
5
- Version: 5.0.2
20
+ ```sh
21
+ yarn add {{name}}
22
+ ```
6
23
 
7
- Primary SDK for using XYO Protocol 2.0
24
+ Using pnpm:
8
25
 
9
- ## Documentation
26
+ ```sh
27
+ pnpm add {{name}}
28
+ ```
10
29
 
11
- [TypeDoc Generated Documentation](https://gitbook.xyo.network/xyo-data-lab/xyo-reference/package-documentation/xyo-network__archivist-lmdb)
30
+ Using bun:
31
+
32
+ ```sh
33
+ bun add {{name}}
34
+ ```
12
35
 
13
- Part of [sdk-xyo-client-js](https://www.npmjs.com/package/@xyo-network/sdk-xyo-client-js)
14
36
 
15
37
  ## License
16
38
 
17
- > See the [LICENSE](LICENSE) file for license details
39
+ See the [LICENSE](LICENSE) file for license rights and limitations (LGPL-3.0-only).
40
+
41
+ ## Reference
42
+
43
+ ### packages
44
+
45
+ ### modules
46
+
47
+ ### packages
48
+
49
+ ### archivist
50
+
51
+ ### packages
52
+
53
+ ### lmdb
54
+
55
+ ### .temp-typedoc
56
+
57
+ ### classes
58
+
59
+ ### <a id="LmdbArchivist"></a>LmdbArchivist
60
+
61
+ [**@xyo-network/archivist-lmdb**](#../README)
62
+
63
+ ***
64
+
65
+ ## Extends
66
+
67
+ - `AbstractArchivist`\<`TParams`, `TEventData`\>
68
+
69
+ ## Type Parameters
70
+
71
+ ### TParams
72
+
73
+ `TParams` *extends* [`LmdbArchivistParams`](#../interfaces/LmdbArchivistParams) = [`LmdbArchivistParams`](#../interfaces/LmdbArchivistParams)
74
+
75
+ ### TEventData
76
+
77
+ `TEventData` *extends* `ArchivistModuleEventData` = `ArchivistModuleEventData`
78
+
79
+ ## Constructors
80
+
81
+ ### Constructor
82
+
83
+ ```ts
84
+ new LmdbArchivist<TParams, TEventData>(key, params): LmdbArchivist<TParams, TEventData>;
85
+ ```
86
+
87
+ ### Parameters
88
+
89
+ #### key
90
+
91
+ `unknown`
92
+
93
+ #### params
94
+
95
+ `Partial`\<`TParams` & `RequiredCreatableParams`\>
96
+
97
+ ### Returns
98
+
99
+ `LmdbArchivist`\<`TParams`, `TEventData`\>
100
+
101
+ ### Inherited from
102
+
103
+ ```ts
104
+ AbstractArchivist<TParams, TEventData>.constructor
105
+ ```
106
+
107
+ ## Properties
108
+
109
+ ### uniqueName
110
+
111
+ ```ts
112
+ readonly static uniqueName: string;
113
+ ```
114
+
115
+ ### Inherited from
116
+
117
+ ```ts
118
+ AbstractArchivist.uniqueName
119
+ ```
120
+
121
+ ***
122
+
123
+ ### defaultNextLimitSetting
124
+
125
+ ```ts
126
+ protected static defaultNextLimitSetting: number;
127
+ ```
128
+
129
+ ### Inherited from
130
+
131
+ ```ts
132
+ AbstractArchivist.defaultNextLimitSetting
133
+ ```
134
+
135
+ ***
136
+
137
+ ### configSchemas
138
+
139
+ ```ts
140
+ readonly static configSchemas: Schema[];
141
+ ```
142
+
143
+ ### Overrides
144
+
145
+ ```ts
146
+ AbstractArchivist.configSchemas
147
+ ```
148
+
149
+ ***
150
+
151
+ ### defaultConfigSchema
152
+
153
+ ```ts
154
+ readonly static defaultConfigSchema: Schema = LmdbArchivistConfigSchema;
155
+ ```
156
+
157
+ ### Overrides
158
+
159
+ ```ts
160
+ AbstractArchivist.defaultConfigSchema
161
+ ```
162
+
163
+ ***
164
+
165
+ ### labels
166
+
167
+ ```ts
168
+ readonly static labels: object;
169
+ ```
170
+
171
+ #### network.xyo.storage.class
172
+
173
+ ```ts
174
+ network.xyo.storage.class: string = 'disk';
175
+ ```
176
+
177
+ ### Overrides
178
+
179
+ ```ts
180
+ AbstractArchivist.labels
181
+ ```
182
+
183
+ ***
184
+
185
+ ### dataHashIndex
186
+
187
+ ```ts
188
+ protected readonly static dataHashIndex: IndexDescription;
189
+ ```
190
+
191
+ ***
192
+
193
+ ### sequenceIndex
194
+
195
+ ```ts
196
+ protected readonly static sequenceIndex: IndexDescription;
197
+ ```
198
+
199
+ ***
200
+
201
+ ### dataHashIndex
202
+
203
+ ```ts
204
+ protected dataHashIndex: Database<BrandedHash, string>;
205
+ ```
206
+
207
+ ***
208
+
209
+ ### db
210
+
211
+ ```ts
212
+ protected db: RootDatabase;
213
+ ```
214
+
215
+ ***
216
+
217
+ ### hashIndex
218
+
219
+ ```ts
220
+ protected hashIndex: Database<WithStorageMeta<Payload>, BrandedHash>;
221
+ ```
222
+
223
+ ***
224
+
225
+ ### sequenceIndex
226
+
227
+ ```ts
228
+ protected sequenceIndex: Database<BrandedHash, BrandedHex>;
229
+ ```
230
+
231
+ ***
232
+
233
+ ### allowRandomAccount
234
+
235
+ ```ts
236
+ readonly static allowRandomAccount: boolean;
237
+ ```
238
+
239
+ ### Inherited from
240
+
241
+ ```ts
242
+ AbstractArchivist.allowRandomAccount
243
+ ```
244
+
245
+ ***
246
+
247
+ ### defaultLogger
248
+
249
+ ```ts
250
+ static defaultLogger: Logger;
251
+ ```
252
+
253
+ ### Inherited from
254
+
255
+ ```ts
256
+ AbstractArchivist.defaultLogger
257
+ ```
258
+
259
+ ***
260
+
261
+ ### enableLazyLoad
262
+
263
+ ```ts
264
+ static enableLazyLoad: boolean;
265
+ ```
266
+
267
+ ### Inherited from
268
+
269
+ ```ts
270
+ AbstractArchivist.enableLazyLoad
271
+ ```
272
+
273
+ ***
274
+
275
+ ### privateConstructorKey
276
+
277
+ ```ts
278
+ protected static privateConstructorKey: string;
279
+ ```
280
+
281
+ ### Inherited from
282
+
283
+ ```ts
284
+ AbstractArchivist.privateConstructorKey
285
+ ```
286
+
287
+ ***
288
+
289
+ ### \_account
290
+
291
+ ```ts
292
+ protected _account: AccountInstance | undefined;
293
+ ```
294
+
295
+ ### Inherited from
296
+
297
+ ```ts
298
+ AbstractArchivist._account
299
+ ```
300
+
301
+ ***
302
+
303
+ ### \_cachedManifests
304
+
305
+ ```ts
306
+ protected _cachedManifests: LRUCache<number, ModuleManifestPayload, unknown>;
307
+ ```
308
+
309
+ ### Inherited from
310
+
311
+ ```ts
312
+ AbstractArchivist._cachedManifests
313
+ ```
314
+
315
+ ***
316
+
317
+ ### \_globalReentrancyMutex
318
+
319
+ ```ts
320
+ protected _globalReentrancyMutex: Mutex | undefined;
321
+ ```
322
+
323
+ ### Inherited from
324
+
325
+ ```ts
326
+ AbstractArchivist._globalReentrancyMutex
327
+ ```
328
+
329
+ ***
330
+
331
+ ### \_lastError?
332
+
333
+ ```ts
334
+ protected optional _lastError?: ModuleDetailsError;
335
+ ```
336
+
337
+ ### Inherited from
338
+
339
+ ```ts
340
+ AbstractArchivist._lastError
341
+ ```
342
+
343
+ ***
344
+
345
+ ### \_moduleConfigQueryValidator
346
+
347
+ ```ts
348
+ protected _moduleConfigQueryValidator: Queryable | undefined;
349
+ ```
350
+
351
+ ### Inherited from
352
+
353
+ ```ts
354
+ AbstractArchivist._moduleConfigQueryValidator
355
+ ```
356
+
357
+ ***
358
+
359
+ ### \_supportedQueryValidator
360
+
361
+ ```ts
362
+ protected _supportedQueryValidator: Queryable | undefined;
363
+ ```
364
+
365
+ ### Inherited from
366
+
367
+ ```ts
368
+ AbstractArchivist._supportedQueryValidator
369
+ ```
370
+
371
+ ***
372
+
373
+ ### useNewResolver
374
+
375
+ ```ts
376
+ readonly static useNewResolver: false = false;
377
+ ```
378
+
379
+ ### Inherited from
380
+
381
+ ```ts
382
+ AbstractArchivist.useNewResolver
383
+ ```
384
+
385
+ ## Accessors
386
+
387
+ ### defaultNextLimit
388
+
389
+ ### Get Signature
390
+
391
+ ```ts
392
+ get static defaultNextLimit(): number;
393
+ ```
394
+
395
+ #### Returns
396
+
397
+ `number`
398
+
399
+ ### Inherited from
400
+
401
+ ```ts
402
+ AbstractArchivist.defaultNextLimit
403
+ ```
404
+
405
+ ***
406
+
407
+ ### requireAllParents
408
+
409
+ ### Get Signature
410
+
411
+ ```ts
412
+ get requireAllParents(): boolean;
413
+ ```
414
+
415
+ #### Returns
416
+
417
+ `boolean`
418
+
419
+ ### Inherited from
420
+
421
+ ```ts
422
+ AbstractArchivist.requireAllParents
423
+ ```
424
+
425
+ ***
426
+
427
+ ### payloadCountGauge
428
+
429
+ ### Get Signature
430
+
431
+ ```ts
432
+ get protected payloadCountGauge(): Gauge<Attributes> | null | undefined;
433
+ ```
434
+
435
+ #### Returns
436
+
437
+ `Gauge`\<`Attributes`\> \| `null` \| `undefined`
438
+
439
+ ### Inherited from
440
+
441
+ ```ts
442
+ AbstractArchivist.payloadCountGauge
443
+ ```
444
+
445
+ ***
446
+
447
+ ### payloadCountMeter
448
+
449
+ ### Get Signature
450
+
451
+ ```ts
452
+ get protected payloadCountMeter(): Meter | null;
453
+ ```
454
+
455
+ #### Returns
456
+
457
+ `Meter` \| `null`
458
+
459
+ ### Inherited from
460
+
461
+ ```ts
462
+ AbstractArchivist.payloadCountMeter
463
+ ```
464
+
465
+ ***
466
+
467
+ ### storeParentReads
468
+
469
+ ### Get Signature
470
+
471
+ ```ts
472
+ get protected storeParentReads(): boolean;
473
+ ```
474
+
475
+ #### Returns
476
+
477
+ `boolean`
478
+
479
+ ### Inherited from
480
+
481
+ ```ts
482
+ AbstractArchivist.storeParentReads
483
+ ```
484
+
485
+ ***
486
+
487
+ ### dbName
488
+
489
+ ### Get Signature
490
+
491
+ ```ts
492
+ get dbName(): string;
493
+ ```
494
+
495
+ #### Returns
496
+
497
+ `string`
498
+
499
+ ***
500
+
501
+ ### folderPath
502
+
503
+ ### Get Signature
504
+
505
+ ```ts
506
+ get folderPath(): string;
507
+ ```
508
+
509
+ #### Returns
510
+
511
+ `string`
512
+
513
+ ***
514
+
515
+ ### location
516
+
517
+ ### Get Signature
518
+
519
+ ```ts
520
+ get location(): string;
521
+ ```
522
+
523
+ #### Returns
524
+
525
+ `string`
526
+
527
+ ***
528
+
529
+ ### queries
530
+
531
+ ### Get Signature
532
+
533
+ ```ts
534
+ get queries(): Schema[];
535
+ ```
536
+
537
+ #### Returns
538
+
539
+ `Schema`[]
540
+
541
+ ### Overrides
542
+
543
+ ```ts
544
+ AbstractArchivist.queries
545
+ ```
546
+
547
+ ***
548
+
549
+ ### storeName
550
+
551
+ ### Get Signature
552
+
553
+ ```ts
554
+ get storeName(): string;
555
+ ```
556
+
557
+ #### Returns
558
+
559
+ `string`
560
+
561
+ ***
562
+
563
+ ### account
564
+
565
+ ### Get Signature
566
+
567
+ ```ts
568
+ get account(): AccountInstance;
569
+ ```
570
+
571
+ #### Returns
572
+
573
+ `AccountInstance`
574
+
575
+ ### Inherited from
576
+
577
+ ```ts
578
+ AbstractArchivist.account
579
+ ```
580
+
581
+ ***
582
+
583
+ ### additionalSigners
584
+
585
+ ### Get Signature
586
+
587
+ ```ts
588
+ get additionalSigners(): AccountInstance[];
589
+ ```
590
+
591
+ #### Returns
592
+
593
+ `AccountInstance`[]
594
+
595
+ ### Inherited from
596
+
597
+ ```ts
598
+ AbstractArchivist.additionalSigners
599
+ ```
600
+
601
+ ***
602
+
603
+ ### address
604
+
605
+ ### Get Signature
606
+
607
+ ```ts
608
+ get address(): Lowercase<string> & object & object;
609
+ ```
610
+
611
+ #### Returns
612
+
613
+ `Lowercase`\<`string`\> & `object` & `object`
614
+
615
+ ### Inherited from
616
+
617
+ ```ts
618
+ AbstractArchivist.address
619
+ ```
620
+
621
+ ***
622
+
623
+ ### allowAnonymous
624
+
625
+ ### Get Signature
626
+
627
+ ```ts
628
+ get allowAnonymous(): boolean;
629
+ ```
630
+
631
+ #### Returns
632
+
633
+ `boolean`
634
+
635
+ ### Inherited from
636
+
637
+ ```ts
638
+ AbstractArchivist.allowAnonymous
639
+ ```
640
+
641
+ ***
642
+
643
+ ### allowNameResolution
644
+
645
+ ### Get Signature
646
+
647
+ ```ts
648
+ get allowNameResolution(): boolean;
649
+ ```
650
+
651
+ #### Returns
652
+
653
+ `boolean`
654
+
655
+ ### Inherited from
656
+
657
+ ```ts
658
+ AbstractArchivist.allowNameResolution
659
+ ```
660
+
661
+ ***
662
+
663
+ ### archiving
664
+
665
+ ### Get Signature
666
+
667
+ ```ts
668
+ get archiving():
669
+ | {
670
+ archivists?: ModuleIdentifier[];
671
+ queries?: Schema[];
672
+ }
673
+ | undefined;
674
+ ```
675
+
676
+ #### Returns
677
+
678
+ \| \{
679
+ `archivists?`: `ModuleIdentifier`[];
680
+ `queries?`: `Schema`[];
681
+ \}
682
+ \| `undefined`
683
+
684
+ ### Inherited from
685
+
686
+ ```ts
687
+ AbstractArchivist.archiving
688
+ ```
689
+
690
+ ***
691
+
692
+ ### archivist
693
+
694
+ ### Get Signature
695
+
696
+ ```ts
697
+ get archivist(): ModuleIdentifier | undefined;
698
+ ```
699
+
700
+ #### Returns
701
+
702
+ `ModuleIdentifier` \| `undefined`
703
+
704
+ ### Inherited from
705
+
706
+ ```ts
707
+ AbstractArchivist.archivist
708
+ ```
709
+
710
+ ***
711
+
712
+ ### config
713
+
714
+ ### Get Signature
715
+
716
+ ```ts
717
+ get config(): TParams["config"] & object;
718
+ ```
719
+
720
+ #### Returns
721
+
722
+ `TParams`\[`"config"`\] & `object`
723
+
724
+ ### Inherited from
725
+
726
+ ```ts
727
+ AbstractArchivist.config
728
+ ```
729
+
730
+ ***
731
+
732
+ ### dead
733
+
734
+ ### Get Signature
735
+
736
+ ```ts
737
+ get dead(): boolean;
738
+ ```
739
+
740
+ #### Returns
741
+
742
+ `boolean`
743
+
744
+ ### Inherited from
745
+
746
+ ```ts
747
+ AbstractArchivist.dead
748
+ ```
749
+
750
+ ***
751
+
752
+ ### ephemeralQueryAccountEnabled
753
+
754
+ ### Get Signature
755
+
756
+ ```ts
757
+ get ephemeralQueryAccountEnabled(): boolean;
758
+ ```
759
+
760
+ #### Returns
761
+
762
+ `boolean`
763
+
764
+ ### Inherited from
765
+
766
+ ```ts
767
+ AbstractArchivist.ephemeralQueryAccountEnabled
768
+ ```
769
+
770
+ ***
771
+
772
+ ### globalReentrancyMutex
773
+
774
+ ### Get Signature
775
+
776
+ ```ts
777
+ get globalReentrancyMutex(): Mutex | undefined;
778
+ ```
779
+
780
+ #### Returns
781
+
782
+ `Mutex` \| `undefined`
783
+
784
+ ### Inherited from
785
+
786
+ ```ts
787
+ AbstractArchivist.globalReentrancyMutex
788
+ ```
789
+
790
+ ***
791
+
792
+ ### id
793
+
794
+ ### Get Signature
795
+
796
+ ```ts
797
+ get id(): string;
798
+ ```
799
+
800
+ The name (if specified) or address of the module
801
+
802
+ #### Returns
803
+
804
+ `string`
805
+
806
+ ### Inherited from
807
+
808
+ ```ts
809
+ AbstractArchivist.id
810
+ ```
811
+
812
+ ***
813
+
814
+ ### logger
815
+
816
+ ### Get Signature
817
+
818
+ ```ts
819
+ get logger(): Logger | undefined;
820
+ ```
821
+
822
+ #### Returns
823
+
824
+ `Logger` \| `undefined`
825
+
826
+ ### Inherited from
827
+
828
+ ```ts
829
+ AbstractArchivist.logger
830
+ ```
831
+
832
+ ***
833
+
834
+ ### priority
835
+
836
+ ### Get Signature
837
+
838
+ ```ts
839
+ get priority(): 2;
840
+ ```
841
+
842
+ #### Returns
843
+
844
+ `2`
845
+
846
+ ### Inherited from
847
+
848
+ ```ts
849
+ AbstractArchivist.priority
850
+ ```
851
+
852
+ ***
853
+
854
+ ### reentrancy
855
+
856
+ ### Get Signature
857
+
858
+ ```ts
859
+ get reentrancy():
860
+ | {
861
+ action: "skip" | "wait";
862
+ scope: "global";
863
+ }
864
+ | undefined;
865
+ ```
866
+
867
+ #### Returns
868
+
869
+ \| \{
870
+ `action`: `"skip"` \| `"wait"`;
871
+ `scope`: `"global"`;
872
+ \}
873
+ \| `undefined`
874
+
875
+ ### Inherited from
876
+
877
+ ```ts
878
+ AbstractArchivist.reentrancy
879
+ ```
880
+
881
+ ***
882
+
883
+ ### statusReporter
884
+
885
+ ### Get Signature
886
+
887
+ ```ts
888
+ get statusReporter():
889
+ | ModuleStatusReporter & CreatableStatusReporter<void>
890
+ | undefined;
891
+ ```
892
+
893
+ The status reporter used to broadcast lifecycle changes.
894
+
895
+ #### Returns
896
+
897
+ \| `ModuleStatusReporter` & `CreatableStatusReporter`\<`void`\>
898
+ \| `undefined`
899
+
900
+ ### Inherited from
901
+
902
+ ```ts
903
+ AbstractArchivist.statusReporter
904
+ ```
905
+
906
+ ***
907
+
908
+ ### timestamp
909
+
910
+ ### Get Signature
911
+
912
+ ```ts
913
+ get timestamp(): boolean;
914
+ ```
915
+
916
+ #### Returns
917
+
918
+ `boolean`
919
+
920
+ ### Inherited from
921
+
922
+ ```ts
923
+ AbstractArchivist.timestamp
924
+ ```
925
+
926
+ ***
927
+
928
+ ### moduleConfigQueryValidator
929
+
930
+ ### Get Signature
931
+
932
+ ```ts
933
+ get protected moduleConfigQueryValidator(): Queryable;
934
+ ```
935
+
936
+ #### Returns
937
+
938
+ `Queryable`
939
+
940
+ ### Inherited from
941
+
942
+ ```ts
943
+ AbstractArchivist.moduleConfigQueryValidator
944
+ ```
945
+
946
+ ***
947
+
948
+ ### supportedQueryValidator
949
+
950
+ ### Get Signature
951
+
952
+ ```ts
953
+ get protected supportedQueryValidator(): Queryable;
954
+ ```
955
+
956
+ #### Returns
957
+
958
+ `Queryable`
959
+
960
+ ### Inherited from
961
+
962
+ ```ts
963
+ AbstractArchivist.supportedQueryValidator
964
+ ```
965
+
966
+ ***
967
+
968
+ ### downResolver
969
+
970
+ ### Get Signature
971
+
972
+ ```ts
973
+ get downResolver(): CompositeModuleResolver<CompositeModuleResolverParams>;
974
+ ```
975
+
976
+ #### Returns
977
+
978
+ `CompositeModuleResolver`\<`CompositeModuleResolverParams`\>
979
+
980
+ ### Inherited from
981
+
982
+ ```ts
983
+ AbstractArchivist.downResolver
984
+ ```
985
+
986
+ ***
987
+
988
+ ### modName
989
+
990
+ ### Get Signature
991
+
992
+ ```ts
993
+ get modName(): string | undefined;
994
+ ```
995
+
996
+ #### Returns
997
+
998
+ `string` \| `undefined`
999
+
1000
+ ### Inherited from
1001
+
1002
+ ```ts
1003
+ AbstractArchivist.modName
1004
+ ```
1005
+
1006
+ ***
1007
+
1008
+ ### moduleIdentifierTransformers
1009
+
1010
+ ### Get Signature
1011
+
1012
+ ```ts
1013
+ get moduleIdentifierTransformers(): ModuleIdentifierTransformer[];
1014
+ ```
1015
+
1016
+ #### Returns
1017
+
1018
+ `ModuleIdentifierTransformer`[]
1019
+
1020
+ ### Inherited from
1021
+
1022
+ ```ts
1023
+ AbstractArchivist.moduleIdentifierTransformers
1024
+ ```
1025
+
1026
+ ***
1027
+
1028
+ ### privateResolver
1029
+
1030
+ ### Get Signature
1031
+
1032
+ ```ts
1033
+ get privateResolver(): CompositeModuleResolver<CompositeModuleResolverParams>;
1034
+ ```
1035
+
1036
+ #### Returns
1037
+
1038
+ `CompositeModuleResolver`\<`CompositeModuleResolverParams`\>
1039
+
1040
+ ### Inherited from
1041
+
1042
+ ```ts
1043
+ AbstractArchivist.privateResolver
1044
+ ```
1045
+
1046
+ ***
1047
+
1048
+ ### root
1049
+
1050
+ ### Get Signature
1051
+
1052
+ ```ts
1053
+ get root(): this;
1054
+ ```
1055
+
1056
+ #### Returns
1057
+
1058
+ `this`
1059
+
1060
+ ### Inherited from
1061
+
1062
+ ```ts
1063
+ AbstractArchivist.root
1064
+ ```
1065
+
1066
+ ***
1067
+
1068
+ ### timeBudget
1069
+
1070
+ ### Get Signature
1071
+
1072
+ ```ts
1073
+ get timeBudget(): number | undefined;
1074
+ ```
1075
+
1076
+ #### Returns
1077
+
1078
+ `number` \| `undefined`
1079
+
1080
+ ### Inherited from
1081
+
1082
+ ```ts
1083
+ AbstractArchivist.timeBudget
1084
+ ```
1085
+
1086
+ ***
1087
+
1088
+ ### upResolver
1089
+
1090
+ ### Get Signature
1091
+
1092
+ ```ts
1093
+ get upResolver(): CompositeModuleResolver<CompositeModuleResolverParams>;
1094
+ ```
1095
+
1096
+ #### Returns
1097
+
1098
+ `CompositeModuleResolver`\<`CompositeModuleResolverParams`\>
1099
+
1100
+ ### Inherited from
1101
+
1102
+ ```ts
1103
+ AbstractArchivist.upResolver
1104
+ ```
1105
+
1106
+ ## Methods
1107
+
1108
+ ### ~~all()~~
1109
+
1110
+ ```ts
1111
+ all(): Promise<WithStorageMeta<Payload>[]>;
1112
+ ```
1113
+
1114
+ ### Returns
1115
+
1116
+ `Promise`\<`WithStorageMeta`\<`Payload`\>[]\>
1117
+
1118
+ ### Deprecated
1119
+
1120
+ use next or snapshot instead
1121
+
1122
+ ### Inherited from
1123
+
1124
+ ```ts
1125
+ AbstractArchivist.all
1126
+ ```
1127
+
1128
+ ***
1129
+
1130
+ ### allQuery()
1131
+
1132
+ ```ts
1133
+ allQuery(account): Promise<ModuleQueryResult>;
1134
+ ```
1135
+
1136
+ deprecated use nextQuery or snapshotQuery instead
1137
+
1138
+ ### Parameters
1139
+
1140
+ #### account
1141
+
1142
+ `AccountInstance`
1143
+
1144
+ ### Returns
1145
+
1146
+ `Promise`\<`ModuleQueryResult`\>
1147
+
1148
+ ### Inherited from
1149
+
1150
+ ```ts
1151
+ AbstractArchivist.allQuery
1152
+ ```
1153
+
1154
+ ***
1155
+
1156
+ ### clear()
1157
+
1158
+ ```ts
1159
+ clear(): Promise<void>;
1160
+ ```
1161
+
1162
+ ### Returns
1163
+
1164
+ `Promise`\<`void`\>
1165
+
1166
+ ### Inherited from
1167
+
1168
+ ```ts
1169
+ AbstractArchivist.clear
1170
+ ```
1171
+
1172
+ ***
1173
+
1174
+ ### clearQuery()
1175
+
1176
+ ```ts
1177
+ clearQuery(account): Promise<ModuleQueryResult>;
1178
+ ```
1179
+
1180
+ ### Parameters
1181
+
1182
+ #### account
1183
+
1184
+ `AccountInstance`
1185
+
1186
+ ### Returns
1187
+
1188
+ `Promise`\<`ModuleQueryResult`\>
1189
+
1190
+ ### Inherited from
1191
+
1192
+ ```ts
1193
+ AbstractArchivist.clearQuery
1194
+ ```
1195
+
1196
+ ***
1197
+
1198
+ ### commit()
1199
+
1200
+ ```ts
1201
+ commit(): Promise<object[]>;
1202
+ ```
1203
+
1204
+ ### Returns
1205
+
1206
+ `Promise`\<`object`[]\>
1207
+
1208
+ ### Inherited from
1209
+
1210
+ ```ts
1211
+ AbstractArchivist.commit
1212
+ ```
1213
+
1214
+ ***
1215
+
1216
+ ### commitQuery()
1217
+
1218
+ ```ts
1219
+ commitQuery(account): Promise<ModuleQueryResult>;
1220
+ ```
1221
+
1222
+ ### Parameters
1223
+
1224
+ #### account
1225
+
1226
+ `AccountInstance`
1227
+
1228
+ ### Returns
1229
+
1230
+ `Promise`\<`ModuleQueryResult`\>
1231
+
1232
+ ### Inherited from
1233
+
1234
+ ```ts
1235
+ AbstractArchivist.commitQuery
1236
+ ```
1237
+
1238
+ ***
1239
+
1240
+ ### delete()
1241
+
1242
+ ```ts
1243
+ delete(hashes): Promise<WithStorageMeta<Payload>[]>;
1244
+ ```
1245
+
1246
+ ### Parameters
1247
+
1248
+ #### hashes
1249
+
1250
+ `BrandedHash`[]
1251
+
1252
+ ### Returns
1253
+
1254
+ `Promise`\<`WithStorageMeta`\<`Payload`\>[]\>
1255
+
1256
+ ### Inherited from
1257
+
1258
+ ```ts
1259
+ AbstractArchivist.delete
1260
+ ```
1261
+
1262
+ ***
1263
+
1264
+ ### deleteQuery()
1265
+
1266
+ ```ts
1267
+ deleteQuery(hashes, account?): Promise<ModuleQueryResult>;
1268
+ ```
1269
+
1270
+ ### Parameters
1271
+
1272
+ #### hashes
1273
+
1274
+ `BrandedHash`[]
1275
+
1276
+ #### account?
1277
+
1278
+ `AccountInstance`
1279
+
1280
+ ### Returns
1281
+
1282
+ `Promise`\<`ModuleQueryResult`\>
1283
+
1284
+ ### Inherited from
1285
+
1286
+ ```ts
1287
+ AbstractArchivist.deleteQuery
1288
+ ```
1289
+
1290
+ ***
1291
+
1292
+ ### get()
1293
+
1294
+ ```ts
1295
+ get(hashes): Promise<WithStorageMeta<Payload>[]>;
1296
+ ```
1297
+
1298
+ ### Parameters
1299
+
1300
+ #### hashes
1301
+
1302
+ `BrandedHash`[]
1303
+
1304
+ ### Returns
1305
+
1306
+ `Promise`\<`WithStorageMeta`\<`Payload`\>[]\>
1307
+
1308
+ ### Inherited from
1309
+
1310
+ ```ts
1311
+ AbstractArchivist.get
1312
+ ```
1313
+
1314
+ ***
1315
+
1316
+ ### getQuery()
1317
+
1318
+ ```ts
1319
+ getQuery(hashes, account?): Promise<ModuleQueryResult>;
1320
+ ```
1321
+
1322
+ ### Parameters
1323
+
1324
+ #### hashes
1325
+
1326
+ `BrandedHash`[]
1327
+
1328
+ #### account?
1329
+
1330
+ `AccountInstance`
1331
+
1332
+ ### Returns
1333
+
1334
+ `Promise`\<`ModuleQueryResult`\>
1335
+
1336
+ ### Inherited from
1337
+
1338
+ ```ts
1339
+ AbstractArchivist.getQuery
1340
+ ```
1341
+
1342
+ ***
1343
+
1344
+ ### insert()
1345
+
1346
+ ```ts
1347
+ insert(payloads): Promise<WithStorageMeta<Payload>[]>;
1348
+ ```
1349
+
1350
+ ### Parameters
1351
+
1352
+ #### payloads
1353
+
1354
+ `Payload`[]
1355
+
1356
+ ### Returns
1357
+
1358
+ `Promise`\<`WithStorageMeta`\<`Payload`\>[]\>
1359
+
1360
+ ### Inherited from
1361
+
1362
+ ```ts
1363
+ AbstractArchivist.insert
1364
+ ```
1365
+
1366
+ ***
1367
+
1368
+ ### insertQuery()
1369
+
1370
+ ```ts
1371
+ insertQuery(payloads, account?): Promise<ModuleQueryResult>;
1372
+ ```
1373
+
1374
+ ### Parameters
1375
+
1376
+ #### payloads
1377
+
1378
+ `Payload`[]
1379
+
1380
+ #### account?
1381
+
1382
+ `AccountInstance`
1383
+
1384
+ ### Returns
1385
+
1386
+ `Promise`\<`ModuleQueryResult`\>
1387
+
1388
+ ### Inherited from
1389
+
1390
+ ```ts
1391
+ AbstractArchivist.insertQuery
1392
+ ```
1393
+
1394
+ ***
1395
+
1396
+ ### next()
1397
+
1398
+ ```ts
1399
+ next(options?): Promise<WithStorageMeta<Payload>[]>;
1400
+ ```
1401
+
1402
+ ### Parameters
1403
+
1404
+ #### options?
1405
+
1406
+ `ArchivistNextOptions`
1407
+
1408
+ ### Returns
1409
+
1410
+ `Promise`\<`WithStorageMeta`\<`Payload`\>[]\>
1411
+
1412
+ ### Inherited from
1413
+
1414
+ ```ts
1415
+ AbstractArchivist.next
1416
+ ```
1417
+
1418
+ ***
1419
+
1420
+ ### nextQuery()
1421
+
1422
+ ```ts
1423
+ nextQuery(options?, account?): Promise<ModuleQueryResult>;
1424
+ ```
1425
+
1426
+ ### Parameters
1427
+
1428
+ #### options?
1429
+
1430
+ `ArchivistNextOptions`
1431
+
1432
+ #### account?
1433
+
1434
+ `AccountInstance`
1435
+
1436
+ ### Returns
1437
+
1438
+ `Promise`\<`ModuleQueryResult`\>
1439
+
1440
+ ### Inherited from
1441
+
1442
+ ```ts
1443
+ AbstractArchivist.nextQuery
1444
+ ```
1445
+
1446
+ ***
1447
+
1448
+ ### snapshot()
1449
+
1450
+ ```ts
1451
+ snapshot(): Promise<ArchivistSnapshotPayload<WithStorageMeta<Payload>, BrandedHash>[]>;
1452
+ ```
1453
+
1454
+ ### Returns
1455
+
1456
+ `Promise`\<`ArchivistSnapshotPayload`\<`WithStorageMeta`\<`Payload`\>, `BrandedHash`\>[]\>
1457
+
1458
+ ### Inherited from
1459
+
1460
+ ```ts
1461
+ AbstractArchivist.snapshot
1462
+ ```
1463
+
1464
+ ***
1465
+
1466
+ ### snapshotQuery()
1467
+
1468
+ ```ts
1469
+ snapshotQuery(account?): Promise<ModuleQueryResult>;
1470
+ ```
1471
+
1472
+ ### Parameters
1473
+
1474
+ #### account?
1475
+
1476
+ `AccountInstance`
1477
+
1478
+ ### Returns
1479
+
1480
+ `Promise`\<`ModuleQueryResult`\>
1481
+
1482
+ ### Inherited from
1483
+
1484
+ ```ts
1485
+ AbstractArchivist.snapshotQuery
1486
+ ```
1487
+
1488
+ ***
1489
+
1490
+ ### deleteWithConfig()
1491
+
1492
+ ```ts
1493
+ protected deleteWithConfig(hashes, config?): Promise<WithStorageMeta<Payload>[]>;
1494
+ ```
1495
+
1496
+ ### Parameters
1497
+
1498
+ #### hashes
1499
+
1500
+ `BrandedHash`[]
1501
+
1502
+ #### config?
1503
+
1504
+ `ActionConfig`
1505
+
1506
+ ### Returns
1507
+
1508
+ `Promise`\<`WithStorageMeta`\<`Payload`\>[]\>
1509
+
1510
+ ### Inherited from
1511
+
1512
+ ```ts
1513
+ AbstractArchivist.deleteWithConfig
1514
+ ```
1515
+
1516
+ ***
1517
+
1518
+ ### generateStats()
1519
+
1520
+ ```ts
1521
+ protected generateStats(): Promisable<ArchivistStatsPayload>;
1522
+ ```
1523
+
1524
+ ### Returns
1525
+
1526
+ `Promisable`\<`ArchivistStatsPayload`\>
1527
+
1528
+ ### Inherited from
1529
+
1530
+ ```ts
1531
+ AbstractArchivist.generateStats
1532
+ ```
1533
+
1534
+ ***
1535
+
1536
+ ### getFromParent()
1537
+
1538
+ ```ts
1539
+ protected getFromParent(hashes, archivist): Promise<[WithStorageMeta<Payload>[], BrandedHash[]]>;
1540
+ ```
1541
+
1542
+ ### Parameters
1543
+
1544
+ #### hashes
1545
+
1546
+ `BrandedHash`[]
1547
+
1548
+ #### archivist
1549
+
1550
+ `ReadArchivist`
1551
+
1552
+ ### Returns
1553
+
1554
+ `Promise`\<\[`WithStorageMeta`\<`Payload`\>[], `BrandedHash`[]\]\>
1555
+
1556
+ ### Inherited from
1557
+
1558
+ ```ts
1559
+ AbstractArchivist.getFromParent
1560
+ ```
1561
+
1562
+ ***
1563
+
1564
+ ### getFromParents()
1565
+
1566
+ ```ts
1567
+ protected getFromParents(hashes): Promise<[WithStorageMeta<Payload>[], BrandedHash[]]>;
1568
+ ```
1569
+
1570
+ ### Parameters
1571
+
1572
+ #### hashes
1573
+
1574
+ `BrandedHash`[]
1575
+
1576
+ ### Returns
1577
+
1578
+ `Promise`\<\[`WithStorageMeta`\<`Payload`\>[], `BrandedHash`[]\]\>
1579
+
1580
+ ### Inherited from
1581
+
1582
+ ```ts
1583
+ AbstractArchivist.getFromParents
1584
+ ```
1585
+
1586
+ ***
1587
+
1588
+ ### getWithConfig()
1589
+
1590
+ ```ts
1591
+ protected getWithConfig(hashes, _config?): Promise<WithStorageMeta<Payload>[]>;
1592
+ ```
1593
+
1594
+ ### Parameters
1595
+
1596
+ #### hashes
1597
+
1598
+ `BrandedHash`[]
1599
+
1600
+ #### \_config?
1601
+
1602
+ `InsertConfig`
1603
+
1604
+ ### Returns
1605
+
1606
+ `Promise`\<`WithStorageMeta`\<`Payload`\>[]\>
1607
+
1608
+ ### Inherited from
1609
+
1610
+ ```ts
1611
+ AbstractArchivist.getWithConfig
1612
+ ```
1613
+
1614
+ ***
1615
+
1616
+ ### insertQueryHandler()
1617
+
1618
+ ```ts
1619
+ protected insertQueryHandler<T>(query, payloads?): Promise<WithStorageMeta<Payload>[]>;
1620
+ ```
1621
+
1622
+ ### Type Parameters
1623
+
1624
+ #### T
1625
+
1626
+ `T` *extends* `QueryBoundWitnessWrapper`\<`Query`\> = `QueryBoundWitnessWrapper`\<`Query`\>
1627
+
1628
+ ### Parameters
1629
+
1630
+ #### query
1631
+
1632
+ `T`
1633
+
1634
+ #### payloads?
1635
+
1636
+ `Payload`[]
1637
+
1638
+ ### Returns
1639
+
1640
+ `Promise`\<`WithStorageMeta`\<`Payload`\>[]\>
1641
+
1642
+ ### Inherited from
1643
+
1644
+ ```ts
1645
+ AbstractArchivist.insertQueryHandler
1646
+ ```
1647
+
1648
+ ***
1649
+
1650
+ ### insertWithConfig()
1651
+
1652
+ ```ts
1653
+ protected insertWithConfig(payloads, config?): Promise<WithStorageMeta<Payload>[]>;
1654
+ ```
1655
+
1656
+ ### Parameters
1657
+
1658
+ #### payloads
1659
+
1660
+ `Payload`[]
1661
+
1662
+ #### config?
1663
+
1664
+ `InsertConfig`
1665
+
1666
+ ### Returns
1667
+
1668
+ `Promise`\<`WithStorageMeta`\<`Payload`\>[]\>
1669
+
1670
+ ### Inherited from
1671
+
1672
+ ```ts
1673
+ AbstractArchivist.insertWithConfig
1674
+ ```
1675
+
1676
+ ***
1677
+
1678
+ ### nextWithConfig()
1679
+
1680
+ ```ts
1681
+ protected nextWithConfig(options?, _config?): Promise<WithStorageMeta<Payload>[]>;
1682
+ ```
1683
+
1684
+ ### Parameters
1685
+
1686
+ #### options?
1687
+
1688
+ `ArchivistNextOptions`
1689
+
1690
+ #### \_config?
1691
+
1692
+ `InsertConfig`
1693
+
1694
+ ### Returns
1695
+
1696
+ `Promise`\<`WithStorageMeta`\<`Payload`\>[]\>
1697
+
1698
+ ### Inherited from
1699
+
1700
+ ```ts
1701
+ AbstractArchivist.nextWithConfig
1702
+ ```
1703
+
1704
+ ***
1705
+
1706
+ ### parentArchivists()
1707
+
1708
+ ```ts
1709
+ protected parentArchivists(): Promise<ArchivistParentInstanceMap>;
1710
+ ```
1711
+
1712
+ ### Returns
1713
+
1714
+ `Promise`\<`ArchivistParentInstanceMap`\>
1715
+
1716
+ ### Inherited from
1717
+
1718
+ ```ts
1719
+ AbstractArchivist.parentArchivists
1720
+ ```
1721
+
1722
+ ***
1723
+
1724
+ ### payloadCountHandler()
1725
+
1726
+ ```ts
1727
+ protected payloadCountHandler(): number;
1728
+ ```
1729
+
1730
+ ### Returns
1731
+
1732
+ `number`
1733
+
1734
+ ### Inherited from
1735
+
1736
+ ```ts
1737
+ AbstractArchivist.payloadCountHandler
1738
+ ```
1739
+
1740
+ ***
1741
+
1742
+ ### queryHandler()
1743
+
1744
+ ```ts
1745
+ protected queryHandler<T, TConfig>(
1746
+ query,
1747
+ payloads,
1748
+ queryConfig?): Promise<ModuleQueryHandlerResult>;
1749
+ ```
1750
+
1751
+ ### Type Parameters
1752
+
1753
+ #### T
1754
+
1755
+ `T` *extends* `UnsignedQueryBoundWitness` = `UnsignedQueryBoundWitness`
1756
+
1757
+ #### TConfig
1758
+
1759
+ `TConfig` *extends* `ModuleConfig` = `ModuleConfig`
1760
+
1761
+ ### Parameters
1762
+
1763
+ #### query
1764
+
1765
+ `T`
1766
+
1767
+ #### payloads
1768
+
1769
+ `Payload`[]
1770
+
1771
+ #### queryConfig?
1772
+
1773
+ `TConfig`
1774
+
1775
+ ### Returns
1776
+
1777
+ `Promise`\<`ModuleQueryHandlerResult`\>
1778
+
1779
+ ### Inherited from
1780
+
1781
+ ```ts
1782
+ AbstractArchivist.queryHandler
1783
+ ```
1784
+
1785
+ ***
1786
+
1787
+ ### reportPayloadCount()
1788
+
1789
+ ```ts
1790
+ protected reportPayloadCount(): void;
1791
+ ```
1792
+
1793
+ ### Returns
1794
+
1795
+ `void`
1796
+
1797
+ ### Inherited from
1798
+
1799
+ ```ts
1800
+ AbstractArchivist.reportPayloadCount
1801
+ ```
1802
+
1803
+ ***
1804
+
1805
+ ### snapshotHandler()
1806
+
1807
+ ```ts
1808
+ protected snapshotHandler(): PromisableArray<ArchivistSnapshotPayload<WithStorageMeta<Payload>, BrandedHash>>;
1809
+ ```
1810
+
1811
+ ### Returns
1812
+
1813
+ `PromisableArray`\<`ArchivistSnapshotPayload`\<`WithStorageMeta`\<`Payload`\>, `BrandedHash`\>\>
1814
+
1815
+ ### Inherited from
1816
+
1817
+ ```ts
1818
+ AbstractArchivist.snapshotHandler
1819
+ ```
1820
+
1821
+ ***
1822
+
1823
+ ### stateHandler()
1824
+
1825
+ ```ts
1826
+ protected stateHandler(): Promise<Payload[]>;
1827
+ ```
1828
+
1829
+ ### Returns
1830
+
1831
+ `Promise`\<`Payload`[]\>
1832
+
1833
+ ### Inherited from
1834
+
1835
+ ```ts
1836
+ AbstractArchivist.stateHandler
1837
+ ```
1838
+
1839
+ ***
1840
+
1841
+ ### writeToParent()
1842
+
1843
+ ```ts
1844
+ protected writeToParent(parent, payloads): Promise<Payload[]>;
1845
+ ```
1846
+
1847
+ ### Parameters
1848
+
1849
+ #### parent
1850
+
1851
+ `ArchivistInstance`
1852
+
1853
+ #### payloads
1854
+
1855
+ `Payload`[]
1856
+
1857
+ ### Returns
1858
+
1859
+ `Promise`\<`Payload`[]\>
1860
+
1861
+ ### Inherited from
1862
+
1863
+ ```ts
1864
+ AbstractArchivist.writeToParent
1865
+ ```
1866
+
1867
+ ***
1868
+
1869
+ ### writeToParents()
1870
+
1871
+ ```ts
1872
+ protected writeToParents(payloads): Promise<Payload[]>;
1873
+ ```
1874
+
1875
+ ### Parameters
1876
+
1877
+ #### payloads
1878
+
1879
+ `Payload`[]
1880
+
1881
+ ### Returns
1882
+
1883
+ `Promise`\<`Payload`[]\>
1884
+
1885
+ ### Inherited from
1886
+
1887
+ ```ts
1888
+ AbstractArchivist.writeToParents
1889
+ ```
1890
+
1891
+ ***
1892
+
1893
+ ### startHandler()
1894
+
1895
+ ```ts
1896
+ startHandler(): Promise<void>;
1897
+ ```
1898
+
1899
+ ### Returns
1900
+
1901
+ `Promise`\<`void`\>
1902
+
1903
+ ### Overrides
1904
+
1905
+ ```ts
1906
+ AbstractArchivist.startHandler
1907
+ ```
1908
+
1909
+ ***
1910
+
1911
+ ### allHandler()
1912
+
1913
+ ```ts
1914
+ protected allHandler(): WithStorageMeta<Payload>[];
1915
+ ```
1916
+
1917
+ ### Returns
1918
+
1919
+ `WithStorageMeta`\<`Payload`\>[]
1920
+
1921
+ ### Overrides
1922
+
1923
+ ```ts
1924
+ AbstractArchivist.allHandler
1925
+ ```
1926
+
1927
+ ***
1928
+
1929
+ ### clearHandler()
1930
+
1931
+ ```ts
1932
+ protected clearHandler(): Promise<void>;
1933
+ ```
1934
+
1935
+ ### Returns
1936
+
1937
+ `Promise`\<`void`\>
1938
+
1939
+ ### Overrides
1940
+
1941
+ ```ts
1942
+ AbstractArchivist.clearHandler
1943
+ ```
1944
+
1945
+ ***
1946
+
1947
+ ### commitHandler()
1948
+
1949
+ ```ts
1950
+ protected commitHandler(): Promise<object[]>;
1951
+ ```
1952
+
1953
+ ### Returns
1954
+
1955
+ `Promise`\<`object`[]\>
1956
+
1957
+ ### Overrides
1958
+
1959
+ ```ts
1960
+ AbstractArchivist.commitHandler
1961
+ ```
1962
+
1963
+ ***
1964
+
1965
+ ### deleteHandler()
1966
+
1967
+ ```ts
1968
+ protected deleteHandler(hashes): Promise<WithStorageMeta<Payload>[]>;
1969
+ ```
1970
+
1971
+ ### Parameters
1972
+
1973
+ #### hashes
1974
+
1975
+ `BrandedHash`[]
1976
+
1977
+ ### Returns
1978
+
1979
+ `Promise`\<`WithStorageMeta`\<`Payload`\>[]\>
1980
+
1981
+ ### Overrides
1982
+
1983
+ ```ts
1984
+ AbstractArchivist.deleteHandler
1985
+ ```
1986
+
1987
+ ***
1988
+
1989
+ ### getHandler()
1990
+
1991
+ ```ts
1992
+ protected getHandler(hashes): WithStorageMeta<Payload>[];
1993
+ ```
1994
+
1995
+ ### Parameters
1996
+
1997
+ #### hashes
1998
+
1999
+ `BrandedHash`[]
2000
+
2001
+ ### Returns
2002
+
2003
+ `WithStorageMeta`\<`Payload`\>[]
2004
+
2005
+ ### Overrides
2006
+
2007
+ ```ts
2008
+ AbstractArchivist.getHandler
2009
+ ```
2010
+
2011
+ ***
2012
+
2013
+ ### insertHandler()
2014
+
2015
+ ```ts
2016
+ protected insertHandler(payloads): Promise<WithStorageMeta<Payload>[]>;
2017
+ ```
2018
+
2019
+ ### Parameters
2020
+
2021
+ #### payloads
2022
+
2023
+ `WithStorageMeta`\<`Payload`\>[]
2024
+
2025
+ ### Returns
2026
+
2027
+ `Promise`\<`WithStorageMeta`\<`Payload`\>[]\>
2028
+
2029
+ ### Overrides
2030
+
2031
+ ```ts
2032
+ AbstractArchivist.insertHandler
2033
+ ```
2034
+
2035
+ ***
2036
+
2037
+ ### nextHandler()
2038
+
2039
+ ```ts
2040
+ protected nextHandler(options?): WithStorageMeta<Payload>[];
2041
+ ```
2042
+
2043
+ ### Parameters
2044
+
2045
+ #### options?
2046
+
2047
+ `ArchivistNextOptions`
2048
+
2049
+ ### Returns
2050
+
2051
+ `WithStorageMeta`\<`Payload`\>[]
2052
+
2053
+ ### Overrides
2054
+
2055
+ ```ts
2056
+ AbstractArchivist.nextHandler
2057
+ ```
2058
+
2059
+ ***
2060
+
2061
+ ### \_getRootFunction()
2062
+
2063
+ ```ts
2064
+ static _getRootFunction(funcName): any;
2065
+ ```
2066
+
2067
+ ### Parameters
2068
+
2069
+ #### funcName
2070
+
2071
+ `string`
2072
+
2073
+ ### Returns
2074
+
2075
+ `any`
2076
+
2077
+ ### Inherited from
2078
+
2079
+ ```ts
2080
+ AbstractArchivist._getRootFunction
2081
+ ```
2082
+
2083
+ ***
2084
+
2085
+ ### \_noOverride()
2086
+
2087
+ ```ts
2088
+ static _noOverride(functionName): void;
2089
+ ```
2090
+
2091
+ ### Parameters
2092
+
2093
+ #### functionName
2094
+
2095
+ `string`
2096
+
2097
+ ### Returns
2098
+
2099
+ `void`
2100
+
2101
+ ### Inherited from
2102
+
2103
+ ```ts
2104
+ AbstractArchivist._noOverride
2105
+ ```
2106
+
2107
+ ***
2108
+
2109
+ ### createHandler()
2110
+
2111
+ ```ts
2112
+ static createHandler<T>(inInstance): Promise<T & AbstractModule<any, any>>;
2113
+ ```
2114
+
2115
+ Static hook called during creation to perform additional initialization.
2116
+ Override in subclasses to customize post-construction setup.
2117
+
2118
+ ### Type Parameters
2119
+
2120
+ #### T
2121
+
2122
+ `T` *extends* `CreatableInstance`\<`CreatableParams`, `EventData`\>
2123
+
2124
+ ### Parameters
2125
+
2126
+ #### inInstance
2127
+
2128
+ `T`
2129
+
2130
+ ### Returns
2131
+
2132
+ `Promise`\<`T` & `AbstractModule`\<`any`, `any`\>\>
2133
+
2134
+ The instance, potentially modified
2135
+
2136
+ ### Inherited from
2137
+
2138
+ ```ts
2139
+ AbstractArchivist.createHandler
2140
+ ```
2141
+
2142
+ ***
2143
+
2144
+ ### determineAccount()
2145
+
2146
+ ```ts
2147
+ static determineAccount(params): Promise<AccountInstance>;
2148
+ ```
2149
+
2150
+ ### Parameters
2151
+
2152
+ #### params
2153
+
2154
+ ##### account?
2155
+
2156
+ `AccountInstance` \| `"random"`
2157
+
2158
+ ##### accountPath?
2159
+
2160
+ `string`
2161
+
2162
+ ##### wallet?
2163
+
2164
+ `WalletInstance`
2165
+
2166
+ ### Returns
2167
+
2168
+ `Promise`\<`AccountInstance`\>
2169
+
2170
+ ### Inherited from
2171
+
2172
+ ```ts
2173
+ AbstractArchivist.determineAccount
2174
+ ```
2175
+
2176
+ ***
2177
+
2178
+ ### factory()
2179
+
2180
+ ```ts
2181
+ static factory<TModule>(this, params?): CreatableModuleFactory<TModule>;
2182
+ ```
2183
+
2184
+ ### Type Parameters
2185
+
2186
+ #### TModule
2187
+
2188
+ `TModule` *extends* `CreatableModuleInstance`\<`QueryableModuleParams`\<`AnyConfigSchema`\<`ModuleConfig`\>\>, `ModuleEventData`\<`object`\>\>
2189
+
2190
+ ### Parameters
2191
+
2192
+ #### this
2193
+
2194
+ `CreatableModule`\<`TModule`\>
2195
+
2196
+ #### params?
2197
+
2198
+ `Partial`\<`TModule`\[`"params"`\]\>
2199
+
2200
+ ### Returns
2201
+
2202
+ `CreatableModuleFactory`\<`TModule`\>
2203
+
2204
+ ### Inherited from
2205
+
2206
+ ```ts
2207
+ AbstractArchivist.factory
2208
+ ```
2209
+
2210
+ ***
2211
+
2212
+ ### isAllowedSchema()
2213
+
2214
+ ```ts
2215
+ static isAllowedSchema(schema): boolean;
2216
+ ```
2217
+
2218
+ ### Parameters
2219
+
2220
+ #### schema
2221
+
2222
+ `Schema`
2223
+
2224
+ ### Returns
2225
+
2226
+ `boolean`
2227
+
2228
+ ### Inherited from
2229
+
2230
+ ```ts
2231
+ AbstractArchivist.isAllowedSchema
2232
+ ```
2233
+
2234
+ ***
2235
+
2236
+ ### paramsHandler()
2237
+
2238
+ ```ts
2239
+ static paramsHandler<T>(inParams?): Promise<T["params"]>;
2240
+ ```
2241
+
2242
+ Static hook called during creation to validate and transform params.
2243
+ Override in subclasses to add default values or validation.
2244
+
2245
+ ### Type Parameters
2246
+
2247
+ #### T
2248
+
2249
+ `T` *extends* `AttachableModuleInstance`\<`QueryableModuleParams`\<`AnyConfigSchema`\<`ModuleConfig`\>\>, `ModuleEventData`\<`object`\>\>
2250
+
2251
+ ### Parameters
2252
+
2253
+ #### inParams?
2254
+
2255
+ `Partial`\<`T`\[`"params"`\]\>
2256
+
2257
+ ### Returns
2258
+
2259
+ `Promise`\<`T`\[`"params"`\]\>
2260
+
2261
+ The processed params ready for construction
2262
+
2263
+ ### Inherited from
2264
+
2265
+ ```ts
2266
+ AbstractArchivist.paramsHandler
2267
+ ```
2268
+
2269
+ ***
2270
+
2271
+ ### \_getRootFunction()
2272
+
2273
+ ```ts
2274
+ _getRootFunction(funcName): any;
2275
+ ```
2276
+
2277
+ ### Parameters
2278
+
2279
+ #### funcName
2280
+
2281
+ `string`
2282
+
2283
+ ### Returns
2284
+
2285
+ `any`
2286
+
2287
+ ### Inherited from
2288
+
2289
+ ```ts
2290
+ AbstractArchivist._getRootFunction
2291
+ ```
2292
+
2293
+ ***
2294
+
2295
+ ### busy()
2296
+
2297
+ ```ts
2298
+ busy<R>(closure): Promise<R>;
2299
+ ```
2300
+
2301
+ ### Type Parameters
2302
+
2303
+ #### R
2304
+
2305
+ `R`
2306
+
2307
+ ### Parameters
2308
+
2309
+ #### closure
2310
+
2311
+ () => `Promise`\<`R`\>
2312
+
2313
+ ### Returns
2314
+
2315
+ `Promise`\<`R`\>
2316
+
2317
+ ### Inherited from
2318
+
2319
+ ```ts
2320
+ AbstractArchivist.busy
2321
+ ```
2322
+
2323
+ ***
2324
+
2325
+ ### emit()
2326
+
2327
+ ```ts
2328
+ emit<TEventName, TEventArgs>(eventName, eventArgs): Promise<void>;
2329
+ ```
2330
+
2331
+ Emits an event, invoking all registered listeners concurrently.
2332
+
2333
+ ### Type Parameters
2334
+
2335
+ #### TEventName
2336
+
2337
+ `TEventName` *extends* `string` \| `number` \| `symbol` = keyof `TEventData`
2338
+
2339
+ #### TEventArgs
2340
+
2341
+ `TEventArgs` *extends* `EventArgs` = `TEventData`\[`TEventName`\]
2342
+
2343
+ ### Parameters
2344
+
2345
+ #### eventName
2346
+
2347
+ `TEventName`
2348
+
2349
+ The event to emit.
2350
+
2351
+ #### eventArgs
2352
+
2353
+ `TEventArgs`
2354
+
2355
+ The data to pass to listeners.
2356
+
2357
+ ### Returns
2358
+
2359
+ `Promise`\<`void`\>
2360
+
2361
+ ### Inherited from
2362
+
2363
+ ```ts
2364
+ AbstractArchivist.emit
2365
+ ```
2366
+
2367
+ ***
2368
+
2369
+ ### isSupportedQuery()
2370
+
2371
+ ```ts
2372
+ isSupportedQuery(query, assert?): boolean;
2373
+ ```
2374
+
2375
+ ### Parameters
2376
+
2377
+ #### query
2378
+
2379
+ `Schema`
2380
+
2381
+ #### assert?
2382
+
2383
+ `string` \| `boolean`
2384
+
2385
+ ### Returns
2386
+
2387
+ `boolean`
2388
+
2389
+ ### Inherited from
2390
+
2391
+ ```ts
2392
+ AbstractArchivist.isSupportedQuery
2393
+ ```
2394
+
2395
+ ***
2396
+
2397
+ ### previousHash()
2398
+
2399
+ ```ts
2400
+ previousHash(): Promisable<string | undefined>;
2401
+ ```
2402
+
2403
+ ### Returns
2404
+
2405
+ `Promisable`\<`string` \| `undefined`\>
2406
+
2407
+ ### Inherited from
2408
+
2409
+ ```ts
2410
+ AbstractArchivist.previousHash
2411
+ ```
2412
+
2413
+ ***
2414
+
2415
+ ### query()
2416
+
2417
+ ```ts
2418
+ query<T, TConfig>(
2419
+ query,
2420
+ payloads?,
2421
+ queryConfig?): Promise<ModuleQueryResult>;
2422
+ ```
2423
+
2424
+ ### Type Parameters
2425
+
2426
+ #### T
2427
+
2428
+ `T` *extends* `UnsignedQueryBoundWitness` = `UnsignedQueryBoundWitness`
2429
+
2430
+ #### TConfig
2431
+
2432
+ `TConfig` *extends* `ModuleConfig` = `ModuleConfig`
2433
+
2434
+ ### Parameters
2435
+
2436
+ #### query
2437
+
2438
+ `T`
2439
+
2440
+ #### payloads?
2441
+
2442
+ `Payload`[]
2443
+
2444
+ #### queryConfig?
2445
+
2446
+ `TConfig`
2447
+
2448
+ ### Returns
2449
+
2450
+ `Promise`\<`ModuleQueryResult`\>
2451
+
2452
+ ### Inherited from
2453
+
2454
+ ```ts
2455
+ AbstractArchivist.query
2456
+ ```
2457
+
2458
+ ***
2459
+
2460
+ ### queryable()
2461
+
2462
+ ```ts
2463
+ queryable<T, TConfig>(
2464
+ query,
2465
+ payloads?,
2466
+ queryConfig?): Promise<boolean>;
2467
+ ```
2468
+
2469
+ ### Type Parameters
2470
+
2471
+ #### T
2472
+
2473
+ `T` *extends* `UnsignedQueryBoundWitness` = `UnsignedQueryBoundWitness`
2474
+
2475
+ #### TConfig
2476
+
2477
+ `TConfig` *extends* `ModuleConfig` = `ModuleConfig`
2478
+
2479
+ ### Parameters
2480
+
2481
+ #### query
2482
+
2483
+ `T`
2484
+
2485
+ #### payloads?
2486
+
2487
+ `Payload`[]
2488
+
2489
+ #### queryConfig?
2490
+
2491
+ `TConfig`
2492
+
2493
+ ### Returns
2494
+
2495
+ `Promise`\<`boolean`\>
2496
+
2497
+ ### Inherited from
2498
+
2499
+ ```ts
2500
+ AbstractArchivist.queryable
2501
+ ```
2502
+
2503
+ ***
2504
+
2505
+ ### \_checkDead()
2506
+
2507
+ ```ts
2508
+ protected _checkDead(): void;
2509
+ ```
2510
+
2511
+ ### Returns
2512
+
2513
+ `void`
2514
+
2515
+ ### Inherited from
2516
+
2517
+ ```ts
2518
+ AbstractArchivist._checkDead
2519
+ ```
2520
+
2521
+ ***
2522
+
2523
+ ### archivistInstance()
2524
+
2525
+ ### Call Signature
2526
+
2527
+ ```ts
2528
+ protected archivistInstance(): Promise<
2529
+ | ArchivistInstance<ArchivistParams<AnyConfigSchema<ArchivistConfig>>, ArchivistModuleEventData, Payload>
2530
+ | undefined>;
2531
+ ```
2532
+
2533
+ #### Returns
2534
+
2535
+ `Promise`\<
2536
+ \| `ArchivistInstance`\<`ArchivistParams`\<`AnyConfigSchema`\<`ArchivistConfig`\>\>, `ArchivistModuleEventData`, `Payload`\>
2537
+ \| `undefined`\>
2538
+
2539
+ #### Inherited from
2540
+
2541
+ ```ts
2542
+ AbstractArchivist.archivistInstance
2543
+ ```
2544
+
2545
+ ### Call Signature
2546
+
2547
+ ```ts
2548
+ protected archivistInstance(required): Promise<ArchivistInstance<ArchivistParams<AnyConfigSchema<ArchivistConfig>>, ArchivistModuleEventData, Payload>>;
2549
+ ```
2550
+
2551
+ #### Parameters
2552
+
2553
+ ##### required
2554
+
2555
+ `true`
2556
+
2557
+ #### Returns
2558
+
2559
+ `Promise`\<`ArchivistInstance`\<`ArchivistParams`\<`AnyConfigSchema`\<`ArchivistConfig`\>\>, `ArchivistModuleEventData`, `Payload`\>\>
2560
+
2561
+ #### Inherited from
2562
+
2563
+ ```ts
2564
+ AbstractArchivist.archivistInstance
2565
+ ```
2566
+
2567
+ ***
2568
+
2569
+ ### bindHashes()
2570
+
2571
+ ```ts
2572
+ protected bindHashes(
2573
+ hashes,
2574
+ schema,
2575
+ account?): PromiseEx<unknown, AccountInstance>;
2576
+ ```
2577
+
2578
+ ### Parameters
2579
+
2580
+ #### hashes
2581
+
2582
+ `BrandedHash`[]
2583
+
2584
+ #### schema
2585
+
2586
+ `Schema`[]
2587
+
2588
+ #### account?
2589
+
2590
+ `AccountInstance`
2591
+
2592
+ ### Returns
2593
+
2594
+ `PromiseEx`\<`unknown`, `AccountInstance`\>
2595
+
2596
+ ### Inherited from
2597
+
2598
+ ```ts
2599
+ AbstractArchivist.bindHashes
2600
+ ```
2601
+
2602
+ ***
2603
+
2604
+ ### bindHashesInternal()
2605
+
2606
+ ```ts
2607
+ protected bindHashesInternal(
2608
+ hashes,
2609
+ schema,
2610
+ account?): Promise<{
2611
+ schema: "network.xyo.boundwitness" & object;
2612
+ addresses: Lowercase<string> & object & object[];
2613
+ payload_hashes: BrandedHash[];
2614
+ payload_schemas: BrandedSchema<string>[];
2615
+ previous_hashes: (BrandedHash | null)[];
2616
+ $destination?: Lowercase<string> & object & object;
2617
+ $sourceQuery?: BrandedHash;
2618
+ $signatures: (BrandedHex | null)[];
2619
+ }>;
2620
+ ```
2621
+
2622
+ ### Parameters
2623
+
2624
+ #### hashes
2625
+
2626
+ `BrandedHash`[]
2627
+
2628
+ #### schema
2629
+
2630
+ `Schema`[]
2631
+
2632
+ #### account?
2633
+
2634
+ `AccountInstance`
2635
+
2636
+ ### Returns
2637
+
2638
+ `Promise`\<\{
2639
+ `schema`: `"network.xyo.boundwitness"` & `object`;
2640
+ `addresses`: `Lowercase`\<`string`\> & `object` & `object`[];
2641
+ `payload_hashes`: `BrandedHash`[];
2642
+ `payload_schemas`: `BrandedSchema`\<`string`\>[];
2643
+ `previous_hashes`: (`BrandedHash` \| `null`)[];
2644
+ `$destination?`: `Lowercase`\<`string`\> & `object` & `object`;
2645
+ `$sourceQuery?`: `BrandedHash`;
2646
+ `$signatures`: (`BrandedHex` \| `null`)[];
2647
+ \}\>
2648
+
2649
+ ### Inherited from
2650
+
2651
+ ```ts
2652
+ AbstractArchivist.bindHashesInternal
2653
+ ```
2654
+
2655
+ ***
2656
+
2657
+ ### bindQuery()
2658
+
2659
+ ```ts
2660
+ protected bindQuery<T>(
2661
+ query,
2662
+ payloads?,
2663
+ account?,
2664
+ additionalSigners?): PromiseEx<[UnsignedQueryBoundWitness, Payload[], Payload[]], AccountInstance>;
2665
+ ```
2666
+
2667
+ ### Type Parameters
2668
+
2669
+ #### T
2670
+
2671
+ `T` *extends* `Query`
2672
+
2673
+ ### Parameters
2674
+
2675
+ #### query
2676
+
2677
+ `T`
2678
+
2679
+ #### payloads?
2680
+
2681
+ `Payload`[]
2682
+
2683
+ #### account?
2684
+
2685
+ `AccountInstance`
2686
+
2687
+ #### additionalSigners?
2688
+
2689
+ `AccountInstance`[]
2690
+
2691
+ ### Returns
2692
+
2693
+ `PromiseEx`\<\[`UnsignedQueryBoundWitness`, `Payload`[], `Payload`[]\], `AccountInstance`\>
2694
+
2695
+ ### Inherited from
2696
+
2697
+ ```ts
2698
+ AbstractArchivist.bindQuery
2699
+ ```
2700
+
2701
+ ***
2702
+
2703
+ ### bindQueryInternal()
2704
+
2705
+ ```ts
2706
+ protected bindQueryInternal<T>(
2707
+ query,
2708
+ payloads?,
2709
+ account?,
2710
+ additionalSigners?): Promise<[UnsignedQueryBoundWitness, Payload[], Payload[]]>;
2711
+ ```
2712
+
2713
+ ### Type Parameters
2714
+
2715
+ #### T
2716
+
2717
+ `T` *extends* `Query`
2718
+
2719
+ ### Parameters
2720
+
2721
+ #### query
2722
+
2723
+ `T`
2724
+
2725
+ #### payloads?
2726
+
2727
+ `Payload`[]
2728
+
2729
+ #### account?
2730
+
2731
+ `AccountInstance`
2732
+
2733
+ #### additionalSigners?
2734
+
2735
+ `AccountInstance`[]
2736
+
2737
+ ### Returns
2738
+
2739
+ `Promise`\<\[`UnsignedQueryBoundWitness`, `Payload`[], `Payload`[]\]\>
2740
+
2741
+ ### Inherited from
2742
+
2743
+ ```ts
2744
+ AbstractArchivist.bindQueryInternal
2745
+ ```
2746
+
2747
+ ***
2748
+
2749
+ ### bindQueryResult()
2750
+
2751
+ ```ts
2752
+ protected bindQueryResult<T>(
2753
+ query,
2754
+ payloads,
2755
+ additionalWitnesses?,
2756
+ errors?): Promise<ModuleQueryResult>;
2757
+ ```
2758
+
2759
+ ### Type Parameters
2760
+
2761
+ #### T
2762
+
2763
+ `T` *extends* `Query`
2764
+
2765
+ ### Parameters
2766
+
2767
+ #### query
2768
+
2769
+ `T`
2770
+
2771
+ #### payloads
2772
+
2773
+ `Payload`[]
2774
+
2775
+ #### additionalWitnesses?
2776
+
2777
+ `AccountInstance`[]
2778
+
2779
+ #### errors?
2780
+
2781
+ `ModuleError`[]
2782
+
2783
+ ### Returns
2784
+
2785
+ `Promise`\<`ModuleQueryResult`\>
2786
+
2787
+ ### Inherited from
2788
+
2789
+ ```ts
2790
+ AbstractArchivist.bindQueryResult
2791
+ ```
2792
+
2793
+ ***
2794
+
2795
+ ### generateConfigAndAddress()
2796
+
2797
+ ```ts
2798
+ protected generateConfigAndAddress(_maxDepth?): Promisable<Payload[]>;
2799
+ ```
2800
+
2801
+ ### Parameters
2802
+
2803
+ #### \_maxDepth?
2804
+
2805
+ `number`
2806
+
2807
+ ### Returns
2808
+
2809
+ `Promisable`\<`Payload`[]\>
2810
+
2811
+ ### Inherited from
2812
+
2813
+ ```ts
2814
+ AbstractArchivist.generateConfigAndAddress
2815
+ ```
2816
+
2817
+ ***
2818
+
2819
+ ### generateDescribe()
2820
+
2821
+ ```ts
2822
+ protected generateDescribe(): Promise<ModuleDescriptionPayload>;
2823
+ ```
2824
+
2825
+ ### Returns
2826
+
2827
+ `Promise`\<`ModuleDescriptionPayload`\>
2828
+
2829
+ ### Inherited from
2830
+
2831
+ ```ts
2832
+ AbstractArchivist.generateDescribe
2833
+ ```
2834
+
2835
+ ***
2836
+
2837
+ ### ~~getArchivist()~~
2838
+
2839
+ ```ts
2840
+ protected getArchivist(): Promise<
2841
+ | ArchivistInstance<ArchivistParams<AnyConfigSchema<ArchivistConfig>>, ArchivistModuleEventData, Payload>
2842
+ | undefined>;
2843
+ ```
2844
+
2845
+ ### Returns
2846
+
2847
+ `Promise`\<
2848
+ \| `ArchivistInstance`\<`ArchivistParams`\<`AnyConfigSchema`\<`ArchivistConfig`\>\>, `ArchivistModuleEventData`, `Payload`\>
2849
+ \| `undefined`\>
2850
+
2851
+ ### Deprecated
2852
+
2853
+ use archivistInstance() instead
2854
+
2855
+ ### Inherited from
2856
+
2857
+ ```ts
2858
+ AbstractArchivist.getArchivist
2859
+ ```
2860
+
2861
+ ***
2862
+
2863
+ ### isAllowedArchivingQuery()
2864
+
2865
+ ```ts
2866
+ protected isAllowedArchivingQuery(schema): boolean;
2867
+ ```
2868
+
2869
+ ### Parameters
2870
+
2871
+ #### schema
2872
+
2873
+ `Schema`
2874
+
2875
+ ### Returns
2876
+
2877
+ `boolean`
2878
+
2879
+ ### Inherited from
2880
+
2881
+ ```ts
2882
+ AbstractArchivist.isAllowedArchivingQuery
2883
+ ```
2884
+
2885
+ ***
2886
+
2887
+ ### moduleAddressHandler()
2888
+
2889
+ ```ts
2890
+ protected moduleAddressHandler(): Promisable<(AddressPayload | AddressPreviousHashPayload)[]>;
2891
+ ```
2892
+
2893
+ ### Returns
2894
+
2895
+ `Promisable`\<(`AddressPayload` \| `AddressPreviousHashPayload`)[]\>
2896
+
2897
+ ### Inherited from
2898
+
2899
+ ```ts
2900
+ AbstractArchivist.moduleAddressHandler
2901
+ ```
2902
+
2903
+ ***
2904
+
2905
+ ### stopHandler()
2906
+
2907
+ ```ts
2908
+ protected stopHandler(): Promise<void>;
2909
+ ```
2910
+
2911
+ Override in subclasses to define stop behavior. Throw an error on failure.
2912
+
2913
+ ### Returns
2914
+
2915
+ `Promise`\<`void`\>
2916
+
2917
+ ### Inherited from
2918
+
2919
+ ```ts
2920
+ AbstractArchivist.stopHandler
2921
+ ```
2922
+
2923
+ ***
2924
+
2925
+ ### subscribeHandler()
2926
+
2927
+ ```ts
2928
+ protected subscribeHandler(): void;
2929
+ ```
2930
+
2931
+ ### Returns
2932
+
2933
+ `void`
2934
+
2935
+ ### Inherited from
2936
+
2937
+ ```ts
2938
+ AbstractArchivist.subscribeHandler
2939
+ ```
2940
+
2941
+ ***
2942
+
2943
+ ### validateConfig()
2944
+
2945
+ ```ts
2946
+ protected validateConfig(config?, parents?): boolean;
2947
+ ```
2948
+
2949
+ ### Parameters
2950
+
2951
+ #### config?
2952
+
2953
+ `unknown`
2954
+
2955
+ #### parents?
2956
+
2957
+ `string`[]
2958
+
2959
+ ### Returns
2960
+
2961
+ `boolean`
2962
+
2963
+ ### Inherited from
2964
+
2965
+ ```ts
2966
+ AbstractArchivist.validateConfig
2967
+ ```
2968
+
2969
+ ***
2970
+
2971
+ ### addParent()
2972
+
2973
+ ```ts
2974
+ addParent(mod): void;
2975
+ ```
2976
+
2977
+ ### Parameters
2978
+
2979
+ #### mod
2980
+
2981
+ `ModuleInstance`
2982
+
2983
+ ### Returns
2984
+
2985
+ `void`
2986
+
2987
+ ### Inherited from
2988
+
2989
+ ```ts
2990
+ AbstractArchivist.addParent
2991
+ ```
2992
+
2993
+ ***
2994
+
2995
+ ### certifyParents()
2996
+
2997
+ ```ts
2998
+ certifyParents(): Promise<Payload[]>;
2999
+ ```
3000
+
3001
+ ### Returns
3002
+
3003
+ `Promise`\<`Payload`[]\>
3004
+
3005
+ ### Inherited from
3006
+
3007
+ ```ts
3008
+ AbstractArchivist.certifyParents
3009
+ ```
3010
+
3011
+ ***
3012
+
3013
+ ### createHandler()
3014
+
3015
+ ```ts
3016
+ createHandler(): Promise<void>;
3017
+ ```
3018
+
3019
+ ### Returns
3020
+
3021
+ `Promise`\<`void`\>
3022
+
3023
+ ### Inherited from
3024
+
3025
+ ```ts
3026
+ AbstractArchivist.createHandler
3027
+ ```
3028
+
3029
+ ***
3030
+
3031
+ ### manifest()
3032
+
3033
+ ```ts
3034
+ manifest(maxDepth?): Promise<ModuleManifestPayload>;
3035
+ ```
3036
+
3037
+ ### Parameters
3038
+
3039
+ #### maxDepth?
3040
+
3041
+ `number`
3042
+
3043
+ ### Returns
3044
+
3045
+ `Promise`\<`ModuleManifestPayload`\>
3046
+
3047
+ ### Inherited from
3048
+
3049
+ ```ts
3050
+ AbstractArchivist.manifest
3051
+ ```
3052
+
3053
+ ***
3054
+
3055
+ ### manifestQuery()
3056
+
3057
+ ```ts
3058
+ manifestQuery(account, maxDepth?): Promise<ModuleQueryResult<ModuleManifestPayload>>;
3059
+ ```
3060
+
3061
+ ### Parameters
3062
+
3063
+ #### account
3064
+
3065
+ `AccountInstance`
3066
+
3067
+ #### maxDepth?
3068
+
3069
+ `number`
3070
+
3071
+ ### Returns
3072
+
3073
+ `Promise`\<`ModuleQueryResult`\<`ModuleManifestPayload`\>\>
3074
+
3075
+ ### Inherited from
3076
+
3077
+ ```ts
3078
+ AbstractArchivist.manifestQuery
3079
+ ```
3080
+
3081
+ ***
3082
+
3083
+ ### moduleAddress()
3084
+
3085
+ ```ts
3086
+ moduleAddress(): Promise<(AddressPayload | AddressPreviousHashPayload)[]>;
3087
+ ```
3088
+
3089
+ ### Returns
3090
+
3091
+ `Promise`\<(`AddressPayload` \| `AddressPreviousHashPayload`)[]\>
3092
+
3093
+ ### Inherited from
3094
+
3095
+ ```ts
3096
+ AbstractArchivist.moduleAddress
3097
+ ```
3098
+
3099
+ ***
3100
+
3101
+ ### parents()
3102
+
3103
+ ```ts
3104
+ parents(): Promisable<NodeInstance<NodeParams<AnyConfigSchema<NodeConfig>>, NodeModuleEventData>[]>;
3105
+ ```
3106
+
3107
+ ### Returns
3108
+
3109
+ `Promisable`\<`NodeInstance`\<`NodeParams`\<`AnyConfigSchema`\<`NodeConfig`\>\>, `NodeModuleEventData`\>[]\>
3110
+
3111
+ ### Inherited from
3112
+
3113
+ ```ts
3114
+ AbstractArchivist.parents
3115
+ ```
3116
+
3117
+ ***
3118
+
3119
+ ### privateChildren()
3120
+
3121
+ ```ts
3122
+ privateChildren(): Promisable<ModuleInstance<QueryableModuleParams<AnyConfigSchema<ModuleConfig>>, ModuleEventData<object>>[]>;
3123
+ ```
3124
+
3125
+ ### Returns
3126
+
3127
+ `Promisable`\<`ModuleInstance`\<`QueryableModuleParams`\<`AnyConfigSchema`\<`ModuleConfig`\>\>, `ModuleEventData`\<`object`\>\>[]\>
3128
+
3129
+ ### Inherited from
3130
+
3131
+ ```ts
3132
+ AbstractArchivist.privateChildren
3133
+ ```
3134
+
3135
+ ***
3136
+
3137
+ ### publicChildren()
3138
+
3139
+ ```ts
3140
+ publicChildren(): Promisable<ModuleInstance<QueryableModuleParams<AnyConfigSchema<ModuleConfig>>, ModuleEventData<object>>[]>;
3141
+ ```
3142
+
3143
+ ### Returns
3144
+
3145
+ `Promisable`\<`ModuleInstance`\<`QueryableModuleParams`\<`AnyConfigSchema`\<`ModuleConfig`\>\>, `ModuleEventData`\<`object`\>\>[]\>
3146
+
3147
+ ### Inherited from
3148
+
3149
+ ```ts
3150
+ AbstractArchivist.publicChildren
3151
+ ```
3152
+
3153
+ ***
3154
+
3155
+ ### removeParent()
3156
+
3157
+ ```ts
3158
+ removeParent(address): void;
3159
+ ```
3160
+
3161
+ ### Parameters
3162
+
3163
+ #### address
3164
+
3165
+ `BrandedAddress`
3166
+
3167
+ ### Returns
3168
+
3169
+ `void`
3170
+
3171
+ ### Inherited from
3172
+
3173
+ ```ts
3174
+ AbstractArchivist.removeParent
3175
+ ```
3176
+
3177
+ ***
3178
+
3179
+ ### resolve()
3180
+
3181
+ ### Call Signature
3182
+
3183
+ ```ts
3184
+ resolve(): Promise<ModuleInstance<QueryableModuleParams<AnyConfigSchema<ModuleConfig>>, ModuleEventData<object>>[]>;
3185
+ ```
3186
+
3187
+ #### Returns
3188
+
3189
+ `Promise`\<`ModuleInstance`\<`QueryableModuleParams`\<`AnyConfigSchema`\<`ModuleConfig`\>\>, `ModuleEventData`\<`object`\>\>[]\>
3190
+
3191
+ #### Inherited from
3192
+
3193
+ ```ts
3194
+ AbstractArchivist.resolve
3195
+ ```
3196
+
3197
+ ### Call Signature
3198
+
3199
+ ```ts
3200
+ resolve<T>(all, options?): Promise<T[]>;
3201
+ ```
3202
+
3203
+ #### Type Parameters
3204
+
3205
+ ##### T
3206
+
3207
+ `T` *extends* `ModuleInstance`\<`QueryableModuleParams`\<`AnyConfigSchema`\<`ModuleConfig`\>\>, `ModuleEventData`\<`object`\>\> = `ModuleInstance`\<`QueryableModuleParams`\<`AnyConfigSchema`\<`ModuleConfig`\>\>, `ModuleEventData`\<`object`\>\>
3208
+
3209
+ #### Parameters
3210
+
3211
+ ##### all
3212
+
3213
+ `"*"`
3214
+
3215
+ ##### options?
3216
+
3217
+ `ModuleFilterOptions`\<`T`\>
3218
+
3219
+ #### Returns
3220
+
3221
+ `Promise`\<`T`[]\>
3222
+
3223
+ #### Inherited from
3224
+
3225
+ ```ts
3226
+ AbstractArchivist.resolve
3227
+ ```
3228
+
3229
+ ### Call Signature
3230
+
3231
+ ```ts
3232
+ resolve<T>(id, options?): Promise<T | undefined>;
3233
+ ```
3234
+
3235
+ #### Type Parameters
3236
+
3237
+ ##### T
3238
+
3239
+ `T` *extends* `ModuleInstance`\<`QueryableModuleParams`\<`AnyConfigSchema`\<`ModuleConfig`\>\>, `ModuleEventData`\<`object`\>\> = `ModuleInstance`\<`QueryableModuleParams`\<`AnyConfigSchema`\<`ModuleConfig`\>\>, `ModuleEventData`\<`object`\>\>
3240
+
3241
+ #### Parameters
3242
+
3243
+ ##### id
3244
+
3245
+ `ModuleIdentifier`
3246
+
3247
+ ##### options?
3248
+
3249
+ `ModuleFilterOptions`\<`T`\>
3250
+
3251
+ #### Returns
3252
+
3253
+ `Promise`\<`T` \| `undefined`\>
3254
+
3255
+ #### Inherited from
3256
+
3257
+ ```ts
3258
+ AbstractArchivist.resolve
3259
+ ```
3260
+
3261
+ ***
3262
+
3263
+ ### resolveIdentifier()
3264
+
3265
+ ```ts
3266
+ resolveIdentifier(id, options?): Promise<BrandedAddress | undefined>;
3267
+ ```
3268
+
3269
+ ### Parameters
3270
+
3271
+ #### id
3272
+
3273
+ `ModuleIdentifier`
3274
+
3275
+ #### options?
3276
+
3277
+ `ObjectFilterOptions`\<`AnyObject`\>
3278
+
3279
+ ### Returns
3280
+
3281
+ `Promise`\<`BrandedAddress` \| `undefined`\>
3282
+
3283
+ ### Inherited from
3284
+
3285
+ ```ts
3286
+ AbstractArchivist.resolveIdentifier
3287
+ ```
3288
+
3289
+ ***
3290
+
3291
+ ### resolvePrivate()
3292
+
3293
+ ### Call Signature
3294
+
3295
+ ```ts
3296
+ resolvePrivate<T>(all, options?): Promise<T[]>;
3297
+ ```
3298
+
3299
+ #### Type Parameters
3300
+
3301
+ ##### T
3302
+
3303
+ `T` *extends* `ModuleInstance`\<`QueryableModuleParams`\<`AnyConfigSchema`\<`ModuleConfig`\>\>, `ModuleEventData`\<`object`\>\> = `ModuleInstance`\<`QueryableModuleParams`\<`AnyConfigSchema`\<`ModuleConfig`\>\>, `ModuleEventData`\<`object`\>\>
3304
+
3305
+ #### Parameters
3306
+
3307
+ ##### all
3308
+
3309
+ `"*"`
3310
+
3311
+ ##### options?
3312
+
3313
+ `ModuleFilterOptions`\<`T`\>
3314
+
3315
+ #### Returns
3316
+
3317
+ `Promise`\<`T`[]\>
3318
+
3319
+ #### Inherited from
3320
+
3321
+ ```ts
3322
+ AbstractArchivist.resolvePrivate
3323
+ ```
3324
+
3325
+ ### Call Signature
3326
+
3327
+ ```ts
3328
+ resolvePrivate<T>(id, options?): Promise<T | undefined>;
3329
+ ```
3330
+
3331
+ #### Type Parameters
3332
+
3333
+ ##### T
3334
+
3335
+ `T` *extends* `ModuleInstance`\<`QueryableModuleParams`\<`AnyConfigSchema`\<`ModuleConfig`\>\>, `ModuleEventData`\<`object`\>\> = `ModuleInstance`\<`QueryableModuleParams`\<`AnyConfigSchema`\<`ModuleConfig`\>\>, `ModuleEventData`\<`object`\>\>
3336
+
3337
+ #### Parameters
3338
+
3339
+ ##### id
3340
+
3341
+ `ModuleIdentifier`
3342
+
3343
+ ##### options?
3344
+
3345
+ `ModuleFilterOptions`\<`T`\>
3346
+
3347
+ #### Returns
3348
+
3349
+ `Promise`\<`T` \| `undefined`\>
3350
+
3351
+ #### Inherited from
3352
+
3353
+ ```ts
3354
+ AbstractArchivist.resolvePrivate
3355
+ ```
3356
+
3357
+ ***
3358
+
3359
+ ### siblings()
3360
+
3361
+ ```ts
3362
+ siblings(): Promise<ModuleInstance<QueryableModuleParams<AnyConfigSchema<ModuleConfig>>, ModuleEventData<object>>[]>;
3363
+ ```
3364
+
3365
+ ### Returns
3366
+
3367
+ `Promise`\<`ModuleInstance`\<`QueryableModuleParams`\<`AnyConfigSchema`\<`ModuleConfig`\>\>, `ModuleEventData`\<`object`\>\>[]\>
3368
+
3369
+ ### Inherited from
3370
+
3371
+ ```ts
3372
+ AbstractArchivist.siblings
3373
+ ```
3374
+
3375
+ ***
3376
+
3377
+ ### state()
3378
+
3379
+ ```ts
3380
+ state(): Promise<Payload[]>;
3381
+ ```
3382
+
3383
+ ### Returns
3384
+
3385
+ `Promise`\<`Payload`[]\>
3386
+
3387
+ ### Inherited from
3388
+
3389
+ ```ts
3390
+ AbstractArchivist.state
3391
+ ```
3392
+
3393
+ ***
3394
+
3395
+ ### stateQuery()
3396
+
3397
+ ```ts
3398
+ stateQuery(account): Promise<ModuleQueryResult>;
3399
+ ```
3400
+
3401
+ ### Parameters
3402
+
3403
+ #### account
3404
+
3405
+ `AccountInstance`
3406
+
3407
+ ### Returns
3408
+
3409
+ `Promise`\<`ModuleQueryResult`\>
3410
+
3411
+ ### Inherited from
3412
+
3413
+ ```ts
3414
+ AbstractArchivist.stateQuery
3415
+ ```
3416
+
3417
+ ***
3418
+
3419
+ ### subscribe()
3420
+
3421
+ ```ts
3422
+ subscribe(_queryAccount?): void;
3423
+ ```
3424
+
3425
+ ### Parameters
3426
+
3427
+ #### \_queryAccount?
3428
+
3429
+ `AccountInstance`
3430
+
3431
+ ### Returns
3432
+
3433
+ `void`
3434
+
3435
+ ### Inherited from
3436
+
3437
+ ```ts
3438
+ AbstractArchivist.subscribe
3439
+ ```
3440
+
3441
+ ***
3442
+
3443
+ ### manifestHandler()
3444
+
3445
+ ```ts
3446
+ protected manifestHandler(maxDepth?, _ignoreAddresses?): Promise<ModuleManifestPayload>;
3447
+ ```
3448
+
3449
+ ### Parameters
3450
+
3451
+ #### maxDepth?
3452
+
3453
+ `number`
3454
+
3455
+ #### \_ignoreAddresses?
3456
+
3457
+ `BrandedAddress`[]
3458
+
3459
+ ### Returns
3460
+
3461
+ `Promise`\<`ModuleManifestPayload`\>
3462
+
3463
+ ### Inherited from
3464
+
3465
+ ```ts
3466
+ AbstractArchivist.manifestHandler
3467
+ ```
3468
+
3469
+ ***
3470
+
3471
+ ### resolveArchivingArchivists()
3472
+
3473
+ ```ts
3474
+ protected resolveArchivingArchivists(): Promise<ArchivistInstance<ArchivistParams<AnyConfigSchema<ArchivistConfig>>, ArchivistModuleEventData, Payload>[]>;
3475
+ ```
3476
+
3477
+ ### Returns
3478
+
3479
+ `Promise`\<`ArchivistInstance`\<`ArchivistParams`\<`AnyConfigSchema`\<`ArchivistConfig`\>\>, `ArchivistModuleEventData`, `Payload`\>[]\>
3480
+
3481
+ ### Inherited from
3482
+
3483
+ ```ts
3484
+ AbstractArchivist.resolveArchivingArchivists
3485
+ ```
3486
+
3487
+ ***
3488
+
3489
+ ### sendQuery()
3490
+
3491
+ ```ts
3492
+ protected sendQuery<T, P, R>(
3493
+ queryPayload,
3494
+ payloads?,
3495
+ account?): Promise<R[]>;
3496
+ ```
3497
+
3498
+ ### Type Parameters
3499
+
3500
+ #### T
3501
+
3502
+ `T` *extends* `Query`
3503
+
3504
+ #### P
3505
+
3506
+ `P` *extends* `Payload` = `Payload`
3507
+
3508
+ #### R
3509
+
3510
+ `R` *extends* `Payload` = `Payload`
3511
+
3512
+ ### Parameters
3513
+
3514
+ #### queryPayload
3515
+
3516
+ `T`
3517
+
3518
+ #### payloads?
3519
+
3520
+ `P`[]
3521
+
3522
+ #### account?
3523
+
3524
+ `AccountInstance`
3525
+
3526
+ ### Returns
3527
+
3528
+ `Promise`\<`R`[]\>
3529
+
3530
+ ### Inherited from
3531
+
3532
+ ```ts
3533
+ AbstractArchivist.sendQuery
3534
+ ```
3535
+
3536
+ ***
3537
+
3538
+ ### sendQueryRaw()
3539
+
3540
+ ```ts
3541
+ protected sendQueryRaw<T, P, R>(
3542
+ queryPayload,
3543
+ payloads?,
3544
+ account?): Promise<ModuleQueryResult<R>>;
3545
+ ```
3546
+
3547
+ ### Type Parameters
3548
+
3549
+ #### T
3550
+
3551
+ `T` *extends* `Query`
3552
+
3553
+ #### P
3554
+
3555
+ `P` *extends* `Payload` = `Payload`
3556
+
3557
+ #### R
3558
+
3559
+ `R` *extends* `Payload` = `Payload`
3560
+
3561
+ ### Parameters
3562
+
3563
+ #### queryPayload
3564
+
3565
+ `T`
3566
+
3567
+ #### payloads?
3568
+
3569
+ `P`[]
3570
+
3571
+ #### account?
3572
+
3573
+ `AccountInstance`
3574
+
3575
+ ### Returns
3576
+
3577
+ `Promise`\<`ModuleQueryResult`\<`R`\>\>
3578
+
3579
+ ### Inherited from
3580
+
3581
+ ```ts
3582
+ AbstractArchivist.sendQueryRaw
3583
+ ```
3584
+
3585
+ ***
3586
+
3587
+ ### storeToArchivists()
3588
+
3589
+ ```ts
3590
+ protected storeToArchivists(payloads): Promise<Payload[]>;
3591
+ ```
3592
+
3593
+ ### Parameters
3594
+
3595
+ #### payloads
3596
+
3597
+ `Payload`[]
3598
+
3599
+ ### Returns
3600
+
3601
+ `Promise`\<`Payload`[]\>
3602
+
3603
+ ### Inherited from
3604
+
3605
+ ```ts
3606
+ AbstractArchivist.storeToArchivists
3607
+ ```
3608
+
3609
+ ### interfaces
3610
+
3611
+ ### <a id="LmdbArchivistParams"></a>LmdbArchivistParams
3612
+
3613
+ [**@xyo-network/archivist-lmdb**](#../README)
3614
+
3615
+ ***
3616
+
3617
+ ## Extends
3618
+
3619
+ - `ArchivistParams`\<`AnyConfigSchema`\<[`LmdbArchivistConfig`](#../type-aliases/LmdbArchivistConfig)\>\>
3620
+
3621
+ ## Properties
3622
+
3623
+ ### keys?
3624
+
3625
+ ```ts
3626
+ optional keys?: ArchivistKeyParams<BrandedHash, Payload, BrandedHash>;
3627
+ ```
3628
+
3629
+ ### Inherited from
3630
+
3631
+ ```ts
3632
+ ArchivistParams.keys
3633
+ ```
3634
+
3635
+ ***
3636
+
3637
+ ### parents?
3638
+
3639
+ ```ts
3640
+ optional parents?: ArchivistParentInstances;
3641
+ ```
3642
+
3643
+ ### Inherited from
3644
+
3645
+ ```ts
3646
+ ArchivistParams.parents
3647
+ ```
3648
+
3649
+ ***
3650
+
3651
+ ### values?
3652
+
3653
+ ```ts
3654
+ optional values?: ArchivistValueParams<Payload, Payload>;
3655
+ ```
3656
+
3657
+ ### Inherited from
3658
+
3659
+ ```ts
3660
+ ArchivistParams.values
3661
+ ```
3662
+
3663
+ ***
3664
+
3665
+ ### account?
3666
+
3667
+ ```ts
3668
+ optional account?: AccountInstance | "random";
3669
+ ```
3670
+
3671
+ ### Inherited from
3672
+
3673
+ ```ts
3674
+ ArchivistParams.account
3675
+ ```
3676
+
3677
+ ***
3678
+
3679
+ ### addToResolvers?
3680
+
3681
+ ```ts
3682
+ optional addToResolvers?: boolean;
3683
+ ```
3684
+
3685
+ ### Inherited from
3686
+
3687
+ ```ts
3688
+ ArchivistParams.addToResolvers
3689
+ ```
3690
+
3691
+ ***
3692
+
3693
+ ### additionalSigners?
3694
+
3695
+ ```ts
3696
+ optional additionalSigners?: AccountInstance[];
3697
+ ```
3698
+
3699
+ ### Inherited from
3700
+
3701
+ ```ts
3702
+ ArchivistParams.additionalSigners
3703
+ ```
3704
+
3705
+ ***
3706
+
3707
+ ### allowNameResolution?
3708
+
3709
+ ```ts
3710
+ optional allowNameResolution?: boolean;
3711
+ ```
3712
+
3713
+ ### Inherited from
3714
+
3715
+ ```ts
3716
+ ArchivistParams.allowNameResolution
3717
+ ```
3718
+
3719
+ ***
3720
+
3721
+ ### config
3722
+
3723
+ ```ts
3724
+ config: Partial<TConfig>;
3725
+ ```
3726
+
3727
+ ### Inherited from
3728
+
3729
+ ```ts
3730
+ ArchivistParams.config
3731
+ ```
3732
+
3733
+ ***
3734
+
3735
+ ### ephemeralQueryAccountEnabled?
3736
+
3737
+ ```ts
3738
+ optional ephemeralQueryAccountEnabled?: boolean;
3739
+ ```
3740
+
3741
+ ### Inherited from
3742
+
3743
+ ```ts
3744
+ ArchivistParams.ephemeralQueryAccountEnabled
3745
+ ```
3746
+
3747
+ ***
3748
+
3749
+ ### moduleIdentifierTransformers?
3750
+
3751
+ ```ts
3752
+ optional moduleIdentifierTransformers?: ModuleIdentifierTransformer[];
3753
+ ```
3754
+
3755
+ ### Inherited from
3756
+
3757
+ ```ts
3758
+ ArchivistParams.moduleIdentifierTransformers
3759
+ ```
3760
+
3761
+ ***
3762
+
3763
+ ### statusReporter?
3764
+
3765
+ ```ts
3766
+ optional statusReporter?: ModuleStatusReporter;
3767
+ ```
3768
+
3769
+ Optional reporter for broadcasting status changes.
3770
+
3771
+ ### Inherited from
3772
+
3773
+ ```ts
3774
+ ArchivistParams.statusReporter
3775
+ ```
3776
+
3777
+ ### type-aliases
3778
+
3779
+ ### <a id="LmdbArchivistConfig"></a>LmdbArchivistConfig
3780
+
3781
+ [**@xyo-network/archivist-lmdb**](#../README)
3782
+
3783
+ ***
3784
+
3785
+ ```ts
3786
+ type LmdbArchivistConfig<TStoreName> = ArchivistConfig<{
3787
+ clearStoreOnStart?: boolean;
3788
+ dbName?: string;
3789
+ location?: string;
3790
+ schema: LmdbArchivistConfigSchema;
3791
+ storeName?: TStoreName;
3792
+ }>;
3793
+ ```
3794
+
3795
+ ## Type Parameters
3796
+
3797
+ ### TStoreName
3798
+
3799
+ `TStoreName` *extends* `string` = `string`
3800
+
3801
+ ### <a id="LmdbArchivistConfigSchema"></a>LmdbArchivistConfigSchema
3802
+
3803
+ [**@xyo-network/archivist-lmdb**](#../README)
3804
+
3805
+ ***
3806
+
3807
+ ```ts
3808
+ type LmdbArchivistConfigSchema = typeof LmdbArchivistConfigSchema;
3809
+ ```
3810
+
3811
+ ### <a id="LmdbArchivistSchema"></a>LmdbArchivistSchema
3812
+
3813
+ [**@xyo-network/archivist-lmdb**](#../README)
3814
+
3815
+ ***
3816
+
3817
+ ```ts
3818
+ type LmdbArchivistSchema = typeof LmdbArchivistSchema;
3819
+ ```
3820
+
3821
+ ### variables
3822
+
3823
+ ### <a id="LmdbArchivistConfigSchema"></a>LmdbArchivistConfigSchema
3824
+
3825
+ [**@xyo-network/archivist-lmdb**](#../README)
3826
+
3827
+ ***
3828
+
3829
+ ```ts
3830
+ const LmdbArchivistConfigSchema: string & object;
3831
+ ```
3832
+
3833
+ ## Type Declaration
3834
+
3835
+ ### \_\_schema
3836
+
3837
+ ```ts
3838
+ readonly __schema: true;
3839
+ ```
3840
+
3841
+ ### <a id="LmdbArchivistSchema"></a>LmdbArchivistSchema
3842
+
3843
+ [**@xyo-network/archivist-lmdb**](#../README)
3844
+
3845
+ ***
3846
+
3847
+ ```ts
3848
+ const LmdbArchivistSchema: "network.xyo.archivist.lmdb" & object;
3849
+ ```
3850
+
3851
+ ## Type Declaration
3852
+
3853
+ ### \_\_schema
18
3854
 
19
- ## Credits
3855
+ ```ts
3856
+ readonly __schema: true;
3857
+ ```
20
3858
 
21
- [Made with 🔥 and ❄️ by XYO](https://xyo.network)
22
3859
 
23
- [logo]: https://cdn.xy.company/img/brand/XYO_full_colored.png
3860
+ [logo]: https://cdn.xy.company/img/brand/XYO_full_colored.png
3861
+ [npm-badge]: https://img.shields.io/npm/v/@xyo-network/archivist-lmdb.svg
3862
+ [npm-link]: https://www.npmjs.com/package/@xyo-network/archivist-lmdb
3863
+ [license-badge]: https://img.shields.io/npm/l/@xyo-network/archivist-lmdb.svg
3864
+ [license-link]: https://github.com/xylabs/sdk-js/blob/main/LICENSE