@settlemint/sdk-eas 2.3.5 → 2.3.8-main9d094739
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 +23 -23
- package/dist/browser/eas.d.ts +1 -7
- package/dist/browser/eas.js +4480 -3910
- package/dist/browser/eas.js.map +1 -1
- package/dist/eas.cjs +4480 -3910
- package/dist/eas.cjs.map +1 -1
- package/dist/eas.d.cts +1 -7
- package/dist/eas.d.ts +1 -7
- package/dist/eas.js +4480 -3910
- package/dist/eas.js.map +1 -1
- package/package.json +6 -4
package/dist/eas.d.cts
CHANGED
|
@@ -1,10 +1,7 @@
|
|
|
1
1
|
import { z } from "zod/v4";
|
|
2
2
|
|
|
3
3
|
//#region src/client-options.schema.d.ts
|
|
4
|
-
|
|
5
|
-
* Schema for validating EAS client configuration options.
|
|
6
|
-
* Extends the base Viem client options with EAS-specific requirements.
|
|
7
|
-
*/
|
|
4
|
+
|
|
8
5
|
/**
|
|
9
6
|
* Schema for validating EAS client configuration options.
|
|
10
7
|
* Extends the base Viem client options with EAS-specific requirements.
|
|
@@ -22,7 +19,6 @@ declare const ClientOptionsSchema: z.ZodObject<{
|
|
|
22
19
|
* Combines EAS-specific options with base Viem client options.
|
|
23
20
|
*/
|
|
24
21
|
type ClientOptions = z.infer<typeof ClientOptionsSchema>;
|
|
25
|
-
|
|
26
22
|
//#endregion
|
|
27
23
|
//#region src/types.d.ts
|
|
28
24
|
/**
|
|
@@ -63,7 +59,6 @@ interface RegisterSchemaOptions {
|
|
|
63
59
|
/** Whether attestations using this schema can be revoked */
|
|
64
60
|
revocable: boolean;
|
|
65
61
|
}
|
|
66
|
-
|
|
67
62
|
//#endregion
|
|
68
63
|
//#region src/eas.d.ts
|
|
69
64
|
/**
|
|
@@ -91,7 +86,6 @@ declare function createEASClient(options: ClientOptions): {
|
|
|
91
86
|
registerSchema: (options: RegisterSchemaOptions) => Promise<string>;
|
|
92
87
|
getSchema: (uid: string) => Promise<string>;
|
|
93
88
|
};
|
|
94
|
-
|
|
95
89
|
//#endregion
|
|
96
90
|
export { ClientOptions, ClientOptionsSchema, EASFieldType, EAS_FIELD_TYPES, RegisterSchemaOptions, SchemaField, createEASClient };
|
|
97
91
|
//# sourceMappingURL=eas.d.cts.map
|
package/dist/eas.d.ts
CHANGED
|
@@ -1,10 +1,7 @@
|
|
|
1
1
|
import { z } from "zod/v4";
|
|
2
2
|
|
|
3
3
|
//#region src/client-options.schema.d.ts
|
|
4
|
-
|
|
5
|
-
* Schema for validating EAS client configuration options.
|
|
6
|
-
* Extends the base Viem client options with EAS-specific requirements.
|
|
7
|
-
*/
|
|
4
|
+
|
|
8
5
|
/**
|
|
9
6
|
* Schema for validating EAS client configuration options.
|
|
10
7
|
* Extends the base Viem client options with EAS-specific requirements.
|
|
@@ -22,7 +19,6 @@ declare const ClientOptionsSchema: z.ZodObject<{
|
|
|
22
19
|
* Combines EAS-specific options with base Viem client options.
|
|
23
20
|
*/
|
|
24
21
|
type ClientOptions = z.infer<typeof ClientOptionsSchema>;
|
|
25
|
-
|
|
26
22
|
//#endregion
|
|
27
23
|
//#region src/types.d.ts
|
|
28
24
|
/**
|
|
@@ -63,7 +59,6 @@ interface RegisterSchemaOptions {
|
|
|
63
59
|
/** Whether attestations using this schema can be revoked */
|
|
64
60
|
revocable: boolean;
|
|
65
61
|
}
|
|
66
|
-
|
|
67
62
|
//#endregion
|
|
68
63
|
//#region src/eas.d.ts
|
|
69
64
|
/**
|
|
@@ -91,7 +86,6 @@ declare function createEASClient(options: ClientOptions): {
|
|
|
91
86
|
registerSchema: (options: RegisterSchemaOptions) => Promise<string>;
|
|
92
87
|
getSchema: (uid: string) => Promise<string>;
|
|
93
88
|
};
|
|
94
|
-
|
|
95
89
|
//#endregion
|
|
96
90
|
export { ClientOptions, ClientOptionsSchema, EASFieldType, EAS_FIELD_TYPES, RegisterSchemaOptions, SchemaField, createEASClient };
|
|
97
91
|
//# sourceMappingURL=eas.d.ts.map
|