@oma3/omatrust 0.1.0-alpha.1 → 0.1.0-alpha.11

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 (44) hide show
  1. package/README.md +21 -7
  2. package/dist/identity/index.cjs +544 -1
  3. package/dist/identity/index.cjs.map +1 -1
  4. package/dist/identity/index.d.cts +2 -1
  5. package/dist/identity/index.d.ts +2 -1
  6. package/dist/identity/index.js +528 -2
  7. package/dist/identity/index.js.map +1 -1
  8. package/dist/index-BOvk-7Ku.d.cts +235 -0
  9. package/dist/index-C2w5EvFH.d.ts +329 -0
  10. package/dist/index-QueRiudB.d.cts +329 -0
  11. package/dist/index-R78TpAhN.d.ts +235 -0
  12. package/dist/index.cjs +2020 -145
  13. package/dist/index.cjs.map +1 -1
  14. package/dist/index.d.cts +4 -2
  15. package/dist/index.d.ts +4 -2
  16. package/dist/index.js +2021 -146
  17. package/dist/index.js.map +1 -1
  18. package/dist/reputation/index.browser.cjs +3010 -0
  19. package/dist/reputation/index.browser.cjs.map +1 -0
  20. package/dist/reputation/index.browser.d.cts +14 -0
  21. package/dist/reputation/index.browser.d.ts +14 -0
  22. package/dist/reputation/index.browser.js +2946 -0
  23. package/dist/reputation/index.browser.js.map +1 -0
  24. package/dist/reputation/index.cjs +1884 -123
  25. package/dist/reputation/index.cjs.map +1 -1
  26. package/dist/reputation/index.d.cts +3 -1
  27. package/dist/reputation/index.d.ts +3 -1
  28. package/dist/reputation/index.js +1861 -123
  29. package/dist/reputation/index.js.map +1 -1
  30. package/dist/subject-ownership-B7cFlm8c.d.cts +664 -0
  31. package/dist/subject-ownership-B7cFlm8c.d.ts +664 -0
  32. package/dist/types-dpYxRq8N.d.cts +281 -0
  33. package/dist/types-dpYxRq8N.d.ts +281 -0
  34. package/dist/widgets/index.cjs +238 -0
  35. package/dist/widgets/index.cjs.map +1 -0
  36. package/dist/widgets/index.d.cts +158 -0
  37. package/dist/widgets/index.d.ts +158 -0
  38. package/dist/widgets/index.js +226 -0
  39. package/dist/widgets/index.js.map +1 -0
  40. package/package.json +35 -7
  41. package/dist/index-ChbJxwOA.d.cts +0 -415
  42. package/dist/index-ChbJxwOA.d.ts +0 -415
  43. package/dist/index-QZDExA4I.d.cts +0 -90
  44. package/dist/index-QZDExA4I.d.ts +0 -90
