@cmdoss/memwal-sdk 0.7.0 → 0.9.0

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 (229) hide show
  1. package/README.md +427 -41
  2. package/dist/client/ClientMemoryManager.js +2 -2
  3. package/dist/client/ClientMemoryManager.js.map +1 -1
  4. package/dist/client/PersonalDataWallet.d.ts.map +1 -1
  5. package/dist/client/SimplePDWClient.d.ts +88 -1
  6. package/dist/client/SimplePDWClient.d.ts.map +1 -1
  7. package/dist/client/SimplePDWClient.js +102 -11
  8. package/dist/client/SimplePDWClient.js.map +1 -1
  9. package/dist/client/namespaces/IndexNamespace.d.ts +1 -1
  10. package/dist/client/namespaces/IndexNamespace.d.ts.map +1 -1
  11. package/dist/client/namespaces/IndexNamespace.js +7 -4
  12. package/dist/client/namespaces/IndexNamespace.js.map +1 -1
  13. package/dist/client/namespaces/MemoryNamespace.d.ts +45 -0
  14. package/dist/client/namespaces/MemoryNamespace.d.ts.map +1 -1
  15. package/dist/client/namespaces/MemoryNamespace.js +292 -46
  16. package/dist/client/namespaces/MemoryNamespace.js.map +1 -1
  17. package/dist/client/namespaces/consolidated/AdvancedNamespace.d.ts +215 -0
  18. package/dist/client/namespaces/consolidated/AdvancedNamespace.d.ts.map +1 -0
  19. package/dist/client/namespaces/consolidated/AdvancedNamespace.js +214 -0
  20. package/dist/client/namespaces/consolidated/AdvancedNamespace.js.map +1 -0
  21. package/dist/client/namespaces/consolidated/BlockchainNamespace.d.ts +12 -2
  22. package/dist/client/namespaces/consolidated/BlockchainNamespace.d.ts.map +1 -1
  23. package/dist/client/namespaces/consolidated/BlockchainNamespace.js +40 -2
  24. package/dist/client/namespaces/consolidated/BlockchainNamespace.js.map +1 -1
  25. package/dist/client/namespaces/consolidated/StorageNamespace.d.ts +67 -2
  26. package/dist/client/namespaces/consolidated/StorageNamespace.d.ts.map +1 -1
  27. package/dist/client/namespaces/consolidated/StorageNamespace.js +549 -16
  28. package/dist/client/namespaces/consolidated/StorageNamespace.js.map +1 -1
  29. package/dist/client/namespaces/consolidated/index.d.ts +1 -0
  30. package/dist/client/namespaces/consolidated/index.d.ts.map +1 -1
  31. package/dist/client/namespaces/consolidated/index.js +1 -0
  32. package/dist/client/namespaces/consolidated/index.js.map +1 -1
  33. package/dist/config/ConfigurationHelper.js +61 -61
  34. package/dist/config/defaults.d.ts.map +1 -1
  35. package/dist/config/defaults.js +11 -6
  36. package/dist/config/defaults.js.map +1 -1
  37. package/dist/core/types/index.d.ts +4 -0
  38. package/dist/core/types/index.d.ts.map +1 -1
  39. package/dist/core/types/index.js.map +1 -1
  40. package/dist/graph/GraphService.js +20 -20
  41. package/dist/infrastructure/seal/EncryptionService.d.ts +9 -5
  42. package/dist/infrastructure/seal/EncryptionService.d.ts.map +1 -1
  43. package/dist/infrastructure/seal/EncryptionService.js +37 -15
  44. package/dist/infrastructure/seal/EncryptionService.js.map +1 -1
  45. package/dist/infrastructure/seal/SealService.d.ts +13 -5
  46. package/dist/infrastructure/seal/SealService.d.ts.map +1 -1
  47. package/dist/infrastructure/seal/SealService.js +36 -34
  48. package/dist/infrastructure/seal/SealService.js.map +1 -1
  49. package/dist/infrastructure/walrus/WalrusStorageService.d.ts +6 -0
  50. package/dist/infrastructure/walrus/WalrusStorageService.d.ts.map +1 -1
  51. package/dist/infrastructure/walrus/WalrusStorageService.js +23 -4
  52. package/dist/infrastructure/walrus/WalrusStorageService.js.map +1 -1
  53. package/dist/langchain/createPDWRAG.js +30 -30
  54. package/dist/retrieval/MemoryDecryptionPipeline.d.ts.map +1 -1
  55. package/dist/retrieval/MemoryDecryptionPipeline.js +2 -1
  56. package/dist/retrieval/MemoryDecryptionPipeline.js.map +1 -1
  57. package/dist/services/CapabilityService.d.ts.map +1 -1
  58. package/dist/services/CapabilityService.js +30 -14
  59. package/dist/services/CapabilityService.js.map +1 -1
  60. package/dist/services/CrossContextPermissionService.d.ts.map +1 -1
  61. package/dist/services/CrossContextPermissionService.js +9 -7
  62. package/dist/services/CrossContextPermissionService.js.map +1 -1
  63. package/dist/services/EmbeddingService.d.ts +9 -0
  64. package/dist/services/EmbeddingService.d.ts.map +1 -1
  65. package/dist/services/EmbeddingService.js +31 -10
  66. package/dist/services/EmbeddingService.js.map +1 -1
  67. package/dist/services/EncryptionService.d.ts.map +1 -1
  68. package/dist/services/EncryptionService.js +6 -5
  69. package/dist/services/EncryptionService.js.map +1 -1
  70. package/dist/services/GeminiAIService.js +309 -309
  71. package/dist/services/MemoryIndexService.d.ts +2 -0
  72. package/dist/services/MemoryIndexService.d.ts.map +1 -1
  73. package/dist/services/MemoryIndexService.js +11 -4
  74. package/dist/services/MemoryIndexService.js.map +1 -1
  75. package/dist/services/StorageService.d.ts +1 -0
  76. package/dist/services/StorageService.d.ts.map +1 -1
  77. package/dist/services/StorageService.js +60 -10
  78. package/dist/services/StorageService.js.map +1 -1
  79. package/dist/services/TransactionService.d.ts +20 -0
  80. package/dist/services/TransactionService.d.ts.map +1 -1
  81. package/dist/services/TransactionService.js +43 -0
  82. package/dist/services/TransactionService.js.map +1 -1
  83. package/dist/services/VectorService.js +1 -1
  84. package/dist/services/VectorService.js.map +1 -1
  85. package/dist/services/ViewService.js +2 -2
  86. package/dist/services/ViewService.js.map +1 -1
  87. package/dist/vector/BrowserHnswIndexService.js +1 -1
  88. package/dist/vector/BrowserHnswIndexService.js.map +1 -1
  89. package/dist/vector/HnswWasmService.js +1 -1
  90. package/dist/vector/HnswWasmService.js.map +1 -1
  91. package/dist/vector/NodeHnswService.js +1 -1
  92. package/dist/vector/NodeHnswService.js.map +1 -1
  93. package/package.json +1 -1
  94. package/src/access/PermissionService.ts +635 -635
  95. package/src/access/index.ts +8 -8
  96. package/src/aggregation/AggregationService.ts +389 -389
  97. package/src/aggregation/index.ts +8 -8
  98. package/src/ai-sdk/PDWVectorStore.ts +715 -715
  99. package/src/ai-sdk/index.ts +65 -65
  100. package/src/ai-sdk/tools.ts +460 -460
  101. package/src/ai-sdk/types.ts +404 -404
  102. package/src/batch/BatchManager.ts +597 -597
  103. package/src/batch/BatchingService.ts +429 -429
  104. package/src/batch/MemoryProcessingCache.ts +492 -492
  105. package/src/batch/index.ts +30 -30
  106. package/src/browser.ts +200 -200
  107. package/src/client/ClientMemoryManager.ts +987 -987
  108. package/src/client/PersonalDataWallet.ts +345 -345
  109. package/src/client/SimplePDWClient.ts +1369 -1237
  110. package/src/client/factory.ts +154 -154
  111. package/src/client/namespaces/AnalyticsNamespace.ts +377 -377
  112. package/src/client/namespaces/BatchNamespace.ts +356 -356
  113. package/src/client/namespaces/CacheNamespace.ts +123 -123
  114. package/src/client/namespaces/CapabilityNamespace.ts +217 -217
  115. package/src/client/namespaces/ClassifyNamespace.ts +169 -169
  116. package/src/client/namespaces/ContextNamespace.ts +297 -297
  117. package/src/client/namespaces/EmbeddingsNamespace.ts +99 -99
  118. package/src/client/namespaces/EncryptionNamespace.ts +221 -221
  119. package/src/client/namespaces/GraphNamespace.ts +468 -468
  120. package/src/client/namespaces/IndexNamespace.ts +364 -361
  121. package/src/client/namespaces/MemoryNamespace.ts +1569 -1272
  122. package/src/client/namespaces/PermissionsNamespace.ts +254 -254
  123. package/src/client/namespaces/PipelineNamespace.ts +220 -220
  124. package/src/client/namespaces/SearchNamespace.ts +1049 -1049
  125. package/src/client/namespaces/StorageNamespace.ts +458 -458
  126. package/src/client/namespaces/TxNamespace.ts +260 -260
  127. package/src/client/namespaces/WalletNamespace.ts +243 -243
  128. package/src/client/namespaces/consolidated/AINamespace.ts +449 -449
  129. package/src/client/namespaces/consolidated/AdvancedNamespace.ts +264 -0
  130. package/src/client/namespaces/consolidated/BlockchainNamespace.ts +607 -564
  131. package/src/client/namespaces/consolidated/SecurityNamespace.ts +648 -648
  132. package/src/client/namespaces/consolidated/StorageNamespace.ts +1141 -497
  133. package/src/client/namespaces/consolidated/index.ts +41 -39
  134. package/src/client/signers/DappKitSigner.ts +207 -207
  135. package/src/client/signers/KeypairSigner.ts +108 -108
  136. package/src/client/signers/UnifiedSigner.ts +110 -110
  137. package/src/client/signers/WalletAdapterSigner.ts +159 -159
  138. package/src/client/signers/index.ts +26 -26
  139. package/src/config/ConfigurationHelper.ts +412 -412
  140. package/src/config/defaults.ts +56 -51
  141. package/src/config/index.ts +8 -8
  142. package/src/config/validation.ts +70 -70
  143. package/src/core/index.ts +14 -14
  144. package/src/core/interfaces/IService.ts +307 -307
  145. package/src/core/interfaces/index.ts +8 -8
  146. package/src/core/types/capability.ts +297 -297
  147. package/src/core/types/index.ts +874 -870
  148. package/src/core/types/wallet.ts +270 -270
  149. package/src/core/types.ts +9 -9
  150. package/src/core/wallet.ts +222 -222
  151. package/src/embedding/index.ts +19 -19
  152. package/src/embedding/types.ts +357 -357
  153. package/src/errors/index.ts +602 -602
  154. package/src/errors/recovery.ts +461 -461
  155. package/src/errors/validation.ts +567 -567
  156. package/src/generated/pdw/capability.ts +319 -319
  157. package/src/generated/pdw/deps/sui/object.ts +12 -12
  158. package/src/generated/pdw/deps/sui/vec_map.ts +32 -32
  159. package/src/generated/pdw/memory.ts +1087 -1087
  160. package/src/generated/pdw/wallet.ts +123 -123
  161. package/src/generated/utils/index.ts +159 -159
  162. package/src/graph/GraphService.ts +887 -887
  163. package/src/graph/KnowledgeGraphManager.ts +728 -728
  164. package/src/graph/index.ts +25 -25
  165. package/src/index.ts +498 -498
  166. package/src/infrastructure/index.ts +22 -22
  167. package/src/infrastructure/seal/EncryptionService.ts +628 -603
  168. package/src/infrastructure/seal/SealService.ts +613 -615
  169. package/src/infrastructure/seal/index.ts +9 -9
  170. package/src/infrastructure/sui/BlockchainManager.ts +627 -627
  171. package/src/infrastructure/sui/SuiService.ts +888 -888
  172. package/src/infrastructure/sui/index.ts +9 -9
  173. package/src/infrastructure/walrus/StorageManager.ts +604 -604
  174. package/src/infrastructure/walrus/WalrusStorageService.ts +637 -612
  175. package/src/infrastructure/walrus/index.ts +9 -9
  176. package/src/langchain/PDWEmbeddings.ts +145 -145
  177. package/src/langchain/PDWVectorStore.ts +456 -456
  178. package/src/langchain/createPDWRAG.ts +303 -303
  179. package/src/langchain/index.ts +47 -47
  180. package/src/permissions/ConsentRepository.browser.ts +249 -249
  181. package/src/permissions/ConsentRepository.ts +364 -364
  182. package/src/permissions/index.ts +9 -9
  183. package/src/pipeline/MemoryPipeline.ts +862 -862
  184. package/src/pipeline/PipelineManager.ts +683 -683
  185. package/src/pipeline/index.ts +26 -26
  186. package/src/retrieval/AdvancedSearchService.ts +629 -629
  187. package/src/retrieval/MemoryAnalyticsService.ts +711 -711
  188. package/src/retrieval/MemoryDecryptionPipeline.ts +825 -824
  189. package/src/retrieval/MemoryRetrievalService.ts +904 -904
  190. package/src/retrieval/index.ts +42 -42
  191. package/src/services/BatchService.ts +352 -352
  192. package/src/services/CapabilityService.ts +464 -448
  193. package/src/services/ClassifierService.ts +465 -465
  194. package/src/services/CrossContextPermissionService.ts +486 -484
  195. package/src/services/EmbeddingService.ts +796 -771
  196. package/src/services/EncryptionService.ts +712 -711
  197. package/src/services/GeminiAIService.ts +753 -753
  198. package/src/services/IndexManager.ts +977 -977
  199. package/src/services/MemoryIndexService.ts +1009 -1003
  200. package/src/services/MemoryService.ts +369 -369
  201. package/src/services/QueryService.ts +890 -890
  202. package/src/services/StorageService.ts +1182 -1126
  203. package/src/services/TransactionService.ts +838 -790
  204. package/src/services/VectorService.ts +462 -462
  205. package/src/services/ViewService.ts +484 -484
  206. package/src/services/index.ts +25 -25
  207. package/src/services/storage/BlobAttributesManager.ts +333 -333
  208. package/src/services/storage/KnowledgeGraphManager.ts +425 -425
  209. package/src/services/storage/MemorySearchManager.ts +387 -387
  210. package/src/services/storage/QuiltBatchManager.ts +1130 -1130
  211. package/src/services/storage/WalrusMetadataManager.ts +268 -268
  212. package/src/services/storage/WalrusStorageManager.ts +287 -287
  213. package/src/services/storage/index.ts +57 -57
  214. package/src/types/index.ts +13 -13
  215. package/src/utils/LRUCache.ts +378 -378
  216. package/src/utils/index.ts +76 -76
  217. package/src/utils/memoryIndexOnChain.ts +507 -507
  218. package/src/utils/rebuildIndex.ts +290 -290
  219. package/src/utils/rebuildIndexNode.ts +771 -771
  220. package/src/vector/BrowserHnswIndexService.ts +758 -758
  221. package/src/vector/HnswWasmService.ts +731 -731
  222. package/src/vector/IHnswService.ts +233 -233
  223. package/src/vector/NodeHnswService.ts +833 -833
  224. package/src/vector/VectorManager.ts +478 -478
  225. package/src/vector/createHnswService.ts +135 -135
  226. package/src/vector/index.ts +56 -56
  227. package/src/wallet/ContextWalletService.ts +656 -656
  228. package/src/wallet/MainWalletService.ts +317 -317
  229. package/src/wallet/index.ts +17 -17
