@twin.org/node-core 0.0.2-next.2 → 0.0.2-next.4

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,5 +1,5 @@
1
1
  import type { IEngineCore, IEngineCoreContext, IEngineState } from "@twin.org/engine-models";
2
- import type { IEngineServerConfig } from "@twin.org/engine-server-types";
2
+ import { type IEngineServerConfig } from "@twin.org/engine-server-types";
3
3
  import type { INodeEnvironmentVariables } from "./models/INodeEnvironmentVariables";
4
4
  import { NodeFeatures } from "./models/nodeFeatures";
5
5
  /**
@@ -25,14 +25,6 @@ export declare function bootstrapNodeIdentity(engineCore: IEngineCore, context:
25
25
  * @param features The features that are enabled on the node.
26
26
  */
27
27
  export declare function bootstrapNodeUser(engineCore: IEngineCore, context: IEngineCoreContext<IEngineServerConfig, IEngineState>, envVars: INodeEnvironmentVariables, features: NodeFeatures[]): Promise<void>;
28
- /**
29
- * Bootstrap the attestation verification methods.
30
- * @param engineCore The engine core for the node.
31
- * @param context The context for the node.
32
- * @param envVars The environment variables for the node.
33
- * @param features The features that are enabled on the node.
34
- */
35
- export declare function bootstrapAttestationMethod(engineCore: IEngineCore, context: IEngineCoreContext<IEngineServerConfig, IEngineState>, envVars: INodeEnvironmentVariables, features: NodeFeatures[]): Promise<void>;
36
28
  /**
37
29
  * Bootstrap the immutable proof verification methods.
38
30
  * @param engineCore The engine core for the node.
@@ -57,3 +49,11 @@ export declare function bootstrapBlobEncryption(engineCore: IEngineCore, context
57
49
  * @param features The features that are enabled on the node.
58
50
  */
59
51
  export declare function bootstrapAuth(engineCore: IEngineCore, context: IEngineCoreContext<IEngineServerConfig, IEngineState>, envVars: INodeEnvironmentVariables, features: NodeFeatures[]): Promise<void>;
