@settlemint/sdk-eas 2.4.0-prec526eee → 2.4.0-prf263ce2b

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 (2) hide show
  1. package/README.md +12 -2
  2. package/package.json +3 -3
package/README.md CHANGED
@@ -1136,12 +1136,22 @@ Transaction result
1136
1136
 
1137
1137
  #### EASClientOptions
1138
1138
 
1139
- > **EASClientOptions** = `z.infer`\<*typeof* [`EASClientOptionsSchema`](#easclientoptionsschema)\>
1139
+ > **EASClientOptions** = `object`
1140
1140
 
1141
1141
  Defined in: [sdk/eas/src/schema.ts:44](https://github.com/settlemint/sdk/blob/v2.4.0/sdk/eas/src/schema.ts#L44)
1142
1142
 
1143
1143
  Configuration options for the EAS client
1144
1144
 
1145
+ ##### Type declaration
1146
+
1147
+ | Name | Type | Default value | Description | Defined in |
1148
+ | ------ | ------ | ------ | ------ | ------ |
1149
+ | <a id="accesstoken"></a> `accessToken?` | `string` | - | The application access token | [sdk/eas/src/utils/validation.ts:21](https://github.com/settlemint/sdk/blob/v2.4.0/sdk/eas/src/utils/validation.ts#L21) |
1150
+ | <a id="debug"></a> `debug?` | `boolean` | - | Whether to enable debug mode | [sdk/eas/src/utils/validation.ts:33](https://github.com/settlemint/sdk/blob/v2.4.0/sdk/eas/src/utils/validation.ts#L33) |
1151
+ | <a id="eascontractaddress"></a> `easContractAddress?` | `` `0x${string}` `` | - | The EAS contract address | [sdk/eas/src/utils/validation.ts:25](https://github.com/settlemint/sdk/blob/v2.4.0/sdk/eas/src/utils/validation.ts#L25) |
1152
+ | <a id="instance"></a> `instance` | `string` | `UrlSchema` | The EAS instance URL | [sdk/eas/src/utils/validation.ts:17](https://github.com/settlemint/sdk/blob/v2.4.0/sdk/eas/src/utils/validation.ts#L17) |
1153
+ | <a id="schemaregistrycontractaddress"></a> `schemaRegistryContractAddress?` | `` `0x${string}` `` | - | The schema registry contract address | [sdk/eas/src/utils/validation.ts:29](https://github.com/settlemint/sdk/blob/v2.4.0/sdk/eas/src/utils/validation.ts#L29) |
1154
+
1145
1155
  ### Variables
1146
1156
 
1147
1157
  #### EAS\_FIELD\_TYPES
@@ -1171,7 +1181,7 @@ Maps to the Solidity types that can be used in EAS schemas.
1171
1181
 
1172
1182
  #### EASClientOptionsSchema
1173
1183
 
1174
- > `const` **EASClientOptionsSchema**: `ZodObject`\<\{ `accessToken`: `ZodOptional`\<`ZodString`\>; `debug`: `ZodOptional`\<`ZodBoolean`\>; `easContractAddress`: `ZodOptional`\<`ZodCustom`\<`` `0x${string}` ``, `` `0x${string}` ``\>\>; `instance`: `ZodString`; `schemaRegistryContractAddress`: `ZodOptional`\<`ZodCustom`\<`` `0x${string}` ``, `` `0x${string}` ``\>\>; \}, `$strip`\>
1184
+ > `const` **EASClientOptionsSchema**: `ZodObject`\<[`EASClientOptions`](#easclientoptions)\>
1175
1185
 
1176
1186
  Defined in: [sdk/eas/src/utils/validation.ts:13](https://github.com/settlemint/sdk/blob/v2.4.0/sdk/eas/src/utils/validation.ts#L13)
1177
1187
 
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@settlemint/sdk-eas",
3
3
  "description": "Ethereum Attestation Service (EAS) integration for SettleMint SDK",
4
- "version": "2.4.0-prec526eee",
4
+ "version": "2.4.0-prf263ce2b",
5
5
  "type": "module",
6
6
  "private": false,
7
7
  "license": "FSL-1.1-MIT",
@@ -52,8 +52,8 @@
52
52
  },
53
53
  "devDependencies": {},
54
54
  "dependencies": {
55
- "@settlemint/sdk-portal": "2.4.0-prec526eee",
56
- "@settlemint/sdk-utils": "2.4.0-prec526eee",
55
+ "@settlemint/sdk-portal": "2.4.0-prf263ce2b",
56
+ "@settlemint/sdk-utils": "2.4.0-prf263ce2b",
57
57
  "gql.tada": "^1",
58
58
  "viem": "^2"
59
59
  },