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