@oma3/omatrust 0.1.0-alpha.5 → 0.1.0-alpha.6

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.
package/README.md CHANGED
@@ -3,7 +3,9 @@
3
3
  Framework-agnostic TypeScript SDK for OMATrust.
4
4
 
5
5
  Current npm state:
6
- - Published prerelease: `0.1.0-alpha.0`
6
+ - As of February 25, 2026:
7
+ - `latest` -> `0.1.0-alpha.5`
8
+ - `alpha` -> `0.1.0-alpha.5`
7
9
  - Scope: `@oma3/omatrust`
8
10
 
9
11
  ## Install
@@ -14,10 +16,16 @@ Install current published package:
14
16
  npm install @oma3/omatrust ethers
15
17
  ```
16
18
 
17
- If you want to pin the current prerelease explicitly:
19
+ Install the current `alpha` tag explicitly:
18
20
 
19
21
  ```bash
20
- npm install @oma3/omatrust@0.1.0-alpha.0 ethers
22
+ npm install @oma3/omatrust@alpha ethers
23
+ ```
24
+
25
+ If you want to pin an exact version:
26
+
27
+ ```bash
28
+ npm install @oma3/omatrust@0.1.0-alpha.5 ethers
21
29
  ```
22
30
 
23
31
  If you use the reputation module, also install EAS SDK:
@@ -44,15 +52,21 @@ npm install @ethereum-attestation-service/eas-sdk
44
52
  - trait hashing + metadata keys
45
53
  - data hash verification
46
54
 
55
+ - Check current dist-tags:
56
+
57
+ ```bash
58
+ npm dist-tag ls @oma3/omatrust
59
+ ```
60
+
47
61
  ## Documentation
48
62
 
49
63
  Use the OMATrust developer docs as the canonical source for quick starts and API examples:
50
64
 
51
65
  - [SDK Getting Started](https://github.com/oma3dao/developer-docs/blob/main/docs/sdk/getting-started.md)
52
- - [Reputation SDK Guide](https://github.com/oma3dao/developer-docs/blob/main/docs/sdk/reputation-sdk.md)
53
- - [Reputation SDK Reference](https://github.com/oma3dao/developer-docs/blob/main/docs/sdk/reputation-reference.md)
54
- - [Identity SDK Reference](https://github.com/oma3dao/developer-docs/blob/main/docs/sdk/identity-reference.md)
55
- - [App Registry SDK Reference](https://github.com/oma3dao/developer-docs/blob/main/docs/sdk/app-registry-reference.md)
66
+ - [SDK Guides](https://github.com/oma3dao/developer-docs/blob/main/docs/sdk/guides.md)
67
+ - [Reputation SDK Reference](https://github.com/oma3dao/developer-docs/blob/main/docs/sdk/api-reference/reputation-sdk.md)
68
+ - [Identity SDK Reference](https://github.com/oma3dao/developer-docs/blob/main/docs/sdk/api-reference/identity-sdk.md)
69
+ - [App Registry SDK Reference](https://github.com/oma3dao/developer-docs/blob/main/docs/app-registry/registry-sdk-reference.md)
56
70
 
57
71
  ## Notes
58
72
 
@@ -7,6 +7,12 @@ type SchemaField = {
7
7
  type: string;
8
8
  value?: unknown;
9
9
  };
10
+ type AttestationValidationError = {
11
+ schemaFieldName: string;
12
+ expectedType: string;
13
+ providedType: string;
14
+ providedValue: unknown;
15
+ };
10
16
  type AttestationQueryResult = {
11
17
  uid: Hex;
12
18
  schema: Hex;
@@ -110,6 +116,17 @@ type SubmitAttestationResult = {
110
116
  txHash: Hex;
111
117
  receipt?: unknown;
112
118
  };
119
+ type RevokeAttestationParams = {
120
+ signer: unknown;
121
+ easContractAddress: Hex;
122
+ schemaUid: Hex;
123
+ uid: Hex;
124
+ value?: bigint | number;
125
+ };
126
+ type RevokeAttestationResult = {
127
+ txHash: Hex;
128
+ receipt?: unknown;
129
+ };
113
130
  type PrepareDelegatedAttestationParams = {
114
131
  chainId: number;
115
132
  easContractAddress: Hex;
@@ -172,6 +189,15 @@ type ListAttestationsParams = {
172
189
  fromBlock?: number;
173
190
  toBlock?: number;
174
191
  };
192
+ type GetAttestationsByAttesterParams = {
193
+ attester: Hex;
194
+ provider: unknown;
195
+ easContractAddress: Hex;
196
+ schemas?: Hex[];
197
+ limit?: number;
198
+ fromBlock?: number;
199
+ toBlock?: number;
200
+ };
175
201
  type VerifyAttestationParams = {
176
202
  attestation: AttestationQueryResult;
177
203
  provider?: unknown;
@@ -212,6 +238,8 @@ type VerifyProofResult = {
212
238
 
213
239
  declare function submitAttestation(params: SubmitAttestationParams): Promise<SubmitAttestationResult>;
214
240
 
241
+ declare function revokeAttestation(params: RevokeAttestationParams): Promise<RevokeAttestationResult>;
242
+
215
243
  declare function buildDelegatedAttestationTypedData(params: PrepareDelegatedAttestationParams): {
216
244
  domain: Record<string, unknown>;
217
245
  types: Record<string, unknown>;
@@ -232,6 +260,7 @@ declare function submitDelegatedAttestation(params: SubmitDelegatedAttestationPa
232
260
 
233
261
  declare function getAttestation(params: GetAttestationParams): Promise<AttestationQueryResult>;
234
262
  declare function getAttestationsForDid(params: ListAttestationsParams): Promise<AttestationQueryResult[]>;
263
+ declare function getAttestationsByAttester(params: GetAttestationsByAttesterParams): Promise<AttestationQueryResult[]>;
235
264
  declare function listAttestations(params: ListAttestationsParams): Promise<AttestationQueryResult[]>;
236
265
  type GetLatestAttestationsParams = {
237
266
  provider: unknown;
@@ -251,6 +280,7 @@ declare function verifyAttestation(params: VerifyAttestationParams): Promise<Ver
251
280
  declare function normalizeSchema(schema: SchemaField[] | string): SchemaField[];
252
281
  declare function schemaToString(schema: SchemaField[] | string): string;
253
282
  declare function encodeAttestationData(schema: SchemaField[] | string, data: Record<string, unknown>): Hex;
283
+ declare function validateAttestationData(schema: SchemaField[] | string, data: Record<string, unknown>): AttestationValidationError[];
254
284
  declare function decodeAttestationData(schema: SchemaField[] | string, encodedData: Hex): Record<string, unknown>;
255
285
  declare function extractExpirationTime(data: Record<string, unknown>): bigint | number | undefined;
256
286
 
@@ -342,4 +372,4 @@ declare function verifyEip712Signature(typedData: {
342
372
  signer?: string;
343
373
  };
344
374
 
345
- export { extractExpirationTime as $, type AttestationQueryResult as A, type BuildDelegatedTypedDataFromEncodedParams as B, type CallControllerWitnessParams as C, type Did as D, type EvidencePointerProof as E, calculateTransferAmountFromAddresses as F, type GetAttestationParams as G, type Hex as H, callControllerWitness as I, constructSeed as J, createEvidencePointerProof as K, type ListAttestationsParams as L, createPopEip712Proof as M, createPopJwsProof as N, createTxEncodedValueProof as O, type PopEip712Proof as P, createTxInteractionProof as Q, createX402OfferProof as R, type SchemaField as S, type TxEncodedValueProof as T, createX402ReceiptProof as U, type VerifyAttestationParams as V, decodeAttestationData as W, type X402OfferProof as X, deduplicateReviews as Y, encodeAttestationData as Z, extractAddressesFromDidDocument as _, type CallControllerWitnessResult as a, fetchDidDocument as a0, formatSchemaUid as a1, formatTransferAmount as a2, getAttestation as a3, getAttestationsForDid as a4, getChainConstants as a5, getExplorerAddressUrl as a6, getExplorerTxUrl as a7, getLatestAttestations as a8, getMajorVersion as a9, getOmaTrustProofEip712Types as aa, getSchemaDetails as ab, getSupportedChainIds as ac, hashSeed as ad, isChainSupported as ae, listAttestations as af, normalizeSchema as ag, parseDnsTxtRecord as ah, prepareDelegatedAttestation as ai, schemaToString as aj, splitSignature as ak, submitAttestation as al, submitDelegatedAttestation as am, verifyAttestation as an, verifyDidDocumentControllerDid as ao, verifyEip712Signature as ap, verifyProof as aq, verifySchemaExists as ar, type ChainConstants as b, type CreatePopEip712ProofParams as c, type CreatePopJwsProofParams as d, type GetLatestAttestationsParams as e, type PopJwsProof as f, type PrepareDelegatedAttestationParams as g, type PrepareDelegatedAttestationResult as h, type ProofPurpose as i, type ProofType as j, type ProofWrapper as k, type SubmitAttestationParams as l, type SubmitAttestationResult as m, type SubmitDelegatedAttestationParams as n, type SubmitDelegatedAttestationResult as o, type TxInteractionProof as p, type VerifyAttestationResult as q, type VerifyProofParams as r, type VerifyProofResult as s, type X402ReceiptProof as t, buildDelegatedAttestationTypedData as u, buildDelegatedTypedDataFromEncoded as v, buildDnsTxtRecord as w, buildEip712Domain as x, calculateAverageUserReviewRating as y, calculateTransferAmount as z };
375
+ export { decodeAttestationData as $, type AttestationQueryResult as A, type BuildDelegatedTypedDataFromEncodedParams as B, type CallControllerWitnessParams as C, type Did as D, type EvidencePointerProof as E, buildEip712Domain as F, type GetAttestationParams as G, type Hex as H, calculateAverageUserReviewRating as I, calculateTransferAmount as J, calculateTransferAmountFromAddresses as K, type ListAttestationsParams as L, callControllerWitness as M, constructSeed as N, createEvidencePointerProof as O, type PopEip712Proof as P, createPopEip712Proof as Q, type RevokeAttestationParams as R, type SchemaField as S, type TxEncodedValueProof as T, createPopJwsProof as U, type VerifyAttestationParams as V, createTxEncodedValueProof as W, type X402OfferProof as X, createTxInteractionProof as Y, createX402OfferProof as Z, createX402ReceiptProof as _, type AttestationValidationError as a, deduplicateReviews as a0, encodeAttestationData as a1, extractAddressesFromDidDocument as a2, extractExpirationTime as a3, fetchDidDocument as a4, formatSchemaUid as a5, formatTransferAmount as a6, getAttestation as a7, getAttestationsByAttester as a8, getAttestationsForDid as a9, getChainConstants as aa, getExplorerAddressUrl as ab, getExplorerTxUrl as ac, getLatestAttestations as ad, getMajorVersion as ae, getOmaTrustProofEip712Types as af, getSchemaDetails as ag, getSupportedChainIds as ah, hashSeed as ai, isChainSupported as aj, listAttestations as ak, normalizeSchema as al, parseDnsTxtRecord as am, prepareDelegatedAttestation as an, revokeAttestation as ao, schemaToString as ap, splitSignature as aq, submitAttestation as ar, submitDelegatedAttestation as as, validateAttestationData as at, verifyAttestation as au, verifyDidDocumentControllerDid as av, verifyEip712Signature as aw, verifyProof as ax, verifySchemaExists as ay, type CallControllerWitnessResult as b, type ChainConstants as c, type CreatePopEip712ProofParams as d, type CreatePopJwsProofParams as e, type GetAttestationsByAttesterParams as f, type GetLatestAttestationsParams as g, type PopJwsProof as h, type PrepareDelegatedAttestationParams as i, type PrepareDelegatedAttestationResult as j, type ProofPurpose as k, type ProofType as l, type ProofWrapper as m, type RevokeAttestationResult as n, type SubmitAttestationParams as o, type SubmitAttestationResult as p, type SubmitDelegatedAttestationParams as q, type SubmitDelegatedAttestationResult as r, type TxInteractionProof as s, type VerifyAttestationResult as t, type VerifyProofParams as u, type VerifyProofResult as v, type X402ReceiptProof as w, buildDelegatedAttestationTypedData as x, buildDelegatedTypedDataFromEncoded as y, buildDnsTxtRecord as z };
@@ -7,6 +7,12 @@ type SchemaField = {
7
7
  type: string;
8
8
  value?: unknown;
9
9
  };
10
+ type AttestationValidationError = {
11
+ schemaFieldName: string;
12
+ expectedType: string;
13
+ providedType: string;
14
+ providedValue: unknown;
15
+ };
10
16
  type AttestationQueryResult = {
11
17
  uid: Hex;
12
18
  schema: Hex;
@@ -110,6 +116,17 @@ type SubmitAttestationResult = {
110
116
  txHash: Hex;
111
117
  receipt?: unknown;
112
118
  };
119
+ type RevokeAttestationParams = {
120
+ signer: unknown;
121
+ easContractAddress: Hex;
122
+ schemaUid: Hex;
123
+ uid: Hex;
124
+ value?: bigint | number;
125
+ };
126
+ type RevokeAttestationResult = {
127
+ txHash: Hex;
128
+ receipt?: unknown;
129
+ };
113
130
  type PrepareDelegatedAttestationParams = {
114
131
  chainId: number;
115
132
  easContractAddress: Hex;
@@ -172,6 +189,15 @@ type ListAttestationsParams = {
172
189
  fromBlock?: number;
173
190
  toBlock?: number;
174
191
  };
192
+ type GetAttestationsByAttesterParams = {
193
+ attester: Hex;
194
+ provider: unknown;
195
+ easContractAddress: Hex;
196
+ schemas?: Hex[];
197
+ limit?: number;
198
+ fromBlock?: number;
199
+ toBlock?: number;
200
+ };
175
201
  type VerifyAttestationParams = {
176
202
  attestation: AttestationQueryResult;
177
203
  provider?: unknown;
@@ -212,6 +238,8 @@ type VerifyProofResult = {
212
238
 
213
239
  declare function submitAttestation(params: SubmitAttestationParams): Promise<SubmitAttestationResult>;
214
240
 
241
+ declare function revokeAttestation(params: RevokeAttestationParams): Promise<RevokeAttestationResult>;
242
+
215
243
  declare function buildDelegatedAttestationTypedData(params: PrepareDelegatedAttestationParams): {
216
244
  domain: Record<string, unknown>;
217
245
  types: Record<string, unknown>;
@@ -232,6 +260,7 @@ declare function submitDelegatedAttestation(params: SubmitDelegatedAttestationPa
232
260
 
233
261
  declare function getAttestation(params: GetAttestationParams): Promise<AttestationQueryResult>;
234
262
  declare function getAttestationsForDid(params: ListAttestationsParams): Promise<AttestationQueryResult[]>;
263
+ declare function getAttestationsByAttester(params: GetAttestationsByAttesterParams): Promise<AttestationQueryResult[]>;
235
264
  declare function listAttestations(params: ListAttestationsParams): Promise<AttestationQueryResult[]>;
236
265
  type GetLatestAttestationsParams = {
237
266
  provider: unknown;
@@ -251,6 +280,7 @@ declare function verifyAttestation(params: VerifyAttestationParams): Promise<Ver
251
280
  declare function normalizeSchema(schema: SchemaField[] | string): SchemaField[];
252
281
  declare function schemaToString(schema: SchemaField[] | string): string;
253
282
  declare function encodeAttestationData(schema: SchemaField[] | string, data: Record<string, unknown>): Hex;
283
+ declare function validateAttestationData(schema: SchemaField[] | string, data: Record<string, unknown>): AttestationValidationError[];
254
284
  declare function decodeAttestationData(schema: SchemaField[] | string, encodedData: Hex): Record<string, unknown>;
255
285
  declare function extractExpirationTime(data: Record<string, unknown>): bigint | number | undefined;
256
286
 
@@ -342,4 +372,4 @@ declare function verifyEip712Signature(typedData: {
342
372
  signer?: string;
343
373
  };
344
374
 
345
- export { extractExpirationTime as $, type AttestationQueryResult as A, type BuildDelegatedTypedDataFromEncodedParams as B, type CallControllerWitnessParams as C, type Did as D, type EvidencePointerProof as E, calculateTransferAmountFromAddresses as F, type GetAttestationParams as G, type Hex as H, callControllerWitness as I, constructSeed as J, createEvidencePointerProof as K, type ListAttestationsParams as L, createPopEip712Proof as M, createPopJwsProof as N, createTxEncodedValueProof as O, type PopEip712Proof as P, createTxInteractionProof as Q, createX402OfferProof as R, type SchemaField as S, type TxEncodedValueProof as T, createX402ReceiptProof as U, type VerifyAttestationParams as V, decodeAttestationData as W, type X402OfferProof as X, deduplicateReviews as Y, encodeAttestationData as Z, extractAddressesFromDidDocument as _, type CallControllerWitnessResult as a, fetchDidDocument as a0, formatSchemaUid as a1, formatTransferAmount as a2, getAttestation as a3, getAttestationsForDid as a4, getChainConstants as a5, getExplorerAddressUrl as a6, getExplorerTxUrl as a7, getLatestAttestations as a8, getMajorVersion as a9, getOmaTrustProofEip712Types as aa, getSchemaDetails as ab, getSupportedChainIds as ac, hashSeed as ad, isChainSupported as ae, listAttestations as af, normalizeSchema as ag, parseDnsTxtRecord as ah, prepareDelegatedAttestation as ai, schemaToString as aj, splitSignature as ak, submitAttestation as al, submitDelegatedAttestation as am, verifyAttestation as an, verifyDidDocumentControllerDid as ao, verifyEip712Signature as ap, verifyProof as aq, verifySchemaExists as ar, type ChainConstants as b, type CreatePopEip712ProofParams as c, type CreatePopJwsProofParams as d, type GetLatestAttestationsParams as e, type PopJwsProof as f, type PrepareDelegatedAttestationParams as g, type PrepareDelegatedAttestationResult as h, type ProofPurpose as i, type ProofType as j, type ProofWrapper as k, type SubmitAttestationParams as l, type SubmitAttestationResult as m, type SubmitDelegatedAttestationParams as n, type SubmitDelegatedAttestationResult as o, type TxInteractionProof as p, type VerifyAttestationResult as q, type VerifyProofParams as r, type VerifyProofResult as s, type X402ReceiptProof as t, buildDelegatedAttestationTypedData as u, buildDelegatedTypedDataFromEncoded as v, buildDnsTxtRecord as w, buildEip712Domain as x, calculateAverageUserReviewRating as y, calculateTransferAmount as z };
375
+ export { decodeAttestationData as $, type AttestationQueryResult as A, type BuildDelegatedTypedDataFromEncodedParams as B, type CallControllerWitnessParams as C, type Did as D, type EvidencePointerProof as E, buildEip712Domain as F, type GetAttestationParams as G, type Hex as H, calculateAverageUserReviewRating as I, calculateTransferAmount as J, calculateTransferAmountFromAddresses as K, type ListAttestationsParams as L, callControllerWitness as M, constructSeed as N, createEvidencePointerProof as O, type PopEip712Proof as P, createPopEip712Proof as Q, type RevokeAttestationParams as R, type SchemaField as S, type TxEncodedValueProof as T, createPopJwsProof as U, type VerifyAttestationParams as V, createTxEncodedValueProof as W, type X402OfferProof as X, createTxInteractionProof as Y, createX402OfferProof as Z, createX402ReceiptProof as _, type AttestationValidationError as a, deduplicateReviews as a0, encodeAttestationData as a1, extractAddressesFromDidDocument as a2, extractExpirationTime as a3, fetchDidDocument as a4, formatSchemaUid as a5, formatTransferAmount as a6, getAttestation as a7, getAttestationsByAttester as a8, getAttestationsForDid as a9, getChainConstants as aa, getExplorerAddressUrl as ab, getExplorerTxUrl as ac, getLatestAttestations as ad, getMajorVersion as ae, getOmaTrustProofEip712Types as af, getSchemaDetails as ag, getSupportedChainIds as ah, hashSeed as ai, isChainSupported as aj, listAttestations as ak, normalizeSchema as al, parseDnsTxtRecord as am, prepareDelegatedAttestation as an, revokeAttestation as ao, schemaToString as ap, splitSignature as aq, submitAttestation as ar, submitDelegatedAttestation as as, validateAttestationData as at, verifyAttestation as au, verifyDidDocumentControllerDid as av, verifyEip712Signature as aw, verifyProof as ax, verifySchemaExists as ay, type CallControllerWitnessResult as b, type ChainConstants as c, type CreatePopEip712ProofParams as d, type CreatePopJwsProofParams as e, type GetAttestationsByAttesterParams as f, type GetLatestAttestationsParams as g, type PopJwsProof as h, type PrepareDelegatedAttestationParams as i, type PrepareDelegatedAttestationResult as j, type ProofPurpose as k, type ProofType as l, type ProofWrapper as m, type RevokeAttestationResult as n, type SubmitAttestationParams as o, type SubmitAttestationResult as p, type SubmitDelegatedAttestationParams as q, type SubmitDelegatedAttestationResult as r, type TxInteractionProof as s, type VerifyAttestationResult as t, type VerifyProofParams as u, type VerifyProofResult as v, type X402ReceiptProof as w, buildDelegatedAttestationTypedData as x, buildDelegatedTypedDataFromEncoded as y, buildDnsTxtRecord as z };
@@ -0,0 +1,103 @@
1
+ import { D as Did, A as AttestationQueryResult, a as AttestationValidationError, B as BuildDelegatedTypedDataFromEncodedParams, C as CallControllerWitnessParams, b as CallControllerWitnessResult, c as ChainConstants, d as CreatePopEip712ProofParams, e as CreatePopJwsProofParams, E as EvidencePointerProof, G as GetAttestationParams, f as GetAttestationsByAttesterParams, g as GetLatestAttestationsParams, H as Hex, L as ListAttestationsParams, P as PopEip712Proof, h as PopJwsProof, i as PrepareDelegatedAttestationParams, j as PrepareDelegatedAttestationResult, k as ProofPurpose, l as ProofType, m as ProofWrapper, R as RevokeAttestationParams, n as RevokeAttestationResult, S as SchemaField, o as SubmitAttestationParams, p as SubmitAttestationResult, q as SubmitDelegatedAttestationParams, r as SubmitDelegatedAttestationResult, T as TxEncodedValueProof, s as TxInteractionProof, V as VerifyAttestationParams, t as VerifyAttestationResult, u as VerifyProofParams, v as VerifyProofResult, X as X402OfferProof, w as X402ReceiptProof, x as buildDelegatedAttestationTypedData, y as buildDelegatedTypedDataFromEncoded, z as buildDnsTxtRecord, F as buildEip712Domain, I as calculateAverageUserReviewRating, J as calculateTransferAmount, K as calculateTransferAmountFromAddresses, M as callControllerWitness, N as constructSeed, O as createEvidencePointerProof, Q as createPopEip712Proof, U as createPopJwsProof, W as createTxEncodedValueProof, Y as createTxInteractionProof, Z as createX402OfferProof, _ as createX402ReceiptProof, $ as decodeAttestationData, a0 as deduplicateReviews, a1 as encodeAttestationData, a2 as extractAddressesFromDidDocument, a3 as extractExpirationTime, a4 as fetchDidDocument, a5 as formatSchemaUid, a6 as formatTransferAmount, a7 as getAttestation, a8 as getAttestationsByAttester, a9 as getAttestationsForDid, aa as getChainConstants, ab as getExplorerAddressUrl, ac as getExplorerTxUrl, ad as getLatestAttestations, ae as getMajorVersion, af as getOmaTrustProofEip712Types, ag as getSchemaDetails, ah as getSupportedChainIds, ai as hashSeed, aj as isChainSupported, ak as listAttestations, al as normalizeSchema, am as parseDnsTxtRecord, an as prepareDelegatedAttestation, ao as revokeAttestation, ap as schemaToString, aq as splitSignature, ar as submitAttestation, as as submitDelegatedAttestation, at as validateAttestationData, au as verifyAttestation, av as verifyDidDocumentControllerDid, aw as verifyEip712Signature, ax as verifyProof, ay as verifySchemaExists } from './eip712-CevLiOcD.cjs';
2
+
3
+ declare function verifyDnsTxtControllerDid(domain: string, expectedControllerDid: Did): Promise<{
4
+ valid: boolean;
5
+ record?: string;
6
+ reason?: string;
7
+ }>;
8
+
9
+ declare const index_AttestationQueryResult: typeof AttestationQueryResult;
10
+ declare const index_AttestationValidationError: typeof AttestationValidationError;
11
+ declare const index_BuildDelegatedTypedDataFromEncodedParams: typeof BuildDelegatedTypedDataFromEncodedParams;
12
+ declare const index_CallControllerWitnessParams: typeof CallControllerWitnessParams;
13
+ declare const index_CallControllerWitnessResult: typeof CallControllerWitnessResult;
14
+ declare const index_ChainConstants: typeof ChainConstants;
15
+ declare const index_CreatePopEip712ProofParams: typeof CreatePopEip712ProofParams;
16
+ declare const index_CreatePopJwsProofParams: typeof CreatePopJwsProofParams;
17
+ declare const index_Did: typeof Did;
18
+ declare const index_EvidencePointerProof: typeof EvidencePointerProof;
19
+ declare const index_GetAttestationParams: typeof GetAttestationParams;
20
+ declare const index_GetAttestationsByAttesterParams: typeof GetAttestationsByAttesterParams;
21
+ declare const index_GetLatestAttestationsParams: typeof GetLatestAttestationsParams;
22
+ declare const index_Hex: typeof Hex;
23
+ declare const index_ListAttestationsParams: typeof ListAttestationsParams;
24
+ declare const index_PopEip712Proof: typeof PopEip712Proof;
25
+ declare const index_PopJwsProof: typeof PopJwsProof;
26
+ declare const index_PrepareDelegatedAttestationParams: typeof PrepareDelegatedAttestationParams;
27
+ declare const index_PrepareDelegatedAttestationResult: typeof PrepareDelegatedAttestationResult;
28
+ declare const index_ProofPurpose: typeof ProofPurpose;
29
+ declare const index_ProofType: typeof ProofType;
30
+ declare const index_ProofWrapper: typeof ProofWrapper;
31
+ declare const index_RevokeAttestationParams: typeof RevokeAttestationParams;
32
+ declare const index_RevokeAttestationResult: typeof RevokeAttestationResult;
33
+ declare const index_SchemaField: typeof SchemaField;
34
+ declare const index_SubmitAttestationParams: typeof SubmitAttestationParams;
35
+ declare const index_SubmitAttestationResult: typeof SubmitAttestationResult;
36
+ declare const index_SubmitDelegatedAttestationParams: typeof SubmitDelegatedAttestationParams;
37
+ declare const index_SubmitDelegatedAttestationResult: typeof SubmitDelegatedAttestationResult;
38
+ declare const index_TxEncodedValueProof: typeof TxEncodedValueProof;
39
+ declare const index_TxInteractionProof: typeof TxInteractionProof;
40
+ declare const index_VerifyAttestationParams: typeof VerifyAttestationParams;
41
+ declare const index_VerifyAttestationResult: typeof VerifyAttestationResult;
42
+ declare const index_VerifyProofParams: typeof VerifyProofParams;
43
+ declare const index_VerifyProofResult: typeof VerifyProofResult;
44
+ declare const index_X402OfferProof: typeof X402OfferProof;
45
+ declare const index_X402ReceiptProof: typeof X402ReceiptProof;
46
+ declare const index_buildDelegatedAttestationTypedData: typeof buildDelegatedAttestationTypedData;
47
+ declare const index_buildDelegatedTypedDataFromEncoded: typeof buildDelegatedTypedDataFromEncoded;
48
+ declare const index_buildDnsTxtRecord: typeof buildDnsTxtRecord;
49
+ declare const index_buildEip712Domain: typeof buildEip712Domain;
50
+ declare const index_calculateAverageUserReviewRating: typeof calculateAverageUserReviewRating;
51
+ declare const index_calculateTransferAmount: typeof calculateTransferAmount;
52
+ declare const index_calculateTransferAmountFromAddresses: typeof calculateTransferAmountFromAddresses;
53
+ declare const index_callControllerWitness: typeof callControllerWitness;
54
+ declare const index_constructSeed: typeof constructSeed;
55
+ declare const index_createEvidencePointerProof: typeof createEvidencePointerProof;
56
+ declare const index_createPopEip712Proof: typeof createPopEip712Proof;
57
+ declare const index_createPopJwsProof: typeof createPopJwsProof;
58
+ declare const index_createTxEncodedValueProof: typeof createTxEncodedValueProof;
59
+ declare const index_createTxInteractionProof: typeof createTxInteractionProof;
60
+ declare const index_createX402OfferProof: typeof createX402OfferProof;
61
+ declare const index_createX402ReceiptProof: typeof createX402ReceiptProof;
62
+ declare const index_decodeAttestationData: typeof decodeAttestationData;
63
+ declare const index_deduplicateReviews: typeof deduplicateReviews;
64
+ declare const index_encodeAttestationData: typeof encodeAttestationData;
65
+ declare const index_extractAddressesFromDidDocument: typeof extractAddressesFromDidDocument;
66
+ declare const index_extractExpirationTime: typeof extractExpirationTime;
67
+ declare const index_fetchDidDocument: typeof fetchDidDocument;
68
+ declare const index_formatSchemaUid: typeof formatSchemaUid;
69
+ declare const index_formatTransferAmount: typeof formatTransferAmount;
70
+ declare const index_getAttestation: typeof getAttestation;
71
+ declare const index_getAttestationsByAttester: typeof getAttestationsByAttester;
72
+ declare const index_getAttestationsForDid: typeof getAttestationsForDid;
73
+ declare const index_getChainConstants: typeof getChainConstants;
74
+ declare const index_getExplorerAddressUrl: typeof getExplorerAddressUrl;
75
+ declare const index_getExplorerTxUrl: typeof getExplorerTxUrl;
76
+ declare const index_getLatestAttestations: typeof getLatestAttestations;
77
+ declare const index_getMajorVersion: typeof getMajorVersion;
78
+ declare const index_getOmaTrustProofEip712Types: typeof getOmaTrustProofEip712Types;
79
+ declare const index_getSchemaDetails: typeof getSchemaDetails;
80
+ declare const index_getSupportedChainIds: typeof getSupportedChainIds;
81
+ declare const index_hashSeed: typeof hashSeed;
82
+ declare const index_isChainSupported: typeof isChainSupported;
83
+ declare const index_listAttestations: typeof listAttestations;
84
+ declare const index_normalizeSchema: typeof normalizeSchema;
85
+ declare const index_parseDnsTxtRecord: typeof parseDnsTxtRecord;
86
+ declare const index_prepareDelegatedAttestation: typeof prepareDelegatedAttestation;
87
+ declare const index_revokeAttestation: typeof revokeAttestation;
88
+ declare const index_schemaToString: typeof schemaToString;
89
+ declare const index_splitSignature: typeof splitSignature;
90
+ declare const index_submitAttestation: typeof submitAttestation;
91
+ declare const index_submitDelegatedAttestation: typeof submitDelegatedAttestation;
92
+ declare const index_validateAttestationData: typeof validateAttestationData;
93
+ declare const index_verifyAttestation: typeof verifyAttestation;
94
+ declare const index_verifyDidDocumentControllerDid: typeof verifyDidDocumentControllerDid;
95
+ declare const index_verifyDnsTxtControllerDid: typeof verifyDnsTxtControllerDid;
96
+ declare const index_verifyEip712Signature: typeof verifyEip712Signature;
97
+ declare const index_verifyProof: typeof verifyProof;
98
+ declare const index_verifySchemaExists: typeof verifySchemaExists;
99
+ declare namespace index {
100
+ export { index_AttestationQueryResult as AttestationQueryResult, index_AttestationValidationError as AttestationValidationError, index_BuildDelegatedTypedDataFromEncodedParams as BuildDelegatedTypedDataFromEncodedParams, index_CallControllerWitnessParams as CallControllerWitnessParams, index_CallControllerWitnessResult as CallControllerWitnessResult, index_ChainConstants as ChainConstants, index_CreatePopEip712ProofParams as CreatePopEip712ProofParams, index_CreatePopJwsProofParams as CreatePopJwsProofParams, index_Did as Did, index_EvidencePointerProof as EvidencePointerProof, index_GetAttestationParams as GetAttestationParams, index_GetAttestationsByAttesterParams as GetAttestationsByAttesterParams, index_GetLatestAttestationsParams as GetLatestAttestationsParams, index_Hex as Hex, index_ListAttestationsParams as ListAttestationsParams, index_PopEip712Proof as PopEip712Proof, index_PopJwsProof as PopJwsProof, index_PrepareDelegatedAttestationParams as PrepareDelegatedAttestationParams, index_PrepareDelegatedAttestationResult as PrepareDelegatedAttestationResult, index_ProofPurpose as ProofPurpose, index_ProofType as ProofType, index_ProofWrapper as ProofWrapper, index_RevokeAttestationParams as RevokeAttestationParams, index_RevokeAttestationResult as RevokeAttestationResult, index_SchemaField as SchemaField, index_SubmitAttestationParams as SubmitAttestationParams, index_SubmitAttestationResult as SubmitAttestationResult, index_SubmitDelegatedAttestationParams as SubmitDelegatedAttestationParams, index_SubmitDelegatedAttestationResult as SubmitDelegatedAttestationResult, index_TxEncodedValueProof as TxEncodedValueProof, index_TxInteractionProof as TxInteractionProof, index_VerifyAttestationParams as VerifyAttestationParams, index_VerifyAttestationResult as VerifyAttestationResult, index_VerifyProofParams as VerifyProofParams, index_VerifyProofResult as VerifyProofResult, index_X402OfferProof as X402OfferProof, index_X402ReceiptProof as X402ReceiptProof, index_buildDelegatedAttestationTypedData as buildDelegatedAttestationTypedData, index_buildDelegatedTypedDataFromEncoded as buildDelegatedTypedDataFromEncoded, index_buildDnsTxtRecord as buildDnsTxtRecord, index_buildEip712Domain as buildEip712Domain, index_calculateAverageUserReviewRating as calculateAverageUserReviewRating, index_calculateTransferAmount as calculateTransferAmount, index_calculateTransferAmountFromAddresses as calculateTransferAmountFromAddresses, index_callControllerWitness as callControllerWitness, index_constructSeed as constructSeed, index_createEvidencePointerProof as createEvidencePointerProof, index_createPopEip712Proof as createPopEip712Proof, index_createPopJwsProof as createPopJwsProof, index_createTxEncodedValueProof as createTxEncodedValueProof, index_createTxInteractionProof as createTxInteractionProof, index_createX402OfferProof as createX402OfferProof, index_createX402ReceiptProof as createX402ReceiptProof, index_decodeAttestationData as decodeAttestationData, index_deduplicateReviews as deduplicateReviews, index_encodeAttestationData as encodeAttestationData, index_extractAddressesFromDidDocument as extractAddressesFromDidDocument, index_extractExpirationTime as extractExpirationTime, index_fetchDidDocument as fetchDidDocument, index_formatSchemaUid as formatSchemaUid, index_formatTransferAmount as formatTransferAmount, index_getAttestation as getAttestation, index_getAttestationsByAttester as getAttestationsByAttester, index_getAttestationsForDid as getAttestationsForDid, index_getChainConstants as getChainConstants, index_getExplorerAddressUrl as getExplorerAddressUrl, index_getExplorerTxUrl as getExplorerTxUrl, index_getLatestAttestations as getLatestAttestations, index_getMajorVersion as getMajorVersion, index_getOmaTrustProofEip712Types as getOmaTrustProofEip712Types, index_getSchemaDetails as getSchemaDetails, index_getSupportedChainIds as getSupportedChainIds, index_hashSeed as hashSeed, index_isChainSupported as isChainSupported, index_listAttestations as listAttestations, index_normalizeSchema as normalizeSchema, index_parseDnsTxtRecord as parseDnsTxtRecord, index_prepareDelegatedAttestation as prepareDelegatedAttestation, index_revokeAttestation as revokeAttestation, index_schemaToString as schemaToString, index_splitSignature as splitSignature, index_submitAttestation as submitAttestation, index_submitDelegatedAttestation as submitDelegatedAttestation, index_validateAttestationData as validateAttestationData, index_verifyAttestation as verifyAttestation, index_verifyDidDocumentControllerDid as verifyDidDocumentControllerDid, index_verifyDnsTxtControllerDid as verifyDnsTxtControllerDid, index_verifyEip712Signature as verifyEip712Signature, index_verifyProof as verifyProof, index_verifySchemaExists as verifySchemaExists };
101
+ }
102
+
103
+ export { index as i, verifyDnsTxtControllerDid as v };
@@ -0,0 +1,103 @@
1
+ import { D as Did, A as AttestationQueryResult, a as AttestationValidationError, B as BuildDelegatedTypedDataFromEncodedParams, C as CallControllerWitnessParams, b as CallControllerWitnessResult, c as ChainConstants, d as CreatePopEip712ProofParams, e as CreatePopJwsProofParams, E as EvidencePointerProof, G as GetAttestationParams, f as GetAttestationsByAttesterParams, g as GetLatestAttestationsParams, H as Hex, L as ListAttestationsParams, P as PopEip712Proof, h as PopJwsProof, i as PrepareDelegatedAttestationParams, j as PrepareDelegatedAttestationResult, k as ProofPurpose, l as ProofType, m as ProofWrapper, R as RevokeAttestationParams, n as RevokeAttestationResult, S as SchemaField, o as SubmitAttestationParams, p as SubmitAttestationResult, q as SubmitDelegatedAttestationParams, r as SubmitDelegatedAttestationResult, T as TxEncodedValueProof, s as TxInteractionProof, V as VerifyAttestationParams, t as VerifyAttestationResult, u as VerifyProofParams, v as VerifyProofResult, X as X402OfferProof, w as X402ReceiptProof, x as buildDelegatedAttestationTypedData, y as buildDelegatedTypedDataFromEncoded, z as buildDnsTxtRecord, F as buildEip712Domain, I as calculateAverageUserReviewRating, J as calculateTransferAmount, K as calculateTransferAmountFromAddresses, M as callControllerWitness, N as constructSeed, O as createEvidencePointerProof, Q as createPopEip712Proof, U as createPopJwsProof, W as createTxEncodedValueProof, Y as createTxInteractionProof, Z as createX402OfferProof, _ as createX402ReceiptProof, $ as decodeAttestationData, a0 as deduplicateReviews, a1 as encodeAttestationData, a2 as extractAddressesFromDidDocument, a3 as extractExpirationTime, a4 as fetchDidDocument, a5 as formatSchemaUid, a6 as formatTransferAmount, a7 as getAttestation, a8 as getAttestationsByAttester, a9 as getAttestationsForDid, aa as getChainConstants, ab as getExplorerAddressUrl, ac as getExplorerTxUrl, ad as getLatestAttestations, ae as getMajorVersion, af as getOmaTrustProofEip712Types, ag as getSchemaDetails, ah as getSupportedChainIds, ai as hashSeed, aj as isChainSupported, ak as listAttestations, al as normalizeSchema, am as parseDnsTxtRecord, an as prepareDelegatedAttestation, ao as revokeAttestation, ap as schemaToString, aq as splitSignature, ar as submitAttestation, as as submitDelegatedAttestation, at as validateAttestationData, au as verifyAttestation, av as verifyDidDocumentControllerDid, aw as verifyEip712Signature, ax as verifyProof, ay as verifySchemaExists } from './eip712-CevLiOcD.js';
2
+
3
+ declare function verifyDnsTxtControllerDid(domain: string, expectedControllerDid: Did): Promise<{
4
+ valid: boolean;
5
+ record?: string;
6
+ reason?: string;
7
+ }>;
8
+
9
+ declare const index_AttestationQueryResult: typeof AttestationQueryResult;
10
+ declare const index_AttestationValidationError: typeof AttestationValidationError;
11
+ declare const index_BuildDelegatedTypedDataFromEncodedParams: typeof BuildDelegatedTypedDataFromEncodedParams;
12
+ declare const index_CallControllerWitnessParams: typeof CallControllerWitnessParams;
13
+ declare const index_CallControllerWitnessResult: typeof CallControllerWitnessResult;
14
+ declare const index_ChainConstants: typeof ChainConstants;
15
+ declare const index_CreatePopEip712ProofParams: typeof CreatePopEip712ProofParams;
16
+ declare const index_CreatePopJwsProofParams: typeof CreatePopJwsProofParams;
17
+ declare const index_Did: typeof Did;
18
+ declare const index_EvidencePointerProof: typeof EvidencePointerProof;
19
+ declare const index_GetAttestationParams: typeof GetAttestationParams;
20
+ declare const index_GetAttestationsByAttesterParams: typeof GetAttestationsByAttesterParams;
21
+ declare const index_GetLatestAttestationsParams: typeof GetLatestAttestationsParams;
22
+ declare const index_Hex: typeof Hex;
23
+ declare const index_ListAttestationsParams: typeof ListAttestationsParams;
24
+ declare const index_PopEip712Proof: typeof PopEip712Proof;
25
+ declare const index_PopJwsProof: typeof PopJwsProof;
26
+ declare const index_PrepareDelegatedAttestationParams: typeof PrepareDelegatedAttestationParams;
27
+ declare const index_PrepareDelegatedAttestationResult: typeof PrepareDelegatedAttestationResult;
28
+ declare const index_ProofPurpose: typeof ProofPurpose;
29
+ declare const index_ProofType: typeof ProofType;
30
+ declare const index_ProofWrapper: typeof ProofWrapper;
31
+ declare const index_RevokeAttestationParams: typeof RevokeAttestationParams;
32
+ declare const index_RevokeAttestationResult: typeof RevokeAttestationResult;
33
+ declare const index_SchemaField: typeof SchemaField;
34
+ declare const index_SubmitAttestationParams: typeof SubmitAttestationParams;
35
+ declare const index_SubmitAttestationResult: typeof SubmitAttestationResult;
36
+ declare const index_SubmitDelegatedAttestationParams: typeof SubmitDelegatedAttestationParams;
37
+ declare const index_SubmitDelegatedAttestationResult: typeof SubmitDelegatedAttestationResult;
38
+ declare const index_TxEncodedValueProof: typeof TxEncodedValueProof;
39
+ declare const index_TxInteractionProof: typeof TxInteractionProof;
40
+ declare const index_VerifyAttestationParams: typeof VerifyAttestationParams;
41
+ declare const index_VerifyAttestationResult: typeof VerifyAttestationResult;
42
+ declare const index_VerifyProofParams: typeof VerifyProofParams;
43
+ declare const index_VerifyProofResult: typeof VerifyProofResult;
44
+ declare const index_X402OfferProof: typeof X402OfferProof;
45
+ declare const index_X402ReceiptProof: typeof X402ReceiptProof;
46
+ declare const index_buildDelegatedAttestationTypedData: typeof buildDelegatedAttestationTypedData;
47
+ declare const index_buildDelegatedTypedDataFromEncoded: typeof buildDelegatedTypedDataFromEncoded;
48
+ declare const index_buildDnsTxtRecord: typeof buildDnsTxtRecord;
49
+ declare const index_buildEip712Domain: typeof buildEip712Domain;
50
+ declare const index_calculateAverageUserReviewRating: typeof calculateAverageUserReviewRating;
51
+ declare const index_calculateTransferAmount: typeof calculateTransferAmount;
52
+ declare const index_calculateTransferAmountFromAddresses: typeof calculateTransferAmountFromAddresses;
53
+ declare const index_callControllerWitness: typeof callControllerWitness;
54
+ declare const index_constructSeed: typeof constructSeed;
55
+ declare const index_createEvidencePointerProof: typeof createEvidencePointerProof;
56
+ declare const index_createPopEip712Proof: typeof createPopEip712Proof;
57
+ declare const index_createPopJwsProof: typeof createPopJwsProof;
58
+ declare const index_createTxEncodedValueProof: typeof createTxEncodedValueProof;
59
+ declare const index_createTxInteractionProof: typeof createTxInteractionProof;
60
+ declare const index_createX402OfferProof: typeof createX402OfferProof;
61
+ declare const index_createX402ReceiptProof: typeof createX402ReceiptProof;
62
+ declare const index_decodeAttestationData: typeof decodeAttestationData;
63
+ declare const index_deduplicateReviews: typeof deduplicateReviews;
64
+ declare const index_encodeAttestationData: typeof encodeAttestationData;
65
+ declare const index_extractAddressesFromDidDocument: typeof extractAddressesFromDidDocument;
66
+ declare const index_extractExpirationTime: typeof extractExpirationTime;
67
+ declare const index_fetchDidDocument: typeof fetchDidDocument;
68
+ declare const index_formatSchemaUid: typeof formatSchemaUid;
69
+ declare const index_formatTransferAmount: typeof formatTransferAmount;
70
+ declare const index_getAttestation: typeof getAttestation;
71
+ declare const index_getAttestationsByAttester: typeof getAttestationsByAttester;
72
+ declare const index_getAttestationsForDid: typeof getAttestationsForDid;
73
+ declare const index_getChainConstants: typeof getChainConstants;
74
+ declare const index_getExplorerAddressUrl: typeof getExplorerAddressUrl;
75
+ declare const index_getExplorerTxUrl: typeof getExplorerTxUrl;
76
+ declare const index_getLatestAttestations: typeof getLatestAttestations;
77
+ declare const index_getMajorVersion: typeof getMajorVersion;
78
+ declare const index_getOmaTrustProofEip712Types: typeof getOmaTrustProofEip712Types;
79
+ declare const index_getSchemaDetails: typeof getSchemaDetails;
80
+ declare const index_getSupportedChainIds: typeof getSupportedChainIds;
81
+ declare const index_hashSeed: typeof hashSeed;
82
+ declare const index_isChainSupported: typeof isChainSupported;
83
+ declare const index_listAttestations: typeof listAttestations;
84
+ declare const index_normalizeSchema: typeof normalizeSchema;
85
+ declare const index_parseDnsTxtRecord: typeof parseDnsTxtRecord;
86
+ declare const index_prepareDelegatedAttestation: typeof prepareDelegatedAttestation;
87
+ declare const index_revokeAttestation: typeof revokeAttestation;
88
+ declare const index_schemaToString: typeof schemaToString;
89
+ declare const index_splitSignature: typeof splitSignature;
90
+ declare const index_submitAttestation: typeof submitAttestation;
91
+ declare const index_submitDelegatedAttestation: typeof submitDelegatedAttestation;
92
+ declare const index_validateAttestationData: typeof validateAttestationData;
93
+ declare const index_verifyAttestation: typeof verifyAttestation;
94
+ declare const index_verifyDidDocumentControllerDid: typeof verifyDidDocumentControllerDid;
95
+ declare const index_verifyDnsTxtControllerDid: typeof verifyDnsTxtControllerDid;
96
+ declare const index_verifyEip712Signature: typeof verifyEip712Signature;
97
+ declare const index_verifyProof: typeof verifyProof;
98
+ declare const index_verifySchemaExists: typeof verifySchemaExists;
99
+ declare namespace index {
100
+ export { index_AttestationQueryResult as AttestationQueryResult, index_AttestationValidationError as AttestationValidationError, index_BuildDelegatedTypedDataFromEncodedParams as BuildDelegatedTypedDataFromEncodedParams, index_CallControllerWitnessParams as CallControllerWitnessParams, index_CallControllerWitnessResult as CallControllerWitnessResult, index_ChainConstants as ChainConstants, index_CreatePopEip712ProofParams as CreatePopEip712ProofParams, index_CreatePopJwsProofParams as CreatePopJwsProofParams, index_Did as Did, index_EvidencePointerProof as EvidencePointerProof, index_GetAttestationParams as GetAttestationParams, index_GetAttestationsByAttesterParams as GetAttestationsByAttesterParams, index_GetLatestAttestationsParams as GetLatestAttestationsParams, index_Hex as Hex, index_ListAttestationsParams as ListAttestationsParams, index_PopEip712Proof as PopEip712Proof, index_PopJwsProof as PopJwsProof, index_PrepareDelegatedAttestationParams as PrepareDelegatedAttestationParams, index_PrepareDelegatedAttestationResult as PrepareDelegatedAttestationResult, index_ProofPurpose as ProofPurpose, index_ProofType as ProofType, index_ProofWrapper as ProofWrapper, index_RevokeAttestationParams as RevokeAttestationParams, index_RevokeAttestationResult as RevokeAttestationResult, index_SchemaField as SchemaField, index_SubmitAttestationParams as SubmitAttestationParams, index_SubmitAttestationResult as SubmitAttestationResult, index_SubmitDelegatedAttestationParams as SubmitDelegatedAttestationParams, index_SubmitDelegatedAttestationResult as SubmitDelegatedAttestationResult, index_TxEncodedValueProof as TxEncodedValueProof, index_TxInteractionProof as TxInteractionProof, index_VerifyAttestationParams as VerifyAttestationParams, index_VerifyAttestationResult as VerifyAttestationResult, index_VerifyProofParams as VerifyProofParams, index_VerifyProofResult as VerifyProofResult, index_X402OfferProof as X402OfferProof, index_X402ReceiptProof as X402ReceiptProof, index_buildDelegatedAttestationTypedData as buildDelegatedAttestationTypedData, index_buildDelegatedTypedDataFromEncoded as buildDelegatedTypedDataFromEncoded, index_buildDnsTxtRecord as buildDnsTxtRecord, index_buildEip712Domain as buildEip712Domain, index_calculateAverageUserReviewRating as calculateAverageUserReviewRating, index_calculateTransferAmount as calculateTransferAmount, index_calculateTransferAmountFromAddresses as calculateTransferAmountFromAddresses, index_callControllerWitness as callControllerWitness, index_constructSeed as constructSeed, index_createEvidencePointerProof as createEvidencePointerProof, index_createPopEip712Proof as createPopEip712Proof, index_createPopJwsProof as createPopJwsProof, index_createTxEncodedValueProof as createTxEncodedValueProof, index_createTxInteractionProof as createTxInteractionProof, index_createX402OfferProof as createX402OfferProof, index_createX402ReceiptProof as createX402ReceiptProof, index_decodeAttestationData as decodeAttestationData, index_deduplicateReviews as deduplicateReviews, index_encodeAttestationData as encodeAttestationData, index_extractAddressesFromDidDocument as extractAddressesFromDidDocument, index_extractExpirationTime as extractExpirationTime, index_fetchDidDocument as fetchDidDocument, index_formatSchemaUid as formatSchemaUid, index_formatTransferAmount as formatTransferAmount, index_getAttestation as getAttestation, index_getAttestationsByAttester as getAttestationsByAttester, index_getAttestationsForDid as getAttestationsForDid, index_getChainConstants as getChainConstants, index_getExplorerAddressUrl as getExplorerAddressUrl, index_getExplorerTxUrl as getExplorerTxUrl, index_getLatestAttestations as getLatestAttestations, index_getMajorVersion as getMajorVersion, index_getOmaTrustProofEip712Types as getOmaTrustProofEip712Types, index_getSchemaDetails as getSchemaDetails, index_getSupportedChainIds as getSupportedChainIds, index_hashSeed as hashSeed, index_isChainSupported as isChainSupported, index_listAttestations as listAttestations, index_normalizeSchema as normalizeSchema, index_parseDnsTxtRecord as parseDnsTxtRecord, index_prepareDelegatedAttestation as prepareDelegatedAttestation, index_revokeAttestation as revokeAttestation, index_schemaToString as schemaToString, index_splitSignature as splitSignature, index_submitAttestation as submitAttestation, index_submitDelegatedAttestation as submitDelegatedAttestation, index_validateAttestationData as validateAttestationData, index_verifyAttestation as verifyAttestation, index_verifyDidDocumentControllerDid as verifyDidDocumentControllerDid, index_verifyDnsTxtControllerDid as verifyDnsTxtControllerDid, index_verifyEip712Signature as verifyEip712Signature, index_verifyProof as verifyProof, index_verifySchemaExists as verifySchemaExists };
101
+ }
102
+
103
+ export { index as i, verifyDnsTxtControllerDid as v };