@settlemint/sdk-eas 2.3.8-mainb7108730 → 2.3.8-mainee93349a

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.
@@ -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