@zkpassport/sdk 0.11.0 → 0.12.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/index.cjs +2 -4785
- package/dist/cjs/index.d.cts +207 -9
- package/dist/esm/index.d.ts +207 -9
- package/dist/esm/index.js +2 -629
- package/package.json +17 -8
- package/dist/cjs/constants.cjs +0 -48
- package/dist/cjs/constants.d.cts +0 -9
- package/dist/cjs/logger.cjs +0 -47
- package/dist/cjs/logger.d.cts +0 -14
- package/dist/cjs/public-input-checker.cjs +0 -2151
- package/dist/cjs/public-input-checker.d.cts +0 -70
- package/dist/cjs/solidity-verifier.cjs +0 -2033
- package/dist/cjs/solidity-verifier.d.cts +0 -32
- package/dist/cjs/types.cjs +0 -18
- package/dist/cjs/types.d.cts +0 -208
- package/dist/esm/chunk-6F4PWJZI.js +0 -0
- package/dist/esm/chunk-AFLQN3AC.js +0 -22
- package/dist/esm/chunk-B57NBZWJ.js +0 -18
- package/dist/esm/chunk-KUTKOI3P.js +0 -2018
- package/dist/esm/chunk-N322IQZC.js +0 -2177
- package/dist/esm/constants.d.ts +0 -9
- package/dist/esm/constants.js +0 -18
- package/dist/esm/logger.d.ts +0 -14
- package/dist/esm/logger.js +0 -8
- package/dist/esm/public-input-checker.d.ts +0 -70
- package/dist/esm/public-input-checker.js +0 -7
- package/dist/esm/solidity-verifier.d.ts +0 -32
- package/dist/esm/solidity-verifier.js +0 -7
- package/dist/esm/types.d.ts +0 -208
- package/dist/esm/types.js +0 -1
package/dist/esm/constants.d.ts
DELETED
|
@@ -1,9 +0,0 @@
|
|
|
1
|
-
declare const VERSION = "0.11.0";
|
|
2
|
-
declare const DEFAULT_VALIDITY: number;
|
|
3
|
-
declare const DEFAULT_DATE_VALUE: Date;
|
|
4
|
-
declare const ZKPASSPORT_IOS_APP_ID_HASH = "0x1fa73686cf510f8f85757b0602de0dd72a13e68ae2092462be8b72662e7f179b";
|
|
5
|
-
declare const ZKPASSPORT_ANDROID_APP_ID_HASH = "0x24d9929b248be7eeecaa98e105c034a50539610f3fdd4cb9c8983ef4100d615d";
|
|
6
|
-
declare const APPLE_APP_ATTEST_ROOT_KEY_HASH = "0x2532418a107c5306fa8308c22255792cf77e4a290cbce8a840a642a3e591340b";
|
|
7
|
-
declare const GOOGLE_APP_ATTEST_RSA_ROOT_KEY_HASH = "0x16700a2d9168a194fc85f237af5829b5a2be05b8ae8ac4879ada34cf54a9c211";
|
|
8
|
-
|
|
9
|
-
export { APPLE_APP_ATTEST_ROOT_KEY_HASH, DEFAULT_DATE_VALUE, DEFAULT_VALIDITY, GOOGLE_APP_ATTEST_RSA_ROOT_KEY_HASH, VERSION, ZKPASSPORT_ANDROID_APP_ID_HASH, ZKPASSPORT_IOS_APP_ID_HASH };
|
package/dist/esm/constants.js
DELETED
|
@@ -1,18 +0,0 @@
|
|
|
1
|
-
import {
|
|
2
|
-
APPLE_APP_ATTEST_ROOT_KEY_HASH,
|
|
3
|
-
DEFAULT_DATE_VALUE,
|
|
4
|
-
DEFAULT_VALIDITY,
|
|
5
|
-
GOOGLE_APP_ATTEST_RSA_ROOT_KEY_HASH,
|
|
6
|
-
VERSION,
|
|
7
|
-
ZKPASSPORT_ANDROID_APP_ID_HASH,
|
|
8
|
-
ZKPASSPORT_IOS_APP_ID_HASH
|
|
9
|
-
} from "./chunk-B57NBZWJ.js";
|
|
10
|
-
export {
|
|
11
|
-
APPLE_APP_ATTEST_ROOT_KEY_HASH,
|
|
12
|
-
DEFAULT_DATE_VALUE,
|
|
13
|
-
DEFAULT_VALIDITY,
|
|
14
|
-
GOOGLE_APP_ATTEST_RSA_ROOT_KEY_HASH,
|
|
15
|
-
VERSION,
|
|
16
|
-
ZKPASSPORT_ANDROID_APP_ID_HASH,
|
|
17
|
-
ZKPASSPORT_IOS_APP_ID_HASH
|
|
18
|
-
};
|
package/dist/esm/logger.d.ts
DELETED
|
@@ -1,14 +0,0 @@
|
|
|
1
|
-
declare const customLogger: {
|
|
2
|
-
debug: (message: string, ...args: any[]) => void;
|
|
3
|
-
info: (message: string, ...args: any[]) => void;
|
|
4
|
-
warn: (message: string, ...args: any[]) => void;
|
|
5
|
-
error: (message: string, ...args: any[]) => void;
|
|
6
|
-
};
|
|
7
|
-
declare const noLogger: {
|
|
8
|
-
debug: (..._: any[]) => void;
|
|
9
|
-
info: (..._: any[]) => void;
|
|
10
|
-
warn: (..._: any[]) => void;
|
|
11
|
-
error: (..._: any[]) => void;
|
|
12
|
-
};
|
|
13
|
-
|
|
14
|
-
export { customLogger, noLogger };
|
package/dist/esm/logger.js
DELETED
|
@@ -1,70 +0,0 @@
|
|
|
1
|
-
import { ProofResult, QueryResult, ProofData, BoundData, SanctionsCommittedInputs, SanctionsBuilder, FacematchCommittedInputs, NullifierType } from '@zkpassport/utils';
|
|
2
|
-
import { QueryResultErrors } from './types.js';
|
|
3
|
-
|
|
4
|
-
declare class PublicInputChecker {
|
|
5
|
-
static checkDiscloseBytesPublicInputs(proof: ProofResult, queryResult: QueryResult): {
|
|
6
|
-
isCorrect: boolean;
|
|
7
|
-
queryResultErrors: Partial<QueryResultErrors>;
|
|
8
|
-
};
|
|
9
|
-
static checkAgePublicInputs(proof: ProofResult, queryResult: QueryResult): {
|
|
10
|
-
isCorrect: boolean;
|
|
11
|
-
queryResultErrors: Partial<QueryResultErrors>;
|
|
12
|
-
};
|
|
13
|
-
static checkBirthdatePublicInputs(proof: ProofResult, queryResult: QueryResult): {
|
|
14
|
-
isCorrect: boolean;
|
|
15
|
-
queryResultErrors: Partial<QueryResultErrors>;
|
|
16
|
-
};
|
|
17
|
-
static checkExpiryDatePublicInputs(proof: ProofResult, queryResult: QueryResult): {
|
|
18
|
-
isCorrect: boolean;
|
|
19
|
-
queryResultErrors: Partial<QueryResultErrors>;
|
|
20
|
-
};
|
|
21
|
-
static checkNationalityExclusionPublicInputs(queryResult: QueryResult, countryList: string[]): {
|
|
22
|
-
isCorrect: boolean;
|
|
23
|
-
queryResultErrors: Partial<QueryResultErrors>;
|
|
24
|
-
};
|
|
25
|
-
static checkIssuingCountryExclusionPublicInputs(queryResult: QueryResult, countryList: string[]): {
|
|
26
|
-
isCorrect: boolean;
|
|
27
|
-
queryResultErrors: Partial<QueryResultErrors>;
|
|
28
|
-
};
|
|
29
|
-
static checkNationalityInclusionPublicInputs(queryResult: QueryResult, countryList: string[]): {
|
|
30
|
-
isCorrect: boolean;
|
|
31
|
-
queryResultErrors: Partial<QueryResultErrors>;
|
|
32
|
-
};
|
|
33
|
-
static checkIssuingCountryInclusionPublicInputs(queryResult: QueryResult, countryList: string[]): {
|
|
34
|
-
isCorrect: boolean;
|
|
35
|
-
queryResultErrors: Partial<QueryResultErrors>;
|
|
36
|
-
};
|
|
37
|
-
static checkScopeFromDisclosureProof(domain: string, proofData: ProofData, queryResultErrors: Partial<QueryResultErrors>, key: string, scope?: string): {
|
|
38
|
-
isCorrect: boolean;
|
|
39
|
-
queryResultErrors: Partial<QueryResultErrors>;
|
|
40
|
-
};
|
|
41
|
-
static checkCertificateRegistryRoot(root: string, queryResultErrors: any, outer?: boolean): Promise<{
|
|
42
|
-
isCorrect: boolean;
|
|
43
|
-
queryResultErrors: any;
|
|
44
|
-
}>;
|
|
45
|
-
static checkCircuitRegistryRoot(root: string, queryResultErrors: any): Promise<{
|
|
46
|
-
isCorrect: boolean;
|
|
47
|
-
queryResultErrors: any;
|
|
48
|
-
}>;
|
|
49
|
-
static checkBindPublicInputs(queryResult: QueryResult, boundData: BoundData): {
|
|
50
|
-
isCorrect: boolean;
|
|
51
|
-
queryResultErrors: Partial<QueryResultErrors>;
|
|
52
|
-
};
|
|
53
|
-
static checkSanctionsExclusionPublicInputs(queryResult: QueryResult, sanctionsCommittedInputs: SanctionsCommittedInputs, sanctionsBuilder: SanctionsBuilder): Promise<{
|
|
54
|
-
isCorrect: boolean;
|
|
55
|
-
queryResultErrors: Partial<QueryResultErrors>;
|
|
56
|
-
}>;
|
|
57
|
-
static checkFacematchPublicInputs(queryResult: QueryResult, facematchCommittedInputs: FacematchCommittedInputs): Promise<{
|
|
58
|
-
isCorrect: boolean;
|
|
59
|
-
queryResultErrors: Partial<QueryResultErrors>;
|
|
60
|
-
}>;
|
|
61
|
-
private static checkCurrentDate;
|
|
62
|
-
static checkPublicInputs(domain: string, proofs: Array<ProofResult>, queryResult: QueryResult, validity?: number, scope?: string): Promise<{
|
|
63
|
-
isCorrect: boolean;
|
|
64
|
-
uniqueIdentifier: string | undefined;
|
|
65
|
-
uniqueIdentifierType: NullifierType | undefined;
|
|
66
|
-
queryResultErrors: Partial<QueryResultErrors>;
|
|
67
|
-
}>;
|
|
68
|
-
}
|
|
69
|
-
|
|
70
|
-
export { PublicInputChecker };
|
|
@@ -1,32 +0,0 @@
|
|
|
1
|
-
import { SupportedChain, ProofResult } from '@zkpassport/utils';
|
|
2
|
-
import { SolidityVerifierParameters } from './types.js';
|
|
3
|
-
|
|
4
|
-
declare class SolidityVerifier {
|
|
5
|
-
static getDetails(network: SupportedChain): {
|
|
6
|
-
address: `0x${string}`;
|
|
7
|
-
functionName: string;
|
|
8
|
-
abi: {
|
|
9
|
-
type: "function" | "event" | "constructor";
|
|
10
|
-
name: string;
|
|
11
|
-
inputs: {
|
|
12
|
-
name: string;
|
|
13
|
-
type: string;
|
|
14
|
-
internalType: string;
|
|
15
|
-
}[];
|
|
16
|
-
outputs: {
|
|
17
|
-
name: string;
|
|
18
|
-
type: string;
|
|
19
|
-
internalType: string;
|
|
20
|
-
}[];
|
|
21
|
-
}[];
|
|
22
|
-
};
|
|
23
|
-
static getParameters({ proof, validityPeriodInSeconds, domain, scope, devMode, }: {
|
|
24
|
-
proof: ProofResult;
|
|
25
|
-
validityPeriodInSeconds?: number;
|
|
26
|
-
domain: string;
|
|
27
|
-
scope?: string;
|
|
28
|
-
devMode?: boolean;
|
|
29
|
-
}): SolidityVerifierParameters;
|
|
30
|
-
}
|
|
31
|
-
|
|
32
|
-
export { SolidityVerifier };
|
package/dist/esm/types.d.ts
DELETED
|
@@ -1,208 +0,0 @@
|
|
|
1
|
-
import { IDCredential, IDCredentialValue, NumericalIDCredential, DisclosableIDCredential, BoundData, SanctionsCountries, SanctionsLists, FacematchMode, ProofResult, QueryResult } from '@zkpassport/utils';
|
|
2
|
-
|
|
3
|
-
type QueryResultError<T> = {
|
|
4
|
-
expected?: T;
|
|
5
|
-
received?: T;
|
|
6
|
-
message: string;
|
|
7
|
-
};
|
|
8
|
-
type QueryResultErrors = {
|
|
9
|
-
[key in IDCredential | "sig_check_dsc" | "sig_check_id_data" | "data_check_integrity" | "outer" | "disclose" | "bind" | "facematch" | "sanctions"]: {
|
|
10
|
-
disclose?: QueryResultError<string | number | Date>;
|
|
11
|
-
gte?: QueryResultError<number | Date>;
|
|
12
|
-
lte?: QueryResultError<number | Date>;
|
|
13
|
-
lt?: QueryResultError<number | Date>;
|
|
14
|
-
range?: QueryResultError<[number | Date, number | Date]>;
|
|
15
|
-
in?: QueryResultError<string[]>;
|
|
16
|
-
out?: QueryResultError<string[]>;
|
|
17
|
-
eq?: QueryResultError<string | number | Date>;
|
|
18
|
-
commitment?: QueryResultError<string>;
|
|
19
|
-
date?: QueryResultError<string>;
|
|
20
|
-
certificate?: QueryResultError<string>;
|
|
21
|
-
scope?: QueryResultError<string>;
|
|
22
|
-
};
|
|
23
|
-
};
|
|
24
|
-
type SolidityProofVerificationData = {
|
|
25
|
-
vkeyHash: string;
|
|
26
|
-
proof: string;
|
|
27
|
-
publicInputs: string[];
|
|
28
|
-
};
|
|
29
|
-
type SolidityCommitments = {
|
|
30
|
-
committedInputs: string;
|
|
31
|
-
};
|
|
32
|
-
type SolidityServiceConfig = {
|
|
33
|
-
validityPeriodInSeconds: number;
|
|
34
|
-
domain: string;
|
|
35
|
-
scope: string;
|
|
36
|
-
devMode: boolean;
|
|
37
|
-
};
|
|
38
|
-
type SolidityVerifierParameters = {
|
|
39
|
-
proofVerificationData: SolidityProofVerificationData;
|
|
40
|
-
commitments: SolidityCommitments;
|
|
41
|
-
serviceConfig: SolidityServiceConfig;
|
|
42
|
-
};
|
|
43
|
-
type QueryBuilderResult = {
|
|
44
|
-
/**
|
|
45
|
-
* The URL of the request.
|
|
46
|
-
*
|
|
47
|
-
* You can either encode the URL in a QR code or let the user click the link
|
|
48
|
-
* to this URL on your website if they're visiting your website on their phone.
|
|
49
|
-
*/
|
|
50
|
-
url: string;
|
|
51
|
-
/**
|
|
52
|
-
* The id of the request.
|
|
53
|
-
*/
|
|
54
|
-
requestId: string;
|
|
55
|
-
/**
|
|
56
|
-
* Called when the user has scanned the QR code or clicked the link to the request.
|
|
57
|
-
*
|
|
58
|
-
* This means the user is currently viewing the request popup with your website information
|
|
59
|
-
* and the information requested from them.
|
|
60
|
-
*/
|
|
61
|
-
onRequestReceived: (callback: () => void) => void;
|
|
62
|
-
/**
|
|
63
|
-
* Called when the user has accepted the request and
|
|
64
|
-
* started to generate the proof on their phone.
|
|
65
|
-
*/
|
|
66
|
-
onGeneratingProof: (callback: () => void) => void;
|
|
67
|
-
/**
|
|
68
|
-
* Called when the SDK successfully connects to the bridge with the mobile app.
|
|
69
|
-
*/
|
|
70
|
-
onBridgeConnect: (callback: () => void) => void;
|
|
71
|
-
/**
|
|
72
|
-
* Called when the user has generated a proof.
|
|
73
|
-
*
|
|
74
|
-
* There is a minimum of 4 proofs, but there can be more depending
|
|
75
|
-
* on the type of information requested from the user.
|
|
76
|
-
*/
|
|
77
|
-
onProofGenerated: (callback: (proof: ProofResult) => void) => void;
|
|
78
|
-
/**
|
|
79
|
-
* Called when the user has sent the query result.
|
|
80
|
-
*
|
|
81
|
-
* The response contains the unique identifier associated to the user,
|
|
82
|
-
* your domain name and chosen scope, along with the query result and whether
|
|
83
|
-
* the proofs were successfully verified.
|
|
84
|
-
*/
|
|
85
|
-
onResult: (callback: (response: {
|
|
86
|
-
uniqueIdentifier: string | undefined;
|
|
87
|
-
verified: boolean;
|
|
88
|
-
result: QueryResult;
|
|
89
|
-
queryResultErrors?: Partial<QueryResultErrors>;
|
|
90
|
-
}) => void) => void;
|
|
91
|
-
/**
|
|
92
|
-
* Called when the user has rejected the request.
|
|
93
|
-
*/
|
|
94
|
-
onReject: (callback: () => void) => void;
|
|
95
|
-
/**
|
|
96
|
-
* Called when an error occurs, such as one of the requirements not being met
|
|
97
|
-
* or a proof failing to be generated.
|
|
98
|
-
*/
|
|
99
|
-
onError: (callback: (error: string) => void) => void;
|
|
100
|
-
/**
|
|
101
|
-
* @returns true if the bridge with the mobile app is connected
|
|
102
|
-
*/
|
|
103
|
-
isBridgeConnected: () => boolean;
|
|
104
|
-
/**
|
|
105
|
-
* Get if the user has scanned the QR code or the link to this request
|
|
106
|
-
* @returns true if the request has been received by the user on their phone
|
|
107
|
-
*/
|
|
108
|
-
requestReceived: () => boolean;
|
|
109
|
-
};
|
|
110
|
-
type QueryBuilder = {
|
|
111
|
-
/**
|
|
112
|
-
* Requires this attribute to be equal to the provided value.
|
|
113
|
-
* @param key The attribute to compare.
|
|
114
|
-
* @param value The value of the attribute you require.
|
|
115
|
-
*/
|
|
116
|
-
eq: <T extends IDCredential>(key: T, value: IDCredentialValue<T>) => QueryBuilder;
|
|
117
|
-
/**
|
|
118
|
-
* Requires this attribute to be greater than or equal to the provided value.
|
|
119
|
-
* @param key The attribute to compare.
|
|
120
|
-
* @param value The value of the attribute you require.
|
|
121
|
-
*/
|
|
122
|
-
gte: <T extends NumericalIDCredential>(key: T, value: IDCredentialValue<T>) => QueryBuilder;
|
|
123
|
-
/**
|
|
124
|
-
* Requires this attribute to be greater than the provided value.
|
|
125
|
-
* @param key The attribute to compare.
|
|
126
|
-
* @param value The value of the attribute you require.
|
|
127
|
-
*/
|
|
128
|
-
gt: <T extends NumericalIDCredential>(key: T, value: IDCredentialValue<T>) => QueryBuilder;
|
|
129
|
-
/**
|
|
130
|
-
* Requires this attribute to be less than or equal to the provided value.
|
|
131
|
-
* @param key The attribute to compare.
|
|
132
|
-
* @param value The value of the attribute you require.
|
|
133
|
-
*/
|
|
134
|
-
lte: <T extends NumericalIDCredential>(key: T, value: IDCredentialValue<T>) => QueryBuilder;
|
|
135
|
-
/**
|
|
136
|
-
* Requires this attribute to be less than the provided value.
|
|
137
|
-
* @param key The attribute to compare.
|
|
138
|
-
* @param value The value of the attribute you require.
|
|
139
|
-
*/
|
|
140
|
-
lt: <T extends NumericalIDCredential>(key: T, value: IDCredentialValue<T>) => QueryBuilder;
|
|
141
|
-
/**
|
|
142
|
-
* Requires this attribute to be included in the provided range.
|
|
143
|
-
* @param key The attribute to compare.
|
|
144
|
-
* @param start The start of the range.
|
|
145
|
-
* @param end The end of the range.
|
|
146
|
-
*/
|
|
147
|
-
range: <T extends NumericalIDCredential>(key: T, start: IDCredentialValue<T>, end: IDCredentialValue<T>) => QueryBuilder;
|
|
148
|
-
/**
|
|
149
|
-
* Requires this attribute to be included in the provided list.
|
|
150
|
-
* @param key The attribute to compare.
|
|
151
|
-
* @param value The list of values to check inclusion against.
|
|
152
|
-
*/
|
|
153
|
-
in: <T extends "nationality" | "issuing_country">(key: T, value: IDCredentialValue<T>[]) => QueryBuilder;
|
|
154
|
-
/**
|
|
155
|
-
* Requires this attribute to be excluded from the provided list.
|
|
156
|
-
* @param key The attribute to compare.
|
|
157
|
-
* @param value The list of values to check exclusion against.
|
|
158
|
-
*/
|
|
159
|
-
out: <T extends "nationality" | "issuing_country">(key: T, value: IDCredentialValue<T>[]) => QueryBuilder;
|
|
160
|
-
/**
|
|
161
|
-
* Requires this attribute to be disclosed.
|
|
162
|
-
* @param key The attribute to disclose.
|
|
163
|
-
*/
|
|
164
|
-
disclose: (key: DisclosableIDCredential) => QueryBuilder;
|
|
165
|
-
/**
|
|
166
|
-
* Binds a value to the request.
|
|
167
|
-
* @param key The key of the value to bind.
|
|
168
|
-
* @param value The value to bind the request to.
|
|
169
|
-
*/
|
|
170
|
-
bind: (key: keyof BoundData, value: BoundData[keyof BoundData]) => QueryBuilder;
|
|
171
|
-
/**
|
|
172
|
-
* Requires that the ID holder is not part of any of the specified sanction lists.
|
|
173
|
-
* @param countries The country or list of countries whose sanction lists to check against. Defaults to "all".
|
|
174
|
-
* e.g. "US", ["US", "GB", "CH", "EU"], "all"
|
|
175
|
-
* @param lists The specific lists from a given country to check against. Defaults to "all".
|
|
176
|
-
* e.g. ["OFAC_SDN"], "all"
|
|
177
|
-
* @param options The options to use for the sanction check.
|
|
178
|
-
* @param options.strict Whether to use a strict sanction check. Defaults to false.
|
|
179
|
-
*
|
|
180
|
-
* If set to true, this means the checks will be done against just the lastname and firstname,
|
|
181
|
-
* while when set to false, matches will need to include either the date of birth and name or
|
|
182
|
-
* the passport number and nationality.
|
|
183
|
-
* Strict mode has therefore a higher false positive rate but is harder to evade.
|
|
184
|
-
*/
|
|
185
|
-
sanctions: (countries?: SanctionsCountries, lists?: SanctionsLists, options?: {
|
|
186
|
-
strict?: boolean;
|
|
187
|
-
}) => QueryBuilder;
|
|
188
|
-
/**
|
|
189
|
-
* This feature is not available yet in the public release of the app.
|
|
190
|
-
* Requires that the ID holder's face matches the photo on the ID.
|
|
191
|
-
* @param mode The mode to use for the face match. Defaults to "regular".
|
|
192
|
-
* @param mode "strict" - The user will have to go through an extensive liveness check to prevent spoofing making it more secure.
|
|
193
|
-
* Best for high security requirements such as KYC.
|
|
194
|
-
* @param mode "regular" - The user will only have to go through a basic liveness check to prevent spoofing, making it faster for the user.
|
|
195
|
-
* Best for lower security requirements that requires fast verification such as age verification.
|
|
196
|
-
*/
|
|
197
|
-
facematch: (mode?: FacematchMode) => QueryBuilder;
|
|
198
|
-
/**
|
|
199
|
-
* Builds the request.
|
|
200
|
-
*
|
|
201
|
-
* This will return the URL of the request, which you can either encode in a QR code
|
|
202
|
-
* or provide as a link to the user if they're visiting your website on their phone.
|
|
203
|
-
* It also returns all the callbacks you can use to handle the user's response.
|
|
204
|
-
*/
|
|
205
|
-
done: () => QueryBuilderResult;
|
|
206
|
-
};
|
|
207
|
-
|
|
208
|
-
export type { QueryBuilder, QueryBuilderResult, QueryResultError, QueryResultErrors, SolidityCommitments, SolidityProofVerificationData, SolidityServiceConfig, SolidityVerifierParameters };
|
package/dist/esm/types.js
DELETED
|
@@ -1 +0,0 @@
|
|
|
1
|
-
import "./chunk-6F4PWJZI.js";
|