52
+ /**
53
+ * Bootstrap the synchronised storage blob encryption and verification methods.
54
+ * @param engineCore The engine core for the node.
55
+ * @param context The context for the node.
56
+ * @param envVars The environment variables for the node.
57
+ * @param features The features that are enabled on the node.
58
+ */
59
+ export declare function bootstrapSynchronisedStorage(engineCore: IEngineCore, context: IEngineCoreContext<IEngineServerConfig, IEngineState>, envVars: INodeEnvironmentVariables, features: NodeFeatures[]): Promise<void>;
@@ -23,10 +23,6 @@ export interface IEngineEnvironmentVariables {
23
23
  * The default entity storage connector to use, defaults to the first one in the list.
24
24
  */
25
25
  entityStorageConnectorDefault?: string;
26
- /**
27
- * Entity storage connector for decentralized storage
28
- */
29
- entityStorageConnectorDecentralised?: string;
30
26
  /**
31
27
  * A prefix for all the table in entity-storage, can be empty.
32
28
  */
@@ -177,17 +173,22 @@ export interface IEngineEnvironmentVariables {
177
173
  */
178
174
  blobStorageConnectorDefault?: string;
179
175
  /**
180
- * Blog storage connector for decentralized storage
176
+ * Blog storage connector which has public access.
181
177
  */
182
- blobStorageConnectorDecentralised?: string;
178
+ blobStorageConnectorPublic?: string;
183
179
  /**
184
180
  * Enable encryption for the blob storage.
185
181
  */
186
182
  blobStorageEnableEncryption?: string;
187
183
  /**
188
- * The encryption key for the blob storage.
184
+ * The id of the encryption key for the blob storage.
185
+ */
186
+ blobStorageEncryptionKeyId?: string;
187
+ /**
188
+ * A symmetric encryption key for the blob storage, should be ChaCha20Poly1305 in base64 format.
189
+ * If encryption is enabled but a key is not provided one will be generated.
189
190
  */
190
- blobStorageEncryptionKey?: string;
191
+ blobStorageSymmetricEncryptionKey?: string;
191
192
  /**
192
193
  * A prefix for all the blobs in blob-storage, can be empty.
193
194
  */
@@ -376,6 +377,64 @@ export interface IEngineEnvironmentVariables {
376
377
  * The type of the default data extractor, can be a comma separated list: json-path.
377
378
  */
378
379
  dataExtractorConnectors?: string;
380
+ /**
381
+ * Is the synchronised storage enabled, defaults to false.
382
+ */
383
+ synchronisedStorageEnabled?: string;
384
+ /**
385
+ * Url which points to the api for a trusted synchronised storage node, not required if this is a trusted node.
386
+ */
387
+ synchronisedStorageTrustedUrl?: string;
388
+ /**
389
+ * The key for the smart contract which contains the verifiable storage pointer store for synchronised storage.
390
+ * This only required if using a custom verifiable storage item, otherwise it will default the the network name.
391
+ */
392
+ synchronisedStorageVerifiableStorageKeyId?: string;
393
+ /**
394
+ * The identity verification method id to use with synchronised storage for signing/verifying changesets.
395
+ * Defaults to synchronised-storage-assertion.
396
+ */
397
+ synchronisedStorageVerificationMethodId?: string;
398
+ /**
399
+ * The key from the vault which is used to encrypt the synchronised storage blobs.
400
+ * Only required for trusted nodes, as regular nodes will request from the trusted nodes.
401
+ * Defaults to synchronised-storage-blob-encryption
402
+ */
403
+ synchronisedStorageBlobStorageEncryptionKeyId?: string;
404
+ /**
405
+ * The private key used for blob encryption, should be RSA-2048 DER format encoded as base64.
406
+ * Only required for trusted nodes, as regular nodes will not write encrypted data.
407
+ */
408
+ synchronisedStorageBlobStoragePrivateKey?: string;
409
+ /**
410
+ * The public key used for blob decryption, should be RSA-2048 DER format encoded as base64.
411
+ * Only required for trusted nodes, as regular nodes will request the key from trusted nodes.
412
+ */
413
+ synchronisedStorageBlobStoragePublicKey?: string;
414
+ /**
415
+ * How often to check for entity updates in minutes.
416
+ * @default 5
417
+ */
418
+ synchronisedStorageEntityUpdateIntervalMinutes?: string;
419
+ /**
420
+ * Interval to perform consolidation of changesets, only used if this is a trusted node.
421
+ * @default 60
422
+ */
423
+ synchronisedStorageConsolidationIntervalMinutes?: string;
424
+ /**
425
+ * The number of entities to process in a single consolidation batch, only used if this is a trusted node.
426
+ * @default 1000
427
+ */
428
+ synchronisedStorageConsolidationBatchSize?: string;
429
+ /**
430
+ * The maximum number of consolidations to keep in storage, only used if this is a trusted node.
431
+ * @default 5
432
+ */
433
+ synchronisedStorageMaxConsolidations?: string;
434
+ /**
435
+ * Is the federated catalogue enabled, defaults to false.
436
+ */
437
+ federatedCatalogueEnabled?: string;
379
438
  /**
380
439
  * Federated catalog TTL for the cache.
381
440
  */
@@ -389,7 +448,7 @@ export interface IEngineEnvironmentVariables {
389
448
  */
390
449
  rightsManagementEnabled?: string;
391
450
  /**
392
- * Is the task scheduler enabled, defaults to true.
451
+ * Is the task scheduler enabled, defaults to false.
393
452
  */
394
453
  taskSchedulerEnabled?: string;
395
454
  }
@@ -10,6 +10,10 @@ export declare const NodeFeatures: {
10
10
  * NodeUser - generates a user for the node if not provided in config.
11
11
  */
12
12
  readonly NodeUser: "node-user";
13
+ /**
14
+ * NodeWallet - generates a wallet for the node and funds it when there is a faucet available.
15
+ */
16
+ readonly NodeWallet: "node-wallet";
13
17
  };
14
18
  /**
15
19
  * The features that can be enabled on the node.
package/docs/changelog.md CHANGED
@@ -1,5 +1,19 @@
1
1
  # @twin.org/node-core - Changelog
2
2
 
3
+ ## [0.0.2-next.4](https://github.com/twinfoundation/node/compare/node-core-v0.0.2-next.3...node-core-v0.0.2-next.4) (2025-08-14)
4
+
5
+
6
+ ### Features
7
+
8
+ * add synchronised storage config ([e315869](https://github.com/twinfoundation/node/commit/e315869adbffcd7fe5d3ce151dd35f662f6134a9))
9
+
10
+ ## [0.0.2-next.3](https://github.com/twinfoundation/node/compare/node-core-v0.0.2-next.2...node-core-v0.0.2-next.3) (2025-07-21)
11
+
12
+
13
+ ### Features
14
+
15
+ * update to latest engine config ([347386c](https://github.com/twinfoundation/node/commit/347386c0609e717dc20c456ad2264c83df793c59))
16
+
3
17
  ## [0.0.2-next.2](https://github.com/twinfoundation/node/compare/node-core-v0.0.2-next.1...node-core-v0.0.2-next.2) (2025-07-17)
4
18
 
5
19
 
@@ -1,8 +1,8 @@
1
- # Function: bootstrapAttestationMethod()
1
+ # Function: bootstrapSynchronisedStorage()
2
2
 
3
- > **bootstrapAttestationMethod**(`engineCore`, `context`, `envVars`, `features`): `Promise`\<`void`\>
3
+ > **bootstrapSynchronisedStorage**(`engineCore`, `context`, `envVars`, `features`): `Promise`\<`void`\>
4
4
 
5
- Bootstrap the attestation verification methods.
5
+ Bootstrap the synchronised storage blob encryption and verification methods.
6
6
 
7
7
  ## Parameters
8
8
 
@@ -20,10 +20,10 @@
20
20
  - [bootstrap](functions/bootstrap.md)
21
21
  - [bootstrapNodeIdentity](functions/bootstrapNodeIdentity.md)
22
22
  - [bootstrapNodeUser](functions/bootstrapNodeUser.md)
23
- - [bootstrapAttestationMethod](functions/bootstrapAttestationMethod.md)
24
23
  - [bootstrapImmutableProofMethod](functions/bootstrapImmutableProofMethod.md)
25
24
  - [bootstrapBlobEncryption](functions/bootstrapBlobEncryption.md)
26
25
  - [bootstrapAuth](functions/bootstrapAuth.md)
26
+ - [bootstrapSynchronisedStorage](functions/bootstrapSynchronisedStorage.md)
27
27
  - [buildEngineConfiguration](functions/buildEngineConfiguration.md)
28
28
  - [buildEngineServerConfiguration](functions/buildEngineServerConfiguration.md)
29
29
  - [run](functions/run.md)
@@ -49,14 +49,6 @@ The default entity storage connector to use, defaults to the first one in the li
49
49
 
50
50
  ***
51
51
 
52
- ### entityStorageConnectorDecentralised?
53
-
54
- > `optional` **entityStorageConnectorDecentralised**: `string`
55
-
56
- Entity storage connector for decentralized storage
57
-
58
- ***
59
-
60
52
  ### entityStorageTablePrefix?
61
53
 
62
54
  > `optional` **entityStorageTablePrefix**: `string`
@@ -354,11 +346,11 @@ The default blob storage connector to use, defaults to the first one in the list
354
346
 
355
347
  ***
356
348
 
357
- ### blobStorageConnectorDecentralised?
349
+ ### blobStorageConnectorPublic?
358
350
 
359
- > `optional` **blobStorageConnectorDecentralised**: `string`
351
+ > `optional` **blobStorageConnectorPublic**: `string`
360
352
 
361
- Blog storage connector for decentralized storage
353
+ Blog storage connector which has public access.
362
354
 
363
355
  ***
364
356
 
@@ -370,11 +362,20 @@ Enable encryption for the blob storage.
370
362
 
371
363
  ***
372
364
 
373
- ### blobStorageEncryptionKey?
365
+ ### blobStorageEncryptionKeyId?
366
+
367
+ > `optional` **blobStorageEncryptionKeyId**: `string`
368
+
369
+ The id of the encryption key for the blob storage.
370
+
371
+ ***
372
+
373
+ ### blobStorageSymmetricEncryptionKey?
374
374
 
375
- > `optional` **blobStorageEncryptionKey**: `string`
375
+ > `optional` **blobStorageSymmetricEncryptionKey**: `string`
376
376
 
377
- The encryption key for the blob storage.
377
+ A symmetric encryption key for the blob storage, should be ChaCha20Poly1305 in base64 format.
378
+ If encryption is enabled but a key is not provided one will be generated.
378
379
 
379
380
  ***
380
381
 
@@ -754,6 +755,132 @@ The type of the default data extractor, can be a comma separated list: json-path
754
755
 
755
756
  ***
756
757
 
758
+ ### synchronisedStorageEnabled?
759
+
760
+ > `optional` **synchronisedStorageEnabled**: `string`
761
+
762
+ Is the synchronised storage enabled, defaults to false.
763
+
764
+ ***
765
+
766
+ ### synchronisedStorageTrustedUrl?
767
+
768
+ > `optional` **synchronisedStorageTrustedUrl**: `string`
769
+
770
+ Url which points to the api for a trusted synchronised storage node, not required if this is a trusted node.
771
+
772
+ ***
773
+
774
+ ### synchronisedStorageVerifiableStorageKeyId?
775
+
776
+ > `optional` **synchronisedStorageVerifiableStorageKeyId**: `string`
777
+
778
+ The key for the smart contract which contains the verifiable storage pointer store for synchronised storage.
779
+ This only required if using a custom verifiable storage item, otherwise it will default the the network name.
780
+
781
+ ***
782
+
783
+ ### synchronisedStorageVerificationMethodId?
784
+
785
+ > `optional` **synchronisedStorageVerificationMethodId**: `string`
786
+
787
+ The identity verification method id to use with synchronised storage for signing/verifying changesets.
788
+ Defaults to synchronised-storage-assertion.
789
+
790
+ ***
791
+
792
+ ### synchronisedStorageBlobStorageEncryptionKeyId?
793
+
794
+ > `optional` **synchronisedStorageBlobStorageEncryptionKeyId**: `string`
795
+
796
+ The key from the vault which is used to encrypt the synchronised storage blobs.
797
+ Only required for trusted nodes, as regular nodes will request from the trusted nodes.
798
+ Defaults to synchronised-storage-blob-encryption
799
+
800
+ ***
801
+
802
+ ### synchronisedStorageBlobStoragePrivateKey?
803
+
804
+ > `optional` **synchronisedStorageBlobStoragePrivateKey**: `string`
805
+
806
+ The private key used for blob encryption, should be RSA-2048 DER format encoded as base64.
807
+ Only required for trusted nodes, as regular nodes will not write encrypted data.
808
+
809
+ ***
810
+
811
+ ### synchronisedStorageBlobStoragePublicKey?
812
+
813
+ > `optional` **synchronisedStorageBlobStoragePublicKey**: `string`
814
+
815
+ The public key used for blob decryption, should be RSA-2048 DER format encoded as base64.
816
+ Only required for trusted nodes, as regular nodes will request the key from trusted nodes.
817
+
818
+ ***
819
+
820
+ ### synchronisedStorageEntityUpdateIntervalMinutes?
821
+
822
+ > `optional` **synchronisedStorageEntityUpdateIntervalMinutes**: `string`
823
+
824
+ How often to check for entity updates in minutes.
825
+
826
+ #### Default
827
+
828
+ ```ts
829
+ 5
830
+ ```
831
+
832
+ ***
833
+
834
+ ### synchronisedStorageConsolidationIntervalMinutes?
835
+
836
+ > `optional` **synchronisedStorageConsolidationIntervalMinutes**: `string`
837
+
838
+ Interval to perform consolidation of changesets, only used if this is a trusted node.
839
+
840
+ #### Default
841
+
842
+ ```ts
843
+ 60
844
+ ```
845
+
846
+ ***
847
+
848
+ ### synchronisedStorageConsolidationBatchSize?
849
+
850
+ > `optional` **synchronisedStorageConsolidationBatchSize**: `string`
851
+
852
+ The number of entities to process in a single consolidation batch, only used if this is a trusted node.
853
+
854
+ #### Default
855
+
856
+ ```ts
857
+ 1000
858
+ ```
859
+
860
+ ***
861
+
862
+ ### synchronisedStorageMaxConsolidations?
863
+
864
+ > `optional` **synchronisedStorageMaxConsolidations**: `string`
865
+
866
+ The maximum number of consolidations to keep in storage, only used if this is a trusted node.
867
+
868
+ #### Default
869
+
870
+ ```ts
871
+ 5
872
+ ```
873
+
874
+ ***
875
+
876
+ ### federatedCatalogueEnabled?
877
+
878
+ > `optional` **federatedCatalogueEnabled**: `string`
879
+
880
+ Is the federated catalogue enabled, defaults to false.
881
+
882
+ ***
883
+
757
884
  ### federatedCatalogueCacheTtlMs?
758
885
 
759
886
  > `optional` **federatedCatalogueCacheTtlMs**: `number`
@@ -782,4 +909,4 @@ Is the rights management enabled, defaults to false.
782
909
 
783
910
  > `optional` **taskSchedulerEnabled**: `string`
784
911
 
785
- Is the task scheduler enabled, defaults to true.
912
+ Is the task scheduler enabled, defaults to false.
@@ -69,18 +69,6 @@ The default entity storage connector to use, defaults to the first one in the li
69
69
 
70
70
  ***
71
71
 
72
- ### entityStorageConnectorDecentralised?
73
-
74
- > `optional` **entityStorageConnectorDecentralised**: `string`
75
-
76
- Entity storage connector for decentralized storage
77
-
78
- #### Inherited from
79
-
80
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`entityStorageConnectorDecentralised`](IEngineEnvironmentVariables.md#entitystorageconnectordecentralised)
81
-
82
- ***
83
-
84
72
  ### entityStorageTablePrefix?
85
73
 
86
74
  > `optional` **entityStorageTablePrefix**: `string`
@@ -526,15 +514,15 @@ The default blob storage connector to use, defaults to the first one in the list
526
514
 
527
515
  ***
528
516
 
529
- ### blobStorageConnectorDecentralised?
517
+ ### blobStorageConnectorPublic?
530
518
 
531
- > `optional` **blobStorageConnectorDecentralised**: `string`
519
+ > `optional` **blobStorageConnectorPublic**: `string`
532
520
 
533
- Blog storage connector for decentralized storage
521
+ Blog storage connector which has public access.
534
522
 
535
523
  #### Inherited from
536
524
 
537
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`blobStorageConnectorDecentralised`](IEngineEnvironmentVariables.md#blobstorageconnectordecentralised)
525
+ [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`blobStorageConnectorPublic`](IEngineEnvironmentVariables.md#blobstorageconnectorpublic)
538
526
 
539
527
  ***
540
528
 
@@ -550,15 +538,28 @@ Enable encryption for the blob storage.
550
538
 
551
539
  ***
552
540
 
553
- ### blobStorageEncryptionKey?
541
+ ### blobStorageEncryptionKeyId?
554
542
 
555
- > `optional` **blobStorageEncryptionKey**: `string`
543
+ > `optional` **blobStorageEncryptionKeyId**: `string`
556
544
 
557
- The encryption key for the blob storage.
545
+ The id of the encryption key for the blob storage.
558
546
 
559
547
  #### Inherited from
560
548
 
561
- [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`blobStorageEncryptionKey`](IEngineEnvironmentVariables.md#blobstorageencryptionkey)
549
+ [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`blobStorageEncryptionKeyId`](IEngineEnvironmentVariables.md#blobstorageencryptionkeyid)
550
+
551
+ ***
552
+
553
+ ### blobStorageSymmetricEncryptionKey?
554
+
555
+ > `optional` **blobStorageSymmetricEncryptionKey**: `string`
556
+
557
+ A symmetric encryption key for the blob storage, should be ChaCha20Poly1305 in base64 format.
558
+ If encryption is enabled but a key is not provided one will be generated.
559
+
560
+ #### Inherited from
561
+
562
+ [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`blobStorageSymmetricEncryptionKey`](IEngineEnvironmentVariables.md#blobstoragesymmetricencryptionkey)
562
563
 
563
564
  ***
564
565
 
@@ -1126,6 +1127,180 @@ The type of the default data extractor, can be a comma separated list: json-path
1126
1127
 
1127
1128
  ***
1128
1129
 
1130
+ ### synchronisedStorageEnabled?
1131
+
1132
+ > `optional` **synchronisedStorageEnabled**: `string`
1133
+
1134
+ Is the synchronised storage enabled, defaults to false.
1135
+
1136
+ #### Inherited from
1137
+
1138
+ [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`synchronisedStorageEnabled`](IEngineEnvironmentVariables.md#synchronisedstorageenabled)
1139
+
1140
+ ***
1141
+
1142
+ ### synchronisedStorageTrustedUrl?
1143
+
1144
+ > `optional` **synchronisedStorageTrustedUrl**: `string`
1145
+
1146
+ Url which points to the api for a trusted synchronised storage node, not required if this is a trusted node.
1147
+
1148
+ #### Inherited from
1149
+
1150
+ [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`synchronisedStorageTrustedUrl`](IEngineEnvironmentVariables.md#synchronisedstoragetrustedurl)
1151
+
1152
+ ***
1153
+
1154
+ ### synchronisedStorageVerifiableStorageKeyId?
1155
+
1156
+ > `optional` **synchronisedStorageVerifiableStorageKeyId**: `string`
1157
+
1158
+ The key for the smart contract which contains the verifiable storage pointer store for synchronised storage.
1159
+ This only required if using a custom verifiable storage item, otherwise it will default the the network name.
1160
+
1161
+ #### Inherited from
1162
+
1163
+ [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`synchronisedStorageVerifiableStorageKeyId`](IEngineEnvironmentVariables.md#synchronisedstorageverifiablestoragekeyid)
1164
+
1165
+ ***
1166
+
1167
+ ### synchronisedStorageVerificationMethodId?
1168
+
1169
+ > `optional` **synchronisedStorageVerificationMethodId**: `string`
1170
+
1171
+ The identity verification method id to use with synchronised storage for signing/verifying changesets.
1172
+ Defaults to synchronised-storage-assertion.
1173
+
1174
+ #### Inherited from
1175
+
1176
+ [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`synchronisedStorageVerificationMethodId`](IEngineEnvironmentVariables.md#synchronisedstorageverificationmethodid)
1177
+
1178
+ ***
1179
+
1180
+ ### synchronisedStorageBlobStorageEncryptionKeyId?
1181
+
1182
+ > `optional` **synchronisedStorageBlobStorageEncryptionKeyId**: `string`
1183
+
1184
+ The key from the vault which is used to encrypt the synchronised storage blobs.
1185
+ Only required for trusted nodes, as regular nodes will request from the trusted nodes.
1186
+ Defaults to synchronised-storage-blob-encryption
1187
+
1188
+ #### Inherited from
1189
+
1190
+ [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`synchronisedStorageBlobStorageEncryptionKeyId`](IEngineEnvironmentVariables.md#synchronisedstorageblobstorageencryptionkeyid)
1191
+
1192
+ ***
1193
+
1194
+ ### synchronisedStorageBlobStoragePrivateKey?
1195
+
1196
+ > `optional` **synchronisedStorageBlobStoragePrivateKey**: `string`
1197
+
1198
+ The private key used for blob encryption, should be RSA-2048 DER format encoded as base64.
1199
+ Only required for trusted nodes, as regular nodes will not write encrypted data.
1200
+
1201
+ #### Inherited from
1202
+
1203
+ [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`synchronisedStorageBlobStoragePrivateKey`](IEngineEnvironmentVariables.md#synchronisedstorageblobstorageprivatekey)
1204
+
1205
+ ***
1206
+
1207
+ ### synchronisedStorageBlobStoragePublicKey?
1208
+
1209
+ > `optional` **synchronisedStorageBlobStoragePublicKey**: `string`
1210
+
1211
+ The public key used for blob decryption, should be RSA-2048 DER format encoded as base64.
1212
+ Only required for trusted nodes, as regular nodes will request the key from trusted nodes.
1213
+
1214
+ #### Inherited from
1215
+
1216
+ [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`synchronisedStorageBlobStoragePublicKey`](IEngineEnvironmentVariables.md#synchronisedstorageblobstoragepublickey)
1217
+
1218
+ ***
1219
+
1220
+ ### synchronisedStorageEntityUpdateIntervalMinutes?
1221
+
1222
+ > `optional` **synchronisedStorageEntityUpdateIntervalMinutes**: `string`
1223
+
1224
+ How often to check for entity updates in minutes.
1225
+
1226
+ #### Default
1227
+
1228
+ ```ts
1229
+ 5
1230
+ ```
1231
+
1232
+ #### Inherited from
1233
+
1234
+ [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`synchronisedStorageEntityUpdateIntervalMinutes`](IEngineEnvironmentVariables.md#synchronisedstorageentityupdateintervalminutes)
1235
+
1236
+ ***
1237
+
1238
+ ### synchronisedStorageConsolidationIntervalMinutes?
1239
+
1240
+ > `optional` **synchronisedStorageConsolidationIntervalMinutes**: `string`
1241
+
1242
+ Interval to perform consolidation of changesets, only used if this is a trusted node.
1243
+
1244
+ #### Default
1245
+
1246
+ ```ts
1247
+ 60
1248
+ ```
1249
+
1250
+ #### Inherited from
1251
+
1252
+ [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`synchronisedStorageConsolidationIntervalMinutes`](IEngineEnvironmentVariables.md#synchronisedstorageconsolidationintervalminutes)
1253
+
1254
+ ***
1255
+
1256
+ ### synchronisedStorageConsolidationBatchSize?
1257
+
1258
+ > `optional` **synchronisedStorageConsolidationBatchSize**: `string`
1259
+
1260
+ The number of entities to process in a single consolidation batch, only used if this is a trusted node.
1261
+
1262
+ #### Default
1263
+
1264
+ ```ts
1265
+ 1000
1266
+ ```
1267
+
1268
+ #### Inherited from
1269
+
1270
+ [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`synchronisedStorageConsolidationBatchSize`](IEngineEnvironmentVariables.md#synchronisedstorageconsolidationbatchsize)
1271
+
1272
+ ***
1273
+
1274
+ ### synchronisedStorageMaxConsolidations?
1275
+
1276
+ > `optional` **synchronisedStorageMaxConsolidations**: `string`
1277
+
1278
+ The maximum number of consolidations to keep in storage, only used if this is a trusted node.
1279
+
1280
+ #### Default
1281
+
1282
+ ```ts
1283
+ 5
1284
+ ```
1285
+
1286
+ #### Inherited from
1287
+
1288
+ [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`synchronisedStorageMaxConsolidations`](IEngineEnvironmentVariables.md#synchronisedstoragemaxconsolidations)
1289
+
1290
+ ***
1291
+
1292
+ ### federatedCatalogueEnabled?
1293
+
1294
+ > `optional` **federatedCatalogueEnabled**: `string`
1295
+
1296
+ Is the federated catalogue enabled, defaults to false.
1297
+
1298
+ #### Inherited from
1299
+
1300
+ [`IEngineEnvironmentVariables`](IEngineEnvironmentVariables.md).[`federatedCatalogueEnabled`](IEngineEnvironmentVariables.md#federatedcatalogueenabled)
1301
+
1302
+ ***
1303
+
1129
1304
  ### federatedCatalogueCacheTtlMs?
1130
1305
 
1131
1306
  > `optional` **federatedCatalogueCacheTtlMs**: `number`
@@ -1166,7 +1341,7 @@ Is the rights management enabled, defaults to false.
1166
1341
 
1167
1342
  > `optional` **taskSchedulerEnabled**: `string`
1168
1343
 
1169
- Is the task scheduler enabled, defaults to true.
1344
+ Is the task scheduler enabled, defaults to false.
1170
1345
 
1171
1346
  #### Inherited from
1172
1347
 
@@ -17,3 +17,9 @@ NodeIdentity - generates an identity for the node if not provided in config.
17
17
  > `readonly` **NodeUser**: `"node-user"` = `"node-user"`
18
18
 
19
19
  NodeUser - generates a user for the node if not provided in config.
20
+
21
+ ### NodeWallet
22
+
23
+ > `readonly` **NodeWallet**: `"node-wallet"` = `"node-wallet"`
24
+
25
+ NodeWallet - generates a wallet for the node and funds it when there is a faucet available.
package/locales/en.json CHANGED
@@ -19,12 +19,14 @@
19
19
  "existingNodeUser": "Node user already exists \"{email}\"",
20
20
  "creatingAuthKey": "Creating authentication key \"{keyName}\"",
21
21
  "existingAuthKey": "Authentication key already exists \"{keyName}\"",
22
- "addingAttestation": "Adding attestation verification method \"{methodId}\"",
23
- "existingAttestation": "Attestation verification method already exists \"{methodId}\"",
24
- "addingImmutableProof": "Adding immutable proof verification method \"{methodId}\"",
25
- "existingImmutableProof": "Immutable proof verification method already exists \"{methodId}\"",
22
+ "addingVerificationMethod": "Adding {title} verification method \"{methodId}\"",
23
+ "existingVerificationMethod": "Verification method for {title} already exists \"{methodId}\"",
24
+ "addingBlobEncryptionKey": "Adding blob encryption key \"{keyName}\"",
26
25
  "creatingBlobEncryptionKey": "Creating blob encryption key \"{keyName}\"",
26
+ "createdBlobEncryptionKey": "Created blob encryption key \"{keyName}\" with value \"{keyValue}\"",
27
27
  "existingBlobEncryptionKey": "Blob encryption key already exists \"{keyName}\"",
28
+ "addingSynchronisedStorageBlobEncryptionKey": "Adding synchronised storage blob encryption key \"{keyName}\"",
29
+ "existingSynchronisedStorageBlobEncryptionKey": "Synchronised storage blob encryption key already exists \"{keyName}\"",
28
30
  "creatingUserProfile": "Creating user profile \"{identity}\"",
29
31
  "existingUserProfile": "User profile already exists \"{identity}\"",
30
32
  "nodeIdentity": "Node identity \"{identity}\"",