@@ -0,0 +1,2946 @@
1
+ import { ZeroAddress, Signature, toUtf8Bytes, sha256, keccak256, formatUnits, getAddress, isAddress, verifyTypedData, hexlify, randomBytes, Contract, Interface } from 'ethers';
2
+ import { base64url, decodeProtectedHeader, importJWK, compactVerify } from 'jose';
3
+ import { SchemaEncoder, EAS } from '@ethereum-attestation-service/eas-sdk';
4
+ import canonicalize from 'canonicalize';
5
+
6
+ var __defProp = Object.defineProperty;
7
+ var __getOwnPropNames = Object.getOwnPropertyNames;
8
+ var __esm = (fn, res) => function __init() {
9
+ return fn && (res = (0, fn[__getOwnPropNames(fn)[0]])(fn = 0)), res;
10
+ };
11
+ var __export = (target, all) => {
12
+ for (var name in all)
13
+ __defProp(target, name, { get: all[name], enumerable: true });
14
+ };
15
+
16
+ // src/shared/errors.ts
17
+ var OmaTrustError;
18
+ var init_errors = __esm({
19
+ "src/shared/errors.ts"() {
20
+ OmaTrustError = class extends Error {
21
+ code;
22
+ details;
23
+ constructor(code, message, details) {
24
+ super(message);
25
+ this.name = "OmaTrustError";
26
+ this.code = code;
27
+ this.details = details;
28
+ }
29
+ };
30
+ }
31
+ });
32
+
33
+ // src/shared/assert.ts
34
+ function assertString(value, name, code = "INVALID_INPUT") {
35
+ if (typeof value !== "string" || value.trim().length === 0) {
36
+ throw new OmaTrustError(code, `${name} must be a non-empty string`, { value });
37
+ }
38
+ }
39
+ function assertObject(value, name, code = "INVALID_INPUT") {
40
+ if (!value || typeof value !== "object" || Array.isArray(value)) {
41
+ throw new OmaTrustError(code, `${name} must be an object`, { value });
42
+ }
43
+ }
44
+ var init_assert = __esm({
45
+ "src/shared/assert.ts"() {
46
+ init_errors();
47
+ }
48
+ });
49
+
50
+ // src/identity/caip.ts
51
+ function parseCaip10(input) {
52
+ assertString(input, "input", "INVALID_CAIP");
53
+ const trimmed = input.trim();
54
+ const match = trimmed.match(CAIP_10_REGEX);
55
+ if (!match?.groups) {
56
+ throw new OmaTrustError("INVALID_CAIP", "Invalid CAIP-10 format", { input });
57
+ }
58
+ const namespace = match.groups.namespace;
59
+ const reference = match.groups.reference;
60
+ const address = match.groups.address;
61
+ if (!namespace || !reference || !address) {
62
+ throw new OmaTrustError("INVALID_CAIP", "Invalid CAIP-10 components", { input });
63
+ }
64
+ return { namespace, reference, address };
65
+ }
66
+ var CAIP_10_REGEX;
67
+ var init_caip = __esm({
68
+ "src/identity/caip.ts"() {
69
+ init_errors();
70
+ init_assert();
71
+ CAIP_10_REGEX = /^(?<namespace>[a-z0-9-]+):(?<reference>[a-zA-Z0-9-]+):(?<address>.+)$/;
72
+ }
73
+ });
74
+ function isValidDid(did) {
75
+ return DID_REGEX.test(did);
76
+ }
77
+ function extractDidMethod(did) {
78
+ const match = did.match(/^did:([a-z0-9]+):/i);
79
+ return match ? match[1] : null;
80
+ }
81
+ function normalizeDomain(domain) {
82
+ assertString(domain, "domain", "INVALID_DID");
83
+ return domain.trim().toLowerCase().replace(/\.$/, "").replace(/^www\./, "");
84
+ }
85
+ function normalizeDidWeb(input) {
86
+ assertString(input, "input", "INVALID_DID");
87
+ const trimmed = input.trim();
88
+ if (trimmed.startsWith("did:") && !trimmed.startsWith("did:web:")) {
89
+ throw new OmaTrustError("INVALID_DID", "Expected did:web DID", { input });
90
+ }
91
+ const identifier = trimmed.startsWith("did:web:") ? trimmed.slice("did:web:".length) : trimmed;
92
+ const [host, ...pathParts] = identifier.split("/");
93
+ if (!host) {
94
+ throw new OmaTrustError("INVALID_DID", "Invalid did:web identifier", { input });
95
+ }
96
+ const normalizedHost = normalizeDomain(host);
97
+ const path = pathParts.length > 0 ? `/${pathParts.join("/")}` : "";
98
+ return `did:web:${normalizedHost}${path}`;
99
+ }
100
+ function normalizeDidPkh(input) {
101
+ assertString(input, "input", "INVALID_DID");
102
+ const trimmed = input.trim();
103
+ if (!trimmed.startsWith("did:pkh:")) {
104
+ throw new OmaTrustError("INVALID_DID", "Expected did:pkh DID", { input });
105
+ }
106
+ const parts = trimmed.split(":");
107
+ if (parts.length !== 5) {
108
+ throw new OmaTrustError("INVALID_DID", "Invalid did:pkh format", { input });
109
+ }
110
+ const [, , namespace, chainId, address] = parts;
111
+ if (!namespace || !chainId || !address) {
112
+ throw new OmaTrustError("INVALID_DID", "Invalid did:pkh components", { input });
113
+ }
114
+ return `did:pkh:${namespace.toLowerCase()}:${chainId}:${address.toLowerCase()}`;
115
+ }
116
+ function normalizeDidHandle(input) {
117
+ assertString(input, "input", "INVALID_DID");
118
+ const trimmed = input.trim();
119
+ if (!trimmed.startsWith("did:handle:")) {
120
+ throw new OmaTrustError("INVALID_DID", "Expected did:handle DID", { input });
121
+ }
122
+ const parts = trimmed.split(":");
123
+ if (parts.length !== 4) {
124
+ throw new OmaTrustError("INVALID_DID", "Invalid did:handle format", { input });
125
+ }
126
+ const [, , platform, username] = parts;
127
+ if (!platform || !username) {
128
+ throw new OmaTrustError("INVALID_DID", "Invalid did:handle components", { input });
129
+ }
130
+ return `did:handle:${platform.toLowerCase()}:${username}`;
131
+ }
132
+ function normalizeDidKey(input) {
133
+ assertString(input, "input", "INVALID_DID");
134
+ const trimmed = input.trim();
135
+ if (!trimmed.startsWith("did:key:")) {
136
+ throw new OmaTrustError("INVALID_DID", "Expected did:key DID", { input });
137
+ }
138
+ return trimmed;
139
+ }
140
+ function normalizeDid(input) {
141
+ assertString(input, "input", "INVALID_DID");
142
+ const trimmed = input.trim();
143
+ if (!trimmed.startsWith("did:")) {
144
+ return normalizeDidWeb(trimmed);
145
+ }
146
+ if (!isValidDid(trimmed)) {
147
+ throw new OmaTrustError("INVALID_DID", "Invalid DID format", { input });
148
+ }
149
+ const method = extractDidMethod(trimmed);
150
+ switch (method) {
151
+ case "web":
152
+ return normalizeDidWeb(trimmed);
153
+ case "pkh":
154
+ return normalizeDidPkh(trimmed);
155
+ case "handle":
156
+ return normalizeDidHandle(trimmed);
157
+ case "key":
158
+ return normalizeDidKey(trimmed);
159
+ case "jwk":
160
+ return normalizeDidJwk(trimmed);
161
+ default:
162
+ return trimmed;
163
+ }
164
+ }
165
+ function computeDidHash(did) {
166
+ const normalized = normalizeDid(did);
167
+ return keccak256(toUtf8Bytes(normalized));
168
+ }
169
+ function computeDidAddress(didHash) {
170
+ assertString(didHash, "didHash", "INVALID_DID");
171
+ if (!/^0x[0-9a-fA-F]{64}$/.test(didHash)) {
172
+ throw new OmaTrustError("INVALID_DID", "didHash must be 32-byte hex", { didHash });
173
+ }
174
+ return `0x${didHash.slice(-40).toLowerCase()}`;
175
+ }
176
+ function didToAddress(did) {
177
+ return computeDidAddress(computeDidHash(did));
178
+ }
179
+ function buildDidPkh(namespace, chainId, address) {
180
+ assertString(namespace, "namespace", "INVALID_DID");
181
+ assertString(address, "address", "INVALID_DID");
182
+ if (chainId === "" || chainId === null || chainId === void 0) {
183
+ throw new OmaTrustError("INVALID_DID", "chainId is required", { chainId });
184
+ }
185
+ return `did:pkh:${namespace.toLowerCase()}:${chainId}:${address.toLowerCase()}`;
186
+ }
187
+ function buildEvmDidPkh(chainId, address) {
188
+ return buildDidPkh("eip155", chainId, address);
189
+ }
190
+ function parseDidPkh(did) {
191
+ if (!did.startsWith("did:pkh:")) {
192
+ return null;
193
+ }
194
+ const parts = did.split(":");
195
+ if (parts.length !== 5) {
196
+ return null;
197
+ }
198
+ const [, , namespace, chainId, address] = parts;
199
+ if (!namespace || !chainId || !address) {
200
+ return null;
201
+ }
202
+ return { namespace, chainId, address };
203
+ }
204
+ function getChainIdFromDidPkh(did) {
205
+ return parseDidPkh(did)?.chainId ?? null;
206
+ }
207
+ function getAddressFromDidPkh(did) {
208
+ return parseDidPkh(did)?.address ?? null;
209
+ }
210
+ function getNamespaceFromDidPkh(did) {
211
+ return parseDidPkh(did)?.namespace ?? null;
212
+ }
213
+ function isEvmDidPkh(did) {
214
+ return getNamespaceFromDidPkh(did) === "eip155";
215
+ }
216
+ function getDomainFromDidWeb(did) {
217
+ if (!did.startsWith("did:web:")) {
218
+ return null;
219
+ }
220
+ const identifier = did.slice("did:web:".length);
221
+ const [domain] = identifier.split("/");
222
+ return domain || null;
223
+ }
224
+ function extractAddressFromDid(identifier) {
225
+ assertString(identifier, "identifier", "INVALID_DID");
226
+ if (identifier.startsWith("did:pkh:")) {
227
+ const pkh = parseDidPkh(normalizeDidPkh(identifier));
228
+ if (!pkh) {
229
+ throw new OmaTrustError("INVALID_DID", "Invalid did:pkh identifier", { identifier });
230
+ }
231
+ return pkh.address;
232
+ }
233
+ if (identifier.startsWith("did:ethr:")) {
234
+ const parts = identifier.replace("did:ethr:", "").split(":");
235
+ const address = parts.length === 1 ? parts[0] : parts[1];
236
+ if (!address || !isAddress(address)) {
237
+ throw new OmaTrustError("INVALID_DID", "Invalid did:ethr identifier", { identifier });
238
+ }
239
+ return getAddress(address);
240
+ }
241
+ if (identifier.match(/^[a-z0-9-]+:[a-zA-Z0-9-]+:0x[a-fA-F0-9]{40}$/)) {
242
+ const parsed = parseCaip10(identifier);
243
+ return parsed.address;
244
+ }
245
+ if (isAddress(identifier)) {
246
+ return getAddress(identifier);
247
+ }
248
+ throw new OmaTrustError("INVALID_DID", "Unsupported identifier format", { identifier });
249
+ }
250
+ function validateDidJwk(did) {
251
+ const parts = did.split(":");
252
+ if (parts.length !== 3) {
253
+ return {
254
+ valid: false,
255
+ method: "jwk",
256
+ error: `did:jwk must have exactly 3 colon-separated parts, got ${parts.length}`
257
+ };
258
+ }
259
+ const [, , encoded] = parts;
260
+ if (!encoded || encoded.length === 0) {
261
+ return { valid: false, method: "jwk", error: "Missing base64url-encoded JWK identifier" };
262
+ }
263
+ if (!BASE64URL_REGEX.test(encoded)) {
264
+ return {
265
+ valid: false,
266
+ method: "jwk",
267
+ error: "Identifier contains invalid base64url characters"
268
+ };
269
+ }
270
+ let decoded;
271
+ try {
272
+ const bytes = base64url.decode(encoded);
273
+ decoded = new TextDecoder().decode(bytes);
274
+ } catch {
275
+ return { valid: false, method: "jwk", error: "Failed to base64url-decode identifier" };
276
+ }
277
+ let jwk;
278
+ try {
279
+ jwk = JSON.parse(decoded);
280
+ } catch {
281
+ return { valid: false, method: "jwk", error: "Decoded identifier is not valid JSON" };
282
+ }
283
+ if (!jwk || typeof jwk !== "object" || Array.isArray(jwk)) {
284
+ return { valid: false, method: "jwk", error: "Decoded JWK must be a JSON object" };
285
+ }
286
+ const kty = jwk.kty;
287
+ if (typeof kty !== "string" || !VALID_JWK_KTY.has(kty)) {
288
+ return {
289
+ valid: false,
290
+ method: "jwk",
291
+ error: `Invalid or missing kty field (must be one of: EC, OKP, RSA)`
292
+ };
293
+ }
294
+ if ("d" in jwk) {
295
+ return {
296
+ valid: false,
297
+ method: "jwk",
298
+ error: "DID must reference a public key \u2014 private key component (d) is not allowed"
299
+ };
300
+ }
301
+ return { valid: true, method: "jwk" };
302
+ }
303
+ function normalizeDidJwk(input) {
304
+ assertString(input, "input", "INVALID_DID");
305
+ const trimmed = input.trim();
306
+ if (!trimmed.startsWith("did:jwk:")) {
307
+ throw new OmaTrustError("INVALID_DID", "Expected did:jwk DID", { input });
308
+ }
309
+ const result = validateDidJwk(trimmed);
310
+ if (!result.valid) {
311
+ throw new OmaTrustError("INVALID_DID", result.error ?? "Invalid did:jwk", { input });
312
+ }
313
+ return trimmed;
314
+ }
315
+ var DID_REGEX, BASE64URL_REGEX, VALID_JWK_KTY;
316
+ var init_did = __esm({
317
+ "src/identity/did.ts"() {
318
+ init_errors();
319
+ init_assert();
320
+ init_caip();
321
+ DID_REGEX = /^did:[a-z0-9]+:.+$/i;
322
+ BASE64URL_REGEX = /^[A-Za-z0-9_-]+$/;
323
+ VALID_JWK_KTY = /* @__PURE__ */ new Set(["EC", "OKP", "RSA"]);
324
+ }
325
+ });
326
+ function validatePublicJwk(jwk) {
327
+ if (!jwk || typeof jwk !== "object" || Array.isArray(jwk)) {
328
+ return { valid: false, error: "JWK must be a non-null object" };
329
+ }
330
+ const obj = jwk;
331
+ const kty = obj.kty;
332
+ if (typeof kty !== "string" || !VALID_KTY.has(kty)) {
333
+ return {
334
+ valid: false,
335
+ error: `Invalid or missing kty (must be one of: ${[...VALID_KTY].join(", ")})`
336
+ };
337
+ }
338
+ for (const field of PRIVATE_KEY_FIELDS) {
339
+ if (field in obj) {
340
+ return {
341
+ valid: false,
342
+ error: `JWK contains private key field "${field}" \u2014 only public keys are allowed`
343
+ };
344
+ }
345
+ }
346
+ const required = REQUIRED_PUBLIC_FIELDS[kty];
347
+ if (required) {
348
+ for (const field of required) {
349
+ if (!(field in obj) || obj[field] === void 0 || obj[field] === null || obj[field] === "") {
350
+ return {
351
+ valid: false,
352
+ error: `Missing required public key field "${field}" for kty="${kty}"`
353
+ };
354
+ }
355
+ }
356
+ }
357
+ return { valid: true };
358
+ }
359
+ function canonicalizeJwkJson(jwk) {
360
+ const sorted = Object.keys(jwk).sort();
361
+ const obj = {};
362
+ for (const key of sorted) {
363
+ obj[key] = jwk[key];
364
+ }
365
+ return JSON.stringify(obj);
366
+ }
367
+ function jwkToDidJwk(jwk) {
368
+ assertObject(jwk, "jwk", "INVALID_JWK");
369
+ const validation = validatePublicJwk(jwk);
370
+ if (!validation.valid) {
371
+ throw new OmaTrustError("INVALID_JWK", validation.error ?? "Invalid public JWK", { jwk });
372
+ }
373
+ const canonical = canonicalizeJwkJson(jwk);
374
+ const encoded = base64url.encode(new TextEncoder().encode(canonical));
375
+ return `did:jwk:${encoded}`;
376
+ }
377
+ function didJwkToJwk(didJwk) {
378
+ if (typeof didJwk !== "string" || !didJwk.startsWith("did:jwk:")) {
379
+ throw new OmaTrustError("INVALID_DID", "Expected a did:jwk DID", { input: didJwk });
380
+ }
381
+ const parts = didJwk.split(":");
382
+ if (parts.length !== 3) {
383
+ throw new OmaTrustError("INVALID_DID", "did:jwk must have exactly 3 colon-separated parts", {
384
+ input: didJwk
385
+ });
386
+ }
387
+ const encoded = parts[2];
388
+ if (!encoded || encoded.length === 0) {
389
+ throw new OmaTrustError("INVALID_DID", "Missing base64url-encoded JWK identifier", {
390
+ input: didJwk
391
+ });
392
+ }
393
+ let decoded;
394
+ try {
395
+ const bytes = base64url.decode(encoded);
396
+ decoded = new TextDecoder().decode(bytes);
397
+ } catch {
398
+ throw new OmaTrustError("INVALID_DID", "Failed to base64url-decode did:jwk identifier", {
399
+ input: didJwk
400
+ });
401
+ }
402
+ let jwk;
403
+ try {
404
+ jwk = JSON.parse(decoded);
405
+ } catch {
406
+ throw new OmaTrustError("INVALID_DID", "Decoded did:jwk identifier is not valid JSON", {
407
+ input: didJwk
408
+ });
409
+ }
410
+ if (!jwk || typeof jwk !== "object" || Array.isArray(jwk)) {
411
+ throw new OmaTrustError("INVALID_DID", "Decoded did:jwk must be a JSON object", {
412
+ input: didJwk
413
+ });
414
+ }
415
+ const validation = validatePublicJwk(jwk);
416
+ if (!validation.valid) {
417
+ throw new OmaTrustError("INVALID_DID", validation.error ?? "Invalid public JWK in did:jwk", {
418
+ input: didJwk
419
+ });
420
+ }
421
+ return jwk;
422
+ }
423
+ function extractPublicKeyFields(jwk) {
424
+ const result = {};
425
+ const metadataFields = /* @__PURE__ */ new Set(["kid", "use", "key_ops", "alg", "ext"]);
426
+ for (const [key, value] of Object.entries(jwk)) {
427
+ if (PRIVATE_KEY_FIELDS.has(key)) continue;
428
+ if (metadataFields.has(key)) continue;
429
+ result[key] = value;
430
+ }
431
+ return result;
432
+ }
433
+ function publicJwkEquals(a, b) {
434
+ assertObject(a, "a", "INVALID_JWK");
435
+ assertObject(b, "b", "INVALID_JWK");
436
+ const aObj = a;
437
+ const bObj = b;
438
+ for (const field of PRIVATE_KEY_FIELDS) {
439
+ if (field in aObj) {
440
+ throw new OmaTrustError(
441
+ "INVALID_JWK",
442
+ `First JWK contains private key field "${field}"`,
443
+ { field }
444
+ );
445
+ }
446
+ if (field in bObj) {
447
+ throw new OmaTrustError(
448
+ "INVALID_JWK",
449
+ `Second JWK contains private key field "${field}"`,
450
+ { field }
451
+ );
452
+ }
453
+ }
454
+ const aPublic = extractPublicKeyFields(aObj);
455
+ const bPublic = extractPublicKeyFields(bObj);
456
+ return canonicalizeJwkJson(aPublic) === canonicalizeJwkJson(bPublic);
457
+ }
458
+ var VALID_KTY, PRIVATE_KEY_FIELDS, REQUIRED_PUBLIC_FIELDS;
459
+ var init_jwk = __esm({
460
+ "src/identity/jwk.ts"() {
461
+ init_errors();
462
+ init_assert();
463
+ VALID_KTY = /* @__PURE__ */ new Set(["EC", "OKP", "RSA"]);
464
+ PRIVATE_KEY_FIELDS = /* @__PURE__ */ new Set(["d", "p", "q", "dp", "dq", "qi", "oth"]);
465
+ REQUIRED_PUBLIC_FIELDS = {
466
+ EC: ["crv", "x", "y"],
467
+ OKP: ["crv", "x"],
468
+ RSA: ["n", "e"]
469
+ };
470
+ }
471
+ });
472
+
473
+ // src/reputation/proof/dns-txt-record.ts
474
+ function parseDnsTxtRecord(record) {
475
+ if (!record || typeof record !== "string") {
476
+ throw new OmaTrustError("INVALID_INPUT", "record must be a non-empty string", { record });
477
+ }
478
+ const entries = record.split(/[;\s]+/).map((entry) => entry.trim()).filter(Boolean);
479
+ const parsed = {};
480
+ const controllers = [];
481
+ for (const entry of entries) {
482
+ const eqIndex = entry.indexOf("=");
483
+ if (eqIndex === -1) continue;
484
+ const key = entry.slice(0, eqIndex).trim();
485
+ const value = entry.slice(eqIndex + 1).trim();
486
+ if (!key || !value) continue;
487
+ if (key === "controller") {
488
+ controllers.push(value);
489
+ } else {
490
+ parsed[key] = value;
491
+ }
492
+ }
493
+ return {
494
+ version: parsed.v,
495
+ controller: controllers[0],
496
+ controllers
497
+ };
498
+ }
499
+ function buildDnsTxtRecord(controllerDid) {
500
+ const normalized = normalizeDid(controllerDid);
501
+ return `v=1;controller=${normalized}`;
502
+ }
503
+ var init_dns_txt_record = __esm({
504
+ "src/reputation/proof/dns-txt-record.ts"() {
505
+ init_did();
506
+ init_errors();
507
+ }
508
+ });
509
+
510
+ // src/identity/controller-id.ts
511
+ function isSameControllerId(a, b) {
512
+ let normalizedA = null;
513
+ let normalizedB = null;
514
+ try {
515
+ normalizedA = normalizeDid(a);
516
+ } catch {
517
+ }
518
+ try {
519
+ normalizedB = normalizeDid(b);
520
+ } catch {
521
+ }
522
+ if (normalizedA && normalizedB && normalizedA === normalizedB) {
523
+ return true;
524
+ }
525
+ const evmA = extractControllerEvmAddress(a);
526
+ const evmB = extractControllerEvmAddress(b);
527
+ if (evmA && evmB && evmA.toLowerCase() === evmB.toLowerCase()) {
528
+ return true;
529
+ }
530
+ const methodA = extractDidMethod(a);
531
+ const methodB = extractDidMethod(b);
532
+ if (methodA === "jwk" && methodB === "jwk") {
533
+ try {
534
+ const jwkA = didJwkToJwk(a);
535
+ const jwkB = didJwkToJwk(b);
536
+ return publicJwkEquals(jwkA, jwkB);
537
+ } catch {
538
+ return false;
539
+ }
540
+ }
541
+ return false;
542
+ }
543
+ function extractControllerEvmAddress(controllerDid) {
544
+ try {
545
+ const method = extractDidMethod(controllerDid);
546
+ if (method === "pkh" && controllerDid.includes("eip155")) {
547
+ return extractAddressFromDid(controllerDid);
548
+ }
549
+ } catch {
550
+ }
551
+ return null;
552
+ }
553
+ var init_controller_id = __esm({
554
+ "src/identity/controller-id.ts"() {
555
+ init_did();
556
+ init_jwk();
557
+ }
558
+ });
559
+
560
+ // src/reputation/proof/dns-txt-shared.ts
561
+ var dns_txt_shared_exports = {};
562
+ __export(dns_txt_shared_exports, {
563
+ verifyDnsTxtControllerDid: () => verifyDnsTxtControllerDid
564
+ });
565
+ async function verifyDnsTxtControllerDid(domain, expectedControllerDid, options = {}) {
566
+ if (!domain || typeof domain !== "string") {
567
+ throw new OmaTrustError("INVALID_INPUT", "domain must be a non-empty string", { domain });
568
+ }
569
+ if (!options.resolveTxt) {
570
+ throw new OmaTrustError("NETWORK_ERROR", "No DNS TXT resolver was provided", { domain });
571
+ }
572
+ const prefix = options.recordPrefix ?? "_controllers";
573
+ const host = `${prefix}.${domain.toLowerCase().replace(/\.$/, "")}`;
574
+ let records;
575
+ try {
576
+ records = await options.resolveTxt(host);
577
+ } catch (err) {
578
+ throw new OmaTrustError("NETWORK_ERROR", "Failed to resolve DNS TXT records", { domain, err });
579
+ }
580
+ for (const recordParts of records) {
581
+ const record = recordParts.join("");
582
+ const parsed = parseDnsTxtRecord(record);
583
+ if (parsed.version !== "1") continue;
584
+ for (const recordController of parsed.controllers) {
585
+ if (isSameControllerId(recordController, expectedControllerDid)) {
586
+ return { valid: true, record };
587
+ }
588
+ }
589
+ }
590
+ return { valid: false, reason: "Controller DID not found in DNS TXT records" };
591
+ }
592
+ var init_dns_txt_shared = __esm({
593
+ "src/reputation/proof/dns-txt-shared.ts"() {
594
+ init_controller_id();
595
+ init_errors();
596
+ init_dns_txt_record();
597
+ }
598
+ });
599
+
600
+ // src/reputation/encode.ts
601
+ init_errors();
602
+ function normalizeSchema(schema) {
603
+ if (Array.isArray(schema)) {
604
+ if (schema.length === 0) {
605
+ throw new OmaTrustError("INVALID_INPUT", "schema array cannot be empty");
606
+ }
607
+ return schema;
608
+ }
609
+ if (typeof schema !== "string" || schema.trim().length === 0) {
610
+ throw new OmaTrustError("INVALID_INPUT", "schema must be a non-empty string or SchemaField[]");
611
+ }
612
+ const fields = schema.split(",").map((part) => part.trim()).filter((part) => part.length > 0).map((part) => {
613
+ const pieces = part.split(/\s+/);
614
+ if (pieces.length < 2) {
615
+ throw new OmaTrustError("INVALID_INPUT", "Invalid schema field", { part });
616
+ }
617
+ const type = pieces[0];
618
+ const name = pieces.slice(1).join(" ");
619
+ return { type, name };
620
+ });
621
+ if (fields.length === 0) {
622
+ throw new OmaTrustError("INVALID_INPUT", "No schema fields found");
623
+ }
624
+ return fields;
625
+ }
626
+ function schemaToString(schema) {
627
+ if (typeof schema === "string") {
628
+ return schema;
629
+ }
630
+ return schema.map((field) => `${field.type} ${field.name}`).join(", ");
631
+ }
632
+ function encodeAttestationData(schema, data) {
633
+ if (!data || typeof data !== "object") {
634
+ throw new OmaTrustError("INVALID_INPUT", "data must be an object");
635
+ }
636
+ const validationErrors = validateAttestationData(schema, data);
637
+ if (validationErrors.length > 0) {
638
+ const summary = validationErrors.map((error) => `Field "${error.schemaFieldName}" (${error.expectedType}) got ${error.providedType}`).join("; ");
639
+ throw new OmaTrustError("INVALID_INPUT", `Attestation data validation failed: ${summary}`, {
640
+ errors: validationErrors
641
+ });
642
+ }
643
+ const fields = normalizeSchema(schema);
644
+ const schemaString = schemaToString(fields);
645
+ const encoder = new SchemaEncoder(schemaString);
646
+ const encoded = encoder.encodeData(
647
+ fields.map((field) => ({
648
+ name: field.name,
649
+ type: field.type,
650
+ value: data[field.name]
651
+ }))
652
+ );
653
+ return encoded;
654
+ }
655
+ function getActualType(value) {
656
+ if (value === null) {
657
+ return "null";
658
+ }
659
+ if (value === void 0) {
660
+ return "undefined";
661
+ }
662
+ if (Array.isArray(value)) {
663
+ return "array";
664
+ }
665
+ if (typeof value === "number") {
666
+ return Number.isFinite(value) ? "number" : "non-finite-number";
667
+ }
668
+ return typeof value;
669
+ }
670
+ function isNumericValue(value, allowNegative) {
671
+ if (typeof value === "bigint") {
672
+ return allowNegative || value >= 0n;
673
+ }
674
+ if (typeof value === "number") {
675
+ if (!Number.isFinite(value) || !Number.isInteger(value)) {
676
+ return false;
677
+ }
678
+ return allowNegative || value >= 0;
679
+ }
680
+ if (typeof value === "string") {
681
+ if (value.length === 0) {
682
+ return false;
683
+ }
684
+ const pattern = allowNegative ? /^-?\d+$/ : /^\d+$/;
685
+ return pattern.test(value);
686
+ }
687
+ return false;
688
+ }
689
+ function isHex(value) {
690
+ return typeof value === "string" && /^0x[0-9a-fA-F]*$/.test(value);
691
+ }
692
+ function validateFieldValue(type, value) {
693
+ const normalizedType = type.trim().toLowerCase();
694
+ const bytesNMatch = normalizedType.match(/^bytes([1-9]|[12]\d|3[0-2])$/);
695
+ if (/^uint\d*$/.test(normalizedType)) {
696
+ return isNumericValue(value, false);
697
+ }
698
+ if (/^int\d*$/.test(normalizedType)) {
699
+ return isNumericValue(value, true);
700
+ }
701
+ if (normalizedType === "string") {
702
+ return typeof value === "string";
703
+ }
704
+ if (normalizedType === "string[]") {
705
+ return Array.isArray(value) && value.every((entry) => typeof entry === "string");
706
+ }
707
+ if (normalizedType === "bool") {
708
+ return typeof value === "boolean";
709
+ }
710
+ if (normalizedType === "address") {
711
+ return typeof value === "string" && isAddress(value);
712
+ }
713
+ if (normalizedType === "bytes") {
714
+ return isHex(value) && (value.length - 2) % 2 === 0;
715
+ }
716
+ if (bytesNMatch) {
717
+ const expectedBytes = Number(bytesNMatch[1]);
718
+ return isHex(value) && value.length === 2 + expectedBytes * 2;
719
+ }
720
+ return true;
721
+ }
722
+ function validateAttestationData(schema, data) {
723
+ if (!data || typeof data !== "object") {
724
+ return [{
725
+ schemaFieldName: "data",
726
+ expectedType: "object",
727
+ providedType: getActualType(data),
728
+ providedValue: data
729
+ }];
730
+ }
731
+ const fields = normalizeSchema(schema);
732
+ const errors = [];
733
+ for (const field of fields) {
734
+ const value = data[field.name];
735
+ const isValid = validateFieldValue(field.type, value);
736
+ if (isValid) {
737
+ continue;
738
+ }
739
+ errors.push({
740
+ schemaFieldName: field.name,
741
+ expectedType: field.type,
742
+ providedType: getActualType(value),
743
+ providedValue: value
744
+ });
745
+ }
746
+ return errors;
747
+ }
748
+ function decodeAttestationData(schema, encodedData) {
749
+ if (typeof encodedData !== "string" || !encodedData.startsWith("0x")) {
750
+ throw new OmaTrustError("INVALID_INPUT", "encodedData must be a hex string");
751
+ }
752
+ const fields = normalizeSchema(schema);
753
+ const schemaString = schemaToString(fields);
754
+ const encoder = new SchemaEncoder(schemaString);
755
+ const decoded = encoder.decodeData(encodedData);
756
+ const result = {};
757
+ for (const item of decoded) {
758
+ const value = item.value;
759
+ if (value && typeof value === "object" && "value" in value) {
760
+ result[item.name] = value.value;
761
+ } else {
762
+ result[item.name] = value;
763
+ }
764
+ }
765
+ return result;
766
+ }
767
+ function extractExpirationTime(data) {
768
+ const value = data["expiresAt"];
769
+ if (value === void 0 || value === null) return void 0;
770
+ if (typeof value === "bigint") return value;
771
+ if (typeof value === "number") return value;
772
+ if (typeof value === "string" && /^\d+$/.test(value)) return BigInt(value);
773
+ return void 0;
774
+ }
775
+
776
+ // src/reputation/internal.ts
777
+ init_did();
778
+ var ZERO_UID = "0x0000000000000000000000000000000000000000000000000000000000000000";
779
+ function toBigIntOrDefault(value, fallback) {
780
+ if (value === void 0 || value === null) {
781
+ return fallback;
782
+ }
783
+ return typeof value === "bigint" ? value : BigInt(Math.floor(value));
784
+ }
785
+ function withAutoSubjectDidHash(schema, data) {
786
+ const fields = normalizeSchema(schema);
787
+ const hasSubjectDidHash = fields.some((field) => field.name === "subjectDidHash");
788
+ if (!hasSubjectDidHash) {
789
+ return { ...data };
790
+ }
791
+ const subject = data.subject;
792
+ if (typeof subject === "string" && subject.startsWith("did:")) {
793
+ return {
794
+ ...data,
795
+ subjectDidHash: computeDidHash(subject)
796
+ };
797
+ }
798
+ return { ...data };
799
+ }
800
+ function resolveRecipientAddress(data) {
801
+ const subject = data.subject;
802
+ if (typeof subject === "string" && subject.startsWith("did:")) {
803
+ return didToAddress(subject);
804
+ }
805
+ const subjectDidHash = data.subjectDidHash;
806
+ if (typeof subjectDidHash === "string" && /^0x[0-9a-fA-F]{64}$/.test(subjectDidHash)) {
807
+ return computeDidAddress(subjectDidHash);
808
+ }
809
+ const recipient = data.recipient;
810
+ if (typeof recipient === "string" && isAddress(recipient)) {
811
+ return getAddress(recipient);
812
+ }
813
+ return ZeroAddress;
814
+ }
815
+
816
+ // src/reputation/eas-adapter.ts
817
+ function isRecord(value) {
818
+ return Boolean(value) && typeof value === "object";
819
+ }
820
+ function isHex32(value) {
821
+ return typeof value === "string" && /^0x[0-9a-fA-F]{64}$/.test(value);
822
+ }
823
+ function getEasTransactionReceipt(tx) {
824
+ if (!isRecord(tx)) {
825
+ return void 0;
826
+ }
827
+ const candidates = [tx.receipt, tx.tx, tx.transaction];
828
+ for (const candidate of candidates) {
829
+ if (isRecord(candidate)) {
830
+ return candidate;
831
+ }
832
+ }
833
+ return void 0;
834
+ }
835
+ function getEasTransactionHash(tx) {
836
+ const receipt = getEasTransactionReceipt(tx);
837
+ if (receipt) {
838
+ const receiptHash = receipt.hash;
839
+ if (isHex32(receiptHash)) {
840
+ return receiptHash;
841
+ }
842
+ const transactionHash = receipt.transactionHash;
843
+ if (isHex32(transactionHash)) {
844
+ return transactionHash;
845
+ }
846
+ }
847
+ if (isRecord(tx) && isHex32(tx.hash)) {
848
+ return tx.hash;
849
+ }
850
+ return void 0;
851
+ }
852
+ function isEasSchemaNotFoundError(err) {
853
+ if (!isRecord(err)) {
854
+ return false;
855
+ }
856
+ const message = err.message;
857
+ if (typeof message !== "string" || message.length === 0) {
858
+ return false;
859
+ }
860
+ return /schema not found/i.test(message);
861
+ }
862
+
863
+ // src/reputation/submit.ts
864
+ init_errors();
865
+ async function submitAttestation(params) {
866
+ if (!params || typeof params !== "object") {
867
+ throw new OmaTrustError("INVALID_INPUT", "params must be provided");
868
+ }
869
+ if (!params.signer) {
870
+ throw new OmaTrustError("INVALID_INPUT", "signer is required");
871
+ }
872
+ const dataWithHash = withAutoSubjectDidHash(params.schema, params.data);
873
+ const encodedData = encodeAttestationData(params.schema, dataWithHash);
874
+ const expiration = toBigIntOrDefault(
875
+ params.expirationTime ?? extractExpirationTime(dataWithHash),
876
+ 0n
877
+ );
878
+ const recipient = resolveRecipientAddress(dataWithHash);
879
+ const eas = new EAS(params.easContractAddress);
880
+ eas.connect(params.signer);
881
+ try {
882
+ const tx = await eas.attest({
883
+ schema: params.schemaUid,
884
+ data: {
885
+ recipient: recipient || ZeroAddress,
886
+ expirationTime: expiration,
887
+ revocable: params.revocable ?? true,
888
+ refUID: params.refUid ?? ZERO_UID,
889
+ data: encodedData,
890
+ value: toBigIntOrDefault(params.value, 0n)
891
+ }
892
+ });
893
+ const uid = await tx.wait();
894
+ const txHash = getEasTransactionHash(tx) ?? ZERO_UID;
895
+ const receipt = getEasTransactionReceipt(tx);
896
+ return {
897
+ uid,
898
+ txHash,
899
+ receipt
900
+ };
901
+ } catch (err) {
902
+ throw new OmaTrustError("NETWORK_ERROR", "Failed to submit attestation", { err });
903
+ }
904
+ }
905
+ init_errors();
906
+ async function revokeAttestation(params) {
907
+ if (!params || typeof params !== "object") {
908
+ throw new OmaTrustError("INVALID_INPUT", "params must be provided");
909
+ }
910
+ if (!params.signer) {
911
+ throw new OmaTrustError("INVALID_INPUT", "signer is required");
912
+ }
913
+ const eas = new EAS(params.easContractAddress);
914
+ eas.connect(params.signer);
915
+ try {
916
+ const tx = await eas.revoke({
917
+ schema: params.schemaUid,
918
+ data: {
919
+ uid: params.uid,
920
+ value: toBigIntOrDefault(params.value, 0n)
921
+ }
922
+ });
923
+ await tx.wait();
924
+ const txHash = getEasTransactionHash(tx) ?? ZERO_UID;
925
+ const receipt = getEasTransactionReceipt(tx);
926
+ return {
927
+ txHash,
928
+ receipt
929
+ };
930
+ } catch (err) {
931
+ throw new OmaTrustError("NETWORK_ERROR", "Failed to revoke attestation", { err });
932
+ }
933
+ }
934
+ init_errors();
935
+ function buildDelegatedTypedData(params) {
936
+ return {
937
+ domain: {
938
+ name: "EAS",
939
+ version: "1.4.0",
940
+ chainId: params.chainId,
941
+ verifyingContract: params.easContractAddress
942
+ },
943
+ types: {
944
+ Attest: [
945
+ { name: "attester", type: "address" },
946
+ { name: "schema", type: "bytes32" },
947
+ { name: "recipient", type: "address" },
948
+ { name: "expirationTime", type: "uint64" },
949
+ { name: "revocable", type: "bool" },
950
+ { name: "refUID", type: "bytes32" },
951
+ { name: "data", type: "bytes" },
952
+ { name: "value", type: "uint256" },
953
+ { name: "nonce", type: "uint256" },
954
+ { name: "deadline", type: "uint64" }
955
+ ]
956
+ },
957
+ message: {
958
+ attester: params.attester,
959
+ schema: params.schemaUid,
960
+ recipient: params.recipient,
961
+ expirationTime: toBigIntOrDefault(params.expirationTime, 0n),
962
+ revocable: params.revocable ?? true,
963
+ refUID: params.refUid ?? ZERO_UID,
964
+ data: params.encodedData,
965
+ value: toBigIntOrDefault(params.value, 0n),
966
+ nonce: toBigIntOrDefault(params.nonce, 0n),
967
+ deadline: toBigIntOrDefault(params.deadline, BigInt(Math.floor(Date.now() / 1e3) + 600))
968
+ }
969
+ };
970
+ }
971
+ function buildDelegatedAttestationTypedData(params) {
972
+ const dataWithHash = withAutoSubjectDidHash(params.schema, params.data);
973
+ const encodedData = encodeAttestationData(params.schema, dataWithHash);
974
+ const recipient = resolveRecipientAddress(dataWithHash);
975
+ return buildDelegatedTypedData({
976
+ chainId: params.chainId,
977
+ easContractAddress: params.easContractAddress,
978
+ schemaUid: params.schemaUid,
979
+ encodedData,
980
+ recipient,
981
+ attester: params.attester,
982
+ nonce: params.nonce,
983
+ revocable: params.revocable,
984
+ expirationTime: params.expirationTime ?? extractExpirationTime(dataWithHash),
985
+ refUid: params.refUid,
986
+ value: params.value,
987
+ deadline: params.deadline
988
+ });
989
+ }
990
+ function buildDelegatedTypedDataFromEncoded(params) {
991
+ return buildDelegatedTypedData({
992
+ chainId: params.chainId,
993
+ easContractAddress: params.easContractAddress,
994
+ schemaUid: params.schemaUid,
995
+ encodedData: params.encodedData,
996
+ recipient: params.recipient,
997
+ attester: params.attester,
998
+ nonce: params.nonce,
999
+ revocable: params.revocable,
1000
+ expirationTime: params.expirationTime,
1001
+ refUid: params.refUid,
1002
+ value: params.value,
1003
+ deadline: params.deadline
1004
+ });
1005
+ }
1006
+ function splitSignature(signature) {
1007
+ try {
1008
+ const parsed = Signature.from(signature);
1009
+ return {
1010
+ v: parsed.v,
1011
+ r: parsed.r,
1012
+ s: parsed.s
1013
+ };
1014
+ } catch (err) {
1015
+ throw new OmaTrustError("INVALID_INPUT", "Invalid signature", { err });
1016
+ }
1017
+ }
1018
+ async function prepareDelegatedAttestation(params) {
1019
+ if (!params || typeof params !== "object") {
1020
+ throw new OmaTrustError("INVALID_INPUT", "params are required");
1021
+ }
1022
+ const typedData = buildDelegatedAttestationTypedData(params);
1023
+ return {
1024
+ delegatedRequest: {
1025
+ schema: params.schemaUid,
1026
+ attester: params.attester,
1027
+ easContractAddress: params.easContractAddress,
1028
+ chainId: params.chainId,
1029
+ ...typedData.message
1030
+ },
1031
+ typedData
1032
+ };
1033
+ }
1034
+ async function submitDelegatedAttestation(params) {
1035
+ if (!params.relayUrl || typeof params.relayUrl !== "string") {
1036
+ throw new OmaTrustError("INVALID_INPUT", "relayUrl is required");
1037
+ }
1038
+ let response;
1039
+ try {
1040
+ const body = JSON.stringify(
1041
+ {
1042
+ prepared: params.prepared,
1043
+ signature: params.signature,
1044
+ attester: params.attester
1045
+ },
1046
+ (_key, value) => typeof value === "bigint" ? value.toString() : value
1047
+ );
1048
+ response = await fetch(params.relayUrl, {
1049
+ method: "POST",
1050
+ headers: {
1051
+ "Content-Type": "application/json"
1052
+ },
1053
+ body
1054
+ });
1055
+ } catch (err) {
1056
+ throw new OmaTrustError("NETWORK_ERROR", "Failed to submit delegated attestation", { err });
1057
+ }
1058
+ let payload;
1059
+ try {
1060
+ payload = await response.json();
1061
+ } catch {
1062
+ payload = {};
1063
+ }
1064
+ if (!response.ok) {
1065
+ const relayError = {
1066
+ httpStatus: response.status,
1067
+ code: payload.code,
1068
+ error: payload.error ?? payload.message,
1069
+ payload
1070
+ };
1071
+ throw new OmaTrustError("RELAY_ERROR", `Relay submission failed (HTTP ${response.status})`, relayError);
1072
+ }
1073
+ const uid = payload.uid ?? ZERO_UID;
1074
+ const txHash = payload.txHash;
1075
+ const hasConfirmationSignals = payload.status === "confirmed" || payload.success === true || typeof payload.blockNumber === "number";
1076
+ const status = hasConfirmationSignals ? "confirmed" : "submitted";
1077
+ const relay = {};
1078
+ if (typeof payload.blockNumber === "number") relay.blockNumber = payload.blockNumber;
1079
+ if (typeof payload.chain === "string") relay.chain = payload.chain;
1080
+ if (typeof payload.success === "boolean") relay.success = payload.success;
1081
+ for (const key of Object.keys(payload)) {
1082
+ if (!["uid", "txHash", "status", "blockNumber", "chain", "success"].includes(key)) {
1083
+ relay[key] = payload[key];
1084
+ }
1085
+ }
1086
+ const result = { uid, txHash, status };
1087
+ if (Object.keys(relay).length > 0) {
1088
+ result.relay = relay;
1089
+ }
1090
+ return result;
1091
+ }
1092
+
1093
+ // src/reputation/query.ts
1094
+ init_did();
1095
+ init_errors();
1096
+ var EAS_EVENT_ABI = [
1097
+ "event Attested(address indexed recipient, address indexed attester, bytes32 uid, bytes32 indexed schemaUID)"
1098
+ ];
1099
+ function parseEventTxHash(event) {
1100
+ const txHash = event.transactionHash;
1101
+ if (typeof txHash !== "string") {
1102
+ return void 0;
1103
+ }
1104
+ return /^0x[0-9a-fA-F]{64}$/.test(txHash) ? txHash : void 0;
1105
+ }
1106
+ function parseAttestation(attestation, schema, txHash) {
1107
+ const rawData = attestation.data ?? "0x";
1108
+ const decoded = schema ? decodeAttestationData(schema, rawData) : {};
1109
+ const toBigIntSafe = (value) => {
1110
+ if (typeof value === "bigint") {
1111
+ return value;
1112
+ }
1113
+ if (typeof value === "number") {
1114
+ return BigInt(value);
1115
+ }
1116
+ if (typeof value === "string" && value.length > 0) {
1117
+ return BigInt(value);
1118
+ }
1119
+ return 0n;
1120
+ };
1121
+ return {
1122
+ uid: attestation.uid,
1123
+ schema: attestation.schema,
1124
+ attester: attestation.attester,
1125
+ recipient: attestation.recipient,
1126
+ txHash,
1127
+ revocable: Boolean(attestation.revocable),
1128
+ revocationTime: toBigIntSafe(attestation.revocationTime),
1129
+ expirationTime: toBigIntSafe(attestation.expirationTime),
1130
+ time: toBigIntSafe(attestation.time),
1131
+ refUID: attestation.refUID,
1132
+ data: decoded,
1133
+ raw: schema ? void 0 : rawData
1134
+ };
1135
+ }
1136
+ async function getAttestation(params) {
1137
+ try {
1138
+ const eas = new EAS(params.easContractAddress);
1139
+ eas.connect(params.provider);
1140
+ const attestation = await eas.getAttestation(params.uid);
1141
+ if (!attestation || !attestation.uid || String(attestation.uid) === "0x".padEnd(66, "0")) {
1142
+ throw new OmaTrustError("ATTESTATION_NOT_FOUND", "Attestation not found", { uid: params.uid });
1143
+ }
1144
+ return parseAttestation(attestation, params.schema);
1145
+ } catch (err) {
1146
+ if (err instanceof OmaTrustError) {
1147
+ throw err;
1148
+ }
1149
+ throw new OmaTrustError("NETWORK_ERROR", "Failed to read attestation", { err });
1150
+ }
1151
+ }
1152
+ async function queryAttestationEvents(easContractAddress, provider, fromBlock, toBlock, options) {
1153
+ const contract = new Contract(easContractAddress, EAS_EVENT_ABI, provider);
1154
+ const filter = contract.filters.Attested(options?.recipient ?? null, options?.attester ?? null);
1155
+ let events;
1156
+ try {
1157
+ events = await contract.queryFilter(filter, fromBlock, toBlock);
1158
+ } catch (err) {
1159
+ throw new OmaTrustError("NETWORK_ERROR", "Failed to query attestation events", { err });
1160
+ }
1161
+ const eas = new EAS(easContractAddress);
1162
+ eas.connect(provider);
1163
+ const schemaFilter = options?.schemas?.map((s) => s.toLowerCase());
1164
+ const results = [];
1165
+ for (const event of events) {
1166
+ if (!("args" in event && Array.isArray(event.args))) {
1167
+ continue;
1168
+ }
1169
+ const args = event.args;
1170
+ const uid = args?.[2];
1171
+ const schemaUid = args?.[3];
1172
+ if (!uid || !schemaUid) {
1173
+ continue;
1174
+ }
1175
+ if (schemaFilter && !schemaFilter.includes(schemaUid.toLowerCase())) {
1176
+ continue;
1177
+ }
1178
+ const attestation = await eas.getAttestation(uid);
1179
+ if (!attestation || !attestation.uid) {
1180
+ continue;
1181
+ }
1182
+ results.push(parseAttestation(attestation, void 0, parseEventTxHash(event)));
1183
+ }
1184
+ results.sort((a, b) => Number(b.time - a.time));
1185
+ return results;
1186
+ }
1187
+ async function getAttestationsForDid(params) {
1188
+ const provider = params.provider;
1189
+ const toBlock = params.toBlock ?? await provider.getBlockNumber();
1190
+ const fromBlock = params.fromBlock ?? Math.max(0, toBlock - 5e4);
1191
+ return queryAttestationEvents(
1192
+ params.easContractAddress,
1193
+ provider,
1194
+ fromBlock,
1195
+ toBlock,
1196
+ { recipient: didToAddress(params.subjectDid), schemas: params.schemas }
1197
+ );
1198
+ }
1199
+ async function getAttestationsByAttester(params) {
1200
+ const provider = params.provider;
1201
+ const toBlock = params.toBlock ?? await provider.getBlockNumber();
1202
+ const fromBlock = params.fromBlock ?? Math.max(0, toBlock - 5e4);
1203
+ if (params.limit !== void 0 && params.limit <= 0) {
1204
+ return [];
1205
+ }
1206
+ const results = await queryAttestationEvents(
1207
+ params.easContractAddress,
1208
+ provider,
1209
+ fromBlock,
1210
+ toBlock,
1211
+ { attester: params.attester, schemas: params.schemas }
1212
+ );
1213
+ return params.limit !== void 0 ? results.slice(0, params.limit) : results;
1214
+ }
1215
+ async function listAttestations(params) {
1216
+ const limit = params.limit ?? 20;
1217
+ if (limit <= 0) {
1218
+ return [];
1219
+ }
1220
+ const results = await getAttestationsForDid(params);
1221
+ return results.slice(0, limit);
1222
+ }
1223
+ async function getLatestAttestations(params) {
1224
+ const provider = params.provider;
1225
+ const toBlock = await provider.getBlockNumber();
1226
+ const fromBlock = params.fromBlock ?? Math.max(0, toBlock - 5e4);
1227
+ const results = await queryAttestationEvents(
1228
+ params.easContractAddress,
1229
+ provider,
1230
+ fromBlock,
1231
+ toBlock,
1232
+ { schemas: params.schemas }
1233
+ );
1234
+ return results.slice(0, params.limit ?? 20);
1235
+ }
1236
+ function deduplicateReviews(attestations) {
1237
+ const seen = /* @__PURE__ */ new Map();
1238
+ for (const attestation of attestations) {
1239
+ const subject = String(attestation.data.subject ?? "");
1240
+ const version = String(attestation.data.version ?? "");
1241
+ const major = getMajorVersion(version);
1242
+ const key = `${attestation.attester.toLowerCase()}|${subject}|${major}`;
1243
+ if (!seen.has(key)) {
1244
+ seen.set(key, attestation);
1245
+ continue;
1246
+ }
1247
+ const current = seen.get(key);
1248
+ if (attestation.time > current.time) {
1249
+ seen.set(key, attestation);
1250
+ }
1251
+ }
1252
+ return [...seen.values()];
1253
+ }
1254
+ function calculateAverageUserReviewRating(attestations) {
1255
+ const deduped = deduplicateReviews(attestations);
1256
+ const ratings = deduped.map((attestation) => attestation.data.ratingValue).filter((value) => typeof value === "number" || typeof value === "bigint").map((value) => Number(value));
1257
+ if (ratings.length === 0) {
1258
+ return 0;
1259
+ }
1260
+ const total = ratings.reduce((sum, value) => sum + value, 0);
1261
+ return total / ratings.length;
1262
+ }
1263
+ function getMajorVersion(version) {
1264
+ const match = version.match(/^(\d+)/);
1265
+ if (!match) {
1266
+ throw new OmaTrustError("INVALID_INPUT", "Invalid semantic version", { version });
1267
+ }
1268
+ return Number(match[1]);
1269
+ }
1270
+
1271
+ // src/reputation/verify.ts
1272
+ init_did();
1273
+ init_errors();
1274
+
1275
+ // src/reputation/proof/tx-encoded-value.ts
1276
+ init_did();
1277
+ init_errors();
1278
+ var CHAIN_CONFIGS = {
1279
+ 1: {
1280
+ decimals: 18,
1281
+ nativeSymbol: "ETH",
1282
+ explorer: "https://etherscan.io",
1283
+ base: {
1284
+ "shared-control": 100000000000000n,
1285
+ "commercial-tx": 1000000000000n
1286
+ }
1287
+ },
1288
+ 10: {
1289
+ decimals: 18,
1290
+ nativeSymbol: "ETH",
1291
+ explorer: "https://optimistic.etherscan.io",
1292
+ base: {
1293
+ "shared-control": 100000000000000n,
1294
+ "commercial-tx": 1000000000000n
1295
+ }
1296
+ },
1297
+ 137: {
1298
+ decimals: 18,
1299
+ nativeSymbol: "POL",
1300
+ explorer: "https://polygonscan.com",
1301
+ base: {
1302
+ "shared-control": 100000000000000n,
1303
+ "commercial-tx": 1000000000000n
1304
+ }
1305
+ },
1306
+ 8453: {
1307
+ decimals: 18,
1308
+ nativeSymbol: "ETH",
1309
+ explorer: "https://basescan.org",
1310
+ base: {
1311
+ "shared-control": 100000000000000n,
1312
+ "commercial-tx": 1000000000000n
1313
+ }
1314
+ },
1315
+ 42161: {
1316
+ decimals: 18,
1317
+ nativeSymbol: "ETH",
1318
+ explorer: "https://arbiscan.io",
1319
+ base: {
1320
+ "shared-control": 100000000000000n,
1321
+ "commercial-tx": 1000000000000n
1322
+ }
1323
+ },
1324
+ 11155111: {
1325
+ decimals: 18,
1326
+ nativeSymbol: "ETH",
1327
+ explorer: "https://sepolia.etherscan.io",
1328
+ base: {
1329
+ "shared-control": 100000000000000n,
1330
+ "commercial-tx": 1000000000000n
1331
+ }
1332
+ },
1333
+ 6623: {
1334
+ decimals: 18,
1335
+ nativeSymbol: "OMA",
1336
+ explorer: "https://explorer.chain.oma3.org",
1337
+ base: {
1338
+ "shared-control": 10000000000000000n,
1339
+ "commercial-tx": 100000000000000n
1340
+ }
1341
+ },
1342
+ 66238: {
1343
+ decimals: 18,
1344
+ nativeSymbol: "OMA",
1345
+ explorer: "https://explorer.testnet.chain.oma3.org",
1346
+ base: {
1347
+ "shared-control": 10000000000000000n,
1348
+ "commercial-tx": 100000000000000n
1349
+ }
1350
+ }
1351
+ };
1352
+ var AMOUNT_DOMAIN = "OMATrust:Amount:v1";
1353
+ function getConfig(chainId) {
1354
+ const config = CHAIN_CONFIGS[chainId];
1355
+ if (!config) {
1356
+ throw new OmaTrustError("UNSUPPORTED_CHAIN", "Chain is not supported", {
1357
+ chainId,
1358
+ supported: getSupportedChainIds()
1359
+ });
1360
+ }
1361
+ return config;
1362
+ }
1363
+ function getSupportedChainIds() {
1364
+ return Object.keys(CHAIN_CONFIGS).map((id) => Number(id));
1365
+ }
1366
+ function isChainSupported(chainId) {
1367
+ return chainId in CHAIN_CONFIGS;
1368
+ }
1369
+ function getChainConstants(chainId, purpose) {
1370
+ const config = getConfig(chainId);
1371
+ const base = config.base[purpose];
1372
+ const range = base / 10n;
1373
+ return {
1374
+ base,
1375
+ range,
1376
+ decimals: config.decimals,
1377
+ nativeSymbol: config.nativeSymbol
1378
+ };
1379
+ }
1380
+ function constructSeed(subjectDidHash, counterpartyDidHash, purpose) {
1381
+ const seed = {
1382
+ domain: AMOUNT_DOMAIN,
1383
+ subjectDidHash,
1384
+ counterpartyIdHash: counterpartyDidHash,
1385
+ proofPurpose: purpose
1386
+ };
1387
+ const canonical = canonicalize(seed);
1388
+ if (!canonical) {
1389
+ throw new OmaTrustError("INVALID_INPUT", "Failed to canonicalize seed");
1390
+ }
1391
+ return toUtf8Bytes(canonical);
1392
+ }
1393
+ function hashSeed(seedBytes, chainId) {
1394
+ if (!isChainSupported(chainId)) {
1395
+ throw new OmaTrustError("UNSUPPORTED_CHAIN", "Chain is not supported", { chainId });
1396
+ }
1397
+ if (chainId === 0) {
1398
+ return sha256(seedBytes);
1399
+ }
1400
+ return keccak256(seedBytes);
1401
+ }
1402
+ function calculateTransferAmount(subject, counterparty, chainId, purpose) {
1403
+ const { base, range } = getChainConstants(chainId, purpose);
1404
+ const subjectDidHash = computeDidHash(subject);
1405
+ const counterpartyDidHash = computeDidHash(counterparty);
1406
+ const seed = constructSeed(subjectDidHash, counterpartyDidHash, purpose);
1407
+ const hashed = hashSeed(seed, chainId);
1408
+ const offset = BigInt(hashed) % range;
1409
+ return base + offset;
1410
+ }
1411
+ function calculateTransferAmountFromAddresses(subjectAddress, counterpartyAddress, chainId, purpose) {
1412
+ return calculateTransferAmount(
1413
+ buildEvmDidPkh(chainId, subjectAddress),
1414
+ buildEvmDidPkh(chainId, counterpartyAddress),
1415
+ chainId,
1416
+ purpose
1417
+ );
1418
+ }
1419
+ function createTxEncodedValueProof(chainId, txHash, purpose) {
1420
+ if (!/^0x[0-9a-fA-F]{64}$/.test(txHash)) {
1421
+ throw new OmaTrustError("INVALID_INPUT", "txHash must be a 32-byte hex string", { txHash });
1422
+ }
1423
+ return {
1424
+ proofType: "tx-encoded-value",
1425
+ proofPurpose: purpose,
1426
+ proofObject: {
1427
+ chainId: `eip155:${chainId}`,
1428
+ txHash
1429
+ },
1430
+ version: 1,
1431
+ issuedAt: Math.floor(Date.now() / 1e3)
1432
+ };
1433
+ }
1434
+ function formatTransferAmount(amount, chainId) {
1435
+ const config = getConfig(chainId);
1436
+ const normalized = typeof amount === "number" ? BigInt(Math.floor(amount)) : amount;
1437
+ return `${formatUnits(normalized, config.decimals)} ${config.nativeSymbol}`;
1438
+ }
1439
+ function getExplorerTxUrl(chainId, txHash) {
1440
+ return `${getConfig(chainId).explorer}/tx/${txHash}`;
1441
+ }
1442
+ function getExplorerAddressUrl(chainId, address) {
1443
+ return `${getConfig(chainId).explorer}/address/${address}`;
1444
+ }
1445
+
1446
+ // src/reputation/proof/did-json.ts
1447
+ init_did();
1448
+ init_jwk();
1449
+ init_errors();
1450
+
1451
+ // src/shared/did-document.ts
1452
+ init_errors();
1453
+ async function fetchDidDocument(domain) {
1454
+ const normalized = domain.toLowerCase().replace(/\.$/, "");
1455
+ const url = `https://${normalized}/.well-known/did.json`;
1456
+ let response;
1457
+ try {
1458
+ response = await fetch(url, { headers: { Accept: "application/json" } });
1459
+ } catch (err) {
1460
+ throw new OmaTrustError("NETWORK_ERROR", "Failed to fetch DID document", { domain, err });
1461
+ }
1462
+ if (!response.ok) {
1463
+ throw new OmaTrustError("NETWORK_ERROR", `DID document fetch failed: ${response.status}`, {
1464
+ domain,
1465
+ status: response.status
1466
+ });
1467
+ }
1468
+ return await response.json();
1469
+ }
1470
+
1471
+ // src/reputation/proof/did-json.ts
1472
+ function extractEvmAddressesFromDidDocument(didDocument) {
1473
+ const methods = didDocument.verificationMethod;
1474
+ if (!Array.isArray(methods)) {
1475
+ return [];
1476
+ }
1477
+ const addresses = /* @__PURE__ */ new Set();
1478
+ for (const method of methods) {
1479
+ const blockchainAccountId = method.blockchainAccountId;
1480
+ if (typeof blockchainAccountId === "string") {
1481
+ try {
1482
+ addresses.add(getAddress(extractAddressFromDid(blockchainAccountId)));
1483
+ } catch {
1484
+ }
1485
+ }
1486
+ const publicKeyHex = method.publicKeyHex;
1487
+ if (typeof publicKeyHex === "string") {
1488
+ const prefixed = publicKeyHex.startsWith("0x") ? publicKeyHex : `0x${publicKeyHex}`;
1489
+ if (isAddress(prefixed)) {
1490
+ addresses.add(getAddress(prefixed));
1491
+ }
1492
+ }
1493
+ }
1494
+ return [...addresses];
1495
+ }
1496
+ function extractJwksFromDidDocument(didDocument) {
1497
+ const methods = didDocument.verificationMethod;
1498
+ if (!Array.isArray(methods)) {
1499
+ return [];
1500
+ }
1501
+ const jwks = [];
1502
+ for (const method of methods) {
1503
+ const publicKeyJwk = method.publicKeyJwk;
1504
+ if (publicKeyJwk && typeof publicKeyJwk === "object" && !Array.isArray(publicKeyJwk)) {
1505
+ jwks.push(publicKeyJwk);
1506
+ }
1507
+ }
1508
+ return jwks;
1509
+ }
1510
+ function verifyDidDocumentControllerDid(didDocument, expectedControllerDid) {
1511
+ const method = extractDidMethod(expectedControllerDid);
1512
+ if (method === "jwk") {
1513
+ try {
1514
+ const expectedJwk = didJwkToJwk(expectedControllerDid);
1515
+ const documentJwks = extractJwksFromDidDocument(didDocument);
1516
+ for (const docJwk of documentJwks) {
1517
+ try {
1518
+ if (publicJwkEquals(docJwk, expectedJwk)) {
1519
+ return { valid: true };
1520
+ }
1521
+ } catch {
1522
+ }
1523
+ }
1524
+ return {
1525
+ valid: false,
1526
+ reason: "No matching publicKeyJwk found in DID document verification methods"
1527
+ };
1528
+ } catch {
1529
+ return {
1530
+ valid: false,
1531
+ reason: "Failed to decode did:jwk controller DID"
1532
+ };
1533
+ }
1534
+ }
1535
+ let expectedAddress;
1536
+ try {
1537
+ expectedAddress = getAddress(extractAddressFromDid(expectedControllerDid));
1538
+ } catch {
1539
+ return { valid: false, reason: "Controller DID does not resolve to an EVM address and is not did:jwk" };
1540
+ }
1541
+ const addresses = extractEvmAddressesFromDidDocument(didDocument);
1542
+ if (addresses.some((address) => address.toLowerCase() === expectedAddress.toLowerCase())) {
1543
+ return { valid: true };
1544
+ }
1545
+ return {
1546
+ valid: false,
1547
+ reason: `No matching address found in DID document (expected ${expectedAddress})`
1548
+ };
1549
+ }
1550
+ async function verifyDidJsonControllerDid(domain, expectedControllerDid, options = {}) {
1551
+ if (!domain || typeof domain !== "string") {
1552
+ throw new OmaTrustError("INVALID_INPUT", "domain must be a non-empty string", { domain });
1553
+ }
1554
+ const didDocument = options.fetchDidDocument ? await options.fetchDidDocument(domain) : await fetchDidDocument(domain);
1555
+ return verifyDidDocumentControllerDid(didDocument, expectedControllerDid);
1556
+ }
1557
+
1558
+ // src/reputation/proof/eip712.ts
1559
+ init_errors();
1560
+ function buildEip712Domain(name, version, chainId, verifyingContract) {
1561
+ return { name, version, chainId, verifyingContract };
1562
+ }
1563
+ function getOmaTrustProofEip712Types() {
1564
+ return {
1565
+ primaryType: "OmaTrustProof",
1566
+ types: {
1567
+ OmaTrustProof: [
1568
+ { name: "signer", type: "address" },
1569
+ { name: "authorizedEntity", type: "string" },
1570
+ { name: "signingPurpose", type: "string" },
1571
+ { name: "creationTimestamp", type: "uint256" },
1572
+ { name: "expirationTimestamp", type: "uint256" },
1573
+ { name: "randomValue", type: "bytes32" },
1574
+ { name: "statement", type: "string" }
1575
+ ]
1576
+ }
1577
+ };
1578
+ }
1579
+ function verifyEip712Signature(typedData, signature) {
1580
+ try {
1581
+ const signer = verifyTypedData(
1582
+ typedData.domain,
1583
+ typedData.types,
1584
+ typedData.message,
1585
+ signature
1586
+ );
1587
+ return { valid: true, signer };
1588
+ } catch (err) {
1589
+ throw new OmaTrustError("INVALID_INPUT", "Failed to verify EIP-712 signature", { err });
1590
+ }
1591
+ }
1592
+
1593
+ // src/reputation/verify.ts
1594
+ init_dns_txt_record();
1595
+
1596
+ // src/reputation/proof/x402-jws.ts
1597
+ init_errors();
1598
+ init_jwk();
1599
+
1600
+ // src/identity/resolve-key.ts
1601
+ init_errors();
1602
+ init_assert();
1603
+
1604
+ // src/identity/did-url.ts
1605
+ init_errors();
1606
+ init_assert();
1607
+ var DID_URL_REGEX = /^did:[a-z0-9]+:.+$/i;
1608
+ function parseDidUrl(input) {
1609
+ assertString(input, "input", "INVALID_DID_URL");
1610
+ const trimmed = input.trim();
1611
+ const hashIndex = trimmed.indexOf("#");
1612
+ let did;
1613
+ let fragment;
1614
+ if (hashIndex === -1) {
1615
+ did = trimmed;
1616
+ fragment = null;
1617
+ } else {
1618
+ did = trimmed.slice(0, hashIndex);
1619
+ const rawFragment = trimmed.slice(hashIndex + 1);
1620
+ if (rawFragment.length === 0) {
1621
+ throw new OmaTrustError(
1622
+ "INVALID_DID_URL",
1623
+ "DID URL has empty fragment (trailing '#' with no identifier)",
1624
+ { input }
1625
+ );
1626
+ }
1627
+ fragment = rawFragment;
1628
+ }
1629
+ if (!DID_URL_REGEX.test(did)) {
1630
+ throw new OmaTrustError(
1631
+ "INVALID_DID_URL",
1632
+ "Invalid DID URL: base DID portion is malformed",
1633
+ { input, did }
1634
+ );
1635
+ }
1636
+ return {
1637
+ didUrl: trimmed,
1638
+ did,
1639
+ fragment
1640
+ };
1641
+ }
1642
+
1643
+ // src/identity/resolve-key.ts
1644
+ init_did();
1645
+ init_jwk();
1646
+ function findVerificationMethod(didDocument, didUrl, fragment) {
1647
+ const methods = didDocument.verificationMethod;
1648
+ if (!Array.isArray(methods)) {
1649
+ return null;
1650
+ }
1651
+ for (const method of methods) {
1652
+ if (!method || typeof method !== "object") continue;
1653
+ const id = method.id;
1654
+ if (typeof id !== "string") continue;
1655
+ if (id === didUrl) return method;
1656
+ if (fragment && (id === `#${fragment}` || id.endsWith(`#${fragment}`))) {
1657
+ return method;
1658
+ }
1659
+ }
1660
+ return null;
1661
+ }
1662
+ function extractMethodIdsFromDidDocument(didDocument) {
1663
+ const methods = didDocument.verificationMethod;
1664
+ if (!Array.isArray(methods)) return [];
1665
+ return methods.filter((m) => m && typeof m.id === "string").map((m) => m.id);
1666
+ }
1667
+ async function resolveDidUrlToPublicKey(didUrl, options) {
1668
+ assertString(didUrl, "didUrl", "INVALID_DID_URL");
1669
+ const parsed = parseDidUrl(didUrl);
1670
+ const method = extractDidMethod(parsed.did);
1671
+ if (!method) {
1672
+ throw new OmaTrustError("INVALID_DID_URL", "Cannot extract DID method from DID URL", {
1673
+ didUrl,
1674
+ did: parsed.did
1675
+ });
1676
+ }
1677
+ switch (method) {
1678
+ case "web":
1679
+ return resolveDidUrlKey(parsed.didUrl, parsed.did, parsed.fragment);
1680
+ default:
1681
+ throw new OmaTrustError(
1682
+ "UNSUPPORTED_DID_METHOD",
1683
+ `DID URL key resolution is not supported for method "${method}"`,
1684
+ { didUrl, method }
1685
+ );
1686
+ }
1687
+ }
1688
+ async function resolveDidUrlKey(didUrl, did, fragment, options) {
1689
+ const domain = getDomainFromDidWeb(did);
1690
+ if (!domain) {
1691
+ throw new OmaTrustError("INVALID_DID_URL", "Cannot extract domain from did:web DID", {
1692
+ didUrl,
1693
+ did
1694
+ });
1695
+ }
1696
+ const fetchFn = fetchDidDocument;
1697
+ const didDocument = await fetchFn(domain);
1698
+ const method = findVerificationMethod(didDocument, didUrl, fragment);
1699
+ if (!method) {
1700
+ throw new OmaTrustError(
1701
+ "KEY_NOT_FOUND",
1702
+ `No verification method found matching "${fragment ? `#${fragment}` : didUrl}"`,
1703
+ { didUrl, fragment, availableMethods: extractMethodIdsFromDidDocument(didDocument) }
1704
+ );
1705
+ }
1706
+ const publicKeyJwk = method.publicKeyJwk;
1707
+ if (!publicKeyJwk || typeof publicKeyJwk !== "object") {
1708
+ throw new OmaTrustError(
1709
+ "KEY_NOT_FOUND",
1710
+ `Verification method "${method.id}" does not contain publicKeyJwk`,
1711
+ { didUrl, verificationMethodId: method.id }
1712
+ );
1713
+ }
1714
+ const validation = validatePublicJwk(publicKeyJwk);
1715
+ if (!validation.valid) {
1716
+ throw new OmaTrustError(
1717
+ "INVALID_JWK",
1718
+ `publicKeyJwk in verification method "${method.id}" is invalid: ${validation.error}`,
1719
+ { didUrl, verificationMethodId: method.id }
1720
+ );
1721
+ }
1722
+ return {
1723
+ didUrl,
1724
+ did,
1725
+ fragment,
1726
+ publicKeyJwk,
1727
+ verificationMethodId: method.id
1728
+ };
1729
+ }
1730
+
1731
+ // src/reputation/proof/x402-jws.ts
1732
+ var REQUIRED_OFFER_FIELDS = [
1733
+ "version",
1734
+ "resourceUrl",
1735
+ "scheme",
1736
+ "network",
1737
+ "asset",
1738
+ "payTo",
1739
+ "amount"
1740
+ ];
1741
+ var REQUIRED_RECEIPT_FIELDS = [
1742
+ "version",
1743
+ "network",
1744
+ "resourceUrl",
1745
+ "payer",
1746
+ "issuedAt"
1747
+ ];
1748
+ function validateOfferPayload(payload) {
1749
+ for (const field of REQUIRED_OFFER_FIELDS) {
1750
+ if (!(field in payload) || payload[field] === void 0 || payload[field] === null) {
1751
+ return { valid: false, field };
1752
+ }
1753
+ }
1754
+ return { valid: true };
1755
+ }
1756
+ function validateReceiptPayload(payload) {
1757
+ for (const field of REQUIRED_RECEIPT_FIELDS) {
1758
+ if (!(field in payload) || payload[field] === void 0 || payload[field] === null) {
1759
+ return { valid: false, field };
1760
+ }
1761
+ }
1762
+ return { valid: true };
1763
+ }
1764
+ function failure(code, message, partial) {
1765
+ return {
1766
+ valid: false,
1767
+ error: { code, message },
1768
+ ...partial
1769
+ };
1770
+ }
1771
+ async function verifyX402JwsArtifact(artifact, options) {
1772
+ if (!artifact || typeof artifact !== "object") {
1773
+ return failure("INVALID_ARTIFACT", "Artifact must be a non-null object");
1774
+ }
1775
+ if (artifact.format !== "jws") {
1776
+ return failure("INVALID_ARTIFACT", `Expected format "jws", got "${artifact.format}"`);
1777
+ }
1778
+ if (typeof artifact.signature !== "string" || artifact.signature.length === 0) {
1779
+ return failure("INVALID_ARTIFACT", "Artifact signature must be a non-empty string");
1780
+ }
1781
+ const compactJws = artifact.signature;
1782
+ const parts = compactJws.split(".");
1783
+ if (parts.length !== 3) {
1784
+ return failure("MALFORMED_JWS", "Invalid compact JWS format: expected 3 dot-separated parts");
1785
+ }
1786
+ let header;
1787
+ try {
1788
+ header = decodeProtectedHeader(compactJws);
1789
+ } catch {
1790
+ return failure("MALFORMED_JWS", "Failed to decode JWS protected header");
1791
+ }
1792
+ if (!header.alg || typeof header.alg !== "string") {
1793
+ return failure("MISSING_ALG", "JWS header must include alg", { header });
1794
+ }
1795
+ const kid = typeof header.kid === "string" ? header.kid : null;
1796
+ const embeddedJwk = header.jwk;
1797
+ if (!kid && !embeddedJwk) {
1798
+ return failure(
1799
+ "MISSING_KEY_MATERIAL",
1800
+ "JWS header must include at least one of kid or jwk",
1801
+ { header }
1802
+ );
1803
+ }
1804
+ let publicKeyJwk;
1805
+ let publicKeySource;
1806
+ if (embeddedJwk) {
1807
+ const validation = validatePublicJwk(embeddedJwk);
1808
+ if (!validation.valid) {
1809
+ return failure(
1810
+ "INVALID_EMBEDDED_JWK",
1811
+ `Embedded JWK is invalid: ${validation.error}`,
1812
+ { header }
1813
+ );
1814
+ }
1815
+ publicKeyJwk = embeddedJwk;
1816
+ publicKeySource = "embedded-jwk";
1817
+ if (kid) {
1818
+ try {
1819
+ const resolved = await resolveDidUrlToPublicKey(kid, options?.resolveOptions);
1820
+ if (!publicJwkEquals(publicKeyJwk, resolved.publicKeyJwk)) {
1821
+ return failure(
1822
+ "KEY_CONFLICT",
1823
+ "Embedded jwk conflicts with public key resolved from kid",
1824
+ { header, kid }
1825
+ );
1826
+ }
1827
+ } catch (err) {
1828
+ }
1829
+ }
1830
+ } else {
1831
+ publicKeySource = "kid-resolution";
1832
+ try {
1833
+ const resolved = await resolveDidUrlToPublicKey(kid, options?.resolveOptions);
1834
+ publicKeyJwk = resolved.publicKeyJwk;
1835
+ } catch (err) {
1836
+ const message = err instanceof OmaTrustError ? `Failed to resolve kid "${kid}": ${err.message}` : `Failed to resolve kid "${kid}"`;
1837
+ return failure("KID_RESOLUTION_FAILED", message, { header, kid });
1838
+ }
1839
+ }
1840
+ let payload;
1841
+ try {
1842
+ const key = await importJWK(publicKeyJwk, header.alg);
1843
+ const result = await compactVerify(compactJws, key);
1844
+ const payloadText = new TextDecoder().decode(result.payload);
1845
+ payload = JSON.parse(payloadText);
1846
+ } catch (err) {
1847
+ const message = err instanceof Error ? err.message : "Signature verification failed";
1848
+ return failure("SIGNATURE_INVALID", message, { header, kid });
1849
+ }
1850
+ const publicKeyDid = jwkToDidJwk(publicKeyJwk);
1851
+ return {
1852
+ valid: true,
1853
+ header,
1854
+ payload,
1855
+ kid,
1856
+ publicKeyJwk,
1857
+ publicKeySource,
1858
+ publicKeyDid
1859
+ };
1860
+ }
1861
+ async function verifyX402JwsOffer(artifact, options) {
1862
+ const result = await verifyX402JwsArtifact(artifact, options);
1863
+ if (!result.valid) return result;
1864
+ const payloadCheck = validateOfferPayload(result.payload);
1865
+ if (!payloadCheck.valid) {
1866
+ return failure(
1867
+ "INVALID_OFFER_PAYLOAD",
1868
+ `Missing required offer field: ${payloadCheck.field}`,
1869
+ {
1870
+ header: result.header,
1871
+ payload: result.payload,
1872
+ kid: result.kid,
1873
+ publicKeyJwk: result.publicKeyJwk,
1874
+ publicKeySource: result.publicKeySource,
1875
+ publicKeyDid: result.publicKeyDid
1876
+ }
1877
+ );
1878
+ }
1879
+ return result;
1880
+ }
1881
+ async function verifyX402JwsReceipt(artifact, options) {
1882
+ const result = await verifyX402JwsArtifact(artifact, options);
1883
+ if (!result.valid) return result;
1884
+ const payloadCheck = validateReceiptPayload(result.payload);
1885
+ if (!payloadCheck.valid) {
1886
+ return failure(
1887
+ "INVALID_RECEIPT_PAYLOAD",
1888
+ `Missing required receipt field: ${payloadCheck.field}`,
1889
+ {
1890
+ header: result.header,
1891
+ payload: result.payload,
1892
+ kid: result.kid,
1893
+ publicKeyJwk: result.publicKeyJwk,
1894
+ publicKeySource: result.publicKeySource,
1895
+ publicKeyDid: result.publicKeyDid
1896
+ }
1897
+ );
1898
+ }
1899
+ return result;
1900
+ }
1901
+ var OFFER_DOMAIN = {
1902
+ name: "x402 offer",
1903
+ version: "1",
1904
+ chainId: 1
1905
+ };
1906
+ var RECEIPT_DOMAIN = {
1907
+ name: "x402 receipt",
1908
+ version: "1",
1909
+ chainId: 1
1910
+ };
1911
+ var OFFER_TYPES = {
1912
+ Offer: [
1913
+ { name: "version", type: "uint256" },
1914
+ { name: "resourceUrl", type: "string" },
1915
+ { name: "scheme", type: "string" },
1916
+ { name: "network", type: "string" },
1917
+ { name: "asset", type: "string" },
1918
+ { name: "payTo", type: "string" },
1919
+ { name: "amount", type: "string" },
1920
+ { name: "validUntil", type: "uint256" }
1921
+ ]
1922
+ };
1923
+ var RECEIPT_TYPES = {
1924
+ Receipt: [
1925
+ { name: "version", type: "uint256" },
1926
+ { name: "network", type: "string" },
1927
+ { name: "resourceUrl", type: "string" },
1928
+ { name: "payer", type: "string" },
1929
+ { name: "issuedAt", type: "uint256" },
1930
+ { name: "transaction", type: "string" }
1931
+ ]
1932
+ };
1933
+ var REQUIRED_OFFER_FIELDS2 = [
1934
+ "version",
1935
+ "resourceUrl",
1936
+ "scheme",
1937
+ "network",
1938
+ "asset",
1939
+ "payTo",
1940
+ "amount"
1941
+ ];
1942
+ var REQUIRED_RECEIPT_FIELDS2 = [
1943
+ "version",
1944
+ "network",
1945
+ "resourceUrl",
1946
+ "payer",
1947
+ "issuedAt"
1948
+ ];
1949
+ function validateOfferPayload2(payload) {
1950
+ for (const field of REQUIRED_OFFER_FIELDS2) {
1951
+ if (!(field in payload) || payload[field] === void 0 || payload[field] === null) {
1952
+ return { valid: false, field };
1953
+ }
1954
+ }
1955
+ return { valid: true };
1956
+ }
1957
+ function validateReceiptPayload2(payload) {
1958
+ for (const field of REQUIRED_RECEIPT_FIELDS2) {
1959
+ if (!(field in payload) || payload[field] === void 0 || payload[field] === null) {
1960
+ return { valid: false, field };
1961
+ }
1962
+ }
1963
+ return { valid: true };
1964
+ }
1965
+ function failure2(code, message, partial) {
1966
+ return {
1967
+ valid: false,
1968
+ error: { code, message },
1969
+ ...partial
1970
+ };
1971
+ }
1972
+ function prepareOfferMessage(payload) {
1973
+ return {
1974
+ version: payload.version,
1975
+ resourceUrl: payload.resourceUrl,
1976
+ scheme: payload.scheme,
1977
+ network: payload.network,
1978
+ asset: payload.asset,
1979
+ payTo: payload.payTo,
1980
+ amount: payload.amount,
1981
+ validUntil: payload.validUntil ?? 0
1982
+ };
1983
+ }
1984
+ function prepareReceiptMessage(payload) {
1985
+ return {
1986
+ version: payload.version,
1987
+ network: payload.network,
1988
+ resourceUrl: payload.resourceUrl,
1989
+ payer: payload.payer,
1990
+ issuedAt: payload.issuedAt,
1991
+ transaction: payload.transaction ?? ""
1992
+ };
1993
+ }
1994
+ function verifyX402Eip712Artifact(artifact, artifactType) {
1995
+ if (!artifact || typeof artifact !== "object") {
1996
+ return failure2("INVALID_ARTIFACT", "Artifact must be a non-null object");
1997
+ }
1998
+ if (artifact.format !== "eip712") {
1999
+ return failure2("INVALID_ARTIFACT", `Expected format "eip712", got "${artifact.format}"`);
2000
+ }
2001
+ if (!artifact.payload || typeof artifact.payload !== "object" || Array.isArray(artifact.payload)) {
2002
+ return failure2("MISSING_PAYLOAD", "EIP-712 artifact must include a payload object");
2003
+ }
2004
+ if (typeof artifact.signature !== "string" || artifact.signature.length === 0) {
2005
+ return failure2("MISSING_SIGNATURE", "EIP-712 artifact must include a non-empty signature");
2006
+ }
2007
+ const payload = artifact.payload;
2008
+ if (artifactType === "offer") {
2009
+ const check = validateOfferPayload2(payload);
2010
+ if (!check.valid) {
2011
+ return failure2(
2012
+ "INVALID_OFFER_PAYLOAD",
2013
+ `Missing required offer field: ${check.field}`,
2014
+ { payload }
2015
+ );
2016
+ }
2017
+ } else {
2018
+ const check = validateReceiptPayload2(payload);
2019
+ if (!check.valid) {
2020
+ return failure2(
2021
+ "INVALID_RECEIPT_PAYLOAD",
2022
+ `Missing required receipt field: ${check.field}`,
2023
+ { payload }
2024
+ );
2025
+ }
2026
+ }
2027
+ const domain = artifactType === "offer" ? OFFER_DOMAIN : RECEIPT_DOMAIN;
2028
+ const types = artifactType === "offer" ? OFFER_TYPES : RECEIPT_TYPES;
2029
+ const message = artifactType === "offer" ? prepareOfferMessage(payload) : prepareReceiptMessage(payload);
2030
+ let signer;
2031
+ try {
2032
+ signer = verifyTypedData(
2033
+ domain,
2034
+ types,
2035
+ message,
2036
+ artifact.signature
2037
+ );
2038
+ signer = getAddress(signer);
2039
+ } catch (err) {
2040
+ const message2 = err instanceof Error ? err.message : "EIP-712 signature verification failed";
2041
+ return failure2("SIGNATURE_INVALID", message2, { payload });
2042
+ }
2043
+ return {
2044
+ valid: true,
2045
+ payload,
2046
+ signer,
2047
+ artifactType
2048
+ };
2049
+ }
2050
+ function verifyX402Eip712Offer(artifact) {
2051
+ return verifyX402Eip712Artifact(artifact, "offer");
2052
+ }
2053
+ function verifyX402Eip712Receipt(artifact) {
2054
+ return verifyX402Eip712Artifact(artifact, "receipt");
2055
+ }
2056
+
2057
+ // src/reputation/verify.ts
2058
+ function parseChainId(input) {
2059
+ if (typeof input === "number") {
2060
+ return input;
2061
+ }
2062
+ if (typeof input === "string") {
2063
+ if (input.includes(":")) {
2064
+ const [, chainId] = input.split(":");
2065
+ return Number(chainId);
2066
+ }
2067
+ return Number(input);
2068
+ }
2069
+ return NaN;
2070
+ }
2071
+ function parseProofs(attestation) {
2072
+ const rawProofs = attestation.data.proofs;
2073
+ if (!Array.isArray(rawProofs)) {
2074
+ return [];
2075
+ }
2076
+ return rawProofs.map((entry) => {
2077
+ if (typeof entry === "string") {
2078
+ try {
2079
+ return JSON.parse(entry);
2080
+ } catch {
2081
+ return null;
2082
+ }
2083
+ }
2084
+ if (entry && typeof entry === "object") {
2085
+ return entry;
2086
+ }
2087
+ return null;
2088
+ }).filter((proof) => Boolean(proof?.proofType));
2089
+ }
2090
+ function getProofPurpose(proof) {
2091
+ if (proof.proofPurpose === "commercial-tx") {
2092
+ return "commercial-tx";
2093
+ }
2094
+ return "shared-control";
2095
+ }
2096
+ function decodeJwtPayload(compactJws) {
2097
+ const parts = compactJws.split(".");
2098
+ if (parts.length !== 3) {
2099
+ throw new OmaTrustError("PROOF_VERIFICATION_FAILED", "Invalid compact JWS format");
2100
+ }
2101
+ const payloadB64 = parts[1].replace(/-/g, "+").replace(/_/g, "/");
2102
+ const padded = payloadB64.padEnd(payloadB64.length + (4 - payloadB64.length % 4) % 4, "=");
2103
+ let json;
2104
+ if (typeof atob === "function") {
2105
+ json = decodeURIComponent(
2106
+ Array.from(atob(padded)).map((char) => `%${char.charCodeAt(0).toString(16).padStart(2, "0")}`).join("")
2107
+ );
2108
+ } else {
2109
+ json = Buffer.from(padded, "base64").toString("utf8");
2110
+ }
2111
+ return JSON.parse(json);
2112
+ }
2113
+ async function verifyProof(params) {
2114
+ const { proof, provider, expectedSubjectDid, expectedControllerDid } = params;
2115
+ try {
2116
+ switch (proof.proofType) {
2117
+ case "tx-encoded-value": {
2118
+ if (!provider) {
2119
+ return { valid: false, proofType: proof.proofType, reason: "Provider is required" };
2120
+ }
2121
+ if (!expectedSubjectDid || !expectedControllerDid) {
2122
+ return {
2123
+ valid: false,
2124
+ proofType: proof.proofType,
2125
+ reason: "expectedSubjectDid and expectedControllerDid are required"
2126
+ };
2127
+ }
2128
+ const proofObject = proof.proofObject;
2129
+ const chainId = parseChainId(proofObject.chainId);
2130
+ const tx = await provider.getTransaction(
2131
+ proofObject.txHash
2132
+ );
2133
+ if (!tx) {
2134
+ return { valid: false, proofType: proof.proofType, reason: "Transaction not found" };
2135
+ }
2136
+ const expectedAmount = calculateTransferAmount(
2137
+ expectedSubjectDid,
2138
+ expectedControllerDid,
2139
+ chainId,
2140
+ getProofPurpose(proof)
2141
+ );
2142
+ const subjectAddress = getAddress(extractAddressFromDid(expectedSubjectDid));
2143
+ const controllerAddress = getAddress(extractAddressFromDid(expectedControllerDid));
2144
+ if (tx.from && getAddress(tx.from) !== subjectAddress) {
2145
+ return { valid: false, proofType: proof.proofType, reason: "Transaction sender mismatch" };
2146
+ }
2147
+ if (tx.to && getAddress(tx.to) !== controllerAddress) {
2148
+ return { valid: false, proofType: proof.proofType, reason: "Transaction recipient mismatch" };
2149
+ }
2150
+ if (BigInt(tx.value) !== expectedAmount) {
2151
+ return { valid: false, proofType: proof.proofType, reason: "Transaction amount mismatch" };
2152
+ }
2153
+ return { valid: true, proofType: proof.proofType };
2154
+ }
2155
+ case "tx-interaction": {
2156
+ if (!provider) {
2157
+ return { valid: false, proofType: proof.proofType, reason: "Provider is required" };
2158
+ }
2159
+ const proofObject = proof.proofObject;
2160
+ const tx = await provider.getTransaction(
2161
+ proofObject.txHash
2162
+ );
2163
+ if (!tx) {
2164
+ return { valid: false, proofType: proof.proofType, reason: "Transaction not found" };
2165
+ }
2166
+ if (!tx.to) {
2167
+ return { valid: false, proofType: proof.proofType, reason: "Transaction target missing" };
2168
+ }
2169
+ return { valid: true, proofType: proof.proofType };
2170
+ }
2171
+ case "pop-eip712": {
2172
+ const object = proof.proofObject;
2173
+ const typedData = {
2174
+ domain: object.domain,
2175
+ types: {
2176
+ OmaTrustProof: [
2177
+ { name: "signer", type: "address" },
2178
+ { name: "authorizedEntity", type: "string" },
2179
+ { name: "signingPurpose", type: "string" },
2180
+ { name: "creationTimestamp", type: "uint256" },
2181
+ { name: "expirationTimestamp", type: "uint256" },
2182
+ { name: "randomValue", type: "bytes32" },
2183
+ { name: "statement", type: "string" }
2184
+ ]
2185
+ },
2186
+ message: object.message
2187
+ };
2188
+ const verification = verifyEip712Signature(typedData, object.signature);
2189
+ if (!verification.valid || !verification.signer) {
2190
+ return { valid: false, proofType: proof.proofType, reason: "Invalid EIP-712 signature" };
2191
+ }
2192
+ if (typeof object.message.signer === "string") {
2193
+ const expected = getAddress(object.message.signer);
2194
+ if (getAddress(verification.signer) !== expected) {
2195
+ return { valid: false, proofType: proof.proofType, reason: "Recovered signer mismatch" };
2196
+ }
2197
+ }
2198
+ return { valid: true, proofType: proof.proofType };
2199
+ }
2200
+ case "pop-jws": {
2201
+ if (typeof proof.proofObject !== "string") {
2202
+ return { valid: false, proofType: proof.proofType, reason: "Invalid JWS proof payload" };
2203
+ }
2204
+ const payload = decodeJwtPayload(proof.proofObject);
2205
+ const now = Math.floor(Date.now() / 1e3);
2206
+ const exp = payload.exp;
2207
+ if (typeof exp === "number" && exp < now) {
2208
+ return { valid: false, proofType: proof.proofType, reason: "JWS proof expired" };
2209
+ }
2210
+ return { valid: true, proofType: proof.proofType };
2211
+ }
2212
+ case "x402-receipt":
2213
+ case "x402-offer": {
2214
+ if (!proof.proofObject || typeof proof.proofObject !== "object") {
2215
+ return { valid: false, proofType: proof.proofType, reason: "Invalid x402 proof object" };
2216
+ }
2217
+ const proofObj = proof.proofObject;
2218
+ if (proofObj.format === "jws" && typeof proofObj.signature === "string") {
2219
+ const artifact = {
2220
+ format: "jws",
2221
+ signature: proofObj.signature
2222
+ };
2223
+ const jwsResult = proof.proofType === "x402-offer" ? await verifyX402JwsOffer(artifact) : await verifyX402JwsReceipt(artifact);
2224
+ if (!jwsResult.valid) {
2225
+ return {
2226
+ valid: false,
2227
+ proofType: proof.proofType,
2228
+ reason: jwsResult.error?.message ?? "JWS verification failed"
2229
+ };
2230
+ }
2231
+ return { valid: true, proofType: proof.proofType };
2232
+ }
2233
+ if (proofObj.format === "eip712" && typeof proofObj.signature === "string" && proofObj.payload && typeof proofObj.payload === "object") {
2234
+ const artifact = {
2235
+ format: "eip712",
2236
+ payload: proofObj.payload,
2237
+ signature: proofObj.signature
2238
+ };
2239
+ const eip712Result = proof.proofType === "x402-offer" ? verifyX402Eip712Offer(artifact) : verifyX402Eip712Receipt(artifact);
2240
+ if (!eip712Result.valid) {
2241
+ return {
2242
+ valid: false,
2243
+ proofType: proof.proofType,
2244
+ reason: eip712Result.error?.message ?? "EIP-712 verification failed"
2245
+ };
2246
+ }
2247
+ return { valid: true, proofType: proof.proofType };
2248
+ }
2249
+ return { valid: true, proofType: proof.proofType };
2250
+ }
2251
+ case "evidence-pointer": {
2252
+ const object = proof.proofObject;
2253
+ if (!object.url) {
2254
+ return { valid: false, proofType: proof.proofType, reason: "Missing evidence URL" };
2255
+ }
2256
+ const response = await fetch(object.url);
2257
+ if (!response.ok) {
2258
+ return { valid: false, proofType: proof.proofType, reason: `Evidence fetch failed (${response.status})` };
2259
+ }
2260
+ if (object.url.endsWith("/.well-known/did.json") && expectedControllerDid) {
2261
+ const didDoc = await response.json();
2262
+ const didCheck = verifyDidDocumentControllerDid(didDoc, expectedControllerDid);
2263
+ return {
2264
+ valid: didCheck.valid,
2265
+ proofType: proof.proofType,
2266
+ reason: didCheck.reason
2267
+ };
2268
+ }
2269
+ const body = await response.text();
2270
+ if (expectedControllerDid && !body.includes(expectedControllerDid)) {
2271
+ try {
2272
+ const parsed = parseDnsTxtRecord(body);
2273
+ if (!parsed.controllers.includes(expectedControllerDid)) {
2274
+ return {
2275
+ valid: false,
2276
+ proofType: proof.proofType,
2277
+ reason: "Evidence does not include expected controller DID"
2278
+ };
2279
+ }
2280
+ } catch {
2281
+ return {
2282
+ valid: false,
2283
+ proofType: proof.proofType,
2284
+ reason: "Evidence does not include expected controller DID"
2285
+ };
2286
+ }
2287
+ }
2288
+ return { valid: true, proofType: proof.proofType };
2289
+ }
2290
+ default:
2291
+ return { valid: false, proofType: proof.proofType, reason: "Unsupported proof type" };
2292
+ }
2293
+ } catch (err) {
2294
+ throw new OmaTrustError("PROOF_VERIFICATION_FAILED", "Proof verification failed", {
2295
+ proofType: proof.proofType,
2296
+ err
2297
+ });
2298
+ }
2299
+ }
2300
+ async function verifyAttestation(params) {
2301
+ const proofs = parseProofs(params.attestation);
2302
+ const checks = {};
2303
+ const reasons = [];
2304
+ const now = BigInt(Math.floor(Date.now() / 1e3));
2305
+ if (params.attestation.revocationTime > 0n) {
2306
+ checks.revocation = false;
2307
+ reasons.push("attestation revoked");
2308
+ } else {
2309
+ checks.revocation = true;
2310
+ }
2311
+ if (params.attestation.expirationTime > 0n && params.attestation.expirationTime < now) {
2312
+ checks.expiration = false;
2313
+ reasons.push("attestation expired");
2314
+ } else {
2315
+ checks.expiration = true;
2316
+ }
2317
+ if (proofs.length === 0) {
2318
+ checks.proofs = false;
2319
+ reasons.push("no proofs provided");
2320
+ }
2321
+ const selectedProofTypes = params.checks ?? proofs.map((proof) => proof.proofType);
2322
+ for (const proof of proofs) {
2323
+ if (!selectedProofTypes.includes(proof.proofType)) {
2324
+ continue;
2325
+ }
2326
+ const result = await verifyProof({
2327
+ proof,
2328
+ provider: params.provider,
2329
+ expectedSubjectDid: params.context?.subjectDid,
2330
+ expectedControllerDid: params.context?.controllerDid
2331
+ });
2332
+ checks[proof.proofType] = result.valid;
2333
+ if (!result.valid) {
2334
+ reasons.push(result.reason ?? `${proof.proofType} verification failed`);
2335
+ }
2336
+ }
2337
+ return {
2338
+ valid: reasons.length === 0,
2339
+ checks,
2340
+ reasons
2341
+ };
2342
+ }
2343
+
2344
+ // src/reputation/schema.ts
2345
+ init_errors();
2346
+ async function verifySchemaExists(schemaRegistry, schemaUid) {
2347
+ const registry = schemaRegistry;
2348
+ try {
2349
+ const schema = await registry.getSchema({ uid: schemaUid });
2350
+ return Boolean(schema && schema.uid && schema.uid !== "0x".padEnd(66, "0"));
2351
+ } catch {
2352
+ return false;
2353
+ }
2354
+ }
2355
+ async function getSchemaDetails(schemaRegistry, schemaUid) {
2356
+ const registry = schemaRegistry;
2357
+ try {
2358
+ const details = await registry.getSchema({ uid: schemaUid });
2359
+ if (!details || !details.uid || details.uid === "0x".padEnd(66, "0")) {
2360
+ throw new OmaTrustError("SCHEMA_NOT_FOUND", "Schema was not found", { schemaUid });
2361
+ }
2362
+ return {
2363
+ uid: formatSchemaUid(details.uid),
2364
+ schema: details.schema,
2365
+ resolver: details.resolver,
2366
+ revocable: Boolean(details.revocable)
2367
+ };
2368
+ } catch (err) {
2369
+ if (isEasSchemaNotFoundError(err)) {
2370
+ throw new OmaTrustError("SCHEMA_NOT_FOUND", "Schema was not found", { schemaUid });
2371
+ }
2372
+ if (err instanceof OmaTrustError) {
2373
+ throw err;
2374
+ }
2375
+ throw new OmaTrustError("NETWORK_ERROR", "Failed to read schema details", { schemaUid, err });
2376
+ }
2377
+ }
2378
+ function formatSchemaUid(schemaUid) {
2379
+ if (!schemaUid) {
2380
+ throw new OmaTrustError("INVALID_INPUT", "schemaUid is required");
2381
+ }
2382
+ const value = schemaUid.startsWith("0x") ? schemaUid.toLowerCase() : `0x${schemaUid.toLowerCase()}`;
2383
+ if (!/^0x[0-9a-f]{64}$/.test(value)) {
2384
+ throw new OmaTrustError("INVALID_INPUT", "schemaUid must be a 32-byte hex string", { schemaUid });
2385
+ }
2386
+ return value;
2387
+ }
2388
+
2389
+ // src/reputation/witness.ts
2390
+ init_errors();
2391
+ async function callMethod(params, method) {
2392
+ let response;
2393
+ try {
2394
+ response = await fetch(params.gatewayUrl, {
2395
+ method: "POST",
2396
+ headers: { "Content-Type": "application/json" },
2397
+ body: JSON.stringify({
2398
+ attestationUid: params.attestationUid,
2399
+ chainId: params.chainId,
2400
+ easContract: params.easContract,
2401
+ schemaUid: params.schemaUid,
2402
+ subject: params.subject,
2403
+ controller: params.controller,
2404
+ method
2405
+ }),
2406
+ signal: AbortSignal.timeout(params.timeoutMs ?? 15e3)
2407
+ });
2408
+ } catch (err) {
2409
+ throw new OmaTrustError("NETWORK_ERROR", "Controller witness request failed", { method, err });
2410
+ }
2411
+ const details = await response.json().catch(() => void 0);
2412
+ if (!response.ok) {
2413
+ return null;
2414
+ }
2415
+ return {
2416
+ ok: true,
2417
+ method,
2418
+ details
2419
+ };
2420
+ }
2421
+ async function callControllerWitness(params) {
2422
+ const dnsResult = await callMethod(params, "dns-txt").catch(() => null);
2423
+ if (dnsResult) {
2424
+ return dnsResult;
2425
+ }
2426
+ const didJsonResult = await callMethod(params, "did-json").catch(() => null);
2427
+ if (didJsonResult) {
2428
+ return didJsonResult;
2429
+ }
2430
+ return {
2431
+ ok: false,
2432
+ method: "did-json"
2433
+ };
2434
+ }
2435
+ var DEFAULT_CONTROLLER_WITNESS_URL = "https://api.omatrust.org/v1/controller-witness";
2436
+ async function requestControllerWitness(params) {
2437
+ const url = params.gatewayUrl ?? DEFAULT_CONTROLLER_WITNESS_URL;
2438
+ const body = {
2439
+ subjectDid: params.subjectDid,
2440
+ controllerDid: params.controllerDid
2441
+ };
2442
+ if (params.chainId !== void 0) {
2443
+ body.chainId = params.chainId;
2444
+ }
2445
+ let response;
2446
+ try {
2447
+ response = await fetch(url, {
2448
+ method: "POST",
2449
+ headers: { "Content-Type": "application/json" },
2450
+ credentials: "include",
2451
+ body: JSON.stringify(body),
2452
+ signal: AbortSignal.timeout(params.timeoutMs ?? 15e3)
2453
+ });
2454
+ } catch (err) {
2455
+ throw new OmaTrustError("NETWORK_ERROR", "Controller witness request failed", { err });
2456
+ }
2457
+ if (!response.ok) {
2458
+ const errorBody = await response.json().catch(() => ({ error: response.statusText }));
2459
+ throw new OmaTrustError(
2460
+ "API_ERROR",
2461
+ errorBody.error ?? `Controller witness failed: ${response.status}`,
2462
+ { status: response.status, ...errorBody }
2463
+ );
2464
+ }
2465
+ return await response.json();
2466
+ }
2467
+
2468
+ // src/reputation/proof/tx-interaction.ts
2469
+ init_errors();
2470
+ function createTxInteractionProof(chainId, txHash) {
2471
+ if (!/^0x[0-9a-fA-F]{64}$/.test(txHash)) {
2472
+ throw new OmaTrustError("INVALID_INPUT", "txHash must be a 32-byte hex string", { txHash });
2473
+ }
2474
+ return {
2475
+ proofType: "tx-interaction",
2476
+ proofPurpose: "commercial-tx",
2477
+ proofObject: {
2478
+ chainId: `eip155:${chainId}`,
2479
+ txHash
2480
+ },
2481
+ version: 1,
2482
+ issuedAt: Math.floor(Date.now() / 1e3)
2483
+ };
2484
+ }
2485
+
2486
+ // src/reputation/proof/pop-eip712.ts
2487
+ init_errors();
2488
+ async function createPopEip712Proof(params, signFn) {
2489
+ if (!params.signer || !params.authorizedEntity) {
2490
+ throw new OmaTrustError("INVALID_INPUT", "signer and authorizedEntity are required", { params });
2491
+ }
2492
+ const now = Math.floor(Date.now() / 1e3);
2493
+ const creationTimestamp = params.creationTimestamp ?? now;
2494
+ const expirationTimestamp = params.expirationTimestamp ?? now + 600;
2495
+ const randomValue = params.randomValue ?? hexlify(randomBytes(32));
2496
+ const message = {
2497
+ signer: params.signer,
2498
+ authorizedEntity: params.authorizedEntity,
2499
+ signingPurpose: params.signingPurpose,
2500
+ creationTimestamp,
2501
+ expirationTimestamp,
2502
+ randomValue,
2503
+ statement: params.statement ?? "This is not a transaction or asset approval."
2504
+ };
2505
+ const { types, primaryType } = getOmaTrustProofEip712Types();
2506
+ const typedData = {
2507
+ domain: {
2508
+ name: "OMATrust Proof",
2509
+ version: "1",
2510
+ chainId: params.chainId
2511
+ },
2512
+ types,
2513
+ primaryType,
2514
+ message
2515
+ };
2516
+ const signature = await signFn(typedData);
2517
+ return {
2518
+ proofType: "pop-eip712",
2519
+ proofObject: {
2520
+ domain: typedData.domain,
2521
+ message,
2522
+ signature
2523
+ },
2524
+ version: 1,
2525
+ issuedAt: creationTimestamp,
2526
+ expiresAt: expirationTimestamp
2527
+ };
2528
+ }
2529
+
2530
+ // src/reputation/proof/pop-jws.ts
2531
+ init_errors();
2532
+ async function createPopJwsProof(params, signFn) {
2533
+ if (!params.issuer || !params.audience) {
2534
+ throw new OmaTrustError("INVALID_INPUT", "issuer and audience are required", { params });
2535
+ }
2536
+ const now = Math.floor(Date.now() / 1e3);
2537
+ const payload = {
2538
+ iss: params.issuer,
2539
+ aud: params.audience,
2540
+ purpose: params.purpose,
2541
+ iat: params.issuedAt ?? now,
2542
+ exp: params.expiresAt ?? now + 600,
2543
+ nonce: params.nonce ?? (globalThis.crypto?.randomUUID ? globalThis.crypto.randomUUID() : `${Date.now()}-${Math.random()}`)
2544
+ };
2545
+ const header = {
2546
+ typ: "JWT",
2547
+ alg: "ES256K"
2548
+ };
2549
+ const jws = await signFn(payload, header);
2550
+ return {
2551
+ proofType: "pop-jws",
2552
+ proofObject: jws,
2553
+ proofPurpose: params.purpose,
2554
+ version: 1,
2555
+ issuedAt: payload.iat,
2556
+ expiresAt: payload.exp
2557
+ };
2558
+ }
2559
+
2560
+ // src/reputation/proof/x402.ts
2561
+ function createX402ReceiptProof(receipt) {
2562
+ return {
2563
+ proofType: "x402-receipt",
2564
+ proofPurpose: "commercial-tx",
2565
+ proofObject: receipt,
2566
+ version: 1,
2567
+ issuedAt: Math.floor(Date.now() / 1e3)
2568
+ };
2569
+ }
2570
+ function createX402OfferProof(offer) {
2571
+ return {
2572
+ proofType: "x402-offer",
2573
+ proofPurpose: "commercial-tx",
2574
+ proofObject: offer,
2575
+ version: 1,
2576
+ issuedAt: Math.floor(Date.now() / 1e3)
2577
+ };
2578
+ }
2579
+
2580
+ // src/reputation/proof/evidence-pointer.ts
2581
+ init_errors();
2582
+ function createEvidencePointerProof(url) {
2583
+ if (!url || typeof url !== "string") {
2584
+ throw new OmaTrustError("INVALID_INPUT", "url must be a non-empty string", { url });
2585
+ }
2586
+ return {
2587
+ proofType: "evidence-pointer",
2588
+ proofPurpose: "shared-control",
2589
+ proofObject: { url },
2590
+ version: 1,
2591
+ issuedAt: Math.floor(Date.now() / 1e3)
2592
+ };
2593
+ }
2594
+
2595
+ // src/reputation/proof/dns-txt.browser.ts
2596
+ init_errors();
2597
+ init_dns_txt_record();
2598
+ async function verifyDnsTxtControllerDid2(domain, expectedControllerDid, options = {}) {
2599
+ if (options.resolveTxt) {
2600
+ const { verifyDnsTxtControllerDid: verifyWithResolver } = await Promise.resolve().then(() => (init_dns_txt_shared(), dns_txt_shared_exports));
2601
+ return verifyWithResolver(domain, expectedControllerDid, options);
2602
+ }
2603
+ throw new OmaTrustError(
2604
+ "NETWORK_ERROR",
2605
+ "verifyDnsTxtControllerDid is not available in browser runtimes",
2606
+ {
2607
+ domain,
2608
+ expectedControllerDid
2609
+ }
2610
+ );
2611
+ }
2612
+
2613
+ // src/reputation/subject-ownership.ts
2614
+ init_did();
2615
+ init_errors();
2616
+ init_dns_txt_shared();
2617
+
2618
+ // src/reputation/contract-ownership.ts
2619
+ init_did();
2620
+ var EIP1967_ADMIN_SLOT = "0xb53127684a568b3173ae13b9f8a6016e243e63b6e8ee1178d6a717850b5d6103";
2621
+ var OWNERSHIP_PATTERNS = [
2622
+ { method: "owner", signature: "function owner() view returns (address)" },
2623
+ { method: "admin", signature: "function admin() view returns (address)" },
2624
+ { method: "getOwner", signature: "function getOwner() view returns (address)" }
2625
+ ];
2626
+ async function readOwnerFromContract(provider, contractAddress, signature, method) {
2627
+ try {
2628
+ const iface = new Interface([signature]);
2629
+ const data = iface.encodeFunctionData(method, []);
2630
+ const result = await provider.call({ to: contractAddress, data });
2631
+ const [value] = iface.decodeFunctionResult(method, result);
2632
+ if (typeof value === "string" && isAddress(value) && value !== ZeroAddress) {
2633
+ return getAddress(value);
2634
+ }
2635
+ } catch {
2636
+ }
2637
+ return null;
2638
+ }
2639
+ async function discoverContractOwner(provider, contractAddress) {
2640
+ try {
2641
+ const code = await provider.getCode(contractAddress);
2642
+ if (code === "0x" || code === "0x0") {
2643
+ return null;
2644
+ }
2645
+ } catch {
2646
+ return null;
2647
+ }
2648
+ for (const pattern of OWNERSHIP_PATTERNS) {
2649
+ const address = await readOwnerFromContract(
2650
+ provider,
2651
+ contractAddress,
2652
+ pattern.signature,
2653
+ pattern.method
2654
+ );
2655
+ if (address) {
2656
+ return address;
2657
+ }
2658
+ }
2659
+ try {
2660
+ const adminValue = await provider.getStorage(contractAddress, EIP1967_ADMIN_SLOT);
2661
+ if (adminValue && adminValue !== "0x" && adminValue !== "0x0000000000000000000000000000000000000000000000000000000000000000") {
2662
+ const adminAddress = getAddress(`0x${adminValue.slice(-40)}`);
2663
+ if (adminAddress !== ZeroAddress) {
2664
+ return adminAddress;
2665
+ }
2666
+ }
2667
+ } catch {
2668
+ }
2669
+ return null;
2670
+ }
2671
+ async function discoverControllingWalletDid(provider, contractAddress, chainId) {
2672
+ const owner = await discoverContractOwner(provider, contractAddress);
2673
+ return owner ? buildEvmDidPkh(chainId, owner) : null;
2674
+ }
2675
+
2676
+ // src/reputation/subject-ownership.ts
2677
+ function assertConnectedWalletDid(input) {
2678
+ const normalized = normalizeDid(input);
2679
+ if (extractDidMethod(normalized) !== "pkh") {
2680
+ throw new OmaTrustError("INVALID_INPUT", "connectedWalletDid must be a did:pkh DID", {
2681
+ connectedWalletDid: input
2682
+ });
2683
+ }
2684
+ return normalized;
2685
+ }
2686
+ function normalizeSubjectDid(input) {
2687
+ return normalizeDid(input);
2688
+ }
2689
+ async function verifyDidWebOwnership(params) {
2690
+ const subjectDid = normalizeSubjectDid(params.subjectDid);
2691
+ const connectedWalletDid = assertConnectedWalletDid(params.connectedWalletDid);
2692
+ const domain = getDomainFromDidWeb(subjectDid);
2693
+ if (!domain) {
2694
+ throw new OmaTrustError("INVALID_INPUT", "subjectDid must be a did:web DID", {
2695
+ subjectDid: params.subjectDid
2696
+ });
2697
+ }
2698
+ let dnsReason;
2699
+ try {
2700
+ const dnsResult = await verifyDnsTxtControllerDid(domain, connectedWalletDid, {
2701
+ resolveTxt: params.resolveTxt,
2702
+ recordPrefix: params.recordPrefix
2703
+ });
2704
+ if (dnsResult.valid) {
2705
+ return {
2706
+ valid: true,
2707
+ method: "dns",
2708
+ details: `Verified via DNS TXT record at ${params.recordPrefix ?? "_controllers"}.${domain}`,
2709
+ subjectDid,
2710
+ connectedWalletDid
2711
+ };
2712
+ }
2713
+ dnsReason = dnsResult.reason;
2714
+ } catch (error) {
2715
+ dnsReason = error instanceof Error ? error.message : "DNS TXT verification failed";
2716
+ }
2717
+ let didDocReason;
2718
+ try {
2719
+ const didDocumentResult = await verifyDidJsonControllerDid(domain, connectedWalletDid, {
2720
+ fetchDidDocument: params.fetchDidDocument
2721
+ });
2722
+ if (didDocumentResult.valid) {
2723
+ return {
2724
+ valid: true,
2725
+ method: "did-document",
2726
+ details: `Verified via DID document at https://${domain}/.well-known/did.json`,
2727
+ subjectDid,
2728
+ connectedWalletDid
2729
+ };
2730
+ }
2731
+ didDocReason = didDocumentResult.reason;
2732
+ } catch (error) {
2733
+ didDocReason = error instanceof Error ? error.message : "DID document verification failed";
2734
+ }
2735
+ return {
2736
+ valid: false,
2737
+ reason: "DID ownership verification failed",
2738
+ details: `DNS check: ${dnsReason ?? "failed"}. DID document check: ${didDocReason ?? "failed"}.`,
2739
+ subjectDid,
2740
+ connectedWalletDid
2741
+ };
2742
+ }
2743
+ async function verifyDidPkhOwnership(params) {
2744
+ const subjectDid = normalizeSubjectDid(params.subjectDid);
2745
+ const connectedWalletDid = assertConnectedWalletDid(params.connectedWalletDid);
2746
+ if (!isEvmDidPkh(subjectDid)) {
2747
+ throw new OmaTrustError("INVALID_INPUT", "subjectDid must be an EVM did:pkh DID", {
2748
+ subjectDid: params.subjectDid
2749
+ });
2750
+ }
2751
+ const subjectAddress = getAddressFromDidPkh(subjectDid);
2752
+ const connectedWalletAddress = getAddressFromDidPkh(connectedWalletDid);
2753
+ const chainIdRaw = getChainIdFromDidPkh(subjectDid);
2754
+ if (!subjectAddress || !connectedWalletAddress || !chainIdRaw) {
2755
+ throw new OmaTrustError("INVALID_INPUT", "Could not parse did:pkh ownership inputs", {
2756
+ subjectDid: params.subjectDid,
2757
+ connectedWalletDid: params.connectedWalletDid
2758
+ });
2759
+ }
2760
+ const chainId = Number(chainIdRaw);
2761
+ if (!Number.isFinite(chainId)) {
2762
+ throw new OmaTrustError("INVALID_INPUT", "Invalid chain id in subjectDid", {
2763
+ subjectDid: params.subjectDid
2764
+ });
2765
+ }
2766
+ const code = await params.provider.getCode(subjectAddress);
2767
+ const isContract = code !== "0x" && code !== "0x0";
2768
+ if (!isContract) {
2769
+ if (getAddress(subjectAddress) === getAddress(connectedWalletAddress)) {
2770
+ return {
2771
+ valid: true,
2772
+ method: "wallet",
2773
+ details: "Verified direct wallet ownership from matching did:pkh subject and connected wallet",
2774
+ subjectDid,
2775
+ connectedWalletDid
2776
+ };
2777
+ }
2778
+ return {
2779
+ valid: false,
2780
+ reason: "EOA did:pkh subject does not match connected wallet",
2781
+ details: "For direct wallet did:pkh subjects, connectedWalletDid must match the subject DID.",
2782
+ subjectDid,
2783
+ connectedWalletDid
2784
+ };
2785
+ }
2786
+ const controllingWalletDid = await discoverControllingWalletDid(params.provider, subjectAddress, chainId);
2787
+ if (params.txHash) {
2788
+ if (!controllingWalletDid) {
2789
+ return {
2790
+ valid: false,
2791
+ reason: "Could not discover controlling wallet",
2792
+ details: "Contract does not expose owner/admin/getOwner or a readable EIP-1967 admin slot for transfer verification.",
2793
+ subjectDid,
2794
+ connectedWalletDid
2795
+ };
2796
+ }
2797
+ const tx = await params.provider.getTransaction(params.txHash);
2798
+ if (!tx) {
2799
+ return {
2800
+ valid: false,
2801
+ reason: "Transaction not found",
2802
+ details: `Transaction ${params.txHash} was not found on chain ${chainId}.`,
2803
+ subjectDid,
2804
+ connectedWalletDid,
2805
+ controllingWalletDid
2806
+ };
2807
+ }
2808
+ const receipt = await params.provider.getTransactionReceipt(params.txHash);
2809
+ if (!receipt) {
2810
+ return {
2811
+ valid: false,
2812
+ reason: "Transaction not confirmed",
2813
+ details: "Transaction exists but is not yet confirmed.",
2814
+ subjectDid,
2815
+ connectedWalletDid,
2816
+ controllingWalletDid
2817
+ };
2818
+ }
2819
+ const controllingWalletAddress = getAddressFromDidPkh(controllingWalletDid);
2820
+ if (!tx.from || !controllingWalletAddress || getAddress(tx.from) !== getAddress(controllingWalletAddress)) {
2821
+ return {
2822
+ valid: false,
2823
+ reason: "Wrong sender",
2824
+ details: `Transfer must originate from controlling wallet ${controllingWalletDid}.`,
2825
+ subjectDid,
2826
+ connectedWalletDid,
2827
+ controllingWalletDid
2828
+ };
2829
+ }
2830
+ if (!tx.to || getAddress(tx.to) !== getAddress(connectedWalletAddress)) {
2831
+ return {
2832
+ valid: false,
2833
+ reason: "Wrong recipient",
2834
+ details: `Transfer must be sent to connected wallet ${connectedWalletDid}.`,
2835
+ subjectDid,
2836
+ connectedWalletDid,
2837
+ controllingWalletDid
2838
+ };
2839
+ }
2840
+ const expectedAmount = calculateTransferAmount(
2841
+ subjectDid,
2842
+ connectedWalletDid,
2843
+ chainId,
2844
+ "shared-control"
2845
+ );
2846
+ const actualValue = BigInt(tx.value ?? 0n);
2847
+ if (actualValue !== expectedAmount) {
2848
+ return {
2849
+ valid: false,
2850
+ reason: "Wrong amount",
2851
+ details: `Transfer amount ${actualValue.toString()} does not match expected proof amount ${expectedAmount.toString()}.`,
2852
+ subjectDid,
2853
+ connectedWalletDid,
2854
+ controllingWalletDid
2855
+ };
2856
+ }
2857
+ await params.provider.getBlockNumber();
2858
+ await params.provider.getBlock(receipt.blockNumber);
2859
+ return {
2860
+ valid: true,
2861
+ method: "transfer",
2862
+ details: `Verified via transfer proof ${params.txHash}.`,
2863
+ subjectDid,
2864
+ connectedWalletDid,
2865
+ controllingWalletDid
2866
+ };
2867
+ }
2868
+ for (const pattern of OWNERSHIP_PATTERNS) {
2869
+ const ownerAddress = await readOwnerFromContract(
2870
+ params.provider,
2871
+ subjectAddress,
2872
+ pattern.signature,
2873
+ pattern.method
2874
+ );
2875
+ if (ownerAddress && getAddress(ownerAddress) === getAddress(connectedWalletAddress)) {
2876
+ return {
2877
+ valid: true,
2878
+ method: "contract",
2879
+ details: `Verified via ${pattern.method}() ownership check.`,
2880
+ subjectDid,
2881
+ connectedWalletDid,
2882
+ controllingWalletDid: controllingWalletDid ?? void 0
2883
+ };
2884
+ }
2885
+ }
2886
+ try {
2887
+ const adminValue = await params.provider.getStorage(subjectAddress, EIP1967_ADMIN_SLOT);
2888
+ if (adminValue && adminValue !== "0x" && adminValue !== "0x0000000000000000000000000000000000000000000000000000000000000000") {
2889
+ const adminAddress = getAddress(`0x${adminValue.slice(-40)}`);
2890
+ if (adminAddress === getAddress(connectedWalletAddress)) {
2891
+ return {
2892
+ valid: true,
2893
+ method: "contract",
2894
+ details: "Verified via EIP-1967 admin slot.",
2895
+ subjectDid,
2896
+ connectedWalletDid,
2897
+ controllingWalletDid: controllingWalletDid ?? buildEvmDidPkh(chainId, adminAddress)
2898
+ };
2899
+ }
2900
+ }
2901
+ } catch {
2902
+ }
2903
+ if (getAddress(subjectAddress) === getAddress(connectedWalletAddress) && controllingWalletDid) {
2904
+ return {
2905
+ valid: true,
2906
+ method: "minting-wallet",
2907
+ details: `Verified because connected wallet matches the contract DID address. Controlling wallet is ${controllingWalletDid}.`,
2908
+ subjectDid,
2909
+ connectedWalletDid,
2910
+ controllingWalletDid
2911
+ };
2912
+ }
2913
+ return {
2914
+ valid: false,
2915
+ reason: "Contract ownership verification failed",
2916
+ details: controllingWalletDid ? `Connected wallet ${connectedWalletDid} does not match the controlling wallet ${controllingWalletDid} or the subject contract address ${subjectDid}.` : `Could not match connected wallet ${connectedWalletDid} to contract ownership for ${subjectDid}.`,
2917
+ subjectDid,
2918
+ connectedWalletDid,
2919
+ controllingWalletDid: controllingWalletDid ?? void 0
2920
+ };
2921
+ }
2922
+ async function verifySubjectOwnership(params) {
2923
+ const subjectDid = normalizeSubjectDid(params.subjectDid);
2924
+ const method = extractDidMethod(subjectDid);
2925
+ if (method === "web") {
2926
+ return verifyDidWebOwnership(params);
2927
+ }
2928
+ if (method === "pkh") {
2929
+ const didPkhParams = params;
2930
+ if (!didPkhParams.provider) {
2931
+ throw new OmaTrustError(
2932
+ "INVALID_INPUT",
2933
+ "provider is required for did:pkh ownership verification",
2934
+ { subjectDid }
2935
+ );
2936
+ }
2937
+ return verifyDidPkhOwnership(didPkhParams);
2938
+ }
2939
+ throw new OmaTrustError("INVALID_INPUT", "Unsupported DID type for ownership verification", {
2940
+ subjectDid
2941
+ });
2942
+ }
2943
+
2944
+ export { buildDelegatedAttestationTypedData, buildDelegatedTypedDataFromEncoded, buildDnsTxtRecord, buildEip712Domain, calculateAverageUserReviewRating, calculateTransferAmount, calculateTransferAmountFromAddresses, callControllerWitness, constructSeed, createEvidencePointerProof, createPopEip712Proof, createPopJwsProof, createTxEncodedValueProof, createTxInteractionProof, createX402OfferProof, createX402ReceiptProof, decodeAttestationData, deduplicateReviews, encodeAttestationData, extractEvmAddressesFromDidDocument, extractExpirationTime, extractJwksFromDidDocument, fetchDidDocument, formatSchemaUid, formatTransferAmount, getAttestation, getAttestationsByAttester, getAttestationsForDid, getChainConstants, getExplorerAddressUrl, getExplorerTxUrl, getLatestAttestations, getMajorVersion, getOmaTrustProofEip712Types, getSchemaDetails, getSupportedChainIds, hashSeed, isChainSupported, listAttestations, normalizeSchema, parseDnsTxtRecord, prepareDelegatedAttestation, requestControllerWitness, revokeAttestation, schemaToString, splitSignature, submitAttestation, submitDelegatedAttestation, validateAttestationData, verifyAttestation, verifyDidDocumentControllerDid, verifyDidJsonControllerDid, verifyDidPkhOwnership, verifyDidWebOwnership, verifyDnsTxtControllerDid2 as verifyDnsTxtControllerDid, verifyEip712Signature, verifyProof, verifySchemaExists, verifySubjectOwnership };
2945
+ //# sourceMappingURL=index.browser.js.map
2946
+ //# sourceMappingURL=index.browser.js.map