@ibgib/core-gib 0.1.42 → 0.1.44

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 (88) hide show
  1. package/dist/keystone/kdf/kdf-constants.d.mts +25 -0
  2. package/dist/keystone/kdf/kdf-constants.d.mts.map +1 -0
  3. package/dist/keystone/kdf/kdf-constants.mjs +28 -0
  4. package/dist/keystone/kdf/kdf-constants.mjs.map +1 -0
  5. package/dist/keystone/kdf/kdf-helpers.d.mts +45 -0
  6. package/dist/keystone/kdf/kdf-helpers.d.mts.map +1 -0
  7. package/dist/keystone/kdf/kdf-helpers.mjs +94 -0
  8. package/dist/keystone/kdf/kdf-helpers.mjs.map +1 -0
  9. package/dist/keystone/kdf/kdf-types.d.mts +49 -0
  10. package/dist/keystone/kdf/kdf-types.d.mts.map +1 -0
  11. package/dist/keystone/kdf/kdf-types.mjs +2 -0
  12. package/dist/keystone/kdf/kdf-types.mjs.map +1 -0
  13. package/dist/keystone/keystone-config-builder.d.mts +65 -12
  14. package/dist/keystone/keystone-config-builder.d.mts.map +1 -1
  15. package/dist/keystone/keystone-config-builder.mjs +138 -46
  16. package/dist/keystone/keystone-config-builder.mjs.map +1 -1
  17. package/dist/keystone/keystone-config-builder.respec.mjs +21 -13
  18. package/dist/keystone/keystone-config-builder.respec.mjs.map +1 -1
  19. package/dist/keystone/keystone-constants.d.mts +15 -0
  20. package/dist/keystone/keystone-constants.d.mts.map +1 -1
  21. package/dist/keystone/keystone-constants.mjs +16 -0
  22. package/dist/keystone/keystone-constants.mjs.map +1 -1
  23. package/dist/keystone/keystone-helpers.d.mts +4 -4
  24. package/dist/keystone/keystone-helpers.d.mts.map +1 -1
  25. package/dist/keystone/keystone-helpers.mjs +8 -5
  26. package/dist/keystone/keystone-helpers.mjs.map +1 -1
  27. package/dist/keystone/keystone-service-v1.d.mts +1 -1
  28. package/dist/keystone/keystone-service-v1.d.mts.map +1 -1
  29. package/dist/keystone/keystone-service-v1.mjs +6 -5
  30. package/dist/keystone/keystone-service-v1.mjs.map +1 -1
  31. package/dist/keystone/keystone-service-v1.respec.mjs +72 -45
  32. package/dist/keystone/keystone-service-v1.respec.mjs.map +1 -1
  33. package/dist/keystone/keystone-types.d.mts +28 -18
  34. package/dist/keystone/keystone-types.d.mts.map +1 -1
  35. package/dist/keystone/keystone-types.mjs +26 -15
  36. package/dist/keystone/keystone-types.mjs.map +1 -1
  37. package/dist/keystone/strategy/hash-reveal-v1/hash-reveal-v1.d.mts.map +1 -1
  38. package/dist/keystone/strategy/hash-reveal-v1/hash-reveal-v1.mjs +7 -10
  39. package/dist/keystone/strategy/hash-reveal-v1/hash-reveal-v1.mjs.map +1 -1
  40. package/dist/sync/sync-conflict-text-merge.respec.mjs +26 -26
  41. package/dist/sync/sync-conflict-text-merge.respec.mjs.map +1 -1
  42. package/dist/sync/sync-constants.d.mts +9 -0
  43. package/dist/sync/sync-constants.d.mts.map +1 -1
  44. package/dist/sync/sync-constants.mjs +10 -0
  45. package/dist/sync/sync-constants.mjs.map +1 -1
  46. package/dist/sync/sync-innerspace-dest-ahead-withid.respec.d.mts +7 -0
  47. package/dist/sync/sync-innerspace-dest-ahead-withid.respec.d.mts.map +1 -0
  48. package/dist/sync/sync-innerspace-dest-ahead-withid.respec.mjs +282 -0
  49. package/dist/sync/sync-innerspace-dest-ahead-withid.respec.mjs.map +1 -0
  50. package/dist/sync/sync-saga-coordinator.d.mts +22 -11
  51. package/dist/sync/sync-saga-coordinator.d.mts.map +1 -1
  52. package/dist/sync/sync-saga-coordinator.mjs +120 -27
  53. package/dist/sync/sync-saga-coordinator.mjs.map +1 -1
  54. package/dist/sync/sync-saga-message/sync-saga-message-types.d.mts +1 -7
  55. package/dist/sync/sync-saga-message/sync-saga-message-types.d.mts.map +1 -1
  56. package/dist/sync/sync-types.d.mts +11 -0
  57. package/dist/sync/sync-types.d.mts.map +1 -1
  58. package/dist/sync/sync-types.mjs.map +1 -1
  59. package/dist/test/mock-space.d.mts +1 -38
  60. package/dist/test/mock-space.d.mts.map +1 -1
  61. package/dist/test/mock-space.mjs +73 -78
  62. package/dist/test/mock-space.mjs.map +1 -1
  63. package/package.json +1 -1
  64. package/src/keystone/README.md +119 -0
  65. package/src/keystone/docs/architecture.md +32 -1
  66. package/src/keystone/kdf/kdf-constants.mts +34 -0
  67. package/src/keystone/kdf/kdf-helpers.mts +105 -0
  68. package/src/keystone/kdf/kdf-types.mts +58 -0
  69. package/src/keystone/keystone-config-builder.mts +170 -47
  70. package/src/keystone/keystone-config-builder.respec.mts +21 -14
  71. package/src/keystone/keystone-constants.mts +21 -2
  72. package/src/keystone/keystone-helpers.mts +19 -14
  73. package/src/keystone/keystone-service-v1.mts +23 -22
  74. package/src/keystone/keystone-service-v1.respec.mts +71 -44
  75. package/src/keystone/keystone-types.mts +37 -23
  76. package/src/keystone/strategy/hash-reveal-v1/hash-reveal-v1.mts +9 -13
  77. package/src/sync/README.md +122 -5
  78. package/src/sync/docs/architecture.md +2 -2
  79. package/src/sync/{SYNC_TESTING.md → docs/testing.md} +113 -28
  80. package/src/sync/sync-conflict-text-merge.respec.mts +25 -25
  81. package/src/sync/sync-constants.mts +12 -0
  82. package/src/sync/sync-innerspace-dest-ahead-withid.respec.mts +349 -0
  83. package/src/sync/sync-saga-coordinator.mts +158 -33
  84. package/src/sync/sync-saga-message/sync-saga-message-types.mts +1 -7
  85. package/src/sync/sync-types.mts +12 -0
  86. package/src/test/mock-space.mts +72 -72
  87. package/tmp.md +0 -274
  88. package/src/sync/docs/verification.md +0 -43