@@ -1,484 +1,486 @@
1
- /**
2
- * Cross-Context Permission Service
3
- *
4
- * Manages cross-context access permissions for the Personal Data Wallet.
5
- * Enables apps to request and manage access to data from other app contexts.
6
- */
7
-
8
- import { Transaction } from '@mysten/sui/transactions';
9
- import { normalizeSuiAddress } from '@mysten/sui/utils';
10
- import type { SuiClient } from '@mysten/sui/client';
11
- import type { Signer } from '@mysten/sui/cryptography';
12
-
13
- export interface CrossContextPermissionConfig {
14
- packageId: string;
15
- accessRegistryId: string;
16
- }
17
-
18
- export interface RegisterContextWalletOptions {
19
- contextWallet: string;
20
- derivationIndex: number;
21
- appHint?: string;
22
- }
23
-
24
- export interface GrantWalletAllowlistOptions {
25
- requestingWallet: string;
26
- targetWallet: string;
27
- scope?: string;
28
- accessLevel: 'read' | 'write';
29
- expiresAt: number; // Unix timestamp in milliseconds
30
- }
31
-
32
- export interface RevokeWalletAllowlistOptions {
33
- requestingWallet: string;
34
- targetWallet: string;
35
- scope?: string;
36
- }
37
-
38
- export interface WalletAllowlistPermission {
39
- requestingWallet: string;
40
- targetWallet: string;
41
- scope: string;
42
- accessLevel: string;
43
- grantedAt: number;
44
- expiresAt: number;
45
- grantedBy: string;
46
- }
47
-
48
- export interface WalletAllowlistHistoryEvent {
49
- timestamp: number;
50
- action: 'grant' | 'revoke';
51
- requestingWallet: string;
52
- targetWallet: string;
53
- scope: string;
54
- accessLevel: string;
55
- expiresAt: number;
56
- grantedBy: string;
57
- }
58
-
59
- export interface WalletAllowlistHistoryFilter {
60
- requestingWallet?: string;
61
- targetWallet?: string;
62
- }
63
-
64
- export interface CheckWalletAccessOptions {
65
- requestingWallet: string;
66
- targetWallet?: string;
67
- scope?: string;
68
- }
69
-
70
- interface WalletAllowlistEvent {
71
- key: string;
72
- requestingWallet: string;
73
- targetWallet: string;
74
- scope: string;
75
- accessLevel: string;
76
- granted: boolean;
77
- expiresAt: number;
78
- grantedAt: number;
79
- grantedBy: string;
80
- }
81
-
82
- /**
83
- * Service for managing cross-context permissions
84
- */
85
- export class CrossContextPermissionService {
86
- private packageId: string;
87
- private accessRegistryId: string;
88
- private client: SuiClient;
89
-
90
- constructor(config: CrossContextPermissionConfig, client: SuiClient) {
91
- this.packageId = config.packageId;
92
- this.accessRegistryId = config.accessRegistryId;
93
- this.client = client;
94
- }
95
-
96
- /**
97
- * Register a new context wallet for an app
98
- *
99
- * @param options - Context registration options
100
- * @param signer - Transaction signer
101
- * @returns Transaction digest
102
- */
103
- async registerContextWallet(
104
- options: RegisterContextWalletOptions,
105
- signer: Signer
106
- ): Promise<string> {
107
- const tx = this.buildRegisterContextWalletTransaction(options);
108
-
109
- const result = await this.client.signAndExecuteTransaction({
110
- transaction: tx,
111
- signer,
112
- options: {
113
- showEffects: true,
114
- showEvents: true,
115
- },
116
- });
117
-
118
- // Wait for transaction to be finalized to prevent gas coin version conflicts
119
- if (result.digest) {
120
- await this.client.waitForTransaction({ digest: result.digest });
121
- }
122
-
123
- if (result.effects?.status?.status !== 'success') {
124
- throw new Error(`Failed to register context: ${result.effects?.status?.error}`);
125
- }
126
-
127
- return result.digest;
128
- }
129
-
130
- /**
131
- * Build transaction to register a context wallet
132
- *
133
- * @param options - Context registration options
134
- * @returns Transaction object
135
- */
136
- buildRegisterContextWalletTransaction(options: RegisterContextWalletOptions): Transaction {
137
- const tx = new Transaction();
138
-
139
- tx.moveCall({
140
- target: `${this.packageId}::seal_access_control::register_context_wallet`,
141
- arguments: [
142
- tx.object(this.accessRegistryId),
143
- tx.pure.address(normalizeSuiAddress(options.contextWallet)),
144
- tx.pure.u64(options.derivationIndex),
145
- tx.pure.string(options.appHint ?? ''),
146
- tx.object('0x6'), // Clock object
147
- ],
148
- });
149
-
150
- return tx;
151
- }
152
-
153
- /**
154
- * Grant cross-context access permission
155
- *
156
- * @param options - Permission grant options
157
- * @param signer - Transaction signer
158
- * @returns Transaction digest
159
- */
160
- async grantWalletAllowlistAccess(
161
- options: GrantWalletAllowlistOptions,
162
- signer: Signer
163
- ): Promise<string> {
164
- const tx = this.buildGrantWalletAllowlistTransaction(options);
165
-
166
- const result = await this.client.signAndExecuteTransaction({
167
- transaction: tx,
168
- signer,
169
- options: {
170
- showEffects: true,
171
- showEvents: true,
172
- },
173
- });
174
-
175
- // Wait for transaction to be finalized to prevent gas coin version conflicts
176
- if (result.digest) {
177
- await this.client.waitForTransaction({ digest: result.digest });
178
- }
179
-
180
- if (result.effects?.status?.status !== 'success') {
181
- throw new Error(`Failed to grant access: ${result.effects?.status?.error}`);
182
- }
183
-
184
- return result.digest;
185
- }
186
-
187
- /**
188
- * Build transaction to grant cross-context access
189
- *
190
- * @param options - Permission grant options
191
- * @returns Transaction object
192
- */
193
- buildGrantWalletAllowlistTransaction(
194
- options: GrantWalletAllowlistOptions
195
- ): Transaction {
196
- const tx = new Transaction();
197
-
198
- tx.moveCall({
199
- target: `${this.packageId}::seal_access_control::grant_wallet_allowlist_access`,
200
- arguments: [
201
- tx.object(this.accessRegistryId),
202
- tx.pure.address(normalizeSuiAddress(options.requestingWallet)),
203
- tx.pure.address(normalizeSuiAddress(options.targetWallet)),
204
- tx.pure.string(options.scope ?? 'read'),
205
- tx.pure.string(options.accessLevel),
206
- tx.pure.u64(options.expiresAt),
207
- tx.object('0x6'), // Clock object
208
- ],
209
- });
210
-
211
- return tx;
212
- }
213
-
214
- /**
215
- * Revoke cross-context access permission
216
- *
217
- * @param options - Permission revocation options
218
- * @param signer - Transaction signer
219
- * @returns Transaction digest
220
- */
221
- async revokeWalletAllowlistAccess(
222
- options: RevokeWalletAllowlistOptions,
223
- signer: Signer
224
- ): Promise<string> {
225
- const tx = this.buildRevokeWalletAllowlistTransaction(options);
226
-
227
- const result = await this.client.signAndExecuteTransaction({
228
- transaction: tx,
229
- signer,
230
- options: {
231
- showEffects: true,
232
- showEvents: true,
233
- },
234
- });
235
-
236
- // Wait for transaction to be finalized to prevent gas coin version conflicts
237
- if (result.digest) {
238
- await this.client.waitForTransaction({ digest: result.digest });
239
- }
240
-
241
- if (result.effects?.status?.status !== 'success') {
242
- throw new Error(`Failed to revoke access: ${result.effects?.status?.error}`);
243
- }
244
-
245
- return result.digest;
246
- }
247
-
248
- /**
249
- * Build transaction to revoke cross-context access
250
- *
251
- * @param options - Permission revocation options
252
- * @returns Transaction object
253
- */
254
- buildRevokeWalletAllowlistTransaction(
255
- options: RevokeWalletAllowlistOptions
256
- ): Transaction {
257
- const tx = new Transaction();
258
-
259
- tx.moveCall({
260
- target: `${this.packageId}::seal_access_control::revoke_wallet_allowlist_access`,
261
- arguments: [
262
- tx.object(this.accessRegistryId),
263
- tx.pure.address(normalizeSuiAddress(options.requestingWallet)),
264
- tx.pure.address(normalizeSuiAddress(options.targetWallet)),
265
- tx.pure.string(options.scope ?? 'read'),
266
- ],
267
- });
268
-
269
- return tx;
270
- }
271
-
272
- /**
273
- * Build seal_approve transaction using capability module
274
- *
275
- * Uses pdw::capability::seal_approve which requires:
276
- * - id: vector<u8> - SEAL key identifier (MUST be first parameter!)
277
- * - cap: &MemoryCap - Reference to the capability object
278
- *
279
- * IMPORTANT: SEAL key server extracts 'id' from the FIRST PTB argument
280
- *
281
- * @param keyId - SEAL key ID bytes (computed from owner + nonce)
282
- * @param memoryCapId - MemoryCap object ID on Sui
283
- * @returns Transaction object
284
- */
285
- buildSealApproveTransaction(
286
- keyId: Uint8Array,
287
- memoryCapId: string
288
- ): Transaction {
289
- const tx = new Transaction();
290
-
291
- tx.moveCall({
292
- target: `${this.packageId}::capability::seal_approve`,
293
- arguments: [
294
- tx.pure.vector('u8', Array.from(keyId)), // id MUST be first (SEAL requirement)
295
- tx.object(memoryCapId), // MemoryCap object reference
296
- ],
297
- });
298
-
299
- return tx;
300
- }
301
-
302
- /**
303
- * Build seal_approve transaction (legacy - for backward compatibility)
304
- * @deprecated Use buildSealApproveTransaction with memoryCapId instead
305
- */
306
- buildSealApproveTransactionLegacy(
307
- contentId: Uint8Array,
308
- requestingWallet: string
309
- ): Transaction {
310
- const tx = new Transaction();
311
-
312
- tx.moveCall({
313
- target: `${this.packageId}::seal_access_control::seal_approve`,
314
- arguments: [
315
- tx.pure.vector('u8', Array.from(contentId)),
316
- tx.pure.address(normalizeSuiAddress(requestingWallet)),
317
- tx.object(this.accessRegistryId),
318
- tx.object('0x6'), // Clock object
319
- ],
320
- });
321
-
322
- return tx;
323
- }
324
-
325
- /**
326
- * Query wallet allowlist permissions filtered by requester, target, or scope
327
- */
328
- async queryWalletPermissions(options: Partial<CheckWalletAccessOptions>): Promise<WalletAllowlistPermission[]> {
329
- const events = await this.fetchWalletAllowlistEvents();
330
- const state = this.reduceWalletAllowlistEvents(events);
331
-
332
- const normalizedRequester = options.requestingWallet ? normalizeSuiAddress(options.requestingWallet) : undefined;
333
- const normalizedTarget = options.targetWallet ? normalizeSuiAddress(options.targetWallet) : undefined;
334
- const scopeFilter = options.scope ?? undefined;
335
-
336
- return Array.from(state.values())
337
- .filter((permission) => {
338
- if (normalizedRequester && permission.requestingWallet !== normalizedRequester) {
339
- return false;
340
- }
341
- if (normalizedTarget && permission.targetWallet !== normalizedTarget) {
342
- return false;
343
- }
344
- if (scopeFilter && permission.scope !== scopeFilter) {
345
- return false;
346
- }
347
- return true;
348
- });
349
- }
350
-
351
- async listGrantsByTarget(targetWallet: string, scope?: string): Promise<WalletAllowlistPermission[]> {
352
- return this.queryWalletPermissions({ targetWallet, scope });
353
- }
354
-
355
- async listGrantsByRequester(requestingWallet: string, scope?: string): Promise<WalletAllowlistPermission[]> {
356
- return this.queryWalletPermissions({ requestingWallet, scope });
357
- }
358
-
359
- /**
360
- * Determine whether a wallet currently has allowlist permission
361
- */
362
- async hasWalletPermission(options: CheckWalletAccessOptions): Promise<boolean> {
363
- const permissions = await this.queryWalletPermissions(options);
364
- const now = Date.now();
365
-
366
- return permissions.some(permission => {
367
- const expiry = permission.expiresAt;
368
- return expiry === 0 || expiry > now;
369
- });
370
- }
371
-
372
- /**
373
- * List target wallets this requester can access for an optional scope
374
- */
375
- async getAccessibleWallets(requestingWallet: string, scope: string = 'read'): Promise<string[]> {
376
- const permissions = await this.queryWalletPermissions({ requestingWallet, scope });
377
- const now = Date.now();
378
-
379
- return permissions
380
- .filter(permission => permission.expiresAt === 0 || permission.expiresAt > now)
381
- .map(permission => permission.targetWallet);
382
- }
383
-
384
- async getWalletAllowlistHistory(
385
- filter?: WalletAllowlistHistoryFilter,
386
- ): Promise<WalletAllowlistHistoryEvent[]> {
387
- const events = await this.fetchWalletAllowlistEvents();
388
- const normalizedRequester = filter?.requestingWallet
389
- ? normalizeSuiAddress(filter.requestingWallet)
390
- : undefined;
391
- const normalizedTarget = filter?.targetWallet
392
- ? normalizeSuiAddress(filter.targetWallet)
393
- : undefined;
394
-
395
- return events
396
- .filter((event) => {
397
- if (normalizedRequester && event.requestingWallet !== normalizedRequester) {
398
- return false;
399
- }
400
- if (normalizedTarget && event.targetWallet !== normalizedTarget) {
401
- return false;
402
- }
403
- return true;
404
- })
405
- .map<WalletAllowlistHistoryEvent>((event) => ({
406
- timestamp: event.grantedAt,
407
- action: event.granted ? 'grant' : 'revoke',
408
- requestingWallet: event.requestingWallet,
409
- targetWallet: event.targetWallet,
410
- scope: event.scope,
411
- accessLevel: event.accessLevel,
412
- expiresAt: event.expiresAt,
413
- grantedBy: event.grantedBy,
414
- }))
415
- .sort((a, b) => a.timestamp - b.timestamp);
416
- }
417
-
418
- private async fetchWalletAllowlistEvents(): Promise<WalletAllowlistEvent[]> {
419
- const response = await this.client.queryEvents({
420
- query: {
421
- MoveEventType: `${this.packageId}::seal_access_control::WalletAllowlistChanged`,
422
- },
423
- limit: 1000,
424
- order: 'ascending',
425
- });
426
-
427
- const events: WalletAllowlistEvent[] = [];
428
-
429
- for (const event of response.data) {
430
- const parsed = event.parsedJson as any;
431
- if (!parsed) {
432
- continue;
433
- }
434
-
435
- const requestingWallet = normalizeSuiAddress(String(parsed.requester_wallet));
436
- const targetWallet = normalizeSuiAddress(String(parsed.target_wallet));
437
- const scope = String(parsed.scope ?? 'read');
438
- const accessLevel = String(parsed.access_level ?? 'read');
439
- const granted = Boolean(parsed.granted);
440
- const expiresAt = Number(parsed.expires_at ?? 0);
441
- const grantedBy = normalizeSuiAddress(String(parsed.granted_by ?? requestingWallet));
442
- const grantedAt = Number(event.timestampMs ?? Date.now());
443
- const key = `${requestingWallet}-${targetWallet}-${scope}`;
444
-
445
- events.push({
446
- key,
447
- requestingWallet,
448
- targetWallet,
449
- scope,
450
- accessLevel,
451
- granted,
452
- expiresAt,
453
- grantedAt,
454
- grantedBy,
455
- });
456
- }
457
-
458
- return events;
459
- }
460
-
461
- private reduceWalletAllowlistEvents(events: WalletAllowlistEvent[]): Map<string, WalletAllowlistPermission> {
462
- const state = new Map<string, WalletAllowlistPermission>();
463
-
464
- const sorted = [...events].sort((a, b) => a.grantedAt - b.grantedAt);
465
-
466
- for (const event of sorted) {
467
- if (event.granted) {
468
- state.set(event.key, {
469
- requestingWallet: event.requestingWallet,
470
- targetWallet: event.targetWallet,
471
- scope: event.scope,
472
- accessLevel: event.accessLevel,
473
- grantedAt: event.grantedAt,
474
- expiresAt: event.expiresAt,
475
- grantedBy: event.grantedBy,
476
- });
477
- } else {
478
- state.delete(event.key);
479
- }
480
- }
481
-
482
- return state;
483
- }
484
- }
1
+ /**
2
+ * Cross-Context Permission Service
3
+ *
4
+ * Manages cross-context access permissions for the Personal Data Wallet.
5
+ * Enables apps to request and manage access to data from other app contexts.
6
+ */
7
+
8
+ import { Transaction } from '@mysten/sui/transactions';
9
+ import { normalizeSuiAddress } from '@mysten/sui/utils';
10
+ import type { SuiClient } from '@mysten/sui/client';
11
+ import type { Signer } from '@mysten/sui/cryptography';
12
+
13
+ export interface CrossContextPermissionConfig {
14
+ packageId: string;
15
+ accessRegistryId: string;
16
+ }
17
+
18
+ export interface RegisterContextWalletOptions {
19
+ contextWallet: string;
20
+ derivationIndex: number;
21
+ appHint?: string;
22
+ }
23
+
24
+ export interface GrantWalletAllowlistOptions {
25
+ requestingWallet: string;
26
+ targetWallet: string;
27
+ scope?: string;
28
+ accessLevel: 'read' | 'write';
29
+ expiresAt: number; // Unix timestamp in milliseconds
30
+ }
31
+
32
+ export interface RevokeWalletAllowlistOptions {
33
+ requestingWallet: string;
34
+ targetWallet: string;
35
+ scope?: string;
36
+ }
37
+
38
+ export interface WalletAllowlistPermission {
39
+ requestingWallet: string;
40
+ targetWallet: string;
41
+ scope: string;
42
+ accessLevel: string;
43
+ grantedAt: number;
44
+ expiresAt: number;
45
+ grantedBy: string;
46
+ }
47
+
48
+ export interface WalletAllowlistHistoryEvent {
49
+ timestamp: number;
50
+ action: 'grant' | 'revoke';
51
+ requestingWallet: string;
52
+ targetWallet: string;
53
+ scope: string;
54
+ accessLevel: string;
55
+ expiresAt: number;
56
+ grantedBy: string;
57
+ }
58
+
59
+ export interface WalletAllowlistHistoryFilter {
60
+ requestingWallet?: string;
61
+ targetWallet?: string;
62
+ }
63
+
64
+ export interface CheckWalletAccessOptions {
65
+ requestingWallet: string;
66
+ targetWallet?: string;
67
+ scope?: string;
68
+ }
69
+
70
+ interface WalletAllowlistEvent {
71
+ key: string;
72
+ requestingWallet: string;
73
+ targetWallet: string;
74
+ scope: string;
75
+ accessLevel: string;
76
+ granted: boolean;
77
+ expiresAt: number;
78
+ grantedAt: number;
79
+ grantedBy: string;
80
+ }
81
+
82
+ /**
83
+ * Service for managing cross-context permissions
84
+ */
85
+ export class CrossContextPermissionService {
86
+ private packageId: string;
87
+ private accessRegistryId: string;
88
+ private client: SuiClient;
89
+
90
+ constructor(config: CrossContextPermissionConfig, client: SuiClient) {
91
+ this.packageId = config.packageId;
92
+ this.accessRegistryId = config.accessRegistryId;
93
+ this.client = client;
94
+ }
95
+
96
+ /**
97
+ * Register a new context wallet for an app
98
+ *
99
+ * @param options - Context registration options
100
+ * @param signer - Transaction signer
101
+ * @returns Transaction digest
102
+ */
103
+ async registerContextWallet(
104
+ options: RegisterContextWalletOptions,
105
+ signer: Signer
106
+ ): Promise<string> {
107
+ const tx = this.buildRegisterContextWalletTransaction(options);
108
+
109
+ const result = await this.client.signAndExecuteTransaction({
110
+ transaction: tx,
111
+ signer,
112
+ options: {
113
+ showEffects: true,
114
+ showEvents: true,
115
+ },
116
+ });
117
+
118
+ // Wait for transaction to be finalized to prevent gas coin version conflicts
119
+ if (result.digest) {
120
+ await this.client.waitForTransaction({ digest: result.digest });
121
+ }
122
+
123
+ if (result.effects?.status?.status !== 'success') {
124
+ throw new Error(`Failed to register context: ${result.effects?.status?.error}`);
125
+ }
126
+
127
+ return result.digest;
128
+ }
129
+
130
+ /**
131
+ * Build transaction to register a context wallet
132
+ *
133
+ * @param options - Context registration options
134
+ * @returns Transaction object
135
+ */
136
+ buildRegisterContextWalletTransaction(options: RegisterContextWalletOptions): Transaction {
137
+ const tx = new Transaction();
138
+
139
+ tx.moveCall({
140
+ target: `${this.packageId}::capability::register_context_wallet`,
141
+ arguments: [
142
+ tx.object(this.accessRegistryId),
143
+ tx.pure.address(normalizeSuiAddress(options.contextWallet)),
144
+ tx.pure.u64(options.derivationIndex),
145
+ tx.pure.string(options.appHint ?? ''),
146
+ tx.object('0x6'), // Clock object
147
+ ],
148
+ });
149
+
150
+ return tx;
151
+ }
152
+
153
+ /**
154
+ * Grant cross-context access permission
155
+ *
156
+ * @param options - Permission grant options
157
+ * @param signer - Transaction signer
158
+ * @returns Transaction digest
159
+ */
160
+ async grantWalletAllowlistAccess(
161
+ options: GrantWalletAllowlistOptions,
162
+ signer: Signer
163
+ ): Promise<string> {
164
+ const tx = this.buildGrantWalletAllowlistTransaction(options);
165
+
166
+ const result = await this.client.signAndExecuteTransaction({
167
+ transaction: tx,
168
+ signer,
169
+ options: {
170
+ showEffects: true,
171
+ showEvents: true,
172
+ },
173
+ });
174
+
175
+ // Wait for transaction to be finalized to prevent gas coin version conflicts
176
+ if (result.digest) {
177
+ await this.client.waitForTransaction({ digest: result.digest });
178
+ }
179
+
180
+ if (result.effects?.status?.status !== 'success') {
181
+ throw new Error(`Failed to grant access: ${result.effects?.status?.error}`);
182
+ }
183
+
184
+ return result.digest;
185
+ }
186
+
187
+ /**
188
+ * Build transaction to grant cross-context access
189
+ *
190
+ * @param options - Permission grant options
191
+ * @returns Transaction object
192
+ */
193
+ buildGrantWalletAllowlistTransaction(
194
+ options: GrantWalletAllowlistOptions
195
+ ): Transaction {
196
+ const tx = new Transaction();
197
+
198
+ tx.moveCall({
199
+ target: `${this.packageId}::capability::grant_wallet_allowlist_access`,
200
+ arguments: [
201
+ tx.object(this.accessRegistryId),
202
+ tx.pure.address(normalizeSuiAddress(options.requestingWallet)),
203
+ tx.pure.address(normalizeSuiAddress(options.targetWallet)),
204
+ tx.pure.string(options.scope ?? 'read'),
205
+ tx.pure.string(options.accessLevel),
206
+ tx.pure.u64(options.expiresAt),
207
+ tx.object('0x6'), // Clock object
208
+ ],
209
+ });
210
+
211
+ return tx;
212
+ }
213
+
214
+ /**
215
+ * Revoke cross-context access permission
216
+ *
217
+ * @param options - Permission revocation options
218
+ * @param signer - Transaction signer
219
+ * @returns Transaction digest
220
+ */
221
+ async revokeWalletAllowlistAccess(
222
+ options: RevokeWalletAllowlistOptions,
223
+ signer: Signer
224
+ ): Promise<string> {
225
+ const tx = this.buildRevokeWalletAllowlistTransaction(options);
226
+
227
+ const result = await this.client.signAndExecuteTransaction({
228
+ transaction: tx,
229
+ signer,
230
+ options: {
231
+ showEffects: true,
232
+ showEvents: true,
233
+ },
234
+ });
235
+
236
+ // Wait for transaction to be finalized to prevent gas coin version conflicts
237
+ if (result.digest) {
238
+ await this.client.waitForTransaction({ digest: result.digest });
239
+ }
240
+
241
+ if (result.effects?.status?.status !== 'success') {
242
+ throw new Error(`Failed to revoke access: ${result.effects?.status?.error}`);
243
+ }
244
+
245
+ return result.digest;
246
+ }
247
+
248
+ /**
249
+ * Build transaction to revoke cross-context access
250
+ *
251
+ * @param options - Permission revocation options
252
+ * @returns Transaction object
253
+ */
254
+ buildRevokeWalletAllowlistTransaction(
255
+ options: RevokeWalletAllowlistOptions
256
+ ): Transaction {
257
+ const tx = new Transaction();
258
+
259
+ tx.moveCall({
260
+ target: `${this.packageId}::capability::revoke_wallet_allowlist_access`,
261
+ arguments: [
262
+ tx.object(this.accessRegistryId),
263
+ tx.pure.address(normalizeSuiAddress(options.requestingWallet)),
264
+ tx.pure.address(normalizeSuiAddress(options.targetWallet)),
265
+ tx.pure.string(options.scope ?? 'read'),
266
+ ],
267
+ });
268
+
269
+ return tx;
270
+ }
271
+
272
+ /**
273
+ * Build seal_approve transaction using capability module
274
+ *
275
+ * Uses pdw::capability::seal_approve which requires:
276
+ * - id: vector<u8> - SEAL key identifier (MUST be first parameter!)
277
+ * - cap: &MemoryCap - Reference to the capability object
278
+ *
279
+ * IMPORTANT: SEAL key server extracts 'id' from the FIRST PTB argument
280
+ *
281
+ * @param keyId - SEAL key ID bytes (computed from owner + nonce)
282
+ * @param memoryCapId - MemoryCap object ID on Sui
283
+ * @returns Transaction object
284
+ */
285
+ buildSealApproveTransaction(
286
+ keyId: Uint8Array,
287
+ memoryCapId: string
288
+ ): Transaction {
289
+ const tx = new Transaction();
290
+
291
+ // CRITICAL: key_id MUST be first argument!
292
+ // SEAL key server extracts 'id' from the FIRST PTB argument for decryption approval.
293
+ tx.moveCall({
294
+ target: `${this.packageId}::capability::seal_approve`,
295
+ arguments: [
296
+ tx.pure.vector('u8', Array.from(keyId)), // Arg 1: key_id bytes (SEAL key server requirement!)
297
+ tx.object(memoryCapId), // Arg 2: MemoryCap reference
298
+ ],
299
+ });
300
+
301
+ return tx;
302
+ }
303
+
304
+ /**
305
+ * Build seal_approve transaction (legacy - for backward compatibility)
306
+ * @deprecated Use buildSealApproveTransaction with memoryCapId instead
307
+ */
308
+ buildSealApproveTransactionLegacy(
309
+ contentId: Uint8Array,
310
+ requestingWallet: string
311
+ ): Transaction {
312
+ const tx = new Transaction();
313
+
314
+ tx.moveCall({
315
+ target: `${this.packageId}::capability::seal_approve`,
316
+ arguments: [
317
+ tx.pure.vector('u8', Array.from(contentId)),
318
+ tx.pure.address(normalizeSuiAddress(requestingWallet)),
319
+ tx.object(this.accessRegistryId),
320
+ tx.object('0x6'), // Clock object
321
+ ],
322
+ });
323
+
324
+ return tx;
325
+ }
326
+
327
+ /**
328
+ * Query wallet allowlist permissions filtered by requester, target, or scope
329
+ */
330
+ async queryWalletPermissions(options: Partial<CheckWalletAccessOptions>): Promise<WalletAllowlistPermission[]> {
331
+ const events = await this.fetchWalletAllowlistEvents();
332
+ const state = this.reduceWalletAllowlistEvents(events);
333
+
334
+ const normalizedRequester = options.requestingWallet ? normalizeSuiAddress(options.requestingWallet) : undefined;
335
+ const normalizedTarget = options.targetWallet ? normalizeSuiAddress(options.targetWallet) : undefined;
336
+ const scopeFilter = options.scope ?? undefined;
337
+
338
+ return Array.from(state.values())
339
+ .filter((permission) => {
340
+ if (normalizedRequester && permission.requestingWallet !== normalizedRequester) {
341
+ return false;
342
+ }
343
+ if (normalizedTarget && permission.targetWallet !== normalizedTarget) {
344
+ return false;
345
+ }
346
+ if (scopeFilter && permission.scope !== scopeFilter) {
347
+ return false;
348
+ }
349
+ return true;
350
+ });
351
+ }
352
+
353
+ async listGrantsByTarget(targetWallet: string, scope?: string): Promise<WalletAllowlistPermission[]> {
354
+ return this.queryWalletPermissions({ targetWallet, scope });
355
+ }
356
+
357
+ async listGrantsByRequester(requestingWallet: string, scope?: string): Promise<WalletAllowlistPermission[]> {
358
+ return this.queryWalletPermissions({ requestingWallet, scope });
359
+ }
360
+
361
+ /**
362
+ * Determine whether a wallet currently has allowlist permission
363
+ */
364
+ async hasWalletPermission(options: CheckWalletAccessOptions): Promise<boolean> {
365
+ const permissions = await this.queryWalletPermissions(options);
366
+ const now = Date.now();
367
+
368
+ return permissions.some(permission => {
369
+ const expiry = permission.expiresAt;
370
+ return expiry === 0 || expiry > now;
371
+ });
372
+ }
373
+
374
+ /**
375
+ * List target wallets this requester can access for an optional scope
376
+ */
377
+ async getAccessibleWallets(requestingWallet: string, scope: string = 'read'): Promise<string[]> {
378
+ const permissions = await this.queryWalletPermissions({ requestingWallet, scope });
379
+ const now = Date.now();
380
+
381
+ return permissions
382
+ .filter(permission => permission.expiresAt === 0 || permission.expiresAt > now)
383
+ .map(permission => permission.targetWallet);
384
+ }
385
+
386
+ async getWalletAllowlistHistory(
387
+ filter?: WalletAllowlistHistoryFilter,
388
+ ): Promise<WalletAllowlistHistoryEvent[]> {
389
+ const events = await this.fetchWalletAllowlistEvents();
390
+ const normalizedRequester = filter?.requestingWallet
391
+ ? normalizeSuiAddress(filter.requestingWallet)
392
+ : undefined;
393
+ const normalizedTarget = filter?.targetWallet
394
+ ? normalizeSuiAddress(filter.targetWallet)
395
+ : undefined;
396
+
397
+ return events
398
+ .filter((event) => {
399
+ if (normalizedRequester && event.requestingWallet !== normalizedRequester) {
400
+ return false;
401
+ }
402
+ if (normalizedTarget && event.targetWallet !== normalizedTarget) {
403
+ return false;
404
+ }
405
+ return true;
406
+ })
407
+ .map<WalletAllowlistHistoryEvent>((event) => ({
408
+ timestamp: event.grantedAt,
409
+ action: event.granted ? 'grant' : 'revoke',
410
+ requestingWallet: event.requestingWallet,
411
+ targetWallet: event.targetWallet,
412
+ scope: event.scope,
413
+ accessLevel: event.accessLevel,
414
+ expiresAt: event.expiresAt,
415
+ grantedBy: event.grantedBy,
416
+ }))
417
+ .sort((a, b) => a.timestamp - b.timestamp);
418
+ }
419
+
420
+ private async fetchWalletAllowlistEvents(): Promise<WalletAllowlistEvent[]> {
421
+ const response = await this.client.queryEvents({
422
+ query: {
423
+ MoveEventType: `${this.packageId}::capability::WalletAllowlistChanged`,
424
+ },
425
+ limit: 1000,
426
+ order: 'ascending',
427
+ });
428
+
429
+ const events: WalletAllowlistEvent[] = [];
430
+
431
+ for (const event of response.data) {
432
+ const parsed = event.parsedJson as any;
433
+ if (!parsed) {
434
+ continue;
435
+ }
436
+
437
+ const requestingWallet = normalizeSuiAddress(String(parsed.requester_wallet));
438
+ const targetWallet = normalizeSuiAddress(String(parsed.target_wallet));
439
+ const scope = String(parsed.scope ?? 'read');
440
+ const accessLevel = String(parsed.access_level ?? 'read');
441
+ const granted = Boolean(parsed.granted);
442
+ const expiresAt = Number(parsed.expires_at ?? 0);
443
+ const grantedBy = normalizeSuiAddress(String(parsed.granted_by ?? requestingWallet));
444
+ const grantedAt = Number(event.timestampMs ?? Date.now());
445
+ const key = `${requestingWallet}-${targetWallet}-${scope}`;
446
+
447
+ events.push({
448
+ key,
449
+ requestingWallet,
450
+ targetWallet,
451
+ scope,
452
+ accessLevel,
453
+ granted,
454
+ expiresAt,
455
+ grantedAt,
456
+ grantedBy,
457
+ });
458
+ }
459
+
460
+ return events;
461
+ }
462
+
463
+ private reduceWalletAllowlistEvents(events: WalletAllowlistEvent[]): Map<string, WalletAllowlistPermission> {
464
+ const state = new Map<string, WalletAllowlistPermission>();
465
+
466
+ const sorted = [...events].sort((a, b) => a.grantedAt - b.grantedAt);
467
+
468
+ for (const event of sorted) {
469
+ if (event.granted) {
470
+ state.set(event.key, {
471
+ requestingWallet: event.requestingWallet,
472
+ targetWallet: event.targetWallet,
473
+ scope: event.scope,
474
+ accessLevel: event.accessLevel,
475
+ grantedAt: event.grantedAt,
476
+ expiresAt: event.expiresAt,
477
+ grantedBy: event.grantedBy,
478
+ });
479
+ } else {
480
+ state.delete(event.key);
481
+ }
482
+ }
483
+
484
+ return state;
485
+ }
486
+ }