@account-kit/signer 4.35.0 → 4.36.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/esm/base.d.ts +2 -2
- package/dist/esm/base.js +22 -5
- package/dist/esm/base.js.map +1 -1
- package/dist/esm/client/base.d.ts +4 -292
- package/dist/esm/client/base.js.map +1 -1
- package/dist/esm/client/index.d.ts +14 -26
- package/dist/esm/client/index.js.map +1 -1
- package/dist/esm/client/types.js.map +1 -1
- package/dist/esm/errors.js.map +1 -1
- package/dist/esm/metrics.js.map +1 -1
- package/dist/esm/oauth.js.map +1 -1
- package/dist/esm/session/manager.d.ts +2 -2
- package/dist/esm/session/manager.js.map +1 -1
- package/dist/esm/signer.d.ts +25 -117
- package/dist/esm/signer.js.map +1 -1
- package/dist/esm/solanaSigner.js.map +1 -1
- package/dist/esm/version.d.ts +1 -1
- package/dist/esm/version.js +1 -1
- package/dist/esm/version.js.map +1 -1
- package/dist/types/base.d.ts +2 -2
- package/dist/types/base.d.ts.map +1 -1
- package/dist/types/client/base.d.ts +4 -292
- package/dist/types/client/base.d.ts.map +1 -1
- package/dist/types/client/index.d.ts +14 -26
- package/dist/types/client/index.d.ts.map +1 -1
- package/dist/types/session/manager.d.ts +2 -2
- package/dist/types/session/manager.d.ts.map +1 -1
- package/dist/types/signer.d.ts +25 -117
- package/dist/types/signer.d.ts.map +1 -1
- package/dist/types/utils/base64UrlEncode.d.ts.map +1 -1
- package/dist/types/version.d.ts +1 -1
- package/package.json +6 -8
- package/src/base.ts +75 -54
- package/src/client/base.ts +37 -38
- package/src/client/index.ts +10 -10
- package/src/client/types.ts +1 -1
- package/src/errors.ts +1 -1
- package/src/metrics.ts +1 -1
- package/src/oauth.ts +1 -1
- package/src/session/manager.ts +15 -12
- package/src/signer.ts +1 -1
- package/src/solanaSigner.ts +15 -15
- package/src/version.ts +1 -1
package/dist/types/signer.d.ts
CHANGED
|
@@ -68,7 +68,6 @@ export declare const AlchemySignerParamsSchema: z.ZodObject<{
|
|
|
68
68
|
client: z.ZodUnion<[z.ZodType<AlchemySignerWebClient, z.ZodTypeDef, AlchemySignerWebClient>, z.ZodObject<{
|
|
69
69
|
connection: z.ZodIntersection<z.ZodUnion<[z.ZodObject<{
|
|
70
70
|
rpcUrl: z.ZodOptional<z.ZodNever>;
|
|
71
|
-
/** @deprecated This option will be overriden by dashboard settings. Please use the dashboard settings instead. This option will be removed in a future release. */
|
|
72
71
|
apiKey: z.ZodString;
|
|
73
72
|
jwt: z.ZodOptional<z.ZodNever>;
|
|
74
73
|
}, "strip", z.ZodTypeAny, {
|
|
@@ -141,27 +140,21 @@ export declare const AlchemySignerParamsSchema: z.ZodObject<{
|
|
|
141
140
|
apiKey: string;
|
|
142
141
|
rpcUrl?: undefined;
|
|
143
142
|
jwt?: undefined;
|
|
144
|
-
}
|
|
145
|
-
chainAgnosticUrl?: string | undefined;
|
|
146
|
-
}) | ({
|
|
143
|
+
} | {
|
|
147
144
|
jwt: string;
|
|
148
145
|
rpcUrl?: undefined;
|
|
149
146
|
apiKey?: undefined;
|
|
150
|
-
}
|
|
151
|
-
chainAgnosticUrl?: string | undefined;
|
|
152
|
-
}) | ({
|
|
147
|
+
} | {
|
|
153
148
|
rpcUrl: string;
|
|
154
149
|
apiKey?: undefined;
|
|
155
150
|
jwt?: undefined;
|
|
156
|
-
}
|
|
157
|
-
chainAgnosticUrl?: string | undefined;
|
|
158
|
-
}) | ({
|
|
151
|
+
} | {
|
|
159
152
|
rpcUrl: string;
|
|
160
153
|
jwt: string;
|
|
161
154
|
apiKey?: undefined;
|
|
162
|
-
} & {
|
|
155
|
+
}) & {
|
|
163
156
|
chainAgnosticUrl?: string | undefined;
|
|
164
|
-
}
|
|
157
|
+
};
|
|
165
158
|
iframeConfig: {
|
|
166
159
|
iframeElementId: string;
|
|
167
160
|
iframeContainerId: string;
|
|
@@ -175,27 +168,21 @@ export declare const AlchemySignerParamsSchema: z.ZodObject<{
|
|
|
175
168
|
apiKey: string;
|
|
176
169
|
rpcUrl?: undefined;
|
|
177
170
|
jwt?: undefined;
|
|
178
|
-
}
|
|
179
|
-
chainAgnosticUrl?: string | undefined;
|
|
180
|
-
}) | ({
|
|
171
|
+
} | {
|
|
181
172
|
jwt: string;
|
|
182
173
|
rpcUrl?: undefined;
|
|
183
174
|
apiKey?: undefined;
|
|
184
|
-
}
|
|
185
|
-
chainAgnosticUrl?: string | undefined;
|
|
186
|
-
}) | ({
|
|
175
|
+
} | {
|
|
187
176
|
rpcUrl: string;
|
|
188
177
|
apiKey?: undefined;
|
|
189
178
|
jwt?: undefined;
|
|
190
|
-
}
|
|
191
|
-
chainAgnosticUrl?: string | undefined;
|
|
192
|
-
}) | ({
|
|
179
|
+
} | {
|
|
193
180
|
rpcUrl: string;
|
|
194
181
|
jwt: string;
|
|
195
182
|
apiKey?: undefined;
|
|
196
|
-
} & {
|
|
183
|
+
}) & {
|
|
197
184
|
chainAgnosticUrl?: string | undefined;
|
|
198
|
-
}
|
|
185
|
+
};
|
|
199
186
|
iframeConfig: {
|
|
200
187
|
iframeContainerId: string;
|
|
201
188
|
iframeElementId?: string | undefined;
|
|
@@ -205,13 +192,14 @@ export declare const AlchemySignerParamsSchema: z.ZodObject<{
|
|
|
205
192
|
oauthCallbackUrl?: string | undefined;
|
|
206
193
|
enablePopupOauth?: boolean | undefined;
|
|
207
194
|
}>]>;
|
|
195
|
+
} & {
|
|
208
196
|
sessionConfig: z.ZodOptional<z.ZodObject<Omit<{
|
|
209
197
|
sessionKey: z.ZodDefault<z.ZodString>;
|
|
210
198
|
storage: z.ZodUnion<[z.ZodDefault<z.ZodEnum<["localStorage", "sessionStorage"]>>, z.ZodType<Storage, z.ZodTypeDef, Storage>]>;
|
|
211
199
|
expirationTimeMs: z.ZodDefault<z.ZodNumber>;
|
|
212
200
|
client: z.ZodType<import("./index.js").BaseSignerClient<unknown>, z.ZodTypeDef, import("./index.js").BaseSignerClient<unknown>>;
|
|
213
201
|
}, "client">, "strip", z.ZodTypeAny, {
|
|
214
|
-
storage:
|
|
202
|
+
storage: Storage | "localStorage" | "sessionStorage";
|
|
215
203
|
sessionKey: string;
|
|
216
204
|
expirationTimeMs: number;
|
|
217
205
|
}, {
|
|
@@ -220,66 +208,26 @@ export declare const AlchemySignerParamsSchema: z.ZodObject<{
|
|
|
220
208
|
expirationTimeMs?: number | undefined;
|
|
221
209
|
}>>;
|
|
222
210
|
}, "strip", z.ZodTypeAny, {
|
|
223
|
-
client:
|
|
211
|
+
client: {
|
|
224
212
|
connection: ({
|
|
225
213
|
apiKey: string;
|
|
226
214
|
rpcUrl?: undefined;
|
|
227
215
|
jwt?: undefined;
|
|
228
|
-
}
|
|
229
|
-
chainAgnosticUrl?: string | undefined;
|
|
230
|
-
}) | ({
|
|
216
|
+
} | {
|
|
231
217
|
jwt: string;
|
|
232
218
|
rpcUrl?: undefined;
|
|
233
219
|
apiKey?: undefined;
|
|
234
|
-
}
|
|
235
|
-
chainAgnosticUrl?: string | undefined;
|
|
236
|
-
}) | ({
|
|
220
|
+
} | {
|
|
237
221
|
rpcUrl: string;
|
|
238
222
|
apiKey?: undefined;
|
|
239
223
|
jwt?: undefined;
|
|
240
|
-
}
|
|
241
|
-
chainAgnosticUrl?: string | undefined;
|
|
242
|
-
}) | ({
|
|
224
|
+
} | {
|
|
243
225
|
rpcUrl: string;
|
|
244
226
|
jwt: string;
|
|
245
227
|
apiKey?: undefined;
|
|
246
|
-
} & {
|
|
228
|
+
}) & {
|
|
247
229
|
chainAgnosticUrl?: string | undefined;
|
|
248
|
-
});
|
|
249
|
-
iframeConfig: {
|
|
250
|
-
iframeElementId: string;
|
|
251
|
-
iframeContainerId: string;
|
|
252
230
|
};
|
|
253
|
-
rootOrgId: string;
|
|
254
|
-
oauthCallbackUrl: string;
|
|
255
|
-
enablePopupOauth: boolean;
|
|
256
|
-
rpId?: string | undefined;
|
|
257
|
-
} | AlchemySignerWebClient) & ({
|
|
258
|
-
connection: ({
|
|
259
|
-
apiKey: string;
|
|
260
|
-
rpcUrl?: undefined;
|
|
261
|
-
jwt?: undefined;
|
|
262
|
-
} & {
|
|
263
|
-
chainAgnosticUrl?: string | undefined;
|
|
264
|
-
}) | ({
|
|
265
|
-
jwt: string;
|
|
266
|
-
rpcUrl?: undefined;
|
|
267
|
-
apiKey?: undefined;
|
|
268
|
-
} & {
|
|
269
|
-
chainAgnosticUrl?: string | undefined;
|
|
270
|
-
}) | ({
|
|
271
|
-
rpcUrl: string;
|
|
272
|
-
apiKey?: undefined;
|
|
273
|
-
jwt?: undefined;
|
|
274
|
-
} & {
|
|
275
|
-
chainAgnosticUrl?: string | undefined;
|
|
276
|
-
}) | ({
|
|
277
|
-
rpcUrl: string;
|
|
278
|
-
jwt: string;
|
|
279
|
-
apiKey?: undefined;
|
|
280
|
-
} & {
|
|
281
|
-
chainAgnosticUrl?: string | undefined;
|
|
282
|
-
});
|
|
283
231
|
iframeConfig: {
|
|
284
232
|
iframeElementId: string;
|
|
285
233
|
iframeContainerId: string;
|
|
@@ -288,73 +236,33 @@ export declare const AlchemySignerParamsSchema: z.ZodObject<{
|
|
|
288
236
|
oauthCallbackUrl: string;
|
|
289
237
|
enablePopupOauth: boolean;
|
|
290
238
|
rpId?: string | undefined;
|
|
291
|
-
} | AlchemySignerWebClient
|
|
239
|
+
} | AlchemySignerWebClient;
|
|
292
240
|
sessionConfig?: {
|
|
293
|
-
storage:
|
|
241
|
+
storage: Storage | "localStorage" | "sessionStorage";
|
|
294
242
|
sessionKey: string;
|
|
295
243
|
expirationTimeMs: number;
|
|
296
244
|
} | undefined;
|
|
297
245
|
}, {
|
|
298
|
-
client:
|
|
246
|
+
client: {
|
|
299
247
|
connection: ({
|
|
300
248
|
apiKey: string;
|
|
301
249
|
rpcUrl?: undefined;
|
|
302
250
|
jwt?: undefined;
|
|
303
|
-
}
|
|
304
|
-
chainAgnosticUrl?: string | undefined;
|
|
305
|
-
}) | ({
|
|
251
|
+
} | {
|
|
306
252
|
jwt: string;
|
|
307
253
|
rpcUrl?: undefined;
|
|
308
254
|
apiKey?: undefined;
|
|
309
|
-
}
|
|
310
|
-
chainAgnosticUrl?: string | undefined;
|
|
311
|
-
}) | ({
|
|
255
|
+
} | {
|
|
312
256
|
rpcUrl: string;
|
|
313
257
|
apiKey?: undefined;
|
|
314
258
|
jwt?: undefined;
|
|
315
|
-
}
|
|
316
|
-
chainAgnosticUrl?: string | undefined;
|
|
317
|
-
}) | ({
|
|
259
|
+
} | {
|
|
318
260
|
rpcUrl: string;
|
|
319
261
|
jwt: string;
|
|
320
262
|
apiKey?: undefined;
|
|
321
|
-
} & {
|
|
263
|
+
}) & {
|
|
322
264
|
chainAgnosticUrl?: string | undefined;
|
|
323
|
-
});
|
|
324
|
-
iframeConfig: {
|
|
325
|
-
iframeContainerId: string;
|
|
326
|
-
iframeElementId?: string | undefined;
|
|
327
265
|
};
|
|
328
|
-
rpId?: string | undefined;
|
|
329
|
-
rootOrgId?: string | undefined;
|
|
330
|
-
oauthCallbackUrl?: string | undefined;
|
|
331
|
-
enablePopupOauth?: boolean | undefined;
|
|
332
|
-
} | AlchemySignerWebClient) & ({
|
|
333
|
-
connection: ({
|
|
334
|
-
apiKey: string;
|
|
335
|
-
rpcUrl?: undefined;
|
|
336
|
-
jwt?: undefined;
|
|
337
|
-
} & {
|
|
338
|
-
chainAgnosticUrl?: string | undefined;
|
|
339
|
-
}) | ({
|
|
340
|
-
jwt: string;
|
|
341
|
-
rpcUrl?: undefined;
|
|
342
|
-
apiKey?: undefined;
|
|
343
|
-
} & {
|
|
344
|
-
chainAgnosticUrl?: string | undefined;
|
|
345
|
-
}) | ({
|
|
346
|
-
rpcUrl: string;
|
|
347
|
-
apiKey?: undefined;
|
|
348
|
-
jwt?: undefined;
|
|
349
|
-
} & {
|
|
350
|
-
chainAgnosticUrl?: string | undefined;
|
|
351
|
-
}) | ({
|
|
352
|
-
rpcUrl: string;
|
|
353
|
-
jwt: string;
|
|
354
|
-
apiKey?: undefined;
|
|
355
|
-
} & {
|
|
356
|
-
chainAgnosticUrl?: string | undefined;
|
|
357
|
-
});
|
|
358
266
|
iframeConfig: {
|
|
359
267
|
iframeContainerId: string;
|
|
360
268
|
iframeElementId?: string | undefined;
|
|
@@ -363,7 +271,7 @@ export declare const AlchemySignerParamsSchema: z.ZodObject<{
|
|
|
363
271
|
rootOrgId?: string | undefined;
|
|
364
272
|
oauthCallbackUrl?: string | undefined;
|
|
365
273
|
enablePopupOauth?: boolean | undefined;
|
|
366
|
-
} | AlchemySignerWebClient
|
|
274
|
+
} | AlchemySignerWebClient;
|
|
367
275
|
sessionConfig?: {
|
|
368
276
|
storage?: Storage | "localStorage" | "sessionStorage" | undefined;
|
|
369
277
|
sessionKey?: string | undefined;
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"signer.d.ts","sourceRoot":"","sources":["../../src/signer.ts"],"names":[],"mappings":"AAAA,OAAO,EAAE,CAAC,EAAE,MAAM,KAAK,CAAC;AACxB,OAAO,EAAE,iBAAiB,EAAE,MAAM,WAAW,CAAC;AAC9C,OAAO,EAEL,sBAAsB,EACvB,MAAM,mBAAmB,CAAC;AAC3B,OAAO,KAAK,EAEV,iCAAiC,EACjC,eAAe,EAChB,MAAM,mBAAmB,CAAC;AAG3B,MAAM,MAAM,UAAU,GAClB;IACE,IAAI,EAAE,OAAO,CAAC;IACd,KAAK,EAAE,MAAM,CAAC;IACd,mKAAmK;IACnK,SAAS,CAAC,EAAE,WAAW,GAAG,KAAK,CAAC;IAChC,cAAc,CAAC,EAAE,eAAe,CAAC;IACjC,YAAY,CAAC,EAAE,eAAe,EAAE,CAAC;CAClC,GACD;IAAE,IAAI,EAAE,OAAO,CAAC;IAAC,MAAM,EAAE,MAAM,CAAC;IAAC,KAAK,CAAC,EAAE,MAAM,CAAC;IAAC,SAAS,CAAC,EAAE,OAAO,CAAA;CAAE,GACtE;IACE,IAAI,EAAE,SAAS,CAAC;IAChB,KAAK,EAAE,MAAM,CAAC;IACd,YAAY,CAAC,EAAE,iCAAiC,CAAC;CAClD,GACD;IACE,IAAI,EAAE,SAAS,CAAC;IAChB,SAAS,EAAE,KAAK,CAAC;CAClB,GACD;IACE,IAAI,EAAE,SAAS,CAAC;IAChB,SAAS,EAAE,IAAI,CAAC;IAChB,QAAQ,EAAE,MAAM,CAAC;IACjB,YAAY,CAAC,EAAE,iCAAiC,CAAC;CAClD,GACD,CAAC;IACC,IAAI,EAAE,OAAO,CAAC;IACd,KAAK,CAAC,EAAE,MAAM,CAAC;IACf,MAAM,CAAC,EAAE,MAAM,CAAC;IAChB,eAAe,CAAC,EAAE,MAAM,CAAC,MAAM,EAAE,MAAM,CAAC,CAAC;CAC1C,GAAG,mBAAmB,GACrB,mBAAmB,CAAC,GACtB;IACE,IAAI,EAAE,aAAa,CAAC;IACpB,MAAM,EAAE,MAAM,CAAC;IACf,KAAK,EAAE,MAAM,CAAC;IACd,OAAO,EAAE,MAAM,CAAC;IAChB,SAAS,CAAC,EAAE,OAAO,CAAC;CACrB,GACD;IACE,IAAI,EAAE,KAAK,CAAC;IACZ,OAAO,EAAE,MAAM,CAAC;IAChB,YAAY,CAAC,EAAE,eAAe,EAAE,CAAC;CAClC,CAAC;AAEN,MAAM,MAAM,mBAAmB,GAC3B;IACE,cAAc,EAAE,OAAO,CAAC;IACxB,gBAAgB,CAAC,EAAE,KAAK,CAAC;IACzB,eAAe,CAAC,EAAE,MAAM,CAAC;CAC1B,GACD;IACE,cAAc,EAAE,iBAAiB,CAAC;IAClC,gBAAgB,CAAC,EAAE,KAAK,CAAC;IACzB,eAAe,CAAC,EAAE,KAAK,CAAC;CACzB,GACD;IACE,cAAc,EAAE,MAAM,CAAC;IACvB,gBAAgB,EAAE,IAAI,CAAC;IACvB,eAAe,CAAC,EAAE,KAAK,CAAC;CACzB,CAAC;AAEN,MAAM,MAAM,mBAAmB,GAC3B;IAAE,IAAI,EAAE,UAAU,CAAC;IAAC,WAAW,EAAE,MAAM,CAAA;CAAE,GACzC;IAAE,IAAI,EAAE,OAAO,CAAC;IAAC,WAAW,CAAC,EAAE,KAAK,CAAA;CAAE,CAAC;AAE3C,MAAM,MAAM,iBAAiB,GACzB,QAAQ,GACR,OAAO,GACP,UAAU,GACV,QAAQ,GACR,OAAO,CAAC;AAEZ,MAAM,MAAM,SAAS,GAAG,UAAU,GAAG,OAAO,CAAC;AAE7C,eAAO,MAAM,yBAAyB
|
|
1
|
+
{"version":3,"file":"signer.d.ts","sourceRoot":"","sources":["../../src/signer.ts"],"names":[],"mappings":"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"}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
{"version":3,"file":"base64UrlEncode.d.ts","sourceRoot":"","sources":["../../../src/utils/base64UrlEncode.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,eAAe,
|
|
1
|
+
{"version":3,"file":"base64UrlEncode.d.ts","sourceRoot":"","sources":["../../../src/utils/base64UrlEncode.ts"],"names":[],"mappings":"AAAA,eAAO,MAAM,eAAe,GAAI,WAAW,WAAW,KAAG,MAMxD,CAAC"}
|
package/dist/types/version.d.ts
CHANGED
|
@@ -1,2 +1,2 @@
|
|
|
1
|
-
export declare const VERSION = "4.
|
|
1
|
+
export declare const VERSION = "4.36.0";
|
|
2
2
|
//# sourceMappingURL=version.d.ts.map
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@account-kit/signer",
|
|
3
|
-
"version": "4.
|
|
3
|
+
"version": "4.36.0",
|
|
4
4
|
"description": "Core interfaces and clients for interfacing with the Alchemy Signer API",
|
|
5
5
|
"author": "Alchemy",
|
|
6
6
|
"license": "MIT",
|
|
@@ -45,13 +45,11 @@
|
|
|
45
45
|
"react": "^18.2.0",
|
|
46
46
|
"react-dom": "^18.2.0",
|
|
47
47
|
"tailwindcss": "^3.4.3",
|
|
48
|
-
"typescript": "
|
|
49
|
-
"typescript-template": "*",
|
|
50
|
-
"vitest": "^2.0.4"
|
|
48
|
+
"typescript-template": "*"
|
|
51
49
|
},
|
|
52
50
|
"dependencies": {
|
|
53
|
-
"@aa-sdk/core": "^4.
|
|
54
|
-
"@account-kit/logging": "^4.
|
|
51
|
+
"@aa-sdk/core": "^4.36.0",
|
|
52
|
+
"@account-kit/logging": "^4.36.0",
|
|
55
53
|
"@solana/web3.js": "^1.98.0",
|
|
56
54
|
"@turnkey/http": "^2.22.0",
|
|
57
55
|
"@turnkey/iframe-stamper": "^1.0.0",
|
|
@@ -63,7 +61,7 @@
|
|
|
63
61
|
"zustand": "^5.0.0-rc.2"
|
|
64
62
|
},
|
|
65
63
|
"peerDependencies": {
|
|
66
|
-
"viem": "
|
|
64
|
+
"viem": "2.29.2"
|
|
67
65
|
},
|
|
68
66
|
"publishConfig": {
|
|
69
67
|
"access": "public",
|
|
@@ -77,5 +75,5 @@
|
|
|
77
75
|
"url": "https://github.com/alchemyplatform/aa-sdk/issues"
|
|
78
76
|
},
|
|
79
77
|
"homepage": "https://github.com/alchemyplatform/aa-sdk#readme",
|
|
80
|
-
"gitHead": "
|
|
78
|
+
"gitHead": "298acffb1a9d648b4136e154c0354c1efe1c89f7"
|
|
81
79
|
}
|