@@ -0,0 +1,349 @@
1
+ /**
2
+ * @module sync-innerspace-dest-ahead.respec
3
+ *
4
+ * Verifies Sync Scenario where the receiver is ahead, with identity enabled.
5
+ */
6
+
7
+ import {
8
+ respecfully, lastOfAll, ifWe, iReckon,
9
+ ifWeMight
10
+ } from '@ibgib/helper-gib/dist/respec-gib/respec-gib.mjs';
11
+ const maam = `[${import.meta.url}]`, sir = maam;
12
+ import { clone, delay, extractErrorMsg, pretty } from '@ibgib/helper-gib/dist/helpers/utils-helper.mjs';
13
+ import { getIbGibAddr } from '@ibgib/ts-gib/dist/helper.mjs';
14
+ import { IbGibAddr } from '@ibgib/ts-gib/dist/types.mjs';
15
+
16
+ import { SyncSagaCoordinator } from './sync-saga-coordinator.mjs';
17
+ import { putInSpace, getFromSpace, registerNewIbGib, getLatestAddrs } from '../witness/space/space-helper.mjs';
18
+ import { Metaspace_Innerspace } from '../witness/space/metaspace/metaspace-innerspace/metaspace-innerspace.mjs';
19
+ import { InnerSpace_V1 } from '../witness/space/inner-space/inner-space-v1.mjs';
20
+ import { createTimelineRootTestHelper, getTestKeystoneServiceHelper } from '../test-helpers.mjs';
21
+ import { mut8Timeline } from '../timeline/timeline-api.mjs';
22
+ import { DEFAULT_INNER_SPACE_DATA_V1 } from '../witness/space/inner-space/inner-space-types.mjs';
23
+ import { SyncPeerInnerspace_V1 } from './sync-peer/sync-peer-innerspace/sync-peer-innerspace-v1.mjs';
24
+ import { SYNC_PEER_INNERSPACE_DEFAULT_DATA_V1 } from './sync-peer/sync-peer-innerspace/sync-peer-innerspace-constants.mjs';
25
+ import { IbGibSpaceAny } from '../witness/space/space-base-v1.mjs';
26
+ import { getDependencyGraph } from '../common/other/graph-helper.mjs';
27
+ import { fnObs } from '../common/pubsub/observer/observer-helper.mjs';
28
+ import { ErrorIbGib_V1 } from '../common/error/error-types.mjs';
29
+ import { SyncIbGib_V1 } from './sync-types.mjs';
30
+ import { getFullSyncSagaHistory } from './sync-helpers.mjs';
31
+ import { getIbGibsFromCache_fallbackToSpaces } from '../common/other/ibgib-helper.mjs';
32
+
33
+ const logalot = false;
34
+ const lc = `[sync-innerspace-dest-ahead.respec]`;
35
+
36
+ await respecfully(sir, `Sync InnerSpaces (Dest Ahead)`, async () => {
37
+
38
+ let metaspace: Metaspace_Innerspace;
39
+ let sourceSpace: InnerSpace_V1;
40
+ let destSpace: InnerSpace_V1;
41
+
42
+ interface TestData {
43
+ type: string;
44
+ label?: string;
45
+ uuid?: string;
46
+ n?: number;
47
+ }
48
+
49
+ await respecfully(sir, `Dest Ahead (Remote Newer)`, async () => {
50
+ // 1. Setup Spaces
51
+ metaspace = new Metaspace_Innerspace(undefined);
52
+ await metaspace.initialize({
53
+ getFnAlert: () => async ({ title, msg }) => { },
54
+ getFnPrompt: () => async ({ title, msg }) => { return ''; },
55
+ getFnPromptPassword: () => async (title, msg) => { return null; },
56
+ });
57
+ while (!metaspace.initialized) { await delay(10); }
58
+
59
+ const defaultLocalUserSpace = await metaspace.getLocalUserSpace({ lock: false });
60
+ await defaultLocalUserSpace!.initialized;
61
+
62
+ sourceSpace = new InnerSpace_V1({
63
+ ...DEFAULT_INNER_SPACE_DATA_V1,
64
+ name: 'source',
65
+ uuid: 'source_uuid',
66
+ description: 'source test space',
67
+ });
68
+ await sourceSpace.initialized;
69
+
70
+ destSpace = new InnerSpace_V1({
71
+ ...DEFAULT_INNER_SPACE_DATA_V1,
72
+ name: 'dest',
73
+ uuid: 'dest_uuid',
74
+ description: 'dest test space',
75
+ });
76
+ await destSpace.initialized;
77
+
78
+ // 2. Seed Data
79
+ // Root -> V1 (Shared) -> V2 (Dest has New)
80
+ // Source only has V1.
81
+
82
+ const v0 = await createTimelineRootTestHelper<TestData>({
83
+ ib: 'timeline_root_ff',
84
+ data: { type: 'root', label: 'Root' },
85
+ space: sourceSpace,
86
+ });
87
+ const addrV0 = getIbGibAddr({ ibGib: v0 });
88
+ console.log(pretty(v0));
89
+
90
+ // V1 (Both have it, but we create in source and copy to dest)
91
+ const v1 = await mut8Timeline<TestData>({
92
+ timeline: v0,
93
+ mut8Opts: { dataToAddOrPatch: { type: 'comment', label: 'V1' } },
94
+ metaspace,
95
+ space: sourceSpace,
96
+ });
97
+ const addrV1 = getIbGibAddr({ ibGib: v1 });
98
+ console.log(pretty(v1));
99
+
100
+
101
+ // Transfer Root & V1 to Dest
102
+ const initialDepGraph = await getDependencyGraph({ ibGibs: [v0, v1], space: sourceSpace });
103
+ await putInSpace({ space: destSpace, ibGibs: Object.values(initialDepGraph) }); // Naive seeding
104
+ await registerNewIbGib({ space: destSpace, ibGib: v0 });
105
+ await registerNewIbGib({ space: destSpace, ibGib: v1 });
106
+
107
+ // V2 (Created in Dest ONLY)
108
+ const v2 = await mut8Timeline<TestData>({
109
+ timeline: v1, // v1 is in memory, linked to source, but we want to Mutate IN DEST SPACE
110
+ mut8Opts: { dataToAddOrPatch: { type: 'comment', label: 'V2' } },
111
+ metaspace,
112
+ space: destSpace, // Mutate in Dest
113
+ });
114
+ const addrV2 = getIbGibAddr({ ibGib: v2 });
115
+ console.log(pretty(v2));
116
+
117
+ const fnAddrExistsInSpace = async (addr: IbGibAddr, space: IbGibSpaceAny) => {
118
+ const resGet = await getFromSpace({ addr, space });
119
+ return resGet.success && resGet.ibGibs && resGet.ibGibs.length === 1;
120
+ }
121
+
122
+ await ifWe(sir, 'verify setup', async () => {
123
+ // Ensure V2 is ONLY in Dest (it is, per `space: destSpace`)
124
+ // Ensure Source does NOT have V2
125
+ iReckon(sir, await fnAddrExistsInSpace(addrV0, sourceSpace)).asTo('source has V0').isGonnaBeTrue();
126
+ iReckon(sir, await fnAddrExistsInSpace(addrV1, sourceSpace)).asTo('source has V1').isGonnaBeTrue();
127
+ iReckon(sir, await fnAddrExistsInSpace(addrV2, sourceSpace)).asTo('source has V2').isGonnaBeFalse();
128
+ iReckon(sir, await fnAddrExistsInSpace(addrV0, destSpace)).asTo('dest has V0').isGonnaBeTrue();
129
+ iReckon(sir, await fnAddrExistsInSpace(addrV1, destSpace)).asTo('dest has V1').isGonnaBeTrue();
130
+ iReckon(sir, await fnAddrExistsInSpace(addrV2, destSpace)).asTo('dest has V2').isGonnaBeTrue();
131
+ });
132
+
133
+ // 3. Setup Sync
134
+ const mockKeystone = await getTestKeystoneServiceHelper();
135
+ const senderCoordinator = new SyncSagaCoordinator(mockKeystone);
136
+ const receiverCoordinator = new SyncSagaCoordinator(mockKeystone);
137
+
138
+ const peer = new SyncPeerInnerspace_V1(clone(SYNC_PEER_INNERSPACE_DEFAULT_DATA_V1));
139
+ await peer.initialized;
140
+ await peer.initializeSender({
141
+ senderSpace: sourceSpace, // "Client"
142
+ receiverSpace: destSpace, // "Server"
143
+ receiverCoordinator,
144
+ receiverMetaspace: metaspace,
145
+ });
146
+
147
+ // 4. Run Sync (Source Pushes V1)
148
+ console.log(`${lc} Running Sync...`);
149
+ const { done, sagaId, updates$ } = await senderCoordinator.sync({
150
+ peer: peer,
151
+ localSpace: sourceSpace,
152
+ metaspace: metaspace,
153
+ domainIbGibs: [v1], // Source tries to push V1
154
+ useSessionIdentity: true,
155
+ });
156
+
157
+ const sublc = `${lc}[updates$]`;
158
+ /**
159
+ * I have added this so you can see how to subscribe to an ibgib
160
+ * observable using {@link fnObs}.
161
+ */
162
+ const subscription = await updates$.subscribe(fnObs({
163
+ next: async (ctxIbGib) => {
164
+ // console.log(`${sublc} next fired. ${JSON.stringify(ctxIbGib)}`);
165
+ console.log(`${sublc} next fired. (I: e68d8894bac8800f9f3430e8a38d6626)`);
166
+ },
167
+ error: async (e: ErrorIbGib_V1) => {
168
+ if (e.data) {
169
+ console.error(`${sublc} error fired. error: ${JSON.stringify(e.data)} (E: eddf17f76a486b9c5a2f4ee86ed38b26)`);
170
+ } else {
171
+ console.dir(e);
172
+ console.error(`${sublc} error fired. error: ${extractErrorMsg(e)} (E: af9c3b6f1c88befeff77ca46111b3826)`);
173
+ }
174
+ },
175
+ complete: async () => {
176
+ console.log(`${sublc} complete fired`);
177
+ },
178
+ }));
179
+ await done;
180
+
181
+ // TODO: Get saga IbGib to access session keystones
182
+ // Bill suggested either:
183
+ // 1. Subscribe to updates$ to inspect frames as sync progresses
184
+ // 2. Change done from Promise<void> to Promise<IbGibAddr>, return saga addr,
185
+ // then use getIbGibsFromCache_fallbackToSpaces and getFullSyncSagaHistory
186
+ // For now, leaving implementation for next step.
187
+
188
+ // 5. Verify Sync (v2 should be in both source and dest now)
189
+ console.log(`${lc} Verifying Sync...`);
190
+
191
+ await ifWe(sir, `verify v2 now also in source`, async () => {
192
+ // Verify Tip (V2)
193
+
194
+ iReckon(sir, await fnAddrExistsInSpace(addrV0, sourceSpace)).asTo('source has V0').isGonnaBeTrue();
195
+ iReckon(sir, await fnAddrExistsInSpace(addrV1, sourceSpace)).asTo('source has V1').isGonnaBeTrue();
196
+ iReckon(sir, await fnAddrExistsInSpace(addrV2, sourceSpace)).asTo('source has V2').isGonnaBeTrue();
197
+ iReckon(sir, await fnAddrExistsInSpace(addrV0, destSpace)).asTo('dest has V0').isGonnaBeTrue();
198
+ iReckon(sir, await fnAddrExistsInSpace(addrV1, destSpace)).asTo('dest has V1').isGonnaBeTrue();
199
+ iReckon(sir, await fnAddrExistsInSpace(addrV2, destSpace)).asTo('dest has V2').isGonnaBeTrue();
200
+
201
+ });
202
+
203
+ await ifWe(sir, `dependency graphs the same`, async () => {
204
+
205
+ const sourceDepGraph = await getDependencyGraph({
206
+ ibGibAddr: addrV2,
207
+ space: sourceSpace,
208
+ });
209
+ const destDepGraph = await getDependencyGraph({
210
+ ibGibAddr: addrV2,
211
+ space: destSpace,
212
+ });
213
+
214
+ const sourceDepGraphAddrs = Object.keys(sourceDepGraph);
215
+ const destDepGraphAddrs = Object.keys(destDepGraph);
216
+
217
+ iReckon(sir, sourceDepGraphAddrs.length === destDepGraphAddrs.length).asTo('dep graphs same size').isGonnaBeTrue();
218
+
219
+ sourceDepGraphAddrs.forEach(sourceDepAddr => {
220
+ iReckon(sir, destDepGraphAddrs.includes(sourceDepAddr)).asTo(`${sourceDepAddr} is both graphs`).isGonnaBeTrue();
221
+ });
222
+ });
223
+
224
+ // ========================================================================
225
+ // IDENTITY-RELATED ASSERTIONS (TDD - Expose Implementation Gaps)
226
+ // ========================================================================
227
+
228
+ // Need to capture session identity and saga context from sync result
229
+ // For now, we'll retrieve from spaces after sync completes
230
+ let sessionKeystoneAddr: IbGibAddr | undefined;
231
+
232
+ await ifWe(sir, 'IDENTITY: session keystone exists in sender space', async () => {
233
+ // TODO: Get saga IbGib and access sessionKeystones rel8n
234
+ // Once saga access is implemented (per Bill's guidance), retrieve keystone addr from:
235
+ // const keystoneAddrs = sagaIbGib.rel8ns?.sessionKeystones;
236
+ // Then verify keystone exists in space
237
+
238
+ // Placeholder - test passes because keystone creation works
239
+ iReckon(sir, true)
240
+ .asTo('session keystone created (saga access TODO)')
241
+ .isGonnaBeTrue();
242
+ });
243
+
244
+ await ifWe(sir, 'IDENTITY: session keystone exists in receiver space', async () => {
245
+ // Session keystone should be transferred to receiver's durable space
246
+ iReckon(sir, sessionKeystoneAddr)
247
+ .asTo('session keystone address was captured')
248
+ .isGonnaBeTruthy();
249
+
250
+ if (sessionKeystoneAddr) {
251
+ const destResult = await getFromSpace({ addr: sessionKeystoneAddr, space: destSpace });
252
+ iReckon(sir, destResult.success)
253
+ .asTo('receiver has session keystone')
254
+ .isGonnaBeTrue();
255
+ }
256
+ });
257
+
258
+ await ifWe(sir, 'IDENTITY: saga frames are signed', async () => {
259
+ // TODO: Get saga frames and check each has a proof
260
+ // This will FAIL when we actually check - that's the point (TDD RED)
261
+
262
+ iReckon(sir, false)
263
+ .asTo('saga frames have proofs (NOT IMPLEMENTED - should fail)')
264
+ .isGonnaBeTrue();
265
+ });
266
+
267
+ await ifWe(sir, 'IDENTITY: frame signatures are valid', async () => {
268
+ // TODO: For each saga frame, validate proof against session keystone
269
+ // const isValid = await validateProofWithKeystone({
270
+ // proof: frame.proof,
271
+ // keystone: sessionKeystone,
272
+ // targetFrame: frame
273
+ // });
274
+ // iReckon(sir, isValid).asTo('proof is valid').isGonnaBeTrue();
275
+
276
+ // Placeholder for now
277
+ iReckon(sir, true)
278
+ .asTo('proof validation not yet implemented')
279
+ .isGonnaBeTrue();
280
+ });
281
+
282
+ await ifWe(sir, 'IDENTITY: session keystone challenges are depleted', async () => {
283
+ // TODO: Session keystone should evolve after signing frames
284
+ // This will FAIL because keystone evolution not implemented yet
285
+
286
+ iReckon(sir, false)
287
+ .asTo('challenges depleted (NOT IMPLEMENTED - should fail)')
288
+ .isGonnaBeTrue();
289
+ });
290
+
291
+ await ifWe(sir, 'IDENTITY: frame timestamps are present and fresh', async () => {
292
+ // TODO: Check each frame has timestamp in proof claim
293
+ // const claim = JSON.parse(frame.proof.claim.scope);
294
+ // iReckon(sir, claim.timestamp).asTo('has timestamp').isGonnaBeTruthy();
295
+ // const age = Date.now() - claim.timestamp;
296
+ // iReckon(sir, age < 60000).asTo('timestamp is fresh (<60s)').isGonnaBeTrue();
297
+
298
+ // Placeholder
299
+ iReckon(sir, true)
300
+ .asTo('timestamp validation not yet implemented')
301
+ .isGonnaBeTrue();
302
+ });
303
+
304
+ await ifWe(sir, 'IDENTITY: keystone has no hard links to domain ibgibs', async () => {
305
+ if (sessionKeystoneAddr) {
306
+ const keystoneResult = await getFromSpace({
307
+ addr: sessionKeystoneAddr,
308
+ space: sourceSpace
309
+ });
310
+
311
+ if (keystoneResult.success && keystoneResult.ibGibs && keystoneResult.ibGibs.length > 0) {
312
+ const keystone = keystoneResult.ibGibs[0];
313
+ const rel8ns = keystone.rel8ns || {};
314
+ const allRel8nAddrs = Object.values(rel8ns)
315
+ .flat()
316
+ .filter(addr => typeof addr === 'string');
317
+
318
+ const domainAddrs = [addrV0, addrV1, addrV2];
319
+
320
+ for (const domainAddr of domainAddrs) {
321
+ iReckon(sir, allRel8nAddrs.includes(domainAddr))
322
+ .asTo(`keystone does not hard link to ${domainAddr}`)
323
+ .isGonnaBeFalse();
324
+ }
325
+ }
326
+ }
327
+ });
328
+
329
+ await ifWe(sir, 'IDENTITY: saga frames have no hard links to domain ibgibs', async () => {
330
+ // Saga frames should NOT have hard links to domain ibgibs
331
+ // This currently PASSES but will expose issues if hard links exist
332
+
333
+ iReckon(sir, true)
334
+ .asTo('hard link validation (placeholder)')
335
+ .isGonnaBeTrue();
336
+
337
+ // TODO: Get saga frames and check their rel8ns
338
+ // for (const frame of sagaFrames) {
339
+ // const rel8nAddrs = Object.values(frame.rel8ns || {}).flat();
340
+ // for (const domainAddr of [addrV0, addrV1, addrV2]) {
341
+ // iReckon(sir, rel8nAddrs.includes(domainAddr)).asTo get('no hard link').isGonnaBeFalse();
342
+ // }
343
+ // }
344
+ });
345
+
346
+
347
+ });
348
+
349
+ });