@account-kit/infra 4.0.0-alpha.5 → 4.0.0-alpha.7
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/chains.d.ts +2 -0
- package/dist/cjs/chains.js +35 -1
- package/dist/cjs/chains.js.map +1 -1
- package/dist/cjs/client/decorators/alchemyEnhancedApis.d.ts +1132 -1276
- package/dist/cjs/client/internal/smartAccountClientFromRpc.js +2 -14
- package/dist/cjs/client/internal/smartAccountClientFromRpc.js.map +1 -1
- package/dist/cjs/client/isAlchemySmartAccountClient.d.ts +1132 -1276
- package/dist/cjs/client/smartAccountClient.d.ts +2 -3
- package/dist/cjs/client/smartAccountClient.js +2 -2
- package/dist/cjs/client/smartAccountClient.js.map +1 -1
- package/dist/cjs/client/types.d.ts +1 -48
- package/dist/cjs/client/types.js.map +1 -1
- package/dist/cjs/index.d.ts +1 -1
- package/dist/cjs/index.js +3 -1
- package/dist/cjs/index.js.map +1 -1
- package/dist/cjs/middleware/gasManager.d.ts +2 -29
- package/dist/cjs/middleware/gasManager.js +4 -141
- package/dist/cjs/middleware/gasManager.js.map +1 -1
- package/dist/cjs/middleware/userOperationSimulator.d.ts +2 -2
- package/dist/cjs/middleware/userOperationSimulator.js.map +1 -1
- package/dist/cjs/version.d.ts +1 -1
- package/dist/cjs/version.js +1 -1
- package/dist/cjs/version.js.map +1 -1
- package/dist/esm/chains.d.ts +2 -0
- package/dist/esm/chains.js +34 -0
- package/dist/esm/chains.js.map +1 -1
- package/dist/esm/client/decorators/alchemyEnhancedApis.d.ts +1132 -1276
- package/dist/esm/client/internal/smartAccountClientFromRpc.js +2 -14
- package/dist/esm/client/internal/smartAccountClientFromRpc.js.map +1 -1
- package/dist/esm/client/isAlchemySmartAccountClient.d.ts +1132 -1276
- package/dist/esm/client/smartAccountClient.d.ts +2 -3
- package/dist/esm/client/smartAccountClient.js +2 -3
- package/dist/esm/client/smartAccountClient.js.map +1 -1
- package/dist/esm/client/types.d.ts +1 -48
- package/dist/esm/client/types.js.map +1 -1
- package/dist/esm/index.d.ts +1 -1
- package/dist/esm/index.js +1 -1
- package/dist/esm/index.js.map +1 -1
- package/dist/esm/middleware/gasManager.d.ts +2 -29
- package/dist/esm/middleware/gasManager.js +5 -142
- package/dist/esm/middleware/gasManager.js.map +1 -1
- package/dist/esm/middleware/userOperationSimulator.d.ts +2 -2
- package/dist/esm/middleware/userOperationSimulator.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/chains.d.ts +2 -0
- package/dist/types/chains.d.ts.map +1 -1
- package/dist/types/client/decorators/alchemyEnhancedApis.d.ts +1132 -1276
- package/dist/types/client/decorators/alchemyEnhancedApis.d.ts.map +1 -1
- package/dist/types/client/internal/smartAccountClientFromRpc.d.ts +2 -2
- package/dist/types/client/isAlchemySmartAccountClient.d.ts +1132 -1276
- package/dist/types/client/isAlchemySmartAccountClient.d.ts.map +1 -1
- package/dist/types/client/smartAccountClient.d.ts +2 -3
- package/dist/types/client/smartAccountClient.d.ts.map +1 -1
- package/dist/types/client/types.d.ts +1 -48
- package/dist/types/client/types.d.ts.map +1 -1
- package/dist/types/index.d.ts +1 -1
- package/dist/types/index.d.ts.map +1 -1
- package/dist/types/middleware/gasManager.d.ts +15 -87
- package/dist/types/middleware/gasManager.d.ts.map +1 -1
- package/dist/types/middleware/userOperationSimulator.d.ts +2 -2
- package/dist/types/middleware/userOperationSimulator.d.ts.map +1 -1
- package/dist/types/version.d.ts +1 -1
- package/package.json +4 -3
- package/src/chains.ts +36 -0
- package/src/client/internal/smartAccountClientFromRpc.ts +4 -20
- package/src/client/smartAccountClient.ts +4 -5
- package/src/client/types.ts +1 -54
- package/src/index.ts +2 -0
- package/src/middleware/gasManager.ts +21 -424
- package/src/middleware/userOperationSimulator.ts +6 -2
- package/src/version.ts +1 -1
|
@@ -211,24 +211,6 @@ export declare const isAlchemySmartAccountClient: <TTransport extends Transport
|
|
|
211
211
|
Method: "eth_uninstallFilter";
|
|
212
212
|
Parameters: [filterId: `0x${string}`];
|
|
213
213
|
ReturnType: boolean;
|
|
214
|
-
}, {
|
|
215
|
-
Method: "alchemy_requestPaymasterAndData";
|
|
216
|
-
Parameters: [{
|
|
217
|
-
policyId: string;
|
|
218
|
-
entryPoint: `0x${string}`;
|
|
219
|
-
userOperation: import("@aa-sdk/core").UserOperationRequest;
|
|
220
|
-
}];
|
|
221
|
-
ReturnType: import("..").RequestPaymasterAndDataResponse;
|
|
222
|
-
}, {
|
|
223
|
-
Method: "alchemy_requestGasAndPaymasterAndData";
|
|
224
|
-
Parameters: [{
|
|
225
|
-
policyId: string;
|
|
226
|
-
entryPoint: `0x${string}`;
|
|
227
|
-
userOperation: import("@aa-sdk/core").UserOperationRequest;
|
|
228
|
-
dummySignature: `0x${string}`;
|
|
229
|
-
overrides?: Partial<{}> | undefined;
|
|
230
|
-
}];
|
|
231
|
-
ReturnType: import("..").RequestGasAndPaymasterAndDataResponse;
|
|
232
214
|
}, {
|
|
233
215
|
Method: "alchemy_simulateUserOperationAssetChanges";
|
|
234
216
|
Parameters: import("..").SimulateUserOperationAssetChangesRequest;
|
|
@@ -297,40 +279,40 @@ export declare const isAlchemySmartAccountClient: <TTransport extends Transport
|
|
|
297
279
|
[x: `bytes1[${string}]`]: undefined;
|
|
298
280
|
[x: `bytes5[${string}]`]: undefined;
|
|
299
281
|
[x: `bytes10[${string}]`]: undefined;
|
|
282
|
+
[x: `bytes4[${string}]`]: undefined;
|
|
300
283
|
[x: `bytes2[${string}]`]: undefined;
|
|
301
284
|
[x: `bytes3[${string}]`]: undefined;
|
|
302
|
-
[x: `bytes4[${string}]`]: undefined;
|
|
303
|
-
[x: `bytes32[${string}]`]: undefined;
|
|
304
|
-
[x: `bytes31[${string}]`]: undefined;
|
|
305
|
-
[x: `bytes30[${string}]`]: undefined;
|
|
306
|
-
[x: `bytes29[${string}]`]: undefined;
|
|
307
|
-
[x: `bytes28[${string}]`]: undefined;
|
|
308
|
-
[x: `bytes27[${string}]`]: undefined;
|
|
309
|
-
[x: `bytes26[${string}]`]: undefined;
|
|
310
|
-
[x: `bytes25[${string}]`]: undefined;
|
|
311
|
-
[x: `bytes24[${string}]`]: undefined;
|
|
312
|
-
[x: `bytes23[${string}]`]: undefined;
|
|
313
|
-
[x: `bytes22[${string}]`]: undefined;
|
|
314
|
-
[x: `bytes21[${string}]`]: undefined;
|
|
315
|
-
[x: `bytes20[${string}]`]: undefined;
|
|
316
|
-
[x: `bytes19[${string}]`]: undefined;
|
|
317
|
-
[x: `bytes17[${string}]`]: undefined;
|
|
318
|
-
[x: `bytes16[${string}]`]: undefined;
|
|
319
|
-
[x: `bytes15[${string}]`]: undefined;
|
|
320
|
-
[x: `bytes14[${string}]`]: undefined;
|
|
321
|
-
[x: `bytes13[${string}]`]: undefined;
|
|
322
|
-
[x: `bytes12[${string}]`]: undefined;
|
|
323
|
-
[x: `bytes11[${string}]`]: undefined;
|
|
324
|
-
[x: `bytes9[${string}]`]: undefined;
|
|
325
|
-
[x: `bytes8[${string}]`]: undefined;
|
|
326
|
-
[x: `bytes7[${string}]`]: undefined;
|
|
327
285
|
[x: `bytes6[${string}]`]: undefined;
|
|
286
|
+
[x: `bytes7[${string}]`]: undefined;
|
|
287
|
+
[x: `bytes8[${string}]`]: undefined;
|
|
288
|
+
[x: `bytes9[${string}]`]: undefined;
|
|
289
|
+
[x: `bytes11[${string}]`]: undefined;
|
|
290
|
+
[x: `bytes12[${string}]`]: undefined;
|
|
291
|
+
[x: `bytes13[${string}]`]: undefined;
|
|
292
|
+
[x: `bytes14[${string}]`]: undefined;
|
|
293
|
+
[x: `bytes15[${string}]`]: undefined;
|
|
294
|
+
[x: `bytes16[${string}]`]: undefined;
|
|
295
|
+
[x: `bytes17[${string}]`]: undefined;
|
|
296
|
+
[x: `bytes19[${string}]`]: undefined;
|
|
297
|
+
[x: `bytes20[${string}]`]: undefined;
|
|
298
|
+
[x: `bytes21[${string}]`]: undefined;
|
|
299
|
+
[x: `bytes22[${string}]`]: undefined;
|
|
300
|
+
[x: `bytes23[${string}]`]: undefined;
|
|
301
|
+
[x: `bytes24[${string}]`]: undefined;
|
|
302
|
+
[x: `bytes25[${string}]`]: undefined;
|
|
303
|
+
[x: `bytes26[${string}]`]: undefined;
|
|
304
|
+
[x: `bytes27[${string}]`]: undefined;
|
|
305
|
+
[x: `bytes28[${string}]`]: undefined;
|
|
306
|
+
[x: `bytes29[${string}]`]: undefined;
|
|
307
|
+
[x: `bytes30[${string}]`]: undefined;
|
|
308
|
+
[x: `bytes31[${string}]`]: undefined;
|
|
309
|
+
[x: `bytes32[${string}]`]: undefined;
|
|
328
310
|
[x: `int[${string}]`]: undefined;
|
|
329
|
-
[x: `int40[${string}]`]: undefined;
|
|
330
|
-
[x: `int32[${string}]`]: undefined;
|
|
331
|
-
[x: `int24[${string}]`]: undefined;
|
|
332
|
-
[x: `int16[${string}]`]: undefined;
|
|
333
311
|
[x: `int8[${string}]`]: undefined;
|
|
312
|
+
[x: `int16[${string}]`]: undefined;
|
|
313
|
+
[x: `int24[${string}]`]: undefined;
|
|
314
|
+
[x: `int32[${string}]`]: undefined;
|
|
315
|
+
[x: `int40[${string}]`]: undefined;
|
|
334
316
|
[x: `int48[${string}]`]: undefined;
|
|
335
317
|
[x: `int56[${string}]`]: undefined;
|
|
336
318
|
[x: `int64[${string}]`]: undefined;
|
|
@@ -359,11 +341,11 @@ export declare const isAlchemySmartAccountClient: <TTransport extends Transport
|
|
|
359
341
|
[x: `int248[${string}]`]: undefined;
|
|
360
342
|
[x: `int256[${string}]`]: undefined;
|
|
361
343
|
[x: `uint[${string}]`]: undefined;
|
|
362
|
-
[x: `uint40[${string}]`]: undefined;
|
|
363
|
-
[x: `uint32[${string}]`]: undefined;
|
|
364
|
-
[x: `uint24[${string}]`]: undefined;
|
|
365
|
-
[x: `uint16[${string}]`]: undefined;
|
|
366
344
|
[x: `uint8[${string}]`]: undefined;
|
|
345
|
+
[x: `uint16[${string}]`]: undefined;
|
|
346
|
+
[x: `uint24[${string}]`]: undefined;
|
|
347
|
+
[x: `uint32[${string}]`]: undefined;
|
|
348
|
+
[x: `uint40[${string}]`]: undefined;
|
|
367
349
|
[x: `uint48[${string}]`]: undefined;
|
|
368
350
|
[x: `uint56[${string}]`]: undefined;
|
|
369
351
|
[x: `uint64[${string}]`]: undefined;
|
|
@@ -399,39 +381,39 @@ export declare const isAlchemySmartAccountClient: <TTransport extends Transport
|
|
|
399
381
|
bytes1?: undefined;
|
|
400
382
|
bytes5?: undefined;
|
|
401
383
|
bytes10?: undefined;
|
|
384
|
+
bytes4?: undefined;
|
|
402
385
|
bytes2?: undefined;
|
|
403
386
|
bytes3?: undefined;
|
|
404
|
-
bytes4?: undefined;
|
|
405
|
-
bytes32?: undefined;
|
|
406
|
-
bytes31?: undefined;
|
|
407
|
-
bytes30?: undefined;
|
|
408
|
-
bytes29?: undefined;
|
|
409
|
-
bytes28?: undefined;
|
|
410
|
-
bytes27?: undefined;
|
|
411
|
-
bytes26?: undefined;
|
|
412
|
-
bytes25?: undefined;
|
|
413
|
-
bytes24?: undefined;
|
|
414
|
-
bytes23?: undefined;
|
|
415
|
-
bytes22?: undefined;
|
|
416
|
-
bytes21?: undefined;
|
|
417
|
-
bytes20?: undefined;
|
|
418
|
-
bytes19?: undefined;
|
|
419
|
-
bytes17?: undefined;
|
|
420
|
-
bytes16?: undefined;
|
|
421
|
-
bytes15?: undefined;
|
|
422
|
-
bytes14?: undefined;
|
|
423
|
-
bytes13?: undefined;
|
|
424
|
-
bytes12?: undefined;
|
|
425
|
-
bytes11?: undefined;
|
|
426
|
-
bytes9?: undefined;
|
|
427
|
-
bytes8?: undefined;
|
|
428
|
-
bytes7?: undefined;
|
|
429
387
|
bytes6?: undefined;
|
|
430
|
-
|
|
431
|
-
|
|
432
|
-
|
|
433
|
-
|
|
388
|
+
bytes7?: undefined;
|
|
389
|
+
bytes8?: undefined;
|
|
390
|
+
bytes9?: undefined;
|
|
391
|
+
bytes11?: undefined;
|
|
392
|
+
bytes12?: undefined;
|
|
393
|
+
bytes13?: undefined;
|
|
394
|
+
bytes14?: undefined;
|
|
395
|
+
bytes15?: undefined;
|
|
396
|
+
bytes16?: undefined;
|
|
397
|
+
bytes17?: undefined;
|
|
398
|
+
bytes19?: undefined;
|
|
399
|
+
bytes20?: undefined;
|
|
400
|
+
bytes21?: undefined;
|
|
401
|
+
bytes22?: undefined;
|
|
402
|
+
bytes23?: undefined;
|
|
403
|
+
bytes24?: undefined;
|
|
404
|
+
bytes25?: undefined;
|
|
405
|
+
bytes26?: undefined;
|
|
406
|
+
bytes27?: undefined;
|
|
407
|
+
bytes28?: undefined;
|
|
408
|
+
bytes29?: undefined;
|
|
409
|
+
bytes30?: undefined;
|
|
410
|
+
bytes31?: undefined;
|
|
411
|
+
bytes32?: undefined;
|
|
434
412
|
int8?: undefined;
|
|
413
|
+
int16?: undefined;
|
|
414
|
+
int24?: undefined;
|
|
415
|
+
int32?: undefined;
|
|
416
|
+
int40?: undefined;
|
|
435
417
|
int48?: undefined;
|
|
436
418
|
int56?: undefined;
|
|
437
419
|
int64?: undefined;
|
|
@@ -459,11 +441,11 @@ export declare const isAlchemySmartAccountClient: <TTransport extends Transport
|
|
|
459
441
|
int240?: undefined;
|
|
460
442
|
int248?: undefined;
|
|
461
443
|
int256?: undefined;
|
|
462
|
-
uint40?: undefined;
|
|
463
|
-
uint32?: undefined;
|
|
464
|
-
uint24?: undefined;
|
|
465
|
-
uint16?: undefined;
|
|
466
444
|
uint8?: undefined;
|
|
445
|
+
uint16?: undefined;
|
|
446
|
+
uint24?: undefined;
|
|
447
|
+
uint32?: undefined;
|
|
448
|
+
uint40?: undefined;
|
|
467
449
|
uint48?: undefined;
|
|
468
450
|
uint56?: undefined;
|
|
469
451
|
uint64?: undefined;
|
|
@@ -506,40 +488,40 @@ export declare const isAlchemySmartAccountClient: <TTransport extends Transport
|
|
|
506
488
|
[x: `bytes1[${string}]`]: undefined;
|
|
507
489
|
[x: `bytes5[${string}]`]: undefined;
|
|
508
490
|
[x: `bytes10[${string}]`]: undefined;
|
|
491
|
+
[x: `bytes4[${string}]`]: undefined;
|
|
509
492
|
[x: `bytes2[${string}]`]: undefined;
|
|
510
493
|
[x: `bytes3[${string}]`]: undefined;
|
|
511
|
-
[x: `bytes4[${string}]`]: undefined;
|
|
512
|
-
[x: `bytes32[${string}]`]: undefined;
|
|
513
|
-
[x: `bytes31[${string}]`]: undefined;
|
|
514
|
-
[x: `bytes30[${string}]`]: undefined;
|
|
515
|
-
[x: `bytes29[${string}]`]: undefined;
|
|
516
|
-
[x: `bytes28[${string}]`]: undefined;
|
|
517
|
-
[x: `bytes27[${string}]`]: undefined;
|
|
518
|
-
[x: `bytes26[${string}]`]: undefined;
|
|
519
|
-
[x: `bytes25[${string}]`]: undefined;
|
|
520
|
-
[x: `bytes24[${string}]`]: undefined;
|
|
521
|
-
[x: `bytes23[${string}]`]: undefined;
|
|
522
|
-
[x: `bytes22[${string}]`]: undefined;
|
|
523
|
-
[x: `bytes21[${string}]`]: undefined;
|
|
524
|
-
[x: `bytes20[${string}]`]: undefined;
|
|
525
|
-
[x: `bytes19[${string}]`]: undefined;
|
|
526
|
-
[x: `bytes17[${string}]`]: undefined;
|
|
527
|
-
[x: `bytes16[${string}]`]: undefined;
|
|
528
|
-
[x: `bytes15[${string}]`]: undefined;
|
|
529
|
-
[x: `bytes14[${string}]`]: undefined;
|
|
530
|
-
[x: `bytes13[${string}]`]: undefined;
|
|
531
|
-
[x: `bytes12[${string}]`]: undefined;
|
|
532
|
-
[x: `bytes11[${string}]`]: undefined;
|
|
533
|
-
[x: `bytes9[${string}]`]: undefined;
|
|
534
|
-
[x: `bytes8[${string}]`]: undefined;
|
|
535
|
-
[x: `bytes7[${string}]`]: undefined;
|
|
536
494
|
[x: `bytes6[${string}]`]: undefined;
|
|
495
|
+
[x: `bytes7[${string}]`]: undefined;
|
|
496
|
+
[x: `bytes8[${string}]`]: undefined;
|
|
497
|
+
[x: `bytes9[${string}]`]: undefined;
|
|
498
|
+
[x: `bytes11[${string}]`]: undefined;
|
|
499
|
+
[x: `bytes12[${string}]`]: undefined;
|
|
500
|
+
[x: `bytes13[${string}]`]: undefined;
|
|
501
|
+
[x: `bytes14[${string}]`]: undefined;
|
|
502
|
+
[x: `bytes15[${string}]`]: undefined;
|
|
503
|
+
[x: `bytes16[${string}]`]: undefined;
|
|
504
|
+
[x: `bytes17[${string}]`]: undefined;
|
|
505
|
+
[x: `bytes19[${string}]`]: undefined;
|
|
506
|
+
[x: `bytes20[${string}]`]: undefined;
|
|
507
|
+
[x: `bytes21[${string}]`]: undefined;
|
|
508
|
+
[x: `bytes22[${string}]`]: undefined;
|
|
509
|
+
[x: `bytes23[${string}]`]: undefined;
|
|
510
|
+
[x: `bytes24[${string}]`]: undefined;
|
|
511
|
+
[x: `bytes25[${string}]`]: undefined;
|
|
512
|
+
[x: `bytes26[${string}]`]: undefined;
|
|
513
|
+
[x: `bytes27[${string}]`]: undefined;
|
|
514
|
+
[x: `bytes28[${string}]`]: undefined;
|
|
515
|
+
[x: `bytes29[${string}]`]: undefined;
|
|
516
|
+
[x: `bytes30[${string}]`]: undefined;
|
|
517
|
+
[x: `bytes31[${string}]`]: undefined;
|
|
518
|
+
[x: `bytes32[${string}]`]: undefined;
|
|
537
519
|
[x: `int[${string}]`]: undefined;
|
|
538
|
-
[x: `int40[${string}]`]: undefined;
|
|
539
|
-
[x: `int32[${string}]`]: undefined;
|
|
540
|
-
[x: `int24[${string}]`]: undefined;
|
|
541
|
-
[x: `int16[${string}]`]: undefined;
|
|
542
520
|
[x: `int8[${string}]`]: undefined;
|
|
521
|
+
[x: `int16[${string}]`]: undefined;
|
|
522
|
+
[x: `int24[${string}]`]: undefined;
|
|
523
|
+
[x: `int32[${string}]`]: undefined;
|
|
524
|
+
[x: `int40[${string}]`]: undefined;
|
|
543
525
|
[x: `int48[${string}]`]: undefined;
|
|
544
526
|
[x: `int56[${string}]`]: undefined;
|
|
545
527
|
[x: `int64[${string}]`]: undefined;
|
|
@@ -568,11 +550,11 @@ export declare const isAlchemySmartAccountClient: <TTransport extends Transport
|
|
|
568
550
|
[x: `int248[${string}]`]: undefined;
|
|
569
551
|
[x: `int256[${string}]`]: undefined;
|
|
570
552
|
[x: `uint[${string}]`]: undefined;
|
|
571
|
-
[x: `uint40[${string}]`]: undefined;
|
|
572
|
-
[x: `uint32[${string}]`]: undefined;
|
|
573
|
-
[x: `uint24[${string}]`]: undefined;
|
|
574
|
-
[x: `uint16[${string}]`]: undefined;
|
|
575
553
|
[x: `uint8[${string}]`]: undefined;
|
|
554
|
+
[x: `uint16[${string}]`]: undefined;
|
|
555
|
+
[x: `uint24[${string}]`]: undefined;
|
|
556
|
+
[x: `uint32[${string}]`]: undefined;
|
|
557
|
+
[x: `uint40[${string}]`]: undefined;
|
|
576
558
|
[x: `uint48[${string}]`]: undefined;
|
|
577
559
|
[x: `uint56[${string}]`]: undefined;
|
|
578
560
|
[x: `uint64[${string}]`]: undefined;
|
|
@@ -608,71 +590,71 @@ export declare const isAlchemySmartAccountClient: <TTransport extends Transport
|
|
|
608
590
|
bytes1?: undefined;
|
|
609
591
|
bytes5?: undefined;
|
|
610
592
|
bytes10?: undefined;
|
|
593
|
+
bytes4?: undefined;
|
|
611
594
|
bytes2?: undefined;
|
|
612
595
|
bytes3?: undefined;
|
|
613
|
-
bytes4?: undefined;
|
|
614
|
-
bytes32?: undefined;
|
|
615
|
-
bytes31?: undefined;
|
|
616
|
-
bytes30?: undefined;
|
|
617
|
-
bytes29?: undefined;
|
|
618
|
-
bytes28?: undefined;
|
|
619
|
-
bytes27?: undefined;
|
|
620
|
-
bytes26?: undefined;
|
|
621
|
-
bytes25?: undefined;
|
|
622
|
-
bytes24?: undefined;
|
|
623
|
-
bytes23?: undefined;
|
|
624
|
-
bytes22?: undefined;
|
|
625
|
-
bytes21?: undefined;
|
|
626
|
-
bytes20?: undefined;
|
|
627
|
-
bytes19?: undefined;
|
|
628
|
-
bytes17?: undefined;
|
|
629
|
-
bytes16?: undefined;
|
|
630
|
-
bytes15?: undefined;
|
|
631
|
-
bytes14?: undefined;
|
|
632
|
-
bytes13?: undefined;
|
|
633
|
-
bytes12?: undefined;
|
|
634
|
-
bytes11?: undefined;
|
|
635
|
-
bytes9?: undefined;
|
|
636
|
-
bytes8?: undefined;
|
|
637
|
-
bytes7?: undefined;
|
|
638
596
|
bytes6?: undefined;
|
|
639
|
-
|
|
640
|
-
|
|
641
|
-
|
|
642
|
-
|
|
643
|
-
|
|
644
|
-
|
|
645
|
-
|
|
646
|
-
|
|
647
|
-
|
|
648
|
-
|
|
649
|
-
|
|
650
|
-
|
|
651
|
-
|
|
652
|
-
|
|
653
|
-
|
|
654
|
-
|
|
655
|
-
|
|
656
|
-
|
|
657
|
-
|
|
658
|
-
|
|
659
|
-
|
|
660
|
-
|
|
661
|
-
|
|
662
|
-
|
|
663
|
-
|
|
664
|
-
|
|
597
|
+
bytes7?: undefined;
|
|
598
|
+
bytes8?: undefined;
|
|
599
|
+
bytes9?: undefined;
|
|
600
|
+
bytes11?: undefined;
|
|
601
|
+
bytes12?: undefined;
|
|
602
|
+
bytes13?: undefined;
|
|
603
|
+
bytes14?: undefined;
|
|
604
|
+
bytes15?: undefined;
|
|
605
|
+
bytes16?: undefined;
|
|
606
|
+
bytes17?: undefined;
|
|
607
|
+
bytes19?: undefined;
|
|
608
|
+
bytes20?: undefined;
|
|
609
|
+
bytes21?: undefined;
|
|
610
|
+
bytes22?: undefined;
|
|
611
|
+
bytes23?: undefined;
|
|
612
|
+
bytes24?: undefined;
|
|
613
|
+
bytes25?: undefined;
|
|
614
|
+
bytes26?: undefined;
|
|
615
|
+
bytes27?: undefined;
|
|
616
|
+
bytes28?: undefined;
|
|
617
|
+
bytes29?: undefined;
|
|
618
|
+
bytes30?: undefined;
|
|
619
|
+
bytes31?: undefined;
|
|
620
|
+
bytes32?: undefined;
|
|
621
|
+
int8?: undefined;
|
|
622
|
+
int16?: undefined;
|
|
623
|
+
int24?: undefined;
|
|
624
|
+
int32?: undefined;
|
|
625
|
+
int40?: undefined;
|
|
626
|
+
int48?: undefined;
|
|
627
|
+
int56?: undefined;
|
|
628
|
+
int64?: undefined;
|
|
629
|
+
int72?: undefined;
|
|
630
|
+
int80?: undefined;
|
|
631
|
+
int88?: undefined;
|
|
632
|
+
int96?: undefined;
|
|
633
|
+
int104?: undefined;
|
|
634
|
+
int112?: undefined;
|
|
635
|
+
int120?: undefined;
|
|
636
|
+
int128?: undefined;
|
|
637
|
+
int136?: undefined;
|
|
638
|
+
int144?: undefined;
|
|
639
|
+
int152?: undefined;
|
|
640
|
+
int160?: undefined;
|
|
641
|
+
int168?: undefined;
|
|
642
|
+
int176?: undefined;
|
|
643
|
+
int184?: undefined;
|
|
644
|
+
int192?: undefined;
|
|
645
|
+
int200?: undefined;
|
|
646
|
+
int208?: undefined;
|
|
665
647
|
int216?: undefined;
|
|
666
648
|
int224?: undefined;
|
|
667
649
|
int232?: undefined;
|
|
668
650
|
int240?: undefined;
|
|
669
651
|
int248?: undefined;
|
|
670
652
|
int256?: undefined;
|
|
671
|
-
uint40?: undefined;
|
|
672
|
-
uint32?: undefined;
|
|
673
|
-
uint24?: undefined;
|
|
674
|
-
uint16?: undefined;
|
|
675
653
|
uint8?: undefined;
|
|
654
|
+
uint16?: undefined;
|
|
655
|
+
uint24?: undefined;
|
|
656
|
+
uint32?: undefined;
|
|
657
|
+
uint40?: undefined;
|
|
676
658
|
uint48?: undefined;
|
|
677
659
|
uint56?: undefined;
|
|
678
660
|
uint64?: undefined;
|
|
@@ -903,24 +885,6 @@ export declare const isAlchemySmartAccountClient: <TTransport extends Transport
|
|
|
903
885
|
Method: "eth_uninstallFilter";
|
|
904
886
|
Parameters: [filterId: `0x${string}`];
|
|
905
887
|
ReturnType: boolean;
|
|
906
|
-
}, {
|
|
907
|
-
Method: "alchemy_requestPaymasterAndData";
|
|
908
|
-
Parameters: [{
|
|
909
|
-
policyId: string;
|
|
910
|
-
entryPoint: `0x${string}`;
|
|
911
|
-
userOperation: import("@aa-sdk/core").UserOperationRequest;
|
|
912
|
-
}];
|
|
913
|
-
ReturnType: import("..").RequestPaymasterAndDataResponse;
|
|
914
|
-
}, {
|
|
915
|
-
Method: "alchemy_requestGasAndPaymasterAndData";
|
|
916
|
-
Parameters: [{
|
|
917
|
-
policyId: string;
|
|
918
|
-
entryPoint: `0x${string}`;
|
|
919
|
-
userOperation: import("@aa-sdk/core").UserOperationRequest;
|
|
920
|
-
dummySignature: `0x${string}`;
|
|
921
|
-
overrides?: Partial<{}> | undefined;
|
|
922
|
-
}];
|
|
923
|
-
ReturnType: import("..").RequestGasAndPaymasterAndDataResponse;
|
|
924
888
|
}, {
|
|
925
889
|
Method: "alchemy_simulateUserOperationAssetChanges";
|
|
926
890
|
Parameters: import("..").SimulateUserOperationAssetChangesRequest;
|
|
@@ -989,40 +953,40 @@ export declare const isAlchemySmartAccountClient: <TTransport extends Transport
|
|
|
989
953
|
[x: `bytes1[${string}]`]: undefined;
|
|
990
954
|
[x: `bytes5[${string}]`]: undefined;
|
|
991
955
|
[x: `bytes10[${string}]`]: undefined;
|
|
956
|
+
[x: `bytes4[${string}]`]: undefined;
|
|
992
957
|
[x: `bytes2[${string}]`]: undefined;
|
|
993
958
|
[x: `bytes3[${string}]`]: undefined;
|
|
994
|
-
[x: `bytes4[${string}]`]: undefined;
|
|
995
|
-
[x: `bytes32[${string}]`]: undefined;
|
|
996
|
-
[x: `bytes31[${string}]`]: undefined;
|
|
997
|
-
[x: `bytes30[${string}]`]: undefined;
|
|
998
|
-
[x: `bytes29[${string}]`]: undefined;
|
|
999
|
-
[x: `bytes28[${string}]`]: undefined;
|
|
1000
|
-
[x: `bytes27[${string}]`]: undefined;
|
|
1001
|
-
[x: `bytes26[${string}]`]: undefined;
|
|
1002
|
-
[x: `bytes25[${string}]`]: undefined;
|
|
1003
|
-
[x: `bytes24[${string}]`]: undefined;
|
|
1004
|
-
[x: `bytes23[${string}]`]: undefined;
|
|
1005
|
-
[x: `bytes22[${string}]`]: undefined;
|
|
1006
|
-
[x: `bytes21[${string}]`]: undefined;
|
|
1007
|
-
[x: `bytes20[${string}]`]: undefined;
|
|
1008
|
-
[x: `bytes19[${string}]`]: undefined;
|
|
1009
|
-
[x: `bytes17[${string}]`]: undefined;
|
|
1010
|
-
[x: `bytes16[${string}]`]: undefined;
|
|
1011
|
-
[x: `bytes15[${string}]`]: undefined;
|
|
1012
|
-
[x: `bytes14[${string}]`]: undefined;
|
|
1013
|
-
[x: `bytes13[${string}]`]: undefined;
|
|
1014
|
-
[x: `bytes12[${string}]`]: undefined;
|
|
1015
|
-
[x: `bytes11[${string}]`]: undefined;
|
|
1016
|
-
[x: `bytes9[${string}]`]: undefined;
|
|
1017
|
-
[x: `bytes8[${string}]`]: undefined;
|
|
1018
|
-
[x: `bytes7[${string}]`]: undefined;
|
|
1019
959
|
[x: `bytes6[${string}]`]: undefined;
|
|
960
|
+
[x: `bytes7[${string}]`]: undefined;
|
|
961
|
+
[x: `bytes8[${string}]`]: undefined;
|
|
962
|
+
[x: `bytes9[${string}]`]: undefined;
|
|
963
|
+
[x: `bytes11[${string}]`]: undefined;
|
|
964
|
+
[x: `bytes12[${string}]`]: undefined;
|
|
965
|
+
[x: `bytes13[${string}]`]: undefined;
|
|
966
|
+
[x: `bytes14[${string}]`]: undefined;
|
|
967
|
+
[x: `bytes15[${string}]`]: undefined;
|
|
968
|
+
[x: `bytes16[${string}]`]: undefined;
|
|
969
|
+
[x: `bytes17[${string}]`]: undefined;
|
|
970
|
+
[x: `bytes19[${string}]`]: undefined;
|
|
971
|
+
[x: `bytes20[${string}]`]: undefined;
|
|
972
|
+
[x: `bytes21[${string}]`]: undefined;
|
|
973
|
+
[x: `bytes22[${string}]`]: undefined;
|
|
974
|
+
[x: `bytes23[${string}]`]: undefined;
|
|
975
|
+
[x: `bytes24[${string}]`]: undefined;
|
|
976
|
+
[x: `bytes25[${string}]`]: undefined;
|
|
977
|
+
[x: `bytes26[${string}]`]: undefined;
|
|
978
|
+
[x: `bytes27[${string}]`]: undefined;
|
|
979
|
+
[x: `bytes28[${string}]`]: undefined;
|
|
980
|
+
[x: `bytes29[${string}]`]: undefined;
|
|
981
|
+
[x: `bytes30[${string}]`]: undefined;
|
|
982
|
+
[x: `bytes31[${string}]`]: undefined;
|
|
983
|
+
[x: `bytes32[${string}]`]: undefined;
|
|
1020
984
|
[x: `int[${string}]`]: undefined;
|
|
1021
|
-
[x: `int40[${string}]`]: undefined;
|
|
1022
|
-
[x: `int32[${string}]`]: undefined;
|
|
1023
|
-
[x: `int24[${string}]`]: undefined;
|
|
1024
|
-
[x: `int16[${string}]`]: undefined;
|
|
1025
985
|
[x: `int8[${string}]`]: undefined;
|
|
986
|
+
[x: `int16[${string}]`]: undefined;
|
|
987
|
+
[x: `int24[${string}]`]: undefined;
|
|
988
|
+
[x: `int32[${string}]`]: undefined;
|
|
989
|
+
[x: `int40[${string}]`]: undefined;
|
|
1026
990
|
[x: `int48[${string}]`]: undefined;
|
|
1027
991
|
[x: `int56[${string}]`]: undefined;
|
|
1028
992
|
[x: `int64[${string}]`]: undefined;
|
|
@@ -1051,11 +1015,11 @@ export declare const isAlchemySmartAccountClient: <TTransport extends Transport
|
|
|
1051
1015
|
[x: `int248[${string}]`]: undefined;
|
|
1052
1016
|
[x: `int256[${string}]`]: undefined;
|
|
1053
1017
|
[x: `uint[${string}]`]: undefined;
|
|
1054
|
-
[x: `uint40[${string}]`]: undefined;
|
|
1055
|
-
[x: `uint32[${string}]`]: undefined;
|
|
1056
|
-
[x: `uint24[${string}]`]: undefined;
|
|
1057
|
-
[x: `uint16[${string}]`]: undefined;
|
|
1058
1018
|
[x: `uint8[${string}]`]: undefined;
|
|
1019
|
+
[x: `uint16[${string}]`]: undefined;
|
|
1020
|
+
[x: `uint24[${string}]`]: undefined;
|
|
1021
|
+
[x: `uint32[${string}]`]: undefined;
|
|
1022
|
+
[x: `uint40[${string}]`]: undefined;
|
|
1059
1023
|
[x: `uint48[${string}]`]: undefined;
|
|
1060
1024
|
[x: `uint56[${string}]`]: undefined;
|
|
1061
1025
|
[x: `uint64[${string}]`]: undefined;
|
|
@@ -1091,39 +1055,39 @@ export declare const isAlchemySmartAccountClient: <TTransport extends Transport
|
|
|
1091
1055
|
bytes1?: undefined;
|
|
1092
1056
|
bytes5?: undefined;
|
|
1093
1057
|
bytes10?: undefined;
|
|
1058
|
+
bytes4?: undefined;
|
|
1094
1059
|
bytes2?: undefined;
|
|
1095
1060
|
bytes3?: undefined;
|
|
1096
|
-
bytes4?: undefined;
|
|
1097
|
-
bytes32?: undefined;
|
|
1098
|
-
bytes31?: undefined;
|
|
1099
|
-
bytes30?: undefined;
|
|
1100
|
-
bytes29?: undefined;
|
|
1101
|
-
bytes28?: undefined;
|
|
1102
|
-
bytes27?: undefined;
|
|
1103
|
-
bytes26?: undefined;
|
|
1104
|
-
bytes25?: undefined;
|
|
1105
|
-
bytes24?: undefined;
|
|
1106
|
-
bytes23?: undefined;
|
|
1107
|
-
bytes22?: undefined;
|
|
1108
|
-
bytes21?: undefined;
|
|
1109
|
-
bytes20?: undefined;
|
|
1110
|
-
bytes19?: undefined;
|
|
1111
|
-
bytes17?: undefined;
|
|
1112
|
-
bytes16?: undefined;
|
|
1113
|
-
bytes15?: undefined;
|
|
1114
|
-
bytes14?: undefined;
|
|
1115
|
-
bytes13?: undefined;
|
|
1116
|
-
bytes12?: undefined;
|
|
1117
|
-
bytes11?: undefined;
|
|
1118
|
-
bytes9?: undefined;
|
|
1119
|
-
bytes8?: undefined;
|
|
1120
|
-
bytes7?: undefined;
|
|
1121
1061
|
bytes6?: undefined;
|
|
1122
|
-
|
|
1123
|
-
|
|
1124
|
-
|
|
1125
|
-
|
|
1062
|
+
bytes7?: undefined;
|
|
1063
|
+
bytes8?: undefined;
|
|
1064
|
+
bytes9?: undefined;
|
|
1065
|
+
bytes11?: undefined;
|
|
1066
|
+
bytes12?: undefined;
|
|
1067
|
+
bytes13?: undefined;
|
|
1068
|
+
bytes14?: undefined;
|
|
1069
|
+
bytes15?: undefined;
|
|
1070
|
+
bytes16?: undefined;
|
|
1071
|
+
bytes17?: undefined;
|
|
1072
|
+
bytes19?: undefined;
|
|
1073
|
+
bytes20?: undefined;
|
|
1074
|
+
bytes21?: undefined;
|
|
1075
|
+
bytes22?: undefined;
|
|
1076
|
+
bytes23?: undefined;
|
|
1077
|
+
bytes24?: undefined;
|
|
1078
|
+
bytes25?: undefined;
|
|
1079
|
+
bytes26?: undefined;
|
|
1080
|
+
bytes27?: undefined;
|
|
1081
|
+
bytes28?: undefined;
|
|
1082
|
+
bytes29?: undefined;
|
|
1083
|
+
bytes30?: undefined;
|
|
1084
|
+
bytes31?: undefined;
|
|
1085
|
+
bytes32?: undefined;
|
|
1126
1086
|
int8?: undefined;
|
|
1087
|
+
int16?: undefined;
|
|
1088
|
+
int24?: undefined;
|
|
1089
|
+
int32?: undefined;
|
|
1090
|
+
int40?: undefined;
|
|
1127
1091
|
int48?: undefined;
|
|
1128
1092
|
int56?: undefined;
|
|
1129
1093
|
int64?: undefined;
|
|
@@ -1151,11 +1115,11 @@ export declare const isAlchemySmartAccountClient: <TTransport extends Transport
|
|
|
1151
1115
|
int240?: undefined;
|
|
1152
1116
|
int248?: undefined;
|
|
1153
1117
|
int256?: undefined;
|
|
1154
|
-
uint40?: undefined;
|
|
1155
|
-
uint32?: undefined;
|
|
1156
|
-
uint24?: undefined;
|
|
1157
|
-
uint16?: undefined;
|
|
1158
1118
|
uint8?: undefined;
|
|
1119
|
+
uint16?: undefined;
|
|
1120
|
+
uint24?: undefined;
|
|
1121
|
+
uint32?: undefined;
|
|
1122
|
+
uint40?: undefined;
|
|
1159
1123
|
uint48?: undefined;
|
|
1160
1124
|
uint56?: undefined;
|
|
1161
1125
|
uint64?: undefined;
|
|
@@ -1198,40 +1162,40 @@ export declare const isAlchemySmartAccountClient: <TTransport extends Transport
|
|
|
1198
1162
|
[x: `bytes1[${string}]`]: undefined;
|
|
1199
1163
|
[x: `bytes5[${string}]`]: undefined;
|
|
1200
1164
|
[x: `bytes10[${string}]`]: undefined;
|
|
1165
|
+
[x: `bytes4[${string}]`]: undefined;
|
|
1201
1166
|
[x: `bytes2[${string}]`]: undefined;
|
|
1202
1167
|
[x: `bytes3[${string}]`]: undefined;
|
|
1203
|
-
[x: `bytes4[${string}]`]: undefined;
|
|
1204
|
-
[x: `bytes32[${string}]`]: undefined;
|
|
1205
|
-
[x: `bytes31[${string}]`]: undefined;
|
|
1206
|
-
[x: `bytes30[${string}]`]: undefined;
|
|
1207
|
-
[x: `bytes29[${string}]`]: undefined;
|
|
1208
|
-
[x: `bytes28[${string}]`]: undefined;
|
|
1209
|
-
[x: `bytes27[${string}]`]: undefined;
|
|
1210
|
-
[x: `bytes26[${string}]`]: undefined;
|
|
1211
|
-
[x: `bytes25[${string}]`]: undefined;
|
|
1212
|
-
[x: `bytes24[${string}]`]: undefined;
|
|
1213
|
-
[x: `bytes23[${string}]`]: undefined;
|
|
1214
|
-
[x: `bytes22[${string}]`]: undefined;
|
|
1215
|
-
[x: `bytes21[${string}]`]: undefined;
|
|
1216
|
-
[x: `bytes20[${string}]`]: undefined;
|
|
1217
|
-
[x: `bytes19[${string}]`]: undefined;
|
|
1218
|
-
[x: `bytes17[${string}]`]: undefined;
|
|
1219
|
-
[x: `bytes16[${string}]`]: undefined;
|
|
1220
|
-
[x: `bytes15[${string}]`]: undefined;
|
|
1221
|
-
[x: `bytes14[${string}]`]: undefined;
|
|
1222
|
-
[x: `bytes13[${string}]`]: undefined;
|
|
1223
|
-
[x: `bytes12[${string}]`]: undefined;
|
|
1224
|
-
[x: `bytes11[${string}]`]: undefined;
|
|
1225
|
-
[x: `bytes9[${string}]`]: undefined;
|
|
1226
|
-
[x: `bytes8[${string}]`]: undefined;
|
|
1227
|
-
[x: `bytes7[${string}]`]: undefined;
|
|
1228
1168
|
[x: `bytes6[${string}]`]: undefined;
|
|
1169
|
+
[x: `bytes7[${string}]`]: undefined;
|
|
1170
|
+
[x: `bytes8[${string}]`]: undefined;
|
|
1171
|
+
[x: `bytes9[${string}]`]: undefined;
|
|
1172
|
+
[x: `bytes11[${string}]`]: undefined;
|
|
1173
|
+
[x: `bytes12[${string}]`]: undefined;
|
|
1174
|
+
[x: `bytes13[${string}]`]: undefined;
|
|
1175
|
+
[x: `bytes14[${string}]`]: undefined;
|
|
1176
|
+
[x: `bytes15[${string}]`]: undefined;
|
|
1177
|
+
[x: `bytes16[${string}]`]: undefined;
|
|
1178
|
+
[x: `bytes17[${string}]`]: undefined;
|
|
1179
|
+
[x: `bytes19[${string}]`]: undefined;
|
|
1180
|
+
[x: `bytes20[${string}]`]: undefined;
|
|
1181
|
+
[x: `bytes21[${string}]`]: undefined;
|
|
1182
|
+
[x: `bytes22[${string}]`]: undefined;
|
|
1183
|
+
[x: `bytes23[${string}]`]: undefined;
|
|
1184
|
+
[x: `bytes24[${string}]`]: undefined;
|
|
1185
|
+
[x: `bytes25[${string}]`]: undefined;
|
|
1186
|
+
[x: `bytes26[${string}]`]: undefined;
|
|
1187
|
+
[x: `bytes27[${string}]`]: undefined;
|
|
1188
|
+
[x: `bytes28[${string}]`]: undefined;
|
|
1189
|
+
[x: `bytes29[${string}]`]: undefined;
|
|
1190
|
+
[x: `bytes30[${string}]`]: undefined;
|
|
1191
|
+
[x: `bytes31[${string}]`]: undefined;
|
|
1192
|
+
[x: `bytes32[${string}]`]: undefined;
|
|
1229
1193
|
[x: `int[${string}]`]: undefined;
|
|
1230
|
-
[x: `int40[${string}]`]: undefined;
|
|
1231
|
-
[x: `int32[${string}]`]: undefined;
|
|
1232
|
-
[x: `int24[${string}]`]: undefined;
|
|
1233
|
-
[x: `int16[${string}]`]: undefined;
|
|
1234
1194
|
[x: `int8[${string}]`]: undefined;
|
|
1195
|
+
[x: `int16[${string}]`]: undefined;
|
|
1196
|
+
[x: `int24[${string}]`]: undefined;
|
|
1197
|
+
[x: `int32[${string}]`]: undefined;
|
|
1198
|
+
[x: `int40[${string}]`]: undefined;
|
|
1235
1199
|
[x: `int48[${string}]`]: undefined;
|
|
1236
1200
|
[x: `int56[${string}]`]: undefined;
|
|
1237
1201
|
[x: `int64[${string}]`]: undefined;
|
|
@@ -1260,11 +1224,11 @@ export declare const isAlchemySmartAccountClient: <TTransport extends Transport
|
|
|
1260
1224
|
[x: `int248[${string}]`]: undefined;
|
|
1261
1225
|
[x: `int256[${string}]`]: undefined;
|
|
1262
1226
|
[x: `uint[${string}]`]: undefined;
|
|
1263
|
-
[x: `uint40[${string}]`]: undefined;
|
|
1264
|
-
[x: `uint32[${string}]`]: undefined;
|
|
1265
|
-
[x: `uint24[${string}]`]: undefined;
|
|
1266
|
-
[x: `uint16[${string}]`]: undefined;
|
|
1267
1227
|
[x: `uint8[${string}]`]: undefined;
|
|
1228
|
+
[x: `uint16[${string}]`]: undefined;
|
|
1229
|
+
[x: `uint24[${string}]`]: undefined;
|
|
1230
|
+
[x: `uint32[${string}]`]: undefined;
|
|
1231
|
+
[x: `uint40[${string}]`]: undefined;
|
|
1268
1232
|
[x: `uint48[${string}]`]: undefined;
|
|
1269
1233
|
[x: `uint56[${string}]`]: undefined;
|
|
1270
1234
|
[x: `uint64[${string}]`]: undefined;
|
|
@@ -1300,39 +1264,39 @@ export declare const isAlchemySmartAccountClient: <TTransport extends Transport
|
|
|
1300
1264
|
bytes1?: undefined;
|
|
1301
1265
|
bytes5?: undefined;
|
|
1302
1266
|
bytes10?: undefined;
|
|
1267
|
+
bytes4?: undefined;
|
|
1303
1268
|
bytes2?: undefined;
|
|
1304
1269
|
bytes3?: undefined;
|
|
1305
|
-
bytes4?: undefined;
|
|
1306
|
-
bytes32?: undefined;
|
|
1307
|
-
bytes31?: undefined;
|
|
1308
|
-
bytes30?: undefined;
|
|
1309
|
-
bytes29?: undefined;
|
|
1310
|
-
bytes28?: undefined;
|
|
1311
|
-
bytes27?: undefined;
|
|
1312
|
-
bytes26?: undefined;
|
|
1313
|
-
bytes25?: undefined;
|
|
1314
|
-
bytes24?: undefined;
|
|
1315
|
-
bytes23?: undefined;
|
|
1316
|
-
bytes22?: undefined;
|
|
1317
|
-
bytes21?: undefined;
|
|
1318
|
-
bytes20?: undefined;
|
|
1319
|
-
bytes19?: undefined;
|
|
1320
|
-
bytes17?: undefined;
|
|
1321
|
-
bytes16?: undefined;
|
|
1322
|
-
bytes15?: undefined;
|
|
1323
|
-
bytes14?: undefined;
|
|
1324
|
-
bytes13?: undefined;
|
|
1325
|
-
bytes12?: undefined;
|
|
1326
|
-
bytes11?: undefined;
|
|
1327
|
-
bytes9?: undefined;
|
|
1328
|
-
bytes8?: undefined;
|
|
1329
|
-
bytes7?: undefined;
|
|
1330
1270
|
bytes6?: undefined;
|
|
1331
|
-
|
|
1332
|
-
|
|
1333
|
-
|
|
1334
|
-
|
|
1271
|
+
bytes7?: undefined;
|
|
1272
|
+
bytes8?: undefined;
|
|
1273
|
+
bytes9?: undefined;
|
|
1274
|
+
bytes11?: undefined;
|
|
1275
|
+
bytes12?: undefined;
|
|
1276
|
+
bytes13?: undefined;
|
|
1277
|
+
bytes14?: undefined;
|
|
1278
|
+
bytes15?: undefined;
|
|
1279
|
+
bytes16?: undefined;
|
|
1280
|
+
bytes17?: undefined;
|
|
1281
|
+
bytes19?: undefined;
|
|
1282
|
+
bytes20?: undefined;
|
|
1283
|
+
bytes21?: undefined;
|
|
1284
|
+
bytes22?: undefined;
|
|
1285
|
+
bytes23?: undefined;
|
|
1286
|
+
bytes24?: undefined;
|
|
1287
|
+
bytes25?: undefined;
|
|
1288
|
+
bytes26?: undefined;
|
|
1289
|
+
bytes27?: undefined;
|
|
1290
|
+
bytes28?: undefined;
|
|
1291
|
+
bytes29?: undefined;
|
|
1292
|
+
bytes30?: undefined;
|
|
1293
|
+
bytes31?: undefined;
|
|
1294
|
+
bytes32?: undefined;
|
|
1335
1295
|
int8?: undefined;
|
|
1296
|
+
int16?: undefined;
|
|
1297
|
+
int24?: undefined;
|
|
1298
|
+
int32?: undefined;
|
|
1299
|
+
int40?: undefined;
|
|
1336
1300
|
int48?: undefined;
|
|
1337
1301
|
int56?: undefined;
|
|
1338
1302
|
int64?: undefined;
|
|
@@ -1360,11 +1324,11 @@ export declare const isAlchemySmartAccountClient: <TTransport extends Transport
|
|
|
1360
1324
|
int240?: undefined;
|
|
1361
1325
|
int248?: undefined;
|
|
1362
1326
|
int256?: undefined;
|
|
1363
|
-
uint40?: undefined;
|
|
1364
|
-
uint32?: undefined;
|
|
1365
|
-
uint24?: undefined;
|
|
1366
|
-
uint16?: undefined;
|
|
1367
1327
|
uint8?: undefined;
|
|
1328
|
+
uint16?: undefined;
|
|
1329
|
+
uint24?: undefined;
|
|
1330
|
+
uint32?: undefined;
|
|
1331
|
+
uint40?: undefined;
|
|
1368
1332
|
uint48?: undefined;
|
|
1369
1333
|
uint56?: undefined;
|
|
1370
1334
|
uint64?: undefined;
|
|
@@ -1595,24 +1559,6 @@ export declare const isAlchemySmartAccountClient: <TTransport extends Transport
|
|
|
1595
1559
|
Method: "eth_uninstallFilter";
|
|
1596
1560
|
Parameters: [filterId: `0x${string}`];
|
|
1597
1561
|
ReturnType: boolean;
|
|
1598
|
-
}, {
|
|
1599
|
-
Method: "alchemy_requestPaymasterAndData";
|
|
1600
|
-
Parameters: [{
|
|
1601
|
-
policyId: string;
|
|
1602
|
-
entryPoint: `0x${string}`;
|
|
1603
|
-
userOperation: import("@aa-sdk/core").UserOperationRequest;
|
|
1604
|
-
}];
|
|
1605
|
-
ReturnType: import("..").RequestPaymasterAndDataResponse;
|
|
1606
|
-
}, {
|
|
1607
|
-
Method: "alchemy_requestGasAndPaymasterAndData";
|
|
1608
|
-
Parameters: [{
|
|
1609
|
-
policyId: string;
|
|
1610
|
-
entryPoint: `0x${string}`;
|
|
1611
|
-
userOperation: import("@aa-sdk/core").UserOperationRequest;
|
|
1612
|
-
dummySignature: `0x${string}`;
|
|
1613
|
-
overrides?: Partial<{}> | undefined;
|
|
1614
|
-
}];
|
|
1615
|
-
ReturnType: import("..").RequestGasAndPaymasterAndDataResponse;
|
|
1616
1562
|
}, {
|
|
1617
1563
|
Method: "alchemy_simulateUserOperationAssetChanges";
|
|
1618
1564
|
Parameters: import("..").SimulateUserOperationAssetChangesRequest;
|
|
@@ -1681,40 +1627,40 @@ export declare const isAlchemySmartAccountClient: <TTransport extends Transport
|
|
|
1681
1627
|
[x: `bytes1[${string}]`]: undefined;
|
|
1682
1628
|
[x: `bytes5[${string}]`]: undefined;
|
|
1683
1629
|
[x: `bytes10[${string}]`]: undefined;
|
|
1630
|
+
[x: `bytes4[${string}]`]: undefined;
|
|
1684
1631
|
[x: `bytes2[${string}]`]: undefined;
|
|
1685
1632
|
[x: `bytes3[${string}]`]: undefined;
|
|
1686
|
-
[x: `bytes4[${string}]`]: undefined;
|
|
1687
|
-
[x: `bytes32[${string}]`]: undefined;
|
|
1688
|
-
[x: `bytes31[${string}]`]: undefined;
|
|
1689
|
-
[x: `bytes30[${string}]`]: undefined;
|
|
1690
|
-
[x: `bytes29[${string}]`]: undefined;
|
|
1691
|
-
[x: `bytes28[${string}]`]: undefined;
|
|
1692
|
-
[x: `bytes27[${string}]`]: undefined;
|
|
1693
|
-
[x: `bytes26[${string}]`]: undefined;
|
|
1694
|
-
[x: `bytes25[${string}]`]: undefined;
|
|
1695
|
-
[x: `bytes24[${string}]`]: undefined;
|
|
1696
|
-
[x: `bytes23[${string}]`]: undefined;
|
|
1697
|
-
[x: `bytes22[${string}]`]: undefined;
|
|
1698
|
-
[x: `bytes21[${string}]`]: undefined;
|
|
1699
|
-
[x: `bytes20[${string}]`]: undefined;
|
|
1700
|
-
[x: `bytes19[${string}]`]: undefined;
|
|
1701
|
-
[x: `bytes17[${string}]`]: undefined;
|
|
1702
|
-
[x: `bytes16[${string}]`]: undefined;
|
|
1703
|
-
[x: `bytes15[${string}]`]: undefined;
|
|
1704
|
-
[x: `bytes14[${string}]`]: undefined;
|
|
1705
|
-
[x: `bytes13[${string}]`]: undefined;
|
|
1706
|
-
[x: `bytes12[${string}]`]: undefined;
|
|
1707
|
-
[x: `bytes11[${string}]`]: undefined;
|
|
1708
|
-
[x: `bytes9[${string}]`]: undefined;
|
|
1709
|
-
[x: `bytes8[${string}]`]: undefined;
|
|
1710
|
-
[x: `bytes7[${string}]`]: undefined;
|
|
1711
1633
|
[x: `bytes6[${string}]`]: undefined;
|
|
1634
|
+
[x: `bytes7[${string}]`]: undefined;
|
|
1635
|
+
[x: `bytes8[${string}]`]: undefined;
|
|
1636
|
+
[x: `bytes9[${string}]`]: undefined;
|
|
1637
|
+
[x: `bytes11[${string}]`]: undefined;
|
|
1638
|
+
[x: `bytes12[${string}]`]: undefined;
|
|
1639
|
+
[x: `bytes13[${string}]`]: undefined;
|
|
1640
|
+
[x: `bytes14[${string}]`]: undefined;
|
|
1641
|
+
[x: `bytes15[${string}]`]: undefined;
|
|
1642
|
+
[x: `bytes16[${string}]`]: undefined;
|
|
1643
|
+
[x: `bytes17[${string}]`]: undefined;
|
|
1644
|
+
[x: `bytes19[${string}]`]: undefined;
|
|
1645
|
+
[x: `bytes20[${string}]`]: undefined;
|
|
1646
|
+
[x: `bytes21[${string}]`]: undefined;
|
|
1647
|
+
[x: `bytes22[${string}]`]: undefined;
|
|
1648
|
+
[x: `bytes23[${string}]`]: undefined;
|
|
1649
|
+
[x: `bytes24[${string}]`]: undefined;
|
|
1650
|
+
[x: `bytes25[${string}]`]: undefined;
|
|
1651
|
+
[x: `bytes26[${string}]`]: undefined;
|
|
1652
|
+
[x: `bytes27[${string}]`]: undefined;
|
|
1653
|
+
[x: `bytes28[${string}]`]: undefined;
|
|
1654
|
+
[x: `bytes29[${string}]`]: undefined;
|
|
1655
|
+
[x: `bytes30[${string}]`]: undefined;
|
|
1656
|
+
[x: `bytes31[${string}]`]: undefined;
|
|
1657
|
+
[x: `bytes32[${string}]`]: undefined;
|
|
1712
1658
|
[x: `int[${string}]`]: undefined;
|
|
1713
|
-
[x: `int40[${string}]`]: undefined;
|
|
1714
|
-
[x: `int32[${string}]`]: undefined;
|
|
1715
|
-
[x: `int24[${string}]`]: undefined;
|
|
1716
|
-
[x: `int16[${string}]`]: undefined;
|
|
1717
1659
|
[x: `int8[${string}]`]: undefined;
|
|
1660
|
+
[x: `int16[${string}]`]: undefined;
|
|
1661
|
+
[x: `int24[${string}]`]: undefined;
|
|
1662
|
+
[x: `int32[${string}]`]: undefined;
|
|
1663
|
+
[x: `int40[${string}]`]: undefined;
|
|
1718
1664
|
[x: `int48[${string}]`]: undefined;
|
|
1719
1665
|
[x: `int56[${string}]`]: undefined;
|
|
1720
1666
|
[x: `int64[${string}]`]: undefined;
|
|
@@ -1743,11 +1689,11 @@ export declare const isAlchemySmartAccountClient: <TTransport extends Transport
|
|
|
1743
1689
|
[x: `int248[${string}]`]: undefined;
|
|
1744
1690
|
[x: `int256[${string}]`]: undefined;
|
|
1745
1691
|
[x: `uint[${string}]`]: undefined;
|
|
1746
|
-
[x: `uint40[${string}]`]: undefined;
|
|
1747
|
-
[x: `uint32[${string}]`]: undefined;
|
|
1748
|
-
[x: `uint24[${string}]`]: undefined;
|
|
1749
|
-
[x: `uint16[${string}]`]: undefined;
|
|
1750
1692
|
[x: `uint8[${string}]`]: undefined;
|
|
1693
|
+
[x: `uint16[${string}]`]: undefined;
|
|
1694
|
+
[x: `uint24[${string}]`]: undefined;
|
|
1695
|
+
[x: `uint32[${string}]`]: undefined;
|
|
1696
|
+
[x: `uint40[${string}]`]: undefined;
|
|
1751
1697
|
[x: `uint48[${string}]`]: undefined;
|
|
1752
1698
|
[x: `uint56[${string}]`]: undefined;
|
|
1753
1699
|
[x: `uint64[${string}]`]: undefined;
|
|
@@ -1783,39 +1729,39 @@ export declare const isAlchemySmartAccountClient: <TTransport extends Transport
|
|
|
1783
1729
|
bytes1?: undefined;
|
|
1784
1730
|
bytes5?: undefined;
|
|
1785
1731
|
bytes10?: undefined;
|
|
1732
|
+
bytes4?: undefined;
|
|
1786
1733
|
bytes2?: undefined;
|
|
1787
1734
|
bytes3?: undefined;
|
|
1788
|
-
bytes4?: undefined;
|
|
1789
|
-
bytes32?: undefined;
|
|
1790
|
-
bytes31?: undefined;
|
|
1791
|
-
bytes30?: undefined;
|
|
1792
|
-
bytes29?: undefined;
|
|
1793
|
-
bytes28?: undefined;
|
|
1794
|
-
bytes27?: undefined;
|
|
1795
|
-
bytes26?: undefined;
|
|
1796
|
-
bytes25?: undefined;
|
|
1797
|
-
bytes24?: undefined;
|
|
1798
|
-
bytes23?: undefined;
|
|
1799
|
-
bytes22?: undefined;
|
|
1800
|
-
bytes21?: undefined;
|
|
1801
|
-
bytes20?: undefined;
|
|
1802
|
-
bytes19?: undefined;
|
|
1803
|
-
bytes17?: undefined;
|
|
1804
|
-
bytes16?: undefined;
|
|
1805
|
-
bytes15?: undefined;
|
|
1806
|
-
bytes14?: undefined;
|
|
1807
|
-
bytes13?: undefined;
|
|
1808
|
-
bytes12?: undefined;
|
|
1809
|
-
bytes11?: undefined;
|
|
1810
|
-
bytes9?: undefined;
|
|
1811
|
-
bytes8?: undefined;
|
|
1812
|
-
bytes7?: undefined;
|
|
1813
1735
|
bytes6?: undefined;
|
|
1814
|
-
|
|
1815
|
-
|
|
1816
|
-
|
|
1817
|
-
|
|
1736
|
+
bytes7?: undefined;
|
|
1737
|
+
bytes8?: undefined;
|
|
1738
|
+
bytes9?: undefined;
|
|
1739
|
+
bytes11?: undefined;
|
|
1740
|
+
bytes12?: undefined;
|
|
1741
|
+
bytes13?: undefined;
|
|
1742
|
+
bytes14?: undefined;
|
|
1743
|
+
bytes15?: undefined;
|
|
1744
|
+
bytes16?: undefined;
|
|
1745
|
+
bytes17?: undefined;
|
|
1746
|
+
bytes19?: undefined;
|
|
1747
|
+
bytes20?: undefined;
|
|
1748
|
+
bytes21?: undefined;
|
|
1749
|
+
bytes22?: undefined;
|
|
1750
|
+
bytes23?: undefined;
|
|
1751
|
+
bytes24?: undefined;
|
|
1752
|
+
bytes25?: undefined;
|
|
1753
|
+
bytes26?: undefined;
|
|
1754
|
+
bytes27?: undefined;
|
|
1755
|
+
bytes28?: undefined;
|
|
1756
|
+
bytes29?: undefined;
|
|
1757
|
+
bytes30?: undefined;
|
|
1758
|
+
bytes31?: undefined;
|
|
1759
|
+
bytes32?: undefined;
|
|
1818
1760
|
int8?: undefined;
|
|
1761
|
+
int16?: undefined;
|
|
1762
|
+
int24?: undefined;
|
|
1763
|
+
int32?: undefined;
|
|
1764
|
+
int40?: undefined;
|
|
1819
1765
|
int48?: undefined;
|
|
1820
1766
|
int56?: undefined;
|
|
1821
1767
|
int64?: undefined;
|
|
@@ -1843,11 +1789,11 @@ export declare const isAlchemySmartAccountClient: <TTransport extends Transport
|
|
|
1843
1789
|
int240?: undefined;
|
|
1844
1790
|
int248?: undefined;
|
|
1845
1791
|
int256?: undefined;
|
|
1846
|
-
uint40?: undefined;
|
|
1847
|
-
uint32?: undefined;
|
|
1848
|
-
uint24?: undefined;
|
|
1849
|
-
uint16?: undefined;
|
|
1850
1792
|
uint8?: undefined;
|
|
1793
|
+
uint16?: undefined;
|
|
1794
|
+
uint24?: undefined;
|
|
1795
|
+
uint32?: undefined;
|
|
1796
|
+
uint40?: undefined;
|
|
1851
1797
|
uint48?: undefined;
|
|
1852
1798
|
uint56?: undefined;
|
|
1853
1799
|
uint64?: undefined;
|
|
@@ -1890,54 +1836,54 @@ export declare const isAlchemySmartAccountClient: <TTransport extends Transport
|
|
|
1890
1836
|
[x: `bytes1[${string}]`]: undefined;
|
|
1891
1837
|
[x: `bytes5[${string}]`]: undefined;
|
|
1892
1838
|
[x: `bytes10[${string}]`]: undefined;
|
|
1839
|
+
[x: `bytes4[${string}]`]: undefined;
|
|
1893
1840
|
[x: `bytes2[${string}]`]: undefined;
|
|
1894
1841
|
[x: `bytes3[${string}]`]: undefined;
|
|
1895
|
-
[x: `bytes4[${string}]`]: undefined;
|
|
1896
|
-
[x: `bytes32[${string}]`]: undefined;
|
|
1897
|
-
[x: `bytes31[${string}]`]: undefined;
|
|
1898
|
-
[x: `bytes30[${string}]`]: undefined;
|
|
1899
|
-
[x: `bytes29[${string}]`]: undefined;
|
|
1900
|
-
[x: `bytes28[${string}]`]: undefined;
|
|
1901
|
-
[x: `bytes27[${string}]`]: undefined;
|
|
1902
|
-
[x: `bytes26[${string}]`]: undefined;
|
|
1903
|
-
[x: `bytes25[${string}]`]: undefined;
|
|
1904
|
-
[x: `bytes24[${string}]`]: undefined;
|
|
1905
|
-
[x: `bytes23[${string}]`]: undefined;
|
|
1906
|
-
[x: `bytes22[${string}]`]: undefined;
|
|
1907
|
-
[x: `bytes21[${string}]`]: undefined;
|
|
1908
|
-
[x: `bytes20[${string}]`]: undefined;
|
|
1909
|
-
[x: `bytes19[${string}]`]: undefined;
|
|
1910
|
-
[x: `bytes17[${string}]`]: undefined;
|
|
1911
|
-
[x: `bytes16[${string}]`]: undefined;
|
|
1912
|
-
[x: `bytes15[${string}]`]: undefined;
|
|
1913
|
-
[x: `bytes14[${string}]`]: undefined;
|
|
1914
|
-
[x: `bytes13[${string}]`]: undefined;
|
|
1915
|
-
[x: `bytes12[${string}]`]: undefined;
|
|
1916
|
-
[x: `bytes11[${string}]`]: undefined;
|
|
1917
|
-
[x: `bytes9[${string}]`]: undefined;
|
|
1918
|
-
[x: `bytes8[${string}]`]: undefined;
|
|
1919
|
-
[x: `bytes7[${string}]`]: undefined;
|
|
1920
1842
|
[x: `bytes6[${string}]`]: undefined;
|
|
1921
|
-
[x: `
|
|
1922
|
-
[x: `
|
|
1923
|
-
[x: `
|
|
1924
|
-
[x: `
|
|
1925
|
-
[x: `
|
|
1926
|
-
[x: `
|
|
1927
|
-
[x: `
|
|
1928
|
-
[x: `
|
|
1929
|
-
[x: `
|
|
1930
|
-
[x: `
|
|
1931
|
-
[x: `
|
|
1932
|
-
[x: `
|
|
1933
|
-
[x: `
|
|
1934
|
-
[x: `
|
|
1935
|
-
[x: `
|
|
1936
|
-
[x: `
|
|
1937
|
-
[x: `
|
|
1938
|
-
[x: `
|
|
1939
|
-
[x: `
|
|
1940
|
-
[x: `
|
|
1843
|
+
[x: `bytes7[${string}]`]: undefined;
|
|
1844
|
+
[x: `bytes8[${string}]`]: undefined;
|
|
1845
|
+
[x: `bytes9[${string}]`]: undefined;
|
|
1846
|
+
[x: `bytes11[${string}]`]: undefined;
|
|
1847
|
+
[x: `bytes12[${string}]`]: undefined;
|
|
1848
|
+
[x: `bytes13[${string}]`]: undefined;
|
|
1849
|
+
[x: `bytes14[${string}]`]: undefined;
|
|
1850
|
+
[x: `bytes15[${string}]`]: undefined;
|
|
1851
|
+
[x: `bytes16[${string}]`]: undefined;
|
|
1852
|
+
[x: `bytes17[${string}]`]: undefined;
|
|
1853
|
+
[x: `bytes19[${string}]`]: undefined;
|
|
1854
|
+
[x: `bytes20[${string}]`]: undefined;
|
|
1855
|
+
[x: `bytes21[${string}]`]: undefined;
|
|
1856
|
+
[x: `bytes22[${string}]`]: undefined;
|
|
1857
|
+
[x: `bytes23[${string}]`]: undefined;
|
|
1858
|
+
[x: `bytes24[${string}]`]: undefined;
|
|
1859
|
+
[x: `bytes25[${string}]`]: undefined;
|
|
1860
|
+
[x: `bytes26[${string}]`]: undefined;
|
|
1861
|
+
[x: `bytes27[${string}]`]: undefined;
|
|
1862
|
+
[x: `bytes28[${string}]`]: undefined;
|
|
1863
|
+
[x: `bytes29[${string}]`]: undefined;
|
|
1864
|
+
[x: `bytes30[${string}]`]: undefined;
|
|
1865
|
+
[x: `bytes31[${string}]`]: undefined;
|
|
1866
|
+
[x: `bytes32[${string}]`]: undefined;
|
|
1867
|
+
[x: `int[${string}]`]: undefined;
|
|
1868
|
+
[x: `int8[${string}]`]: undefined;
|
|
1869
|
+
[x: `int16[${string}]`]: undefined;
|
|
1870
|
+
[x: `int24[${string}]`]: undefined;
|
|
1871
|
+
[x: `int32[${string}]`]: undefined;
|
|
1872
|
+
[x: `int40[${string}]`]: undefined;
|
|
1873
|
+
[x: `int48[${string}]`]: undefined;
|
|
1874
|
+
[x: `int56[${string}]`]: undefined;
|
|
1875
|
+
[x: `int64[${string}]`]: undefined;
|
|
1876
|
+
[x: `int72[${string}]`]: undefined;
|
|
1877
|
+
[x: `int80[${string}]`]: undefined;
|
|
1878
|
+
[x: `int88[${string}]`]: undefined;
|
|
1879
|
+
[x: `int96[${string}]`]: undefined;
|
|
1880
|
+
[x: `int104[${string}]`]: undefined;
|
|
1881
|
+
[x: `int112[${string}]`]: undefined;
|
|
1882
|
+
[x: `int120[${string}]`]: undefined;
|
|
1883
|
+
[x: `int128[${string}]`]: undefined;
|
|
1884
|
+
[x: `int136[${string}]`]: undefined;
|
|
1885
|
+
[x: `int144[${string}]`]: undefined;
|
|
1886
|
+
[x: `int152[${string}]`]: undefined;
|
|
1941
1887
|
[x: `int160[${string}]`]: undefined;
|
|
1942
1888
|
[x: `int168[${string}]`]: undefined;
|
|
1943
1889
|
[x: `int176[${string}]`]: undefined;
|
|
@@ -1952,11 +1898,11 @@ export declare const isAlchemySmartAccountClient: <TTransport extends Transport
|
|
|
1952
1898
|
[x: `int248[${string}]`]: undefined;
|
|
1953
1899
|
[x: `int256[${string}]`]: undefined;
|
|
1954
1900
|
[x: `uint[${string}]`]: undefined;
|
|
1955
|
-
[x: `uint40[${string}]`]: undefined;
|
|
1956
|
-
[x: `uint32[${string}]`]: undefined;
|
|
1957
|
-
[x: `uint24[${string}]`]: undefined;
|
|
1958
|
-
[x: `uint16[${string}]`]: undefined;
|
|
1959
1901
|
[x: `uint8[${string}]`]: undefined;
|
|
1902
|
+
[x: `uint16[${string}]`]: undefined;
|
|
1903
|
+
[x: `uint24[${string}]`]: undefined;
|
|
1904
|
+
[x: `uint32[${string}]`]: undefined;
|
|
1905
|
+
[x: `uint40[${string}]`]: undefined;
|
|
1960
1906
|
[x: `uint48[${string}]`]: undefined;
|
|
1961
1907
|
[x: `uint56[${string}]`]: undefined;
|
|
1962
1908
|
[x: `uint64[${string}]`]: undefined;
|
|
@@ -1992,39 +1938,39 @@ export declare const isAlchemySmartAccountClient: <TTransport extends Transport
|
|
|
1992
1938
|
bytes1?: undefined;
|
|
1993
1939
|
bytes5?: undefined;
|
|
1994
1940
|
bytes10?: undefined;
|
|
1941
|
+
bytes4?: undefined;
|
|
1995
1942
|
bytes2?: undefined;
|
|
1996
1943
|
bytes3?: undefined;
|
|
1997
|
-
bytes4?: undefined;
|
|
1998
|
-
bytes32?: undefined;
|
|
1999
|
-
bytes31?: undefined;
|
|
2000
|
-
bytes30?: undefined;
|
|
2001
|
-
bytes29?: undefined;
|
|
2002
|
-
bytes28?: undefined;
|
|
2003
|
-
bytes27?: undefined;
|
|
2004
|
-
bytes26?: undefined;
|
|
2005
|
-
bytes25?: undefined;
|
|
2006
|
-
bytes24?: undefined;
|
|
2007
|
-
bytes23?: undefined;
|
|
2008
|
-
bytes22?: undefined;
|
|
2009
|
-
bytes21?: undefined;
|
|
2010
|
-
bytes20?: undefined;
|
|
2011
|
-
bytes19?: undefined;
|
|
2012
|
-
bytes17?: undefined;
|
|
2013
|
-
bytes16?: undefined;
|
|
2014
|
-
bytes15?: undefined;
|
|
2015
|
-
bytes14?: undefined;
|
|
2016
|
-
bytes13?: undefined;
|
|
2017
|
-
bytes12?: undefined;
|
|
2018
|
-
bytes11?: undefined;
|
|
2019
|
-
bytes9?: undefined;
|
|
2020
|
-
bytes8?: undefined;
|
|
2021
|
-
bytes7?: undefined;
|
|
2022
1944
|
bytes6?: undefined;
|
|
2023
|
-
|
|
2024
|
-
|
|
2025
|
-
|
|
2026
|
-
|
|
1945
|
+
bytes7?: undefined;
|
|
1946
|
+
bytes8?: undefined;
|
|
1947
|
+
bytes9?: undefined;
|
|
1948
|
+
bytes11?: undefined;
|
|
1949
|
+
bytes12?: undefined;
|
|
1950
|
+
bytes13?: undefined;
|
|
1951
|
+
bytes14?: undefined;
|
|
1952
|
+
bytes15?: undefined;
|
|
1953
|
+
bytes16?: undefined;
|
|
1954
|
+
bytes17?: undefined;
|
|
1955
|
+
bytes19?: undefined;
|
|
1956
|
+
bytes20?: undefined;
|
|
1957
|
+
bytes21?: undefined;
|
|
1958
|
+
bytes22?: undefined;
|
|
1959
|
+
bytes23?: undefined;
|
|
1960
|
+
bytes24?: undefined;
|
|
1961
|
+
bytes25?: undefined;
|
|
1962
|
+
bytes26?: undefined;
|
|
1963
|
+
bytes27?: undefined;
|
|
1964
|
+
bytes28?: undefined;
|
|
1965
|
+
bytes29?: undefined;
|
|
1966
|
+
bytes30?: undefined;
|
|
1967
|
+
bytes31?: undefined;
|
|
1968
|
+
bytes32?: undefined;
|
|
2027
1969
|
int8?: undefined;
|
|
1970
|
+
int16?: undefined;
|
|
1971
|
+
int24?: undefined;
|
|
1972
|
+
int32?: undefined;
|
|
1973
|
+
int40?: undefined;
|
|
2028
1974
|
int48?: undefined;
|
|
2029
1975
|
int56?: undefined;
|
|
2030
1976
|
int64?: undefined;
|
|
@@ -2052,11 +1998,11 @@ export declare const isAlchemySmartAccountClient: <TTransport extends Transport
|
|
|
2052
1998
|
int240?: undefined;
|
|
2053
1999
|
int248?: undefined;
|
|
2054
2000
|
int256?: undefined;
|
|
2055
|
-
uint40?: undefined;
|
|
2056
|
-
uint32?: undefined;
|
|
2057
|
-
uint24?: undefined;
|
|
2058
|
-
uint16?: undefined;
|
|
2059
2001
|
uint8?: undefined;
|
|
2002
|
+
uint16?: undefined;
|
|
2003
|
+
uint24?: undefined;
|
|
2004
|
+
uint32?: undefined;
|
|
2005
|
+
uint40?: undefined;
|
|
2060
2006
|
uint48?: undefined;
|
|
2061
2007
|
uint56?: undefined;
|
|
2062
2008
|
uint64?: undefined;
|
|
@@ -2287,24 +2233,6 @@ export declare const isAlchemySmartAccountClient: <TTransport extends Transport
|
|
|
2287
2233
|
Method: "eth_uninstallFilter";
|
|
2288
2234
|
Parameters: [filterId: `0x${string}`];
|
|
2289
2235
|
ReturnType: boolean;
|
|
2290
|
-
}, {
|
|
2291
|
-
Method: "alchemy_requestPaymasterAndData";
|
|
2292
|
-
Parameters: [{
|
|
2293
|
-
policyId: string;
|
|
2294
|
-
entryPoint: `0x${string}`;
|
|
2295
|
-
userOperation: import("@aa-sdk/core").UserOperationRequest;
|
|
2296
|
-
}];
|
|
2297
|
-
ReturnType: import("..").RequestPaymasterAndDataResponse;
|
|
2298
|
-
}, {
|
|
2299
|
-
Method: "alchemy_requestGasAndPaymasterAndData";
|
|
2300
|
-
Parameters: [{
|
|
2301
|
-
policyId: string;
|
|
2302
|
-
entryPoint: `0x${string}`;
|
|
2303
|
-
userOperation: import("@aa-sdk/core").UserOperationRequest;
|
|
2304
|
-
dummySignature: `0x${string}`;
|
|
2305
|
-
overrides?: Partial<{}> | undefined;
|
|
2306
|
-
}];
|
|
2307
|
-
ReturnType: import("..").RequestGasAndPaymasterAndDataResponse;
|
|
2308
2236
|
}, {
|
|
2309
2237
|
Method: "alchemy_simulateUserOperationAssetChanges";
|
|
2310
2238
|
Parameters: import("..").SimulateUserOperationAssetChangesRequest;
|
|
@@ -2373,40 +2301,40 @@ export declare const isAlchemySmartAccountClient: <TTransport extends Transport
|
|
|
2373
2301
|
[x: `bytes1[${string}]`]: undefined;
|
|
2374
2302
|
[x: `bytes5[${string}]`]: undefined;
|
|
2375
2303
|
[x: `bytes10[${string}]`]: undefined;
|
|
2304
|
+
[x: `bytes4[${string}]`]: undefined;
|
|
2376
2305
|
[x: `bytes2[${string}]`]: undefined;
|
|
2377
2306
|
[x: `bytes3[${string}]`]: undefined;
|
|
2378
|
-
[x: `bytes4[${string}]`]: undefined;
|
|
2379
|
-
[x: `bytes32[${string}]`]: undefined;
|
|
2380
|
-
[x: `bytes31[${string}]`]: undefined;
|
|
2381
|
-
[x: `bytes30[${string}]`]: undefined;
|
|
2382
|
-
[x: `bytes29[${string}]`]: undefined;
|
|
2383
|
-
[x: `bytes28[${string}]`]: undefined;
|
|
2384
|
-
[x: `bytes27[${string}]`]: undefined;
|
|
2385
|
-
[x: `bytes26[${string}]`]: undefined;
|
|
2386
|
-
[x: `bytes25[${string}]`]: undefined;
|
|
2387
|
-
[x: `bytes24[${string}]`]: undefined;
|
|
2388
|
-
[x: `bytes23[${string}]`]: undefined;
|
|
2389
|
-
[x: `bytes22[${string}]`]: undefined;
|
|
2390
|
-
[x: `bytes21[${string}]`]: undefined;
|
|
2391
|
-
[x: `bytes20[${string}]`]: undefined;
|
|
2392
|
-
[x: `bytes19[${string}]`]: undefined;
|
|
2393
|
-
[x: `bytes17[${string}]`]: undefined;
|
|
2394
|
-
[x: `bytes16[${string}]`]: undefined;
|
|
2395
|
-
[x: `bytes15[${string}]`]: undefined;
|
|
2396
|
-
[x: `bytes14[${string}]`]: undefined;
|
|
2397
|
-
[x: `bytes13[${string}]`]: undefined;
|
|
2398
|
-
[x: `bytes12[${string}]`]: undefined;
|
|
2399
|
-
[x: `bytes11[${string}]`]: undefined;
|
|
2400
|
-
[x: `bytes9[${string}]`]: undefined;
|
|
2401
|
-
[x: `bytes8[${string}]`]: undefined;
|
|
2402
|
-
[x: `bytes7[${string}]`]: undefined;
|
|
2403
2307
|
[x: `bytes6[${string}]`]: undefined;
|
|
2308
|
+
[x: `bytes7[${string}]`]: undefined;
|
|
2309
|
+
[x: `bytes8[${string}]`]: undefined;
|
|
2310
|
+
[x: `bytes9[${string}]`]: undefined;
|
|
2311
|
+
[x: `bytes11[${string}]`]: undefined;
|
|
2312
|
+
[x: `bytes12[${string}]`]: undefined;
|
|
2313
|
+
[x: `bytes13[${string}]`]: undefined;
|
|
2314
|
+
[x: `bytes14[${string}]`]: undefined;
|
|
2315
|
+
[x: `bytes15[${string}]`]: undefined;
|
|
2316
|
+
[x: `bytes16[${string}]`]: undefined;
|
|
2317
|
+
[x: `bytes17[${string}]`]: undefined;
|
|
2318
|
+
[x: `bytes19[${string}]`]: undefined;
|
|
2319
|
+
[x: `bytes20[${string}]`]: undefined;
|
|
2320
|
+
[x: `bytes21[${string}]`]: undefined;
|
|
2321
|
+
[x: `bytes22[${string}]`]: undefined;
|
|
2322
|
+
[x: `bytes23[${string}]`]: undefined;
|
|
2323
|
+
[x: `bytes24[${string}]`]: undefined;
|
|
2324
|
+
[x: `bytes25[${string}]`]: undefined;
|
|
2325
|
+
[x: `bytes26[${string}]`]: undefined;
|
|
2326
|
+
[x: `bytes27[${string}]`]: undefined;
|
|
2327
|
+
[x: `bytes28[${string}]`]: undefined;
|
|
2328
|
+
[x: `bytes29[${string}]`]: undefined;
|
|
2329
|
+
[x: `bytes30[${string}]`]: undefined;
|
|
2330
|
+
[x: `bytes31[${string}]`]: undefined;
|
|
2331
|
+
[x: `bytes32[${string}]`]: undefined;
|
|
2404
2332
|
[x: `int[${string}]`]: undefined;
|
|
2405
|
-
[x: `int40[${string}]`]: undefined;
|
|
2406
|
-
[x: `int32[${string}]`]: undefined;
|
|
2407
|
-
[x: `int24[${string}]`]: undefined;
|
|
2408
|
-
[x: `int16[${string}]`]: undefined;
|
|
2409
2333
|
[x: `int8[${string}]`]: undefined;
|
|
2334
|
+
[x: `int16[${string}]`]: undefined;
|
|
2335
|
+
[x: `int24[${string}]`]: undefined;
|
|
2336
|
+
[x: `int32[${string}]`]: undefined;
|
|
2337
|
+
[x: `int40[${string}]`]: undefined;
|
|
2410
2338
|
[x: `int48[${string}]`]: undefined;
|
|
2411
2339
|
[x: `int56[${string}]`]: undefined;
|
|
2412
2340
|
[x: `int64[${string}]`]: undefined;
|
|
@@ -2435,11 +2363,11 @@ export declare const isAlchemySmartAccountClient: <TTransport extends Transport
|
|
|
2435
2363
|
[x: `int248[${string}]`]: undefined;
|
|
2436
2364
|
[x: `int256[${string}]`]: undefined;
|
|
2437
2365
|
[x: `uint[${string}]`]: undefined;
|
|
2438
|
-
[x: `uint40[${string}]`]: undefined;
|
|
2439
|
-
[x: `uint32[${string}]`]: undefined;
|
|
2440
|
-
[x: `uint24[${string}]`]: undefined;
|
|
2441
|
-
[x: `uint16[${string}]`]: undefined;
|
|
2442
2366
|
[x: `uint8[${string}]`]: undefined;
|
|
2367
|
+
[x: `uint16[${string}]`]: undefined;
|
|
2368
|
+
[x: `uint24[${string}]`]: undefined;
|
|
2369
|
+
[x: `uint32[${string}]`]: undefined;
|
|
2370
|
+
[x: `uint40[${string}]`]: undefined;
|
|
2443
2371
|
[x: `uint48[${string}]`]: undefined;
|
|
2444
2372
|
[x: `uint56[${string}]`]: undefined;
|
|
2445
2373
|
[x: `uint64[${string}]`]: undefined;
|
|
@@ -2475,39 +2403,39 @@ export declare const isAlchemySmartAccountClient: <TTransport extends Transport
|
|
|
2475
2403
|
bytes1?: undefined;
|
|
2476
2404
|
bytes5?: undefined;
|
|
2477
2405
|
bytes10?: undefined;
|
|
2406
|
+
bytes4?: undefined;
|
|
2478
2407
|
bytes2?: undefined;
|
|
2479
2408
|
bytes3?: undefined;
|
|
2480
|
-
bytes4?: undefined;
|
|
2481
|
-
bytes32?: undefined;
|
|
2482
|
-
bytes31?: undefined;
|
|
2483
|
-
bytes30?: undefined;
|
|
2484
|
-
bytes29?: undefined;
|
|
2485
|
-
bytes28?: undefined;
|
|
2486
|
-
bytes27?: undefined;
|
|
2487
|
-
bytes26?: undefined;
|
|
2488
|
-
bytes25?: undefined;
|
|
2489
|
-
bytes24?: undefined;
|
|
2490
|
-
bytes23?: undefined;
|
|
2491
|
-
bytes22?: undefined;
|
|
2492
|
-
bytes21?: undefined;
|
|
2493
|
-
bytes20?: undefined;
|
|
2494
|
-
bytes19?: undefined;
|
|
2495
|
-
bytes17?: undefined;
|
|
2496
|
-
bytes16?: undefined;
|
|
2497
|
-
bytes15?: undefined;
|
|
2498
|
-
bytes14?: undefined;
|
|
2499
|
-
bytes13?: undefined;
|
|
2500
|
-
bytes12?: undefined;
|
|
2501
|
-
bytes11?: undefined;
|
|
2502
|
-
bytes9?: undefined;
|
|
2503
|
-
bytes8?: undefined;
|
|
2504
|
-
bytes7?: undefined;
|
|
2505
2409
|
bytes6?: undefined;
|
|
2506
|
-
|
|
2507
|
-
|
|
2508
|
-
|
|
2509
|
-
|
|
2410
|
+
bytes7?: undefined;
|
|
2411
|
+
bytes8?: undefined;
|
|
2412
|
+
bytes9?: undefined;
|
|
2413
|
+
bytes11?: undefined;
|
|
2414
|
+
bytes12?: undefined;
|
|
2415
|
+
bytes13?: undefined;
|
|
2416
|
+
bytes14?: undefined;
|
|
2417
|
+
bytes15?: undefined;
|
|
2418
|
+
bytes16?: undefined;
|
|
2419
|
+
bytes17?: undefined;
|
|
2420
|
+
bytes19?: undefined;
|
|
2421
|
+
bytes20?: undefined;
|
|
2422
|
+
bytes21?: undefined;
|
|
2423
|
+
bytes22?: undefined;
|
|
2424
|
+
bytes23?: undefined;
|
|
2425
|
+
bytes24?: undefined;
|
|
2426
|
+
bytes25?: undefined;
|
|
2427
|
+
bytes26?: undefined;
|
|
2428
|
+
bytes27?: undefined;
|
|
2429
|
+
bytes28?: undefined;
|
|
2430
|
+
bytes29?: undefined;
|
|
2431
|
+
bytes30?: undefined;
|
|
2432
|
+
bytes31?: undefined;
|
|
2433
|
+
bytes32?: undefined;
|
|
2510
2434
|
int8?: undefined;
|
|
2435
|
+
int16?: undefined;
|
|
2436
|
+
int24?: undefined;
|
|
2437
|
+
int32?: undefined;
|
|
2438
|
+
int40?: undefined;
|
|
2511
2439
|
int48?: undefined;
|
|
2512
2440
|
int56?: undefined;
|
|
2513
2441
|
int64?: undefined;
|
|
@@ -2535,11 +2463,11 @@ export declare const isAlchemySmartAccountClient: <TTransport extends Transport
|
|
|
2535
2463
|
int240?: undefined;
|
|
2536
2464
|
int248?: undefined;
|
|
2537
2465
|
int256?: undefined;
|
|
2538
|
-
uint40?: undefined;
|
|
2539
|
-
uint32?: undefined;
|
|
2540
|
-
uint24?: undefined;
|
|
2541
|
-
uint16?: undefined;
|
|
2542
2466
|
uint8?: undefined;
|
|
2467
|
+
uint16?: undefined;
|
|
2468
|
+
uint24?: undefined;
|
|
2469
|
+
uint32?: undefined;
|
|
2470
|
+
uint40?: undefined;
|
|
2543
2471
|
uint48?: undefined;
|
|
2544
2472
|
uint56?: undefined;
|
|
2545
2473
|
uint64?: undefined;
|
|
@@ -2582,40 +2510,40 @@ export declare const isAlchemySmartAccountClient: <TTransport extends Transport
|
|
|
2582
2510
|
[x: `bytes1[${string}]`]: undefined;
|
|
2583
2511
|
[x: `bytes5[${string}]`]: undefined;
|
|
2584
2512
|
[x: `bytes10[${string}]`]: undefined;
|
|
2513
|
+
[x: `bytes4[${string}]`]: undefined;
|
|
2585
2514
|
[x: `bytes2[${string}]`]: undefined;
|
|
2586
2515
|
[x: `bytes3[${string}]`]: undefined;
|
|
2587
|
-
[x: `bytes4[${string}]`]: undefined;
|
|
2588
|
-
[x: `bytes32[${string}]`]: undefined;
|
|
2589
|
-
[x: `bytes31[${string}]`]: undefined;
|
|
2590
|
-
[x: `bytes30[${string}]`]: undefined;
|
|
2591
|
-
[x: `bytes29[${string}]`]: undefined;
|
|
2592
|
-
[x: `bytes28[${string}]`]: undefined;
|
|
2593
|
-
[x: `bytes27[${string}]`]: undefined;
|
|
2594
|
-
[x: `bytes26[${string}]`]: undefined;
|
|
2595
|
-
[x: `bytes25[${string}]`]: undefined;
|
|
2596
|
-
[x: `bytes24[${string}]`]: undefined;
|
|
2597
|
-
[x: `bytes23[${string}]`]: undefined;
|
|
2598
|
-
[x: `bytes22[${string}]`]: undefined;
|
|
2599
|
-
[x: `bytes21[${string}]`]: undefined;
|
|
2600
|
-
[x: `bytes20[${string}]`]: undefined;
|
|
2601
|
-
[x: `bytes19[${string}]`]: undefined;
|
|
2602
|
-
[x: `bytes17[${string}]`]: undefined;
|
|
2603
|
-
[x: `bytes16[${string}]`]: undefined;
|
|
2604
|
-
[x: `bytes15[${string}]`]: undefined;
|
|
2605
|
-
[x: `bytes14[${string}]`]: undefined;
|
|
2606
|
-
[x: `bytes13[${string}]`]: undefined;
|
|
2607
|
-
[x: `bytes12[${string}]`]: undefined;
|
|
2608
|
-
[x: `bytes11[${string}]`]: undefined;
|
|
2609
|
-
[x: `bytes9[${string}]`]: undefined;
|
|
2610
|
-
[x: `bytes8[${string}]`]: undefined;
|
|
2611
|
-
[x: `bytes7[${string}]`]: undefined;
|
|
2612
2516
|
[x: `bytes6[${string}]`]: undefined;
|
|
2517
|
+
[x: `bytes7[${string}]`]: undefined;
|
|
2518
|
+
[x: `bytes8[${string}]`]: undefined;
|
|
2519
|
+
[x: `bytes9[${string}]`]: undefined;
|
|
2520
|
+
[x: `bytes11[${string}]`]: undefined;
|
|
2521
|
+
[x: `bytes12[${string}]`]: undefined;
|
|
2522
|
+
[x: `bytes13[${string}]`]: undefined;
|
|
2523
|
+
[x: `bytes14[${string}]`]: undefined;
|
|
2524
|
+
[x: `bytes15[${string}]`]: undefined;
|
|
2525
|
+
[x: `bytes16[${string}]`]: undefined;
|
|
2526
|
+
[x: `bytes17[${string}]`]: undefined;
|
|
2527
|
+
[x: `bytes19[${string}]`]: undefined;
|
|
2528
|
+
[x: `bytes20[${string}]`]: undefined;
|
|
2529
|
+
[x: `bytes21[${string}]`]: undefined;
|
|
2530
|
+
[x: `bytes22[${string}]`]: undefined;
|
|
2531
|
+
[x: `bytes23[${string}]`]: undefined;
|
|
2532
|
+
[x: `bytes24[${string}]`]: undefined;
|
|
2533
|
+
[x: `bytes25[${string}]`]: undefined;
|
|
2534
|
+
[x: `bytes26[${string}]`]: undefined;
|
|
2535
|
+
[x: `bytes27[${string}]`]: undefined;
|
|
2536
|
+
[x: `bytes28[${string}]`]: undefined;
|
|
2537
|
+
[x: `bytes29[${string}]`]: undefined;
|
|
2538
|
+
[x: `bytes30[${string}]`]: undefined;
|
|
2539
|
+
[x: `bytes31[${string}]`]: undefined;
|
|
2540
|
+
[x: `bytes32[${string}]`]: undefined;
|
|
2613
2541
|
[x: `int[${string}]`]: undefined;
|
|
2614
|
-
[x: `int40[${string}]`]: undefined;
|
|
2615
|
-
[x: `int32[${string}]`]: undefined;
|
|
2616
|
-
[x: `int24[${string}]`]: undefined;
|
|
2617
|
-
[x: `int16[${string}]`]: undefined;
|
|
2618
2542
|
[x: `int8[${string}]`]: undefined;
|
|
2543
|
+
[x: `int16[${string}]`]: undefined;
|
|
2544
|
+
[x: `int24[${string}]`]: undefined;
|
|
2545
|
+
[x: `int32[${string}]`]: undefined;
|
|
2546
|
+
[x: `int40[${string}]`]: undefined;
|
|
2619
2547
|
[x: `int48[${string}]`]: undefined;
|
|
2620
2548
|
[x: `int56[${string}]`]: undefined;
|
|
2621
2549
|
[x: `int64[${string}]`]: undefined;
|
|
@@ -2644,11 +2572,11 @@ export declare const isAlchemySmartAccountClient: <TTransport extends Transport
|
|
|
2644
2572
|
[x: `int248[${string}]`]: undefined;
|
|
2645
2573
|
[x: `int256[${string}]`]: undefined;
|
|
2646
2574
|
[x: `uint[${string}]`]: undefined;
|
|
2647
|
-
[x: `uint40[${string}]`]: undefined;
|
|
2648
|
-
[x: `uint32[${string}]`]: undefined;
|
|
2649
|
-
[x: `uint24[${string}]`]: undefined;
|
|
2650
|
-
[x: `uint16[${string}]`]: undefined;
|
|
2651
2575
|
[x: `uint8[${string}]`]: undefined;
|
|
2576
|
+
[x: `uint16[${string}]`]: undefined;
|
|
2577
|
+
[x: `uint24[${string}]`]: undefined;
|
|
2578
|
+
[x: `uint32[${string}]`]: undefined;
|
|
2579
|
+
[x: `uint40[${string}]`]: undefined;
|
|
2652
2580
|
[x: `uint48[${string}]`]: undefined;
|
|
2653
2581
|
[x: `uint56[${string}]`]: undefined;
|
|
2654
2582
|
[x: `uint64[${string}]`]: undefined;
|
|
@@ -2684,39 +2612,39 @@ export declare const isAlchemySmartAccountClient: <TTransport extends Transport
|
|
|
2684
2612
|
bytes1?: undefined;
|
|
2685
2613
|
bytes5?: undefined;
|
|
2686
2614
|
bytes10?: undefined;
|
|
2615
|
+
bytes4?: undefined;
|
|
2687
2616
|
bytes2?: undefined;
|
|
2688
2617
|
bytes3?: undefined;
|
|
2689
|
-
bytes4?: undefined;
|
|
2690
|
-
bytes32?: undefined;
|
|
2691
|
-
bytes31?: undefined;
|
|
2692
|
-
bytes30?: undefined;
|
|
2693
|
-
bytes29?: undefined;
|
|
2694
|
-
bytes28?: undefined;
|
|
2695
|
-
bytes27?: undefined;
|
|
2696
|
-
bytes26?: undefined;
|
|
2697
|
-
bytes25?: undefined;
|
|
2698
|
-
bytes24?: undefined;
|
|
2699
|
-
bytes23?: undefined;
|
|
2700
|
-
bytes22?: undefined;
|
|
2701
|
-
bytes21?: undefined;
|
|
2702
|
-
bytes20?: undefined;
|
|
2703
|
-
bytes19?: undefined;
|
|
2704
|
-
bytes17?: undefined;
|
|
2705
|
-
bytes16?: undefined;
|
|
2706
|
-
bytes15?: undefined;
|
|
2707
|
-
bytes14?: undefined;
|
|
2708
|
-
bytes13?: undefined;
|
|
2709
|
-
bytes12?: undefined;
|
|
2710
|
-
bytes11?: undefined;
|
|
2711
|
-
bytes9?: undefined;
|
|
2712
|
-
bytes8?: undefined;
|
|
2713
|
-
bytes7?: undefined;
|
|
2714
2618
|
bytes6?: undefined;
|
|
2715
|
-
|
|
2716
|
-
|
|
2717
|
-
|
|
2718
|
-
|
|
2619
|
+
bytes7?: undefined;
|
|
2620
|
+
bytes8?: undefined;
|
|
2621
|
+
bytes9?: undefined;
|
|
2622
|
+
bytes11?: undefined;
|
|
2623
|
+
bytes12?: undefined;
|
|
2624
|
+
bytes13?: undefined;
|
|
2625
|
+
bytes14?: undefined;
|
|
2626
|
+
bytes15?: undefined;
|
|
2627
|
+
bytes16?: undefined;
|
|
2628
|
+
bytes17?: undefined;
|
|
2629
|
+
bytes19?: undefined;
|
|
2630
|
+
bytes20?: undefined;
|
|
2631
|
+
bytes21?: undefined;
|
|
2632
|
+
bytes22?: undefined;
|
|
2633
|
+
bytes23?: undefined;
|
|
2634
|
+
bytes24?: undefined;
|
|
2635
|
+
bytes25?: undefined;
|
|
2636
|
+
bytes26?: undefined;
|
|
2637
|
+
bytes27?: undefined;
|
|
2638
|
+
bytes28?: undefined;
|
|
2639
|
+
bytes29?: undefined;
|
|
2640
|
+
bytes30?: undefined;
|
|
2641
|
+
bytes31?: undefined;
|
|
2642
|
+
bytes32?: undefined;
|
|
2719
2643
|
int8?: undefined;
|
|
2644
|
+
int16?: undefined;
|
|
2645
|
+
int24?: undefined;
|
|
2646
|
+
int32?: undefined;
|
|
2647
|
+
int40?: undefined;
|
|
2720
2648
|
int48?: undefined;
|
|
2721
2649
|
int56?: undefined;
|
|
2722
2650
|
int64?: undefined;
|
|
@@ -2744,11 +2672,11 @@ export declare const isAlchemySmartAccountClient: <TTransport extends Transport
|
|
|
2744
2672
|
int240?: undefined;
|
|
2745
2673
|
int248?: undefined;
|
|
2746
2674
|
int256?: undefined;
|
|
2747
|
-
uint40?: undefined;
|
|
2748
|
-
uint32?: undefined;
|
|
2749
|
-
uint24?: undefined;
|
|
2750
|
-
uint16?: undefined;
|
|
2751
2675
|
uint8?: undefined;
|
|
2676
|
+
uint16?: undefined;
|
|
2677
|
+
uint24?: undefined;
|
|
2678
|
+
uint32?: undefined;
|
|
2679
|
+
uint40?: undefined;
|
|
2752
2680
|
uint48?: undefined;
|
|
2753
2681
|
uint56?: undefined;
|
|
2754
2682
|
uint64?: undefined;
|
|
@@ -2979,24 +2907,6 @@ export declare const isAlchemySmartAccountClient: <TTransport extends Transport
|
|
|
2979
2907
|
Method: "eth_uninstallFilter";
|
|
2980
2908
|
Parameters: [filterId: `0x${string}`];
|
|
2981
2909
|
ReturnType: boolean;
|
|
2982
|
-
}, {
|
|
2983
|
-
Method: "alchemy_requestPaymasterAndData";
|
|
2984
|
-
Parameters: [{
|
|
2985
|
-
policyId: string;
|
|
2986
|
-
entryPoint: `0x${string}`;
|
|
2987
|
-
userOperation: import("@aa-sdk/core").UserOperationRequest;
|
|
2988
|
-
}];
|
|
2989
|
-
ReturnType: import("..").RequestPaymasterAndDataResponse;
|
|
2990
|
-
}, {
|
|
2991
|
-
Method: "alchemy_requestGasAndPaymasterAndData";
|
|
2992
|
-
Parameters: [{
|
|
2993
|
-
policyId: string;
|
|
2994
|
-
entryPoint: `0x${string}`;
|
|
2995
|
-
userOperation: import("@aa-sdk/core").UserOperationRequest;
|
|
2996
|
-
dummySignature: `0x${string}`;
|
|
2997
|
-
overrides?: Partial<{}> | undefined;
|
|
2998
|
-
}];
|
|
2999
|
-
ReturnType: import("..").RequestGasAndPaymasterAndDataResponse;
|
|
3000
2910
|
}, {
|
|
3001
2911
|
Method: "alchemy_simulateUserOperationAssetChanges";
|
|
3002
2912
|
Parameters: import("..").SimulateUserOperationAssetChangesRequest;
|
|
@@ -3065,40 +2975,40 @@ export declare const isAlchemySmartAccountClient: <TTransport extends Transport
|
|
|
3065
2975
|
[x: `bytes1[${string}]`]: undefined;
|
|
3066
2976
|
[x: `bytes5[${string}]`]: undefined;
|
|
3067
2977
|
[x: `bytes10[${string}]`]: undefined;
|
|
2978
|
+
[x: `bytes4[${string}]`]: undefined;
|
|
3068
2979
|
[x: `bytes2[${string}]`]: undefined;
|
|
3069
2980
|
[x: `bytes3[${string}]`]: undefined;
|
|
3070
|
-
[x: `bytes4[${string}]`]: undefined;
|
|
3071
|
-
[x: `bytes32[${string}]`]: undefined;
|
|
3072
|
-
[x: `bytes31[${string}]`]: undefined;
|
|
3073
|
-
[x: `bytes30[${string}]`]: undefined;
|
|
3074
|
-
[x: `bytes29[${string}]`]: undefined;
|
|
3075
|
-
[x: `bytes28[${string}]`]: undefined;
|
|
3076
|
-
[x: `bytes27[${string}]`]: undefined;
|
|
3077
|
-
[x: `bytes26[${string}]`]: undefined;
|
|
3078
|
-
[x: `bytes25[${string}]`]: undefined;
|
|
3079
|
-
[x: `bytes24[${string}]`]: undefined;
|
|
3080
|
-
[x: `bytes23[${string}]`]: undefined;
|
|
3081
|
-
[x: `bytes22[${string}]`]: undefined;
|
|
3082
|
-
[x: `bytes21[${string}]`]: undefined;
|
|
3083
|
-
[x: `bytes20[${string}]`]: undefined;
|
|
3084
|
-
[x: `bytes19[${string}]`]: undefined;
|
|
3085
|
-
[x: `bytes17[${string}]`]: undefined;
|
|
3086
|
-
[x: `bytes16[${string}]`]: undefined;
|
|
3087
|
-
[x: `bytes15[${string}]`]: undefined;
|
|
3088
|
-
[x: `bytes14[${string}]`]: undefined;
|
|
3089
|
-
[x: `bytes13[${string}]`]: undefined;
|
|
3090
|
-
[x: `bytes12[${string}]`]: undefined;
|
|
3091
|
-
[x: `bytes11[${string}]`]: undefined;
|
|
3092
|
-
[x: `bytes9[${string}]`]: undefined;
|
|
3093
|
-
[x: `bytes8[${string}]`]: undefined;
|
|
3094
|
-
[x: `bytes7[${string}]`]: undefined;
|
|
3095
2981
|
[x: `bytes6[${string}]`]: undefined;
|
|
2982
|
+
[x: `bytes7[${string}]`]: undefined;
|
|
2983
|
+
[x: `bytes8[${string}]`]: undefined;
|
|
2984
|
+
[x: `bytes9[${string}]`]: undefined;
|
|
2985
|
+
[x: `bytes11[${string}]`]: undefined;
|
|
2986
|
+
[x: `bytes12[${string}]`]: undefined;
|
|
2987
|
+
[x: `bytes13[${string}]`]: undefined;
|
|
2988
|
+
[x: `bytes14[${string}]`]: undefined;
|
|
2989
|
+
[x: `bytes15[${string}]`]: undefined;
|
|
2990
|
+
[x: `bytes16[${string}]`]: undefined;
|
|
2991
|
+
[x: `bytes17[${string}]`]: undefined;
|
|
2992
|
+
[x: `bytes19[${string}]`]: undefined;
|
|
2993
|
+
[x: `bytes20[${string}]`]: undefined;
|
|
2994
|
+
[x: `bytes21[${string}]`]: undefined;
|
|
2995
|
+
[x: `bytes22[${string}]`]: undefined;
|
|
2996
|
+
[x: `bytes23[${string}]`]: undefined;
|
|
2997
|
+
[x: `bytes24[${string}]`]: undefined;
|
|
2998
|
+
[x: `bytes25[${string}]`]: undefined;
|
|
2999
|
+
[x: `bytes26[${string}]`]: undefined;
|
|
3000
|
+
[x: `bytes27[${string}]`]: undefined;
|
|
3001
|
+
[x: `bytes28[${string}]`]: undefined;
|
|
3002
|
+
[x: `bytes29[${string}]`]: undefined;
|
|
3003
|
+
[x: `bytes30[${string}]`]: undefined;
|
|
3004
|
+
[x: `bytes31[${string}]`]: undefined;
|
|
3005
|
+
[x: `bytes32[${string}]`]: undefined;
|
|
3096
3006
|
[x: `int[${string}]`]: undefined;
|
|
3097
|
-
[x: `int40[${string}]`]: undefined;
|
|
3098
|
-
[x: `int32[${string}]`]: undefined;
|
|
3099
|
-
[x: `int24[${string}]`]: undefined;
|
|
3100
|
-
[x: `int16[${string}]`]: undefined;
|
|
3101
3007
|
[x: `int8[${string}]`]: undefined;
|
|
3008
|
+
[x: `int16[${string}]`]: undefined;
|
|
3009
|
+
[x: `int24[${string}]`]: undefined;
|
|
3010
|
+
[x: `int32[${string}]`]: undefined;
|
|
3011
|
+
[x: `int40[${string}]`]: undefined;
|
|
3102
3012
|
[x: `int48[${string}]`]: undefined;
|
|
3103
3013
|
[x: `int56[${string}]`]: undefined;
|
|
3104
3014
|
[x: `int64[${string}]`]: undefined;
|
|
@@ -3127,11 +3037,11 @@ export declare const isAlchemySmartAccountClient: <TTransport extends Transport
|
|
|
3127
3037
|
[x: `int248[${string}]`]: undefined;
|
|
3128
3038
|
[x: `int256[${string}]`]: undefined;
|
|
3129
3039
|
[x: `uint[${string}]`]: undefined;
|
|
3130
|
-
[x: `uint40[${string}]`]: undefined;
|
|
3131
|
-
[x: `uint32[${string}]`]: undefined;
|
|
3132
|
-
[x: `uint24[${string}]`]: undefined;
|
|
3133
|
-
[x: `uint16[${string}]`]: undefined;
|
|
3134
3040
|
[x: `uint8[${string}]`]: undefined;
|
|
3041
|
+
[x: `uint16[${string}]`]: undefined;
|
|
3042
|
+
[x: `uint24[${string}]`]: undefined;
|
|
3043
|
+
[x: `uint32[${string}]`]: undefined;
|
|
3044
|
+
[x: `uint40[${string}]`]: undefined;
|
|
3135
3045
|
[x: `uint48[${string}]`]: undefined;
|
|
3136
3046
|
[x: `uint56[${string}]`]: undefined;
|
|
3137
3047
|
[x: `uint64[${string}]`]: undefined;
|
|
@@ -3167,71 +3077,71 @@ export declare const isAlchemySmartAccountClient: <TTransport extends Transport
|
|
|
3167
3077
|
bytes1?: undefined;
|
|
3168
3078
|
bytes5?: undefined;
|
|
3169
3079
|
bytes10?: undefined;
|
|
3080
|
+
bytes4?: undefined;
|
|
3170
3081
|
bytes2?: undefined;
|
|
3171
3082
|
bytes3?: undefined;
|
|
3172
|
-
bytes4?: undefined;
|
|
3173
|
-
bytes32?: undefined;
|
|
3174
|
-
bytes31?: undefined;
|
|
3175
|
-
bytes30?: undefined;
|
|
3176
|
-
bytes29?: undefined;
|
|
3177
|
-
bytes28?: undefined;
|
|
3178
|
-
bytes27?: undefined;
|
|
3179
|
-
bytes26?: undefined;
|
|
3180
|
-
bytes25?: undefined;
|
|
3181
|
-
bytes24?: undefined;
|
|
3182
|
-
bytes23?: undefined;
|
|
3183
|
-
bytes22?: undefined;
|
|
3184
|
-
bytes21?: undefined;
|
|
3185
|
-
bytes20?: undefined;
|
|
3186
|
-
bytes19?: undefined;
|
|
3187
|
-
bytes17?: undefined;
|
|
3188
|
-
bytes16?: undefined;
|
|
3189
|
-
bytes15?: undefined;
|
|
3190
|
-
bytes14?: undefined;
|
|
3191
|
-
bytes13?: undefined;
|
|
3192
|
-
bytes12?: undefined;
|
|
3193
|
-
bytes11?: undefined;
|
|
3194
|
-
bytes9?: undefined;
|
|
3195
|
-
bytes8?: undefined;
|
|
3196
|
-
bytes7?: undefined;
|
|
3197
3083
|
bytes6?: undefined;
|
|
3198
|
-
|
|
3199
|
-
|
|
3200
|
-
|
|
3201
|
-
|
|
3202
|
-
|
|
3203
|
-
|
|
3204
|
-
|
|
3205
|
-
|
|
3206
|
-
|
|
3207
|
-
|
|
3208
|
-
|
|
3209
|
-
|
|
3210
|
-
|
|
3211
|
-
|
|
3212
|
-
|
|
3213
|
-
|
|
3214
|
-
|
|
3215
|
-
|
|
3216
|
-
|
|
3217
|
-
|
|
3218
|
-
|
|
3219
|
-
|
|
3220
|
-
|
|
3221
|
-
|
|
3222
|
-
|
|
3223
|
-
|
|
3084
|
+
bytes7?: undefined;
|
|
3085
|
+
bytes8?: undefined;
|
|
3086
|
+
bytes9?: undefined;
|
|
3087
|
+
bytes11?: undefined;
|
|
3088
|
+
bytes12?: undefined;
|
|
3089
|
+
bytes13?: undefined;
|
|
3090
|
+
bytes14?: undefined;
|
|
3091
|
+
bytes15?: undefined;
|
|
3092
|
+
bytes16?: undefined;
|
|
3093
|
+
bytes17?: undefined;
|
|
3094
|
+
bytes19?: undefined;
|
|
3095
|
+
bytes20?: undefined;
|
|
3096
|
+
bytes21?: undefined;
|
|
3097
|
+
bytes22?: undefined;
|
|
3098
|
+
bytes23?: undefined;
|
|
3099
|
+
bytes24?: undefined;
|
|
3100
|
+
bytes25?: undefined;
|
|
3101
|
+
bytes26?: undefined;
|
|
3102
|
+
bytes27?: undefined;
|
|
3103
|
+
bytes28?: undefined;
|
|
3104
|
+
bytes29?: undefined;
|
|
3105
|
+
bytes30?: undefined;
|
|
3106
|
+
bytes31?: undefined;
|
|
3107
|
+
bytes32?: undefined;
|
|
3108
|
+
int8?: undefined;
|
|
3109
|
+
int16?: undefined;
|
|
3110
|
+
int24?: undefined;
|
|
3111
|
+
int32?: undefined;
|
|
3112
|
+
int40?: undefined;
|
|
3113
|
+
int48?: undefined;
|
|
3114
|
+
int56?: undefined;
|
|
3115
|
+
int64?: undefined;
|
|
3116
|
+
int72?: undefined;
|
|
3117
|
+
int80?: undefined;
|
|
3118
|
+
int88?: undefined;
|
|
3119
|
+
int96?: undefined;
|
|
3120
|
+
int104?: undefined;
|
|
3121
|
+
int112?: undefined;
|
|
3122
|
+
int120?: undefined;
|
|
3123
|
+
int128?: undefined;
|
|
3124
|
+
int136?: undefined;
|
|
3125
|
+
int144?: undefined;
|
|
3126
|
+
int152?: undefined;
|
|
3127
|
+
int160?: undefined;
|
|
3128
|
+
int168?: undefined;
|
|
3129
|
+
int176?: undefined;
|
|
3130
|
+
int184?: undefined;
|
|
3131
|
+
int192?: undefined;
|
|
3132
|
+
int200?: undefined;
|
|
3133
|
+
int208?: undefined;
|
|
3224
3134
|
int216?: undefined;
|
|
3225
3135
|
int224?: undefined;
|
|
3226
3136
|
int232?: undefined;
|
|
3227
3137
|
int240?: undefined;
|
|
3228
3138
|
int248?: undefined;
|
|
3229
3139
|
int256?: undefined;
|
|
3230
|
-
uint40?: undefined;
|
|
3231
|
-
uint32?: undefined;
|
|
3232
|
-
uint24?: undefined;
|
|
3233
|
-
uint16?: undefined;
|
|
3234
3140
|
uint8?: undefined;
|
|
3141
|
+
uint16?: undefined;
|
|
3142
|
+
uint24?: undefined;
|
|
3143
|
+
uint32?: undefined;
|
|
3144
|
+
uint40?: undefined;
|
|
3235
3145
|
uint48?: undefined;
|
|
3236
3146
|
uint56?: undefined;
|
|
3237
3147
|
uint64?: undefined;
|
|
@@ -3274,40 +3184,40 @@ export declare const isAlchemySmartAccountClient: <TTransport extends Transport
|
|
|
3274
3184
|
[x: `bytes1[${string}]`]: undefined;
|
|
3275
3185
|
[x: `bytes5[${string}]`]: undefined;
|
|
3276
3186
|
[x: `bytes10[${string}]`]: undefined;
|
|
3187
|
+
[x: `bytes4[${string}]`]: undefined;
|
|
3277
3188
|
[x: `bytes2[${string}]`]: undefined;
|
|
3278
3189
|
[x: `bytes3[${string}]`]: undefined;
|
|
3279
|
-
[x: `bytes4[${string}]`]: undefined;
|
|
3280
|
-
[x: `bytes32[${string}]`]: undefined;
|
|
3281
|
-
[x: `bytes31[${string}]`]: undefined;
|
|
3282
|
-
[x: `bytes30[${string}]`]: undefined;
|
|
3283
|
-
[x: `bytes29[${string}]`]: undefined;
|
|
3284
|
-
[x: `bytes28[${string}]`]: undefined;
|
|
3285
|
-
[x: `bytes27[${string}]`]: undefined;
|
|
3286
|
-
[x: `bytes26[${string}]`]: undefined;
|
|
3287
|
-
[x: `bytes25[${string}]`]: undefined;
|
|
3288
|
-
[x: `bytes24[${string}]`]: undefined;
|
|
3289
|
-
[x: `bytes23[${string}]`]: undefined;
|
|
3290
|
-
[x: `bytes22[${string}]`]: undefined;
|
|
3291
|
-
[x: `bytes21[${string}]`]: undefined;
|
|
3292
|
-
[x: `bytes20[${string}]`]: undefined;
|
|
3293
|
-
[x: `bytes19[${string}]`]: undefined;
|
|
3294
|
-
[x: `bytes17[${string}]`]: undefined;
|
|
3295
|
-
[x: `bytes16[${string}]`]: undefined;
|
|
3296
|
-
[x: `bytes15[${string}]`]: undefined;
|
|
3297
|
-
[x: `bytes14[${string}]`]: undefined;
|
|
3298
|
-
[x: `bytes13[${string}]`]: undefined;
|
|
3299
|
-
[x: `bytes12[${string}]`]: undefined;
|
|
3300
|
-
[x: `bytes11[${string}]`]: undefined;
|
|
3301
|
-
[x: `bytes9[${string}]`]: undefined;
|
|
3302
|
-
[x: `bytes8[${string}]`]: undefined;
|
|
3303
|
-
[x: `bytes7[${string}]`]: undefined;
|
|
3304
3190
|
[x: `bytes6[${string}]`]: undefined;
|
|
3191
|
+
[x: `bytes7[${string}]`]: undefined;
|
|
3192
|
+
[x: `bytes8[${string}]`]: undefined;
|
|
3193
|
+
[x: `bytes9[${string}]`]: undefined;
|
|
3194
|
+
[x: `bytes11[${string}]`]: undefined;
|
|
3195
|
+
[x: `bytes12[${string}]`]: undefined;
|
|
3196
|
+
[x: `bytes13[${string}]`]: undefined;
|
|
3197
|
+
[x: `bytes14[${string}]`]: undefined;
|
|
3198
|
+
[x: `bytes15[${string}]`]: undefined;
|
|
3199
|
+
[x: `bytes16[${string}]`]: undefined;
|
|
3200
|
+
[x: `bytes17[${string}]`]: undefined;
|
|
3201
|
+
[x: `bytes19[${string}]`]: undefined;
|
|
3202
|
+
[x: `bytes20[${string}]`]: undefined;
|
|
3203
|
+
[x: `bytes21[${string}]`]: undefined;
|
|
3204
|
+
[x: `bytes22[${string}]`]: undefined;
|
|
3205
|
+
[x: `bytes23[${string}]`]: undefined;
|
|
3206
|
+
[x: `bytes24[${string}]`]: undefined;
|
|
3207
|
+
[x: `bytes25[${string}]`]: undefined;
|
|
3208
|
+
[x: `bytes26[${string}]`]: undefined;
|
|
3209
|
+
[x: `bytes27[${string}]`]: undefined;
|
|
3210
|
+
[x: `bytes28[${string}]`]: undefined;
|
|
3211
|
+
[x: `bytes29[${string}]`]: undefined;
|
|
3212
|
+
[x: `bytes30[${string}]`]: undefined;
|
|
3213
|
+
[x: `bytes31[${string}]`]: undefined;
|
|
3214
|
+
[x: `bytes32[${string}]`]: undefined;
|
|
3305
3215
|
[x: `int[${string}]`]: undefined;
|
|
3306
|
-
[x: `int40[${string}]`]: undefined;
|
|
3307
|
-
[x: `int32[${string}]`]: undefined;
|
|
3308
|
-
[x: `int24[${string}]`]: undefined;
|
|
3309
|
-
[x: `int16[${string}]`]: undefined;
|
|
3310
3216
|
[x: `int8[${string}]`]: undefined;
|
|
3217
|
+
[x: `int16[${string}]`]: undefined;
|
|
3218
|
+
[x: `int24[${string}]`]: undefined;
|
|
3219
|
+
[x: `int32[${string}]`]: undefined;
|
|
3220
|
+
[x: `int40[${string}]`]: undefined;
|
|
3311
3221
|
[x: `int48[${string}]`]: undefined;
|
|
3312
3222
|
[x: `int56[${string}]`]: undefined;
|
|
3313
3223
|
[x: `int64[${string}]`]: undefined;
|
|
@@ -3336,11 +3246,11 @@ export declare const isAlchemySmartAccountClient: <TTransport extends Transport
|
|
|
3336
3246
|
[x: `int248[${string}]`]: undefined;
|
|
3337
3247
|
[x: `int256[${string}]`]: undefined;
|
|
3338
3248
|
[x: `uint[${string}]`]: undefined;
|
|
3339
|
-
[x: `uint40[${string}]`]: undefined;
|
|
3340
|
-
[x: `uint32[${string}]`]: undefined;
|
|
3341
|
-
[x: `uint24[${string}]`]: undefined;
|
|
3342
|
-
[x: `uint16[${string}]`]: undefined;
|
|
3343
3249
|
[x: `uint8[${string}]`]: undefined;
|
|
3250
|
+
[x: `uint16[${string}]`]: undefined;
|
|
3251
|
+
[x: `uint24[${string}]`]: undefined;
|
|
3252
|
+
[x: `uint32[${string}]`]: undefined;
|
|
3253
|
+
[x: `uint40[${string}]`]: undefined;
|
|
3344
3254
|
[x: `uint48[${string}]`]: undefined;
|
|
3345
3255
|
[x: `uint56[${string}]`]: undefined;
|
|
3346
3256
|
[x: `uint64[${string}]`]: undefined;
|
|
@@ -3376,39 +3286,39 @@ export declare const isAlchemySmartAccountClient: <TTransport extends Transport
|
|
|
3376
3286
|
bytes1?: undefined;
|
|
3377
3287
|
bytes5?: undefined;
|
|
3378
3288
|
bytes10?: undefined;
|
|
3289
|
+
bytes4?: undefined;
|
|
3379
3290
|
bytes2?: undefined;
|
|
3380
3291
|
bytes3?: undefined;
|
|
3381
|
-
bytes4?: undefined;
|
|
3382
|
-
bytes32?: undefined;
|
|
3383
|
-
bytes31?: undefined;
|
|
3384
|
-
bytes30?: undefined;
|
|
3385
|
-
bytes29?: undefined;
|
|
3386
|
-
bytes28?: undefined;
|
|
3387
|
-
bytes27?: undefined;
|
|
3388
|
-
bytes26?: undefined;
|
|
3389
|
-
bytes25?: undefined;
|
|
3390
|
-
bytes24?: undefined;
|
|
3391
|
-
bytes23?: undefined;
|
|
3392
|
-
bytes22?: undefined;
|
|
3393
|
-
bytes21?: undefined;
|
|
3394
|
-
bytes20?: undefined;
|
|
3395
|
-
bytes19?: undefined;
|
|
3396
|
-
bytes17?: undefined;
|
|
3397
|
-
bytes16?: undefined;
|
|
3398
|
-
bytes15?: undefined;
|
|
3399
|
-
bytes14?: undefined;
|
|
3400
|
-
bytes13?: undefined;
|
|
3401
|
-
bytes12?: undefined;
|
|
3402
|
-
bytes11?: undefined;
|
|
3403
|
-
bytes9?: undefined;
|
|
3404
|
-
bytes8?: undefined;
|
|
3405
|
-
bytes7?: undefined;
|
|
3406
3292
|
bytes6?: undefined;
|
|
3407
|
-
|
|
3408
|
-
|
|
3409
|
-
|
|
3410
|
-
|
|
3293
|
+
bytes7?: undefined;
|
|
3294
|
+
bytes8?: undefined;
|
|
3295
|
+
bytes9?: undefined;
|
|
3296
|
+
bytes11?: undefined;
|
|
3297
|
+
bytes12?: undefined;
|
|
3298
|
+
bytes13?: undefined;
|
|
3299
|
+
bytes14?: undefined;
|
|
3300
|
+
bytes15?: undefined;
|
|
3301
|
+
bytes16?: undefined;
|
|
3302
|
+
bytes17?: undefined;
|
|
3303
|
+
bytes19?: undefined;
|
|
3304
|
+
bytes20?: undefined;
|
|
3305
|
+
bytes21?: undefined;
|
|
3306
|
+
bytes22?: undefined;
|
|
3307
|
+
bytes23?: undefined;
|
|
3308
|
+
bytes24?: undefined;
|
|
3309
|
+
bytes25?: undefined;
|
|
3310
|
+
bytes26?: undefined;
|
|
3311
|
+
bytes27?: undefined;
|
|
3312
|
+
bytes28?: undefined;
|
|
3313
|
+
bytes29?: undefined;
|
|
3314
|
+
bytes30?: undefined;
|
|
3315
|
+
bytes31?: undefined;
|
|
3316
|
+
bytes32?: undefined;
|
|
3411
3317
|
int8?: undefined;
|
|
3318
|
+
int16?: undefined;
|
|
3319
|
+
int24?: undefined;
|
|
3320
|
+
int32?: undefined;
|
|
3321
|
+
int40?: undefined;
|
|
3412
3322
|
int48?: undefined;
|
|
3413
3323
|
int56?: undefined;
|
|
3414
3324
|
int64?: undefined;
|
|
@@ -3436,11 +3346,11 @@ export declare const isAlchemySmartAccountClient: <TTransport extends Transport
|
|
|
3436
3346
|
int240?: undefined;
|
|
3437
3347
|
int248?: undefined;
|
|
3438
3348
|
int256?: undefined;
|
|
3439
|
-
uint40?: undefined;
|
|
3440
|
-
uint32?: undefined;
|
|
3441
|
-
uint24?: undefined;
|
|
3442
|
-
uint16?: undefined;
|
|
3443
3349
|
uint8?: undefined;
|
|
3350
|
+
uint16?: undefined;
|
|
3351
|
+
uint24?: undefined;
|
|
3352
|
+
uint32?: undefined;
|
|
3353
|
+
uint40?: undefined;
|
|
3444
3354
|
uint48?: undefined;
|
|
3445
3355
|
uint56?: undefined;
|
|
3446
3356
|
uint64?: undefined;
|
|
@@ -3671,24 +3581,6 @@ export declare const isAlchemySmartAccountClient: <TTransport extends Transport
|
|
|
3671
3581
|
Method: "eth_uninstallFilter";
|
|
3672
3582
|
Parameters: [filterId: `0x${string}`];
|
|
3673
3583
|
ReturnType: boolean;
|
|
3674
|
-
}, {
|
|
3675
|
-
Method: "alchemy_requestPaymasterAndData";
|
|
3676
|
-
Parameters: [{
|
|
3677
|
-
policyId: string;
|
|
3678
|
-
entryPoint: `0x${string}`;
|
|
3679
|
-
userOperation: import("@aa-sdk/core").UserOperationRequest;
|
|
3680
|
-
}];
|
|
3681
|
-
ReturnType: import("..").RequestPaymasterAndDataResponse;
|
|
3682
|
-
}, {
|
|
3683
|
-
Method: "alchemy_requestGasAndPaymasterAndData";
|
|
3684
|
-
Parameters: [{
|
|
3685
|
-
policyId: string;
|
|
3686
|
-
entryPoint: `0x${string}`;
|
|
3687
|
-
userOperation: import("@aa-sdk/core").UserOperationRequest;
|
|
3688
|
-
dummySignature: `0x${string}`;
|
|
3689
|
-
overrides?: Partial<{}> | undefined;
|
|
3690
|
-
}];
|
|
3691
|
-
ReturnType: import("..").RequestGasAndPaymasterAndDataResponse;
|
|
3692
3584
|
}, {
|
|
3693
3585
|
Method: "alchemy_simulateUserOperationAssetChanges";
|
|
3694
3586
|
Parameters: import("..").SimulateUserOperationAssetChangesRequest;
|
|
@@ -3757,40 +3649,40 @@ export declare const isAlchemySmartAccountClient: <TTransport extends Transport
|
|
|
3757
3649
|
[x: `bytes1[${string}]`]: undefined;
|
|
3758
3650
|
[x: `bytes5[${string}]`]: undefined;
|
|
3759
3651
|
[x: `bytes10[${string}]`]: undefined;
|
|
3652
|
+
[x: `bytes4[${string}]`]: undefined;
|
|
3760
3653
|
[x: `bytes2[${string}]`]: undefined;
|
|
3761
3654
|
[x: `bytes3[${string}]`]: undefined;
|
|
3762
|
-
[x: `bytes4[${string}]`]: undefined;
|
|
3763
|
-
[x: `bytes32[${string}]`]: undefined;
|
|
3764
|
-
[x: `bytes31[${string}]`]: undefined;
|
|
3765
|
-
[x: `bytes30[${string}]`]: undefined;
|
|
3766
|
-
[x: `bytes29[${string}]`]: undefined;
|
|
3767
|
-
[x: `bytes28[${string}]`]: undefined;
|
|
3768
|
-
[x: `bytes27[${string}]`]: undefined;
|
|
3769
|
-
[x: `bytes26[${string}]`]: undefined;
|
|
3770
|
-
[x: `bytes25[${string}]`]: undefined;
|
|
3771
|
-
[x: `bytes24[${string}]`]: undefined;
|
|
3772
|
-
[x: `bytes23[${string}]`]: undefined;
|
|
3773
|
-
[x: `bytes22[${string}]`]: undefined;
|
|
3774
|
-
[x: `bytes21[${string}]`]: undefined;
|
|
3775
|
-
[x: `bytes20[${string}]`]: undefined;
|
|
3776
|
-
[x: `bytes19[${string}]`]: undefined;
|
|
3777
|
-
[x: `bytes17[${string}]`]: undefined;
|
|
3778
|
-
[x: `bytes16[${string}]`]: undefined;
|
|
3779
|
-
[x: `bytes15[${string}]`]: undefined;
|
|
3780
|
-
[x: `bytes14[${string}]`]: undefined;
|
|
3781
|
-
[x: `bytes13[${string}]`]: undefined;
|
|
3782
|
-
[x: `bytes12[${string}]`]: undefined;
|
|
3783
|
-
[x: `bytes11[${string}]`]: undefined;
|
|
3784
|
-
[x: `bytes9[${string}]`]: undefined;
|
|
3785
|
-
[x: `bytes8[${string}]`]: undefined;
|
|
3786
|
-
[x: `bytes7[${string}]`]: undefined;
|
|
3787
3655
|
[x: `bytes6[${string}]`]: undefined;
|
|
3656
|
+
[x: `bytes7[${string}]`]: undefined;
|
|
3657
|
+
[x: `bytes8[${string}]`]: undefined;
|
|
3658
|
+
[x: `bytes9[${string}]`]: undefined;
|
|
3659
|
+
[x: `bytes11[${string}]`]: undefined;
|
|
3660
|
+
[x: `bytes12[${string}]`]: undefined;
|
|
3661
|
+
[x: `bytes13[${string}]`]: undefined;
|
|
3662
|
+
[x: `bytes14[${string}]`]: undefined;
|
|
3663
|
+
[x: `bytes15[${string}]`]: undefined;
|
|
3664
|
+
[x: `bytes16[${string}]`]: undefined;
|
|
3665
|
+
[x: `bytes17[${string}]`]: undefined;
|
|
3666
|
+
[x: `bytes19[${string}]`]: undefined;
|
|
3667
|
+
[x: `bytes20[${string}]`]: undefined;
|
|
3668
|
+
[x: `bytes21[${string}]`]: undefined;
|
|
3669
|
+
[x: `bytes22[${string}]`]: undefined;
|
|
3670
|
+
[x: `bytes23[${string}]`]: undefined;
|
|
3671
|
+
[x: `bytes24[${string}]`]: undefined;
|
|
3672
|
+
[x: `bytes25[${string}]`]: undefined;
|
|
3673
|
+
[x: `bytes26[${string}]`]: undefined;
|
|
3674
|
+
[x: `bytes27[${string}]`]: undefined;
|
|
3675
|
+
[x: `bytes28[${string}]`]: undefined;
|
|
3676
|
+
[x: `bytes29[${string}]`]: undefined;
|
|
3677
|
+
[x: `bytes30[${string}]`]: undefined;
|
|
3678
|
+
[x: `bytes31[${string}]`]: undefined;
|
|
3679
|
+
[x: `bytes32[${string}]`]: undefined;
|
|
3788
3680
|
[x: `int[${string}]`]: undefined;
|
|
3789
|
-
[x: `int40[${string}]`]: undefined;
|
|
3790
|
-
[x: `int32[${string}]`]: undefined;
|
|
3791
|
-
[x: `int24[${string}]`]: undefined;
|
|
3792
|
-
[x: `int16[${string}]`]: undefined;
|
|
3793
3681
|
[x: `int8[${string}]`]: undefined;
|
|
3682
|
+
[x: `int16[${string}]`]: undefined;
|
|
3683
|
+
[x: `int24[${string}]`]: undefined;
|
|
3684
|
+
[x: `int32[${string}]`]: undefined;
|
|
3685
|
+
[x: `int40[${string}]`]: undefined;
|
|
3794
3686
|
[x: `int48[${string}]`]: undefined;
|
|
3795
3687
|
[x: `int56[${string}]`]: undefined;
|
|
3796
3688
|
[x: `int64[${string}]`]: undefined;
|
|
@@ -3819,11 +3711,11 @@ export declare const isAlchemySmartAccountClient: <TTransport extends Transport
|
|
|
3819
3711
|
[x: `int248[${string}]`]: undefined;
|
|
3820
3712
|
[x: `int256[${string}]`]: undefined;
|
|
3821
3713
|
[x: `uint[${string}]`]: undefined;
|
|
3822
|
-
[x: `uint40[${string}]`]: undefined;
|
|
3823
|
-
[x: `uint32[${string}]`]: undefined;
|
|
3824
|
-
[x: `uint24[${string}]`]: undefined;
|
|
3825
|
-
[x: `uint16[${string}]`]: undefined;
|
|
3826
3714
|
[x: `uint8[${string}]`]: undefined;
|
|
3715
|
+
[x: `uint16[${string}]`]: undefined;
|
|
3716
|
+
[x: `uint24[${string}]`]: undefined;
|
|
3717
|
+
[x: `uint32[${string}]`]: undefined;
|
|
3718
|
+
[x: `uint40[${string}]`]: undefined;
|
|
3827
3719
|
[x: `uint48[${string}]`]: undefined;
|
|
3828
3720
|
[x: `uint56[${string}]`]: undefined;
|
|
3829
3721
|
[x: `uint64[${string}]`]: undefined;
|
|
@@ -3859,39 +3751,39 @@ export declare const isAlchemySmartAccountClient: <TTransport extends Transport
|
|
|
3859
3751
|
bytes1?: undefined;
|
|
3860
3752
|
bytes5?: undefined;
|
|
3861
3753
|
bytes10?: undefined;
|
|
3754
|
+
bytes4?: undefined;
|
|
3862
3755
|
bytes2?: undefined;
|
|
3863
3756
|
bytes3?: undefined;
|
|
3864
|
-
bytes4?: undefined;
|
|
3865
|
-
bytes32?: undefined;
|
|
3866
|
-
bytes31?: undefined;
|
|
3867
|
-
bytes30?: undefined;
|
|
3868
|
-
bytes29?: undefined;
|
|
3869
|
-
bytes28?: undefined;
|
|
3870
|
-
bytes27?: undefined;
|
|
3871
|
-
bytes26?: undefined;
|
|
3872
|
-
bytes25?: undefined;
|
|
3873
|
-
bytes24?: undefined;
|
|
3874
|
-
bytes23?: undefined;
|
|
3875
|
-
bytes22?: undefined;
|
|
3876
|
-
bytes21?: undefined;
|
|
3877
|
-
bytes20?: undefined;
|
|
3878
|
-
bytes19?: undefined;
|
|
3879
|
-
bytes17?: undefined;
|
|
3880
|
-
bytes16?: undefined;
|
|
3881
|
-
bytes15?: undefined;
|
|
3882
|
-
bytes14?: undefined;
|
|
3883
|
-
bytes13?: undefined;
|
|
3884
|
-
bytes12?: undefined;
|
|
3885
|
-
bytes11?: undefined;
|
|
3886
|
-
bytes9?: undefined;
|
|
3887
|
-
bytes8?: undefined;
|
|
3888
|
-
bytes7?: undefined;
|
|
3889
3757
|
bytes6?: undefined;
|
|
3890
|
-
|
|
3891
|
-
|
|
3892
|
-
|
|
3893
|
-
|
|
3758
|
+
bytes7?: undefined;
|
|
3759
|
+
bytes8?: undefined;
|
|
3760
|
+
bytes9?: undefined;
|
|
3761
|
+
bytes11?: undefined;
|
|
3762
|
+
bytes12?: undefined;
|
|
3763
|
+
bytes13?: undefined;
|
|
3764
|
+
bytes14?: undefined;
|
|
3765
|
+
bytes15?: undefined;
|
|
3766
|
+
bytes16?: undefined;
|
|
3767
|
+
bytes17?: undefined;
|
|
3768
|
+
bytes19?: undefined;
|
|
3769
|
+
bytes20?: undefined;
|
|
3770
|
+
bytes21?: undefined;
|
|
3771
|
+
bytes22?: undefined;
|
|
3772
|
+
bytes23?: undefined;
|
|
3773
|
+
bytes24?: undefined;
|
|
3774
|
+
bytes25?: undefined;
|
|
3775
|
+
bytes26?: undefined;
|
|
3776
|
+
bytes27?: undefined;
|
|
3777
|
+
bytes28?: undefined;
|
|
3778
|
+
bytes29?: undefined;
|
|
3779
|
+
bytes30?: undefined;
|
|
3780
|
+
bytes31?: undefined;
|
|
3781
|
+
bytes32?: undefined;
|
|
3894
3782
|
int8?: undefined;
|
|
3783
|
+
int16?: undefined;
|
|
3784
|
+
int24?: undefined;
|
|
3785
|
+
int32?: undefined;
|
|
3786
|
+
int40?: undefined;
|
|
3895
3787
|
int48?: undefined;
|
|
3896
3788
|
int56?: undefined;
|
|
3897
3789
|
int64?: undefined;
|
|
@@ -3919,11 +3811,11 @@ export declare const isAlchemySmartAccountClient: <TTransport extends Transport
|
|
|
3919
3811
|
int240?: undefined;
|
|
3920
3812
|
int248?: undefined;
|
|
3921
3813
|
int256?: undefined;
|
|
3922
|
-
uint40?: undefined;
|
|
3923
|
-
uint32?: undefined;
|
|
3924
|
-
uint24?: undefined;
|
|
3925
|
-
uint16?: undefined;
|
|
3926
3814
|
uint8?: undefined;
|
|
3815
|
+
uint16?: undefined;
|
|
3816
|
+
uint24?: undefined;
|
|
3817
|
+
uint32?: undefined;
|
|
3818
|
+
uint40?: undefined;
|
|
3927
3819
|
uint48?: undefined;
|
|
3928
3820
|
uint56?: undefined;
|
|
3929
3821
|
uint64?: undefined;
|
|
@@ -3966,40 +3858,40 @@ export declare const isAlchemySmartAccountClient: <TTransport extends Transport
|
|
|
3966
3858
|
[x: `bytes1[${string}]`]: undefined;
|
|
3967
3859
|
[x: `bytes5[${string}]`]: undefined;
|
|
3968
3860
|
[x: `bytes10[${string}]`]: undefined;
|
|
3861
|
+
[x: `bytes4[${string}]`]: undefined;
|
|
3969
3862
|
[x: `bytes2[${string}]`]: undefined;
|
|
3970
3863
|
[x: `bytes3[${string}]`]: undefined;
|
|
3971
|
-
[x: `bytes4[${string}]`]: undefined;
|
|
3972
|
-
[x: `bytes32[${string}]`]: undefined;
|
|
3973
|
-
[x: `bytes31[${string}]`]: undefined;
|
|
3974
|
-
[x: `bytes30[${string}]`]: undefined;
|
|
3975
|
-
[x: `bytes29[${string}]`]: undefined;
|
|
3976
|
-
[x: `bytes28[${string}]`]: undefined;
|
|
3977
|
-
[x: `bytes27[${string}]`]: undefined;
|
|
3978
|
-
[x: `bytes26[${string}]`]: undefined;
|
|
3979
|
-
[x: `bytes25[${string}]`]: undefined;
|
|
3980
|
-
[x: `bytes24[${string}]`]: undefined;
|
|
3981
|
-
[x: `bytes23[${string}]`]: undefined;
|
|
3982
|
-
[x: `bytes22[${string}]`]: undefined;
|
|
3983
|
-
[x: `bytes21[${string}]`]: undefined;
|
|
3984
|
-
[x: `bytes20[${string}]`]: undefined;
|
|
3985
|
-
[x: `bytes19[${string}]`]: undefined;
|
|
3986
|
-
[x: `bytes17[${string}]`]: undefined;
|
|
3987
|
-
[x: `bytes16[${string}]`]: undefined;
|
|
3988
|
-
[x: `bytes15[${string}]`]: undefined;
|
|
3989
|
-
[x: `bytes14[${string}]`]: undefined;
|
|
3990
|
-
[x: `bytes13[${string}]`]: undefined;
|
|
3991
|
-
[x: `bytes12[${string}]`]: undefined;
|
|
3992
|
-
[x: `bytes11[${string}]`]: undefined;
|
|
3993
|
-
[x: `bytes9[${string}]`]: undefined;
|
|
3994
|
-
[x: `bytes8[${string}]`]: undefined;
|
|
3995
|
-
[x: `bytes7[${string}]`]: undefined;
|
|
3996
3864
|
[x: `bytes6[${string}]`]: undefined;
|
|
3865
|
+
[x: `bytes7[${string}]`]: undefined;
|
|
3866
|
+
[x: `bytes8[${string}]`]: undefined;
|
|
3867
|
+
[x: `bytes9[${string}]`]: undefined;
|
|
3868
|
+
[x: `bytes11[${string}]`]: undefined;
|
|
3869
|
+
[x: `bytes12[${string}]`]: undefined;
|
|
3870
|
+
[x: `bytes13[${string}]`]: undefined;
|
|
3871
|
+
[x: `bytes14[${string}]`]: undefined;
|
|
3872
|
+
[x: `bytes15[${string}]`]: undefined;
|
|
3873
|
+
[x: `bytes16[${string}]`]: undefined;
|
|
3874
|
+
[x: `bytes17[${string}]`]: undefined;
|
|
3875
|
+
[x: `bytes19[${string}]`]: undefined;
|
|
3876
|
+
[x: `bytes20[${string}]`]: undefined;
|
|
3877
|
+
[x: `bytes21[${string}]`]: undefined;
|
|
3878
|
+
[x: `bytes22[${string}]`]: undefined;
|
|
3879
|
+
[x: `bytes23[${string}]`]: undefined;
|
|
3880
|
+
[x: `bytes24[${string}]`]: undefined;
|
|
3881
|
+
[x: `bytes25[${string}]`]: undefined;
|
|
3882
|
+
[x: `bytes26[${string}]`]: undefined;
|
|
3883
|
+
[x: `bytes27[${string}]`]: undefined;
|
|
3884
|
+
[x: `bytes28[${string}]`]: undefined;
|
|
3885
|
+
[x: `bytes29[${string}]`]: undefined;
|
|
3886
|
+
[x: `bytes30[${string}]`]: undefined;
|
|
3887
|
+
[x: `bytes31[${string}]`]: undefined;
|
|
3888
|
+
[x: `bytes32[${string}]`]: undefined;
|
|
3997
3889
|
[x: `int[${string}]`]: undefined;
|
|
3998
|
-
[x: `int40[${string}]`]: undefined;
|
|
3999
|
-
[x: `int32[${string}]`]: undefined;
|
|
4000
|
-
[x: `int24[${string}]`]: undefined;
|
|
4001
|
-
[x: `int16[${string}]`]: undefined;
|
|
4002
3890
|
[x: `int8[${string}]`]: undefined;
|
|
3891
|
+
[x: `int16[${string}]`]: undefined;
|
|
3892
|
+
[x: `int24[${string}]`]: undefined;
|
|
3893
|
+
[x: `int32[${string}]`]: undefined;
|
|
3894
|
+
[x: `int40[${string}]`]: undefined;
|
|
4003
3895
|
[x: `int48[${string}]`]: undefined;
|
|
4004
3896
|
[x: `int56[${string}]`]: undefined;
|
|
4005
3897
|
[x: `int64[${string}]`]: undefined;
|
|
@@ -4028,11 +3920,11 @@ export declare const isAlchemySmartAccountClient: <TTransport extends Transport
|
|
|
4028
3920
|
[x: `int248[${string}]`]: undefined;
|
|
4029
3921
|
[x: `int256[${string}]`]: undefined;
|
|
4030
3922
|
[x: `uint[${string}]`]: undefined;
|
|
4031
|
-
[x: `uint40[${string}]`]: undefined;
|
|
4032
|
-
[x: `uint32[${string}]`]: undefined;
|
|
4033
|
-
[x: `uint24[${string}]`]: undefined;
|
|
4034
|
-
[x: `uint16[${string}]`]: undefined;
|
|
4035
3923
|
[x: `uint8[${string}]`]: undefined;
|
|
3924
|
+
[x: `uint16[${string}]`]: undefined;
|
|
3925
|
+
[x: `uint24[${string}]`]: undefined;
|
|
3926
|
+
[x: `uint32[${string}]`]: undefined;
|
|
3927
|
+
[x: `uint40[${string}]`]: undefined;
|
|
4036
3928
|
[x: `uint48[${string}]`]: undefined;
|
|
4037
3929
|
[x: `uint56[${string}]`]: undefined;
|
|
4038
3930
|
[x: `uint64[${string}]`]: undefined;
|
|
@@ -4068,39 +3960,39 @@ export declare const isAlchemySmartAccountClient: <TTransport extends Transport
|
|
|
4068
3960
|
bytes1?: undefined;
|
|
4069
3961
|
bytes5?: undefined;
|
|
4070
3962
|
bytes10?: undefined;
|
|
3963
|
+
bytes4?: undefined;
|
|
4071
3964
|
bytes2?: undefined;
|
|
4072
3965
|
bytes3?: undefined;
|
|
4073
|
-
bytes4?: undefined;
|
|
4074
|
-
bytes32?: undefined;
|
|
4075
|
-
bytes31?: undefined;
|
|
4076
|
-
bytes30?: undefined;
|
|
4077
|
-
bytes29?: undefined;
|
|
4078
|
-
bytes28?: undefined;
|
|
4079
|
-
bytes27?: undefined;
|
|
4080
|
-
bytes26?: undefined;
|
|
4081
|
-
bytes25?: undefined;
|
|
4082
|
-
bytes24?: undefined;
|
|
4083
|
-
bytes23?: undefined;
|
|
4084
|
-
bytes22?: undefined;
|
|
4085
|
-
bytes21?: undefined;
|
|
4086
|
-
bytes20?: undefined;
|
|
4087
|
-
bytes19?: undefined;
|
|
4088
|
-
bytes17?: undefined;
|
|
4089
|
-
bytes16?: undefined;
|
|
4090
|
-
bytes15?: undefined;
|
|
4091
|
-
bytes14?: undefined;
|
|
4092
|
-
bytes13?: undefined;
|
|
4093
|
-
bytes12?: undefined;
|
|
4094
|
-
bytes11?: undefined;
|
|
4095
|
-
bytes9?: undefined;
|
|
4096
|
-
bytes8?: undefined;
|
|
4097
|
-
bytes7?: undefined;
|
|
4098
3966
|
bytes6?: undefined;
|
|
4099
|
-
|
|
4100
|
-
|
|
4101
|
-
|
|
4102
|
-
|
|
3967
|
+
bytes7?: undefined;
|
|
3968
|
+
bytes8?: undefined;
|
|
3969
|
+
bytes9?: undefined;
|
|
3970
|
+
bytes11?: undefined;
|
|
3971
|
+
bytes12?: undefined;
|
|
3972
|
+
bytes13?: undefined;
|
|
3973
|
+
bytes14?: undefined;
|
|
3974
|
+
bytes15?: undefined;
|
|
3975
|
+
bytes16?: undefined;
|
|
3976
|
+
bytes17?: undefined;
|
|
3977
|
+
bytes19?: undefined;
|
|
3978
|
+
bytes20?: undefined;
|
|
3979
|
+
bytes21?: undefined;
|
|
3980
|
+
bytes22?: undefined;
|
|
3981
|
+
bytes23?: undefined;
|
|
3982
|
+
bytes24?: undefined;
|
|
3983
|
+
bytes25?: undefined;
|
|
3984
|
+
bytes26?: undefined;
|
|
3985
|
+
bytes27?: undefined;
|
|
3986
|
+
bytes28?: undefined;
|
|
3987
|
+
bytes29?: undefined;
|
|
3988
|
+
bytes30?: undefined;
|
|
3989
|
+
bytes31?: undefined;
|
|
3990
|
+
bytes32?: undefined;
|
|
4103
3991
|
int8?: undefined;
|
|
3992
|
+
int16?: undefined;
|
|
3993
|
+
int24?: undefined;
|
|
3994
|
+
int32?: undefined;
|
|
3995
|
+
int40?: undefined;
|
|
4104
3996
|
int48?: undefined;
|
|
4105
3997
|
int56?: undefined;
|
|
4106
3998
|
int64?: undefined;
|
|
@@ -4128,11 +4020,11 @@ export declare const isAlchemySmartAccountClient: <TTransport extends Transport
|
|
|
4128
4020
|
int240?: undefined;
|
|
4129
4021
|
int248?: undefined;
|
|
4130
4022
|
int256?: undefined;
|
|
4131
|
-
uint40?: undefined;
|
|
4132
|
-
uint32?: undefined;
|
|
4133
|
-
uint24?: undefined;
|
|
4134
|
-
uint16?: undefined;
|
|
4135
4023
|
uint8?: undefined;
|
|
4024
|
+
uint16?: undefined;
|
|
4025
|
+
uint24?: undefined;
|
|
4026
|
+
uint32?: undefined;
|
|
4027
|
+
uint40?: undefined;
|
|
4136
4028
|
uint48?: undefined;
|
|
4137
4029
|
uint56?: undefined;
|
|
4138
4030
|
uint64?: undefined;
|
|
@@ -4363,24 +4255,6 @@ export declare const isAlchemySmartAccountClient: <TTransport extends Transport
|
|
|
4363
4255
|
Method: "eth_uninstallFilter";
|
|
4364
4256
|
Parameters: [filterId: `0x${string}`];
|
|
4365
4257
|
ReturnType: boolean;
|
|
4366
|
-
}, {
|
|
4367
|
-
Method: "alchemy_requestPaymasterAndData";
|
|
4368
|
-
Parameters: [{
|
|
4369
|
-
policyId: string;
|
|
4370
|
-
entryPoint: `0x${string}`;
|
|
4371
|
-
userOperation: import("@aa-sdk/core").UserOperationRequest;
|
|
4372
|
-
}];
|
|
4373
|
-
ReturnType: import("..").RequestPaymasterAndDataResponse;
|
|
4374
|
-
}, {
|
|
4375
|
-
Method: "alchemy_requestGasAndPaymasterAndData";
|
|
4376
|
-
Parameters: [{
|
|
4377
|
-
policyId: string;
|
|
4378
|
-
entryPoint: `0x${string}`;
|
|
4379
|
-
userOperation: import("@aa-sdk/core").UserOperationRequest;
|
|
4380
|
-
dummySignature: `0x${string}`;
|
|
4381
|
-
overrides?: Partial<{}> | undefined;
|
|
4382
|
-
}];
|
|
4383
|
-
ReturnType: import("..").RequestGasAndPaymasterAndDataResponse;
|
|
4384
4258
|
}, {
|
|
4385
4259
|
Method: "alchemy_simulateUserOperationAssetChanges";
|
|
4386
4260
|
Parameters: import("..").SimulateUserOperationAssetChangesRequest;
|
|
@@ -4449,54 +4323,54 @@ export declare const isAlchemySmartAccountClient: <TTransport extends Transport
|
|
|
4449
4323
|
[x: `bytes1[${string}]`]: undefined;
|
|
4450
4324
|
[x: `bytes5[${string}]`]: undefined;
|
|
4451
4325
|
[x: `bytes10[${string}]`]: undefined;
|
|
4326
|
+
[x: `bytes4[${string}]`]: undefined;
|
|
4452
4327
|
[x: `bytes2[${string}]`]: undefined;
|
|
4453
4328
|
[x: `bytes3[${string}]`]: undefined;
|
|
4454
|
-
[x: `bytes4[${string}]`]: undefined;
|
|
4455
|
-
[x: `bytes32[${string}]`]: undefined;
|
|
4456
|
-
[x: `bytes31[${string}]`]: undefined;
|
|
4457
|
-
[x: `bytes30[${string}]`]: undefined;
|
|
4458
|
-
[x: `bytes29[${string}]`]: undefined;
|
|
4459
|
-
[x: `bytes28[${string}]`]: undefined;
|
|
4460
|
-
[x: `bytes27[${string}]`]: undefined;
|
|
4461
|
-
[x: `bytes26[${string}]`]: undefined;
|
|
4462
|
-
[x: `bytes25[${string}]`]: undefined;
|
|
4463
|
-
[x: `bytes24[${string}]`]: undefined;
|
|
4464
|
-
[x: `bytes23[${string}]`]: undefined;
|
|
4465
|
-
[x: `bytes22[${string}]`]: undefined;
|
|
4466
|
-
[x: `bytes21[${string}]`]: undefined;
|
|
4467
|
-
[x: `bytes20[${string}]`]: undefined;
|
|
4468
|
-
[x: `bytes19[${string}]`]: undefined;
|
|
4469
|
-
[x: `bytes17[${string}]`]: undefined;
|
|
4470
|
-
[x: `bytes16[${string}]`]: undefined;
|
|
4471
|
-
[x: `bytes15[${string}]`]: undefined;
|
|
4472
|
-
[x: `bytes14[${string}]`]: undefined;
|
|
4473
|
-
[x: `bytes13[${string}]`]: undefined;
|
|
4474
|
-
[x: `bytes12[${string}]`]: undefined;
|
|
4475
|
-
[x: `bytes11[${string}]`]: undefined;
|
|
4476
|
-
[x: `bytes9[${string}]`]: undefined;
|
|
4477
|
-
[x: `bytes8[${string}]`]: undefined;
|
|
4478
|
-
[x: `bytes7[${string}]`]: undefined;
|
|
4479
4329
|
[x: `bytes6[${string}]`]: undefined;
|
|
4480
|
-
[x: `
|
|
4481
|
-
[x: `
|
|
4482
|
-
[x: `
|
|
4483
|
-
[x: `
|
|
4484
|
-
[x: `
|
|
4485
|
-
[x: `
|
|
4486
|
-
[x: `
|
|
4487
|
-
[x: `
|
|
4488
|
-
[x: `
|
|
4489
|
-
[x: `
|
|
4490
|
-
[x: `
|
|
4491
|
-
[x: `
|
|
4492
|
-
[x: `
|
|
4493
|
-
[x: `
|
|
4494
|
-
[x: `
|
|
4495
|
-
[x: `
|
|
4496
|
-
[x: `
|
|
4497
|
-
[x: `
|
|
4498
|
-
[x: `
|
|
4499
|
-
[x: `
|
|
4330
|
+
[x: `bytes7[${string}]`]: undefined;
|
|
4331
|
+
[x: `bytes8[${string}]`]: undefined;
|
|
4332
|
+
[x: `bytes9[${string}]`]: undefined;
|
|
4333
|
+
[x: `bytes11[${string}]`]: undefined;
|
|
4334
|
+
[x: `bytes12[${string}]`]: undefined;
|
|
4335
|
+
[x: `bytes13[${string}]`]: undefined;
|
|
4336
|
+
[x: `bytes14[${string}]`]: undefined;
|
|
4337
|
+
[x: `bytes15[${string}]`]: undefined;
|
|
4338
|
+
[x: `bytes16[${string}]`]: undefined;
|
|
4339
|
+
[x: `bytes17[${string}]`]: undefined;
|
|
4340
|
+
[x: `bytes19[${string}]`]: undefined;
|
|
4341
|
+
[x: `bytes20[${string}]`]: undefined;
|
|
4342
|
+
[x: `bytes21[${string}]`]: undefined;
|
|
4343
|
+
[x: `bytes22[${string}]`]: undefined;
|
|
4344
|
+
[x: `bytes23[${string}]`]: undefined;
|
|
4345
|
+
[x: `bytes24[${string}]`]: undefined;
|
|
4346
|
+
[x: `bytes25[${string}]`]: undefined;
|
|
4347
|
+
[x: `bytes26[${string}]`]: undefined;
|
|
4348
|
+
[x: `bytes27[${string}]`]: undefined;
|
|
4349
|
+
[x: `bytes28[${string}]`]: undefined;
|
|
4350
|
+
[x: `bytes29[${string}]`]: undefined;
|
|
4351
|
+
[x: `bytes30[${string}]`]: undefined;
|
|
4352
|
+
[x: `bytes31[${string}]`]: undefined;
|
|
4353
|
+
[x: `bytes32[${string}]`]: undefined;
|
|
4354
|
+
[x: `int[${string}]`]: undefined;
|
|
4355
|
+
[x: `int8[${string}]`]: undefined;
|
|
4356
|
+
[x: `int16[${string}]`]: undefined;
|
|
4357
|
+
[x: `int24[${string}]`]: undefined;
|
|
4358
|
+
[x: `int32[${string}]`]: undefined;
|
|
4359
|
+
[x: `int40[${string}]`]: undefined;
|
|
4360
|
+
[x: `int48[${string}]`]: undefined;
|
|
4361
|
+
[x: `int56[${string}]`]: undefined;
|
|
4362
|
+
[x: `int64[${string}]`]: undefined;
|
|
4363
|
+
[x: `int72[${string}]`]: undefined;
|
|
4364
|
+
[x: `int80[${string}]`]: undefined;
|
|
4365
|
+
[x: `int88[${string}]`]: undefined;
|
|
4366
|
+
[x: `int96[${string}]`]: undefined;
|
|
4367
|
+
[x: `int104[${string}]`]: undefined;
|
|
4368
|
+
[x: `int112[${string}]`]: undefined;
|
|
4369
|
+
[x: `int120[${string}]`]: undefined;
|
|
4370
|
+
[x: `int128[${string}]`]: undefined;
|
|
4371
|
+
[x: `int136[${string}]`]: undefined;
|
|
4372
|
+
[x: `int144[${string}]`]: undefined;
|
|
4373
|
+
[x: `int152[${string}]`]: undefined;
|
|
4500
4374
|
[x: `int160[${string}]`]: undefined;
|
|
4501
4375
|
[x: `int168[${string}]`]: undefined;
|
|
4502
4376
|
[x: `int176[${string}]`]: undefined;
|
|
@@ -4511,11 +4385,11 @@ export declare const isAlchemySmartAccountClient: <TTransport extends Transport
|
|
|
4511
4385
|
[x: `int248[${string}]`]: undefined;
|
|
4512
4386
|
[x: `int256[${string}]`]: undefined;
|
|
4513
4387
|
[x: `uint[${string}]`]: undefined;
|
|
4514
|
-
[x: `uint40[${string}]`]: undefined;
|
|
4515
|
-
[x: `uint32[${string}]`]: undefined;
|
|
4516
|
-
[x: `uint24[${string}]`]: undefined;
|
|
4517
|
-
[x: `uint16[${string}]`]: undefined;
|
|
4518
4388
|
[x: `uint8[${string}]`]: undefined;
|
|
4389
|
+
[x: `uint16[${string}]`]: undefined;
|
|
4390
|
+
[x: `uint24[${string}]`]: undefined;
|
|
4391
|
+
[x: `uint32[${string}]`]: undefined;
|
|
4392
|
+
[x: `uint40[${string}]`]: undefined;
|
|
4519
4393
|
[x: `uint48[${string}]`]: undefined;
|
|
4520
4394
|
[x: `uint56[${string}]`]: undefined;
|
|
4521
4395
|
[x: `uint64[${string}]`]: undefined;
|
|
@@ -4551,39 +4425,39 @@ export declare const isAlchemySmartAccountClient: <TTransport extends Transport
|
|
|
4551
4425
|
bytes1?: undefined;
|
|
4552
4426
|
bytes5?: undefined;
|
|
4553
4427
|
bytes10?: undefined;
|
|
4428
|
+
bytes4?: undefined;
|
|
4554
4429
|
bytes2?: undefined;
|
|
4555
4430
|
bytes3?: undefined;
|
|
4556
|
-
bytes4?: undefined;
|
|
4557
|
-
bytes32?: undefined;
|
|
4558
|
-
bytes31?: undefined;
|
|
4559
|
-
bytes30?: undefined;
|
|
4560
|
-
bytes29?: undefined;
|
|
4561
|
-
bytes28?: undefined;
|
|
4562
|
-
bytes27?: undefined;
|
|
4563
|
-
bytes26?: undefined;
|
|
4564
|
-
bytes25?: undefined;
|
|
4565
|
-
bytes24?: undefined;
|
|
4566
|
-
bytes23?: undefined;
|
|
4567
|
-
bytes22?: undefined;
|
|
4568
|
-
bytes21?: undefined;
|
|
4569
|
-
bytes20?: undefined;
|
|
4570
|
-
bytes19?: undefined;
|
|
4571
|
-
bytes17?: undefined;
|
|
4572
|
-
bytes16?: undefined;
|
|
4573
|
-
bytes15?: undefined;
|
|
4574
|
-
bytes14?: undefined;
|
|
4575
|
-
bytes13?: undefined;
|
|
4576
|
-
bytes12?: undefined;
|
|
4577
|
-
bytes11?: undefined;
|
|
4578
|
-
bytes9?: undefined;
|
|
4579
|
-
bytes8?: undefined;
|
|
4580
|
-
bytes7?: undefined;
|
|
4581
4431
|
bytes6?: undefined;
|
|
4582
|
-
|
|
4583
|
-
|
|
4584
|
-
|
|
4585
|
-
|
|
4432
|
+
bytes7?: undefined;
|
|
4433
|
+
bytes8?: undefined;
|
|
4434
|
+
bytes9?: undefined;
|
|
4435
|
+
bytes11?: undefined;
|
|
4436
|
+
bytes12?: undefined;
|
|
4437
|
+
bytes13?: undefined;
|
|
4438
|
+
bytes14?: undefined;
|
|
4439
|
+
bytes15?: undefined;
|
|
4440
|
+
bytes16?: undefined;
|
|
4441
|
+
bytes17?: undefined;
|
|
4442
|
+
bytes19?: undefined;
|
|
4443
|
+
bytes20?: undefined;
|
|
4444
|
+
bytes21?: undefined;
|
|
4445
|
+
bytes22?: undefined;
|
|
4446
|
+
bytes23?: undefined;
|
|
4447
|
+
bytes24?: undefined;
|
|
4448
|
+
bytes25?: undefined;
|
|
4449
|
+
bytes26?: undefined;
|
|
4450
|
+
bytes27?: undefined;
|
|
4451
|
+
bytes28?: undefined;
|
|
4452
|
+
bytes29?: undefined;
|
|
4453
|
+
bytes30?: undefined;
|
|
4454
|
+
bytes31?: undefined;
|
|
4455
|
+
bytes32?: undefined;
|
|
4586
4456
|
int8?: undefined;
|
|
4457
|
+
int16?: undefined;
|
|
4458
|
+
int24?: undefined;
|
|
4459
|
+
int32?: undefined;
|
|
4460
|
+
int40?: undefined;
|
|
4587
4461
|
int48?: undefined;
|
|
4588
4462
|
int56?: undefined;
|
|
4589
4463
|
int64?: undefined;
|
|
@@ -4611,11 +4485,11 @@ export declare const isAlchemySmartAccountClient: <TTransport extends Transport
|
|
|
4611
4485
|
int240?: undefined;
|
|
4612
4486
|
int248?: undefined;
|
|
4613
4487
|
int256?: undefined;
|
|
4614
|
-
uint40?: undefined;
|
|
4615
|
-
uint32?: undefined;
|
|
4616
|
-
uint24?: undefined;
|
|
4617
|
-
uint16?: undefined;
|
|
4618
4488
|
uint8?: undefined;
|
|
4489
|
+
uint16?: undefined;
|
|
4490
|
+
uint24?: undefined;
|
|
4491
|
+
uint32?: undefined;
|
|
4492
|
+
uint40?: undefined;
|
|
4619
4493
|
uint48?: undefined;
|
|
4620
4494
|
uint56?: undefined;
|
|
4621
4495
|
uint64?: undefined;
|
|
@@ -4658,40 +4532,40 @@ export declare const isAlchemySmartAccountClient: <TTransport extends Transport
|
|
|
4658
4532
|
[x: `bytes1[${string}]`]: undefined;
|
|
4659
4533
|
[x: `bytes5[${string}]`]: undefined;
|
|
4660
4534
|
[x: `bytes10[${string}]`]: undefined;
|
|
4535
|
+
[x: `bytes4[${string}]`]: undefined;
|
|
4661
4536
|
[x: `bytes2[${string}]`]: undefined;
|
|
4662
4537
|
[x: `bytes3[${string}]`]: undefined;
|
|
4663
|
-
[x: `bytes4[${string}]`]: undefined;
|
|
4664
|
-
[x: `bytes32[${string}]`]: undefined;
|
|
4665
|
-
[x: `bytes31[${string}]`]: undefined;
|
|
4666
|
-
[x: `bytes30[${string}]`]: undefined;
|
|
4667
|
-
[x: `bytes29[${string}]`]: undefined;
|
|
4668
|
-
[x: `bytes28[${string}]`]: undefined;
|
|
4669
|
-
[x: `bytes27[${string}]`]: undefined;
|
|
4670
|
-
[x: `bytes26[${string}]`]: undefined;
|
|
4671
|
-
[x: `bytes25[${string}]`]: undefined;
|
|
4672
|
-
[x: `bytes24[${string}]`]: undefined;
|
|
4673
|
-
[x: `bytes23[${string}]`]: undefined;
|
|
4674
|
-
[x: `bytes22[${string}]`]: undefined;
|
|
4675
|
-
[x: `bytes21[${string}]`]: undefined;
|
|
4676
|
-
[x: `bytes20[${string}]`]: undefined;
|
|
4677
|
-
[x: `bytes19[${string}]`]: undefined;
|
|
4678
|
-
[x: `bytes17[${string}]`]: undefined;
|
|
4679
|
-
[x: `bytes16[${string}]`]: undefined;
|
|
4680
|
-
[x: `bytes15[${string}]`]: undefined;
|
|
4681
|
-
[x: `bytes14[${string}]`]: undefined;
|
|
4682
|
-
[x: `bytes13[${string}]`]: undefined;
|
|
4683
|
-
[x: `bytes12[${string}]`]: undefined;
|
|
4684
|
-
[x: `bytes11[${string}]`]: undefined;
|
|
4685
|
-
[x: `bytes9[${string}]`]: undefined;
|
|
4686
|
-
[x: `bytes8[${string}]`]: undefined;
|
|
4687
|
-
[x: `bytes7[${string}]`]: undefined;
|
|
4688
4538
|
[x: `bytes6[${string}]`]: undefined;
|
|
4539
|
+
[x: `bytes7[${string}]`]: undefined;
|
|
4540
|
+
[x: `bytes8[${string}]`]: undefined;
|
|
4541
|
+
[x: `bytes9[${string}]`]: undefined;
|
|
4542
|
+
[x: `bytes11[${string}]`]: undefined;
|
|
4543
|
+
[x: `bytes12[${string}]`]: undefined;
|
|
4544
|
+
[x: `bytes13[${string}]`]: undefined;
|
|
4545
|
+
[x: `bytes14[${string}]`]: undefined;
|
|
4546
|
+
[x: `bytes15[${string}]`]: undefined;
|
|
4547
|
+
[x: `bytes16[${string}]`]: undefined;
|
|
4548
|
+
[x: `bytes17[${string}]`]: undefined;
|
|
4549
|
+
[x: `bytes19[${string}]`]: undefined;
|
|
4550
|
+
[x: `bytes20[${string}]`]: undefined;
|
|
4551
|
+
[x: `bytes21[${string}]`]: undefined;
|
|
4552
|
+
[x: `bytes22[${string}]`]: undefined;
|
|
4553
|
+
[x: `bytes23[${string}]`]: undefined;
|
|
4554
|
+
[x: `bytes24[${string}]`]: undefined;
|
|
4555
|
+
[x: `bytes25[${string}]`]: undefined;
|
|
4556
|
+
[x: `bytes26[${string}]`]: undefined;
|
|
4557
|
+
[x: `bytes27[${string}]`]: undefined;
|
|
4558
|
+
[x: `bytes28[${string}]`]: undefined;
|
|
4559
|
+
[x: `bytes29[${string}]`]: undefined;
|
|
4560
|
+
[x: `bytes30[${string}]`]: undefined;
|
|
4561
|
+
[x: `bytes31[${string}]`]: undefined;
|
|
4562
|
+
[x: `bytes32[${string}]`]: undefined;
|
|
4689
4563
|
[x: `int[${string}]`]: undefined;
|
|
4690
|
-
[x: `int40[${string}]`]: undefined;
|
|
4691
|
-
[x: `int32[${string}]`]: undefined;
|
|
4692
|
-
[x: `int24[${string}]`]: undefined;
|
|
4693
|
-
[x: `int16[${string}]`]: undefined;
|
|
4694
4564
|
[x: `int8[${string}]`]: undefined;
|
|
4565
|
+
[x: `int16[${string}]`]: undefined;
|
|
4566
|
+
[x: `int24[${string}]`]: undefined;
|
|
4567
|
+
[x: `int32[${string}]`]: undefined;
|
|
4568
|
+
[x: `int40[${string}]`]: undefined;
|
|
4695
4569
|
[x: `int48[${string}]`]: undefined;
|
|
4696
4570
|
[x: `int56[${string}]`]: undefined;
|
|
4697
4571
|
[x: `int64[${string}]`]: undefined;
|
|
@@ -4720,11 +4594,11 @@ export declare const isAlchemySmartAccountClient: <TTransport extends Transport
|
|
|
4720
4594
|
[x: `int248[${string}]`]: undefined;
|
|
4721
4595
|
[x: `int256[${string}]`]: undefined;
|
|
4722
4596
|
[x: `uint[${string}]`]: undefined;
|
|
4723
|
-
[x: `uint40[${string}]`]: undefined;
|
|
4724
|
-
[x: `uint32[${string}]`]: undefined;
|
|
4725
|
-
[x: `uint24[${string}]`]: undefined;
|
|
4726
|
-
[x: `uint16[${string}]`]: undefined;
|
|
4727
4597
|
[x: `uint8[${string}]`]: undefined;
|
|
4598
|
+
[x: `uint16[${string}]`]: undefined;
|
|
4599
|
+
[x: `uint24[${string}]`]: undefined;
|
|
4600
|
+
[x: `uint32[${string}]`]: undefined;
|
|
4601
|
+
[x: `uint40[${string}]`]: undefined;
|
|
4728
4602
|
[x: `uint48[${string}]`]: undefined;
|
|
4729
4603
|
[x: `uint56[${string}]`]: undefined;
|
|
4730
4604
|
[x: `uint64[${string}]`]: undefined;
|
|
@@ -4760,39 +4634,39 @@ export declare const isAlchemySmartAccountClient: <TTransport extends Transport
|
|
|
4760
4634
|
bytes1?: undefined;
|
|
4761
4635
|
bytes5?: undefined;
|
|
4762
4636
|
bytes10?: undefined;
|
|
4637
|
+
bytes4?: undefined;
|
|
4763
4638
|
bytes2?: undefined;
|
|
4764
4639
|
bytes3?: undefined;
|
|
4765
|
-
bytes4?: undefined;
|
|
4766
|
-
bytes32?: undefined;
|
|
4767
|
-
bytes31?: undefined;
|
|
4768
|
-
bytes30?: undefined;
|
|
4769
|
-
bytes29?: undefined;
|
|
4770
|
-
bytes28?: undefined;
|
|
4771
|
-
bytes27?: undefined;
|
|
4772
|
-
bytes26?: undefined;
|
|
4773
|
-
bytes25?: undefined;
|
|
4774
|
-
bytes24?: undefined;
|
|
4775
|
-
bytes23?: undefined;
|
|
4776
|
-
bytes22?: undefined;
|
|
4777
|
-
bytes21?: undefined;
|
|
4778
|
-
bytes20?: undefined;
|
|
4779
|
-
bytes19?: undefined;
|
|
4780
|
-
bytes17?: undefined;
|
|
4781
|
-
bytes16?: undefined;
|
|
4782
|
-
bytes15?: undefined;
|
|
4783
|
-
bytes14?: undefined;
|
|
4784
|
-
bytes13?: undefined;
|
|
4785
|
-
bytes12?: undefined;
|
|
4786
|
-
bytes11?: undefined;
|
|
4787
|
-
bytes9?: undefined;
|
|
4788
|
-
bytes8?: undefined;
|
|
4789
|
-
bytes7?: undefined;
|
|
4790
4640
|
bytes6?: undefined;
|
|
4791
|
-
|
|
4792
|
-
|
|
4793
|
-
|
|
4794
|
-
|
|
4641
|
+
bytes7?: undefined;
|
|
4642
|
+
bytes8?: undefined;
|
|
4643
|
+
bytes9?: undefined;
|
|
4644
|
+
bytes11?: undefined;
|
|
4645
|
+
bytes12?: undefined;
|
|
4646
|
+
bytes13?: undefined;
|
|
4647
|
+
bytes14?: undefined;
|
|
4648
|
+
bytes15?: undefined;
|
|
4649
|
+
bytes16?: undefined;
|
|
4650
|
+
bytes17?: undefined;
|
|
4651
|
+
bytes19?: undefined;
|
|
4652
|
+
bytes20?: undefined;
|
|
4653
|
+
bytes21?: undefined;
|
|
4654
|
+
bytes22?: undefined;
|
|
4655
|
+
bytes23?: undefined;
|
|
4656
|
+
bytes24?: undefined;
|
|
4657
|
+
bytes25?: undefined;
|
|
4658
|
+
bytes26?: undefined;
|
|
4659
|
+
bytes27?: undefined;
|
|
4660
|
+
bytes28?: undefined;
|
|
4661
|
+
bytes29?: undefined;
|
|
4662
|
+
bytes30?: undefined;
|
|
4663
|
+
bytes31?: undefined;
|
|
4664
|
+
bytes32?: undefined;
|
|
4795
4665
|
int8?: undefined;
|
|
4666
|
+
int16?: undefined;
|
|
4667
|
+
int24?: undefined;
|
|
4668
|
+
int32?: undefined;
|
|
4669
|
+
int40?: undefined;
|
|
4796
4670
|
int48?: undefined;
|
|
4797
4671
|
int56?: undefined;
|
|
4798
4672
|
int64?: undefined;
|
|
@@ -4820,11 +4694,11 @@ export declare const isAlchemySmartAccountClient: <TTransport extends Transport
|
|
|
4820
4694
|
int240?: undefined;
|
|
4821
4695
|
int248?: undefined;
|
|
4822
4696
|
int256?: undefined;
|
|
4823
|
-
uint40?: undefined;
|
|
4824
|
-
uint32?: undefined;
|
|
4825
|
-
uint24?: undefined;
|
|
4826
|
-
uint16?: undefined;
|
|
4827
4697
|
uint8?: undefined;
|
|
4698
|
+
uint16?: undefined;
|
|
4699
|
+
uint24?: undefined;
|
|
4700
|
+
uint32?: undefined;
|
|
4701
|
+
uint40?: undefined;
|
|
4828
4702
|
uint48?: undefined;
|
|
4829
4703
|
uint56?: undefined;
|
|
4830
4704
|
uint64?: undefined;
|
|
@@ -5055,24 +4929,6 @@ export declare const isAlchemySmartAccountClient: <TTransport extends Transport
|
|
|
5055
4929
|
Method: "eth_uninstallFilter";
|
|
5056
4930
|
Parameters: [filterId: `0x${string}`];
|
|
5057
4931
|
ReturnType: boolean;
|
|
5058
|
-
}, {
|
|
5059
|
-
Method: "alchemy_requestPaymasterAndData";
|
|
5060
|
-
Parameters: [{
|
|
5061
|
-
policyId: string;
|
|
5062
|
-
entryPoint: `0x${string}`;
|
|
5063
|
-
userOperation: import("@aa-sdk/core").UserOperationRequest;
|
|
5064
|
-
}];
|
|
5065
|
-
ReturnType: import("..").RequestPaymasterAndDataResponse;
|
|
5066
|
-
}, {
|
|
5067
|
-
Method: "alchemy_requestGasAndPaymasterAndData";
|
|
5068
|
-
Parameters: [{
|
|
5069
|
-
policyId: string;
|
|
5070
|
-
entryPoint: `0x${string}`;
|
|
5071
|
-
userOperation: import("@aa-sdk/core").UserOperationRequest;
|
|
5072
|
-
dummySignature: `0x${string}`;
|
|
5073
|
-
overrides?: Partial<{}> | undefined;
|
|
5074
|
-
}];
|
|
5075
|
-
ReturnType: import("..").RequestGasAndPaymasterAndDataResponse;
|
|
5076
4932
|
}, {
|
|
5077
4933
|
Method: "alchemy_simulateUserOperationAssetChanges";
|
|
5078
4934
|
Parameters: import("..").SimulateUserOperationAssetChangesRequest;
|
|
@@ -5141,40 +4997,40 @@ export declare const isAlchemySmartAccountClient: <TTransport extends Transport
|
|
|
5141
4997
|
[x: `bytes1[${string}]`]: undefined;
|
|
5142
4998
|
[x: `bytes5[${string}]`]: undefined;
|
|
5143
4999
|
[x: `bytes10[${string}]`]: undefined;
|
|
5000
|
+
[x: `bytes4[${string}]`]: undefined;
|
|
5144
5001
|
[x: `bytes2[${string}]`]: undefined;
|
|
5145
5002
|
[x: `bytes3[${string}]`]: undefined;
|
|
5146
|
-
[x: `bytes4[${string}]`]: undefined;
|
|
5147
|
-
[x: `bytes32[${string}]`]: undefined;
|
|
5148
|
-
[x: `bytes31[${string}]`]: undefined;
|
|
5149
|
-
[x: `bytes30[${string}]`]: undefined;
|
|
5150
|
-
[x: `bytes29[${string}]`]: undefined;
|
|
5151
|
-
[x: `bytes28[${string}]`]: undefined;
|
|
5152
|
-
[x: `bytes27[${string}]`]: undefined;
|
|
5153
|
-
[x: `bytes26[${string}]`]: undefined;
|
|
5154
|
-
[x: `bytes25[${string}]`]: undefined;
|
|
5155
|
-
[x: `bytes24[${string}]`]: undefined;
|
|
5156
|
-
[x: `bytes23[${string}]`]: undefined;
|
|
5157
|
-
[x: `bytes22[${string}]`]: undefined;
|
|
5158
|
-
[x: `bytes21[${string}]`]: undefined;
|
|
5159
|
-
[x: `bytes20[${string}]`]: undefined;
|
|
5160
|
-
[x: `bytes19[${string}]`]: undefined;
|
|
5161
|
-
[x: `bytes17[${string}]`]: undefined;
|
|
5162
|
-
[x: `bytes16[${string}]`]: undefined;
|
|
5163
|
-
[x: `bytes15[${string}]`]: undefined;
|
|
5164
|
-
[x: `bytes14[${string}]`]: undefined;
|
|
5165
|
-
[x: `bytes13[${string}]`]: undefined;
|
|
5166
|
-
[x: `bytes12[${string}]`]: undefined;
|
|
5167
|
-
[x: `bytes11[${string}]`]: undefined;
|
|
5168
|
-
[x: `bytes9[${string}]`]: undefined;
|
|
5169
|
-
[x: `bytes8[${string}]`]: undefined;
|
|
5170
|
-
[x: `bytes7[${string}]`]: undefined;
|
|
5171
5003
|
[x: `bytes6[${string}]`]: undefined;
|
|
5004
|
+
[x: `bytes7[${string}]`]: undefined;
|
|
5005
|
+
[x: `bytes8[${string}]`]: undefined;
|
|
5006
|
+
[x: `bytes9[${string}]`]: undefined;
|
|
5007
|
+
[x: `bytes11[${string}]`]: undefined;
|
|
5008
|
+
[x: `bytes12[${string}]`]: undefined;
|
|
5009
|
+
[x: `bytes13[${string}]`]: undefined;
|
|
5010
|
+
[x: `bytes14[${string}]`]: undefined;
|
|
5011
|
+
[x: `bytes15[${string}]`]: undefined;
|
|
5012
|
+
[x: `bytes16[${string}]`]: undefined;
|
|
5013
|
+
[x: `bytes17[${string}]`]: undefined;
|
|
5014
|
+
[x: `bytes19[${string}]`]: undefined;
|
|
5015
|
+
[x: `bytes20[${string}]`]: undefined;
|
|
5016
|
+
[x: `bytes21[${string}]`]: undefined;
|
|
5017
|
+
[x: `bytes22[${string}]`]: undefined;
|
|
5018
|
+
[x: `bytes23[${string}]`]: undefined;
|
|
5019
|
+
[x: `bytes24[${string}]`]: undefined;
|
|
5020
|
+
[x: `bytes25[${string}]`]: undefined;
|
|
5021
|
+
[x: `bytes26[${string}]`]: undefined;
|
|
5022
|
+
[x: `bytes27[${string}]`]: undefined;
|
|
5023
|
+
[x: `bytes28[${string}]`]: undefined;
|
|
5024
|
+
[x: `bytes29[${string}]`]: undefined;
|
|
5025
|
+
[x: `bytes30[${string}]`]: undefined;
|
|
5026
|
+
[x: `bytes31[${string}]`]: undefined;
|
|
5027
|
+
[x: `bytes32[${string}]`]: undefined;
|
|
5172
5028
|
[x: `int[${string}]`]: undefined;
|
|
5173
|
-
[x: `int40[${string}]`]: undefined;
|
|
5174
|
-
[x: `int32[${string}]`]: undefined;
|
|
5175
|
-
[x: `int24[${string}]`]: undefined;
|
|
5176
|
-
[x: `int16[${string}]`]: undefined;
|
|
5177
5029
|
[x: `int8[${string}]`]: undefined;
|
|
5030
|
+
[x: `int16[${string}]`]: undefined;
|
|
5031
|
+
[x: `int24[${string}]`]: undefined;
|
|
5032
|
+
[x: `int32[${string}]`]: undefined;
|
|
5033
|
+
[x: `int40[${string}]`]: undefined;
|
|
5178
5034
|
[x: `int48[${string}]`]: undefined;
|
|
5179
5035
|
[x: `int56[${string}]`]: undefined;
|
|
5180
5036
|
[x: `int64[${string}]`]: undefined;
|
|
@@ -5203,11 +5059,11 @@ export declare const isAlchemySmartAccountClient: <TTransport extends Transport
|
|
|
5203
5059
|
[x: `int248[${string}]`]: undefined;
|
|
5204
5060
|
[x: `int256[${string}]`]: undefined;
|
|
5205
5061
|
[x: `uint[${string}]`]: undefined;
|
|
5206
|
-
[x: `uint40[${string}]`]: undefined;
|
|
5207
|
-
[x: `uint32[${string}]`]: undefined;
|
|
5208
|
-
[x: `uint24[${string}]`]: undefined;
|
|
5209
|
-
[x: `uint16[${string}]`]: undefined;
|
|
5210
5062
|
[x: `uint8[${string}]`]: undefined;
|
|
5063
|
+
[x: `uint16[${string}]`]: undefined;
|
|
5064
|
+
[x: `uint24[${string}]`]: undefined;
|
|
5065
|
+
[x: `uint32[${string}]`]: undefined;
|
|
5066
|
+
[x: `uint40[${string}]`]: undefined;
|
|
5211
5067
|
[x: `uint48[${string}]`]: undefined;
|
|
5212
5068
|
[x: `uint56[${string}]`]: undefined;
|
|
5213
5069
|
[x: `uint64[${string}]`]: undefined;
|
|
@@ -5243,39 +5099,39 @@ export declare const isAlchemySmartAccountClient: <TTransport extends Transport
|
|
|
5243
5099
|
bytes1?: undefined;
|
|
5244
5100
|
bytes5?: undefined;
|
|
5245
5101
|
bytes10?: undefined;
|
|
5102
|
+
bytes4?: undefined;
|
|
5246
5103
|
bytes2?: undefined;
|
|
5247
5104
|
bytes3?: undefined;
|
|
5248
|
-
bytes4?: undefined;
|
|
5249
|
-
bytes32?: undefined;
|
|
5250
|
-
bytes31?: undefined;
|
|
5251
|
-
bytes30?: undefined;
|
|
5252
|
-
bytes29?: undefined;
|
|
5253
|
-
bytes28?: undefined;
|
|
5254
|
-
bytes27?: undefined;
|
|
5255
|
-
bytes26?: undefined;
|
|
5256
|
-
bytes25?: undefined;
|
|
5257
|
-
bytes24?: undefined;
|
|
5258
|
-
bytes23?: undefined;
|
|
5259
|
-
bytes22?: undefined;
|
|
5260
|
-
bytes21?: undefined;
|
|
5261
|
-
bytes20?: undefined;
|
|
5262
|
-
bytes19?: undefined;
|
|
5263
|
-
bytes17?: undefined;
|
|
5264
|
-
bytes16?: undefined;
|
|
5265
|
-
bytes15?: undefined;
|
|
5266
|
-
bytes14?: undefined;
|
|
5267
|
-
bytes13?: undefined;
|
|
5268
|
-
bytes12?: undefined;
|
|
5269
|
-
bytes11?: undefined;
|
|
5270
|
-
bytes9?: undefined;
|
|
5271
|
-
bytes8?: undefined;
|
|
5272
|
-
bytes7?: undefined;
|
|
5273
5105
|
bytes6?: undefined;
|
|
5274
|
-
|
|
5275
|
-
|
|
5276
|
-
|
|
5277
|
-
|
|
5106
|
+
bytes7?: undefined;
|
|
5107
|
+
bytes8?: undefined;
|
|
5108
|
+
bytes9?: undefined;
|
|
5109
|
+
bytes11?: undefined;
|
|
5110
|
+
bytes12?: undefined;
|
|
5111
|
+
bytes13?: undefined;
|
|
5112
|
+
bytes14?: undefined;
|
|
5113
|
+
bytes15?: undefined;
|
|
5114
|
+
bytes16?: undefined;
|
|
5115
|
+
bytes17?: undefined;
|
|
5116
|
+
bytes19?: undefined;
|
|
5117
|
+
bytes20?: undefined;
|
|
5118
|
+
bytes21?: undefined;
|
|
5119
|
+
bytes22?: undefined;
|
|
5120
|
+
bytes23?: undefined;
|
|
5121
|
+
bytes24?: undefined;
|
|
5122
|
+
bytes25?: undefined;
|
|
5123
|
+
bytes26?: undefined;
|
|
5124
|
+
bytes27?: undefined;
|
|
5125
|
+
bytes28?: undefined;
|
|
5126
|
+
bytes29?: undefined;
|
|
5127
|
+
bytes30?: undefined;
|
|
5128
|
+
bytes31?: undefined;
|
|
5129
|
+
bytes32?: undefined;
|
|
5278
5130
|
int8?: undefined;
|
|
5131
|
+
int16?: undefined;
|
|
5132
|
+
int24?: undefined;
|
|
5133
|
+
int32?: undefined;
|
|
5134
|
+
int40?: undefined;
|
|
5279
5135
|
int48?: undefined;
|
|
5280
5136
|
int56?: undefined;
|
|
5281
5137
|
int64?: undefined;
|
|
@@ -5303,11 +5159,11 @@ export declare const isAlchemySmartAccountClient: <TTransport extends Transport
|
|
|
5303
5159
|
int240?: undefined;
|
|
5304
5160
|
int248?: undefined;
|
|
5305
5161
|
int256?: undefined;
|
|
5306
|
-
uint40?: undefined;
|
|
5307
|
-
uint32?: undefined;
|
|
5308
|
-
uint24?: undefined;
|
|
5309
|
-
uint16?: undefined;
|
|
5310
5162
|
uint8?: undefined;
|
|
5163
|
+
uint16?: undefined;
|
|
5164
|
+
uint24?: undefined;
|
|
5165
|
+
uint32?: undefined;
|
|
5166
|
+
uint40?: undefined;
|
|
5311
5167
|
uint48?: undefined;
|
|
5312
5168
|
uint56?: undefined;
|
|
5313
5169
|
uint64?: undefined;
|
|
@@ -5350,40 +5206,40 @@ export declare const isAlchemySmartAccountClient: <TTransport extends Transport
|
|
|
5350
5206
|
[x: `bytes1[${string}]`]: undefined;
|
|
5351
5207
|
[x: `bytes5[${string}]`]: undefined;
|
|
5352
5208
|
[x: `bytes10[${string}]`]: undefined;
|
|
5209
|
+
[x: `bytes4[${string}]`]: undefined;
|
|
5353
5210
|
[x: `bytes2[${string}]`]: undefined;
|
|
5354
5211
|
[x: `bytes3[${string}]`]: undefined;
|
|
5355
|
-
[x: `bytes4[${string}]`]: undefined;
|
|
5356
|
-
[x: `bytes32[${string}]`]: undefined;
|
|
5357
|
-
[x: `bytes31[${string}]`]: undefined;
|
|
5358
|
-
[x: `bytes30[${string}]`]: undefined;
|
|
5359
|
-
[x: `bytes29[${string}]`]: undefined;
|
|
5360
|
-
[x: `bytes28[${string}]`]: undefined;
|
|
5361
|
-
[x: `bytes27[${string}]`]: undefined;
|
|
5362
|
-
[x: `bytes26[${string}]`]: undefined;
|
|
5363
|
-
[x: `bytes25[${string}]`]: undefined;
|
|
5364
|
-
[x: `bytes24[${string}]`]: undefined;
|
|
5365
|
-
[x: `bytes23[${string}]`]: undefined;
|
|
5366
|
-
[x: `bytes22[${string}]`]: undefined;
|
|
5367
|
-
[x: `bytes21[${string}]`]: undefined;
|
|
5368
|
-
[x: `bytes20[${string}]`]: undefined;
|
|
5369
|
-
[x: `bytes19[${string}]`]: undefined;
|
|
5370
|
-
[x: `bytes17[${string}]`]: undefined;
|
|
5371
|
-
[x: `bytes16[${string}]`]: undefined;
|
|
5372
|
-
[x: `bytes15[${string}]`]: undefined;
|
|
5373
|
-
[x: `bytes14[${string}]`]: undefined;
|
|
5374
|
-
[x: `bytes13[${string}]`]: undefined;
|
|
5375
|
-
[x: `bytes12[${string}]`]: undefined;
|
|
5376
|
-
[x: `bytes11[${string}]`]: undefined;
|
|
5377
|
-
[x: `bytes9[${string}]`]: undefined;
|
|
5378
|
-
[x: `bytes8[${string}]`]: undefined;
|
|
5379
|
-
[x: `bytes7[${string}]`]: undefined;
|
|
5380
5212
|
[x: `bytes6[${string}]`]: undefined;
|
|
5213
|
+
[x: `bytes7[${string}]`]: undefined;
|
|
5214
|
+
[x: `bytes8[${string}]`]: undefined;
|
|
5215
|
+
[x: `bytes9[${string}]`]: undefined;
|
|
5216
|
+
[x: `bytes11[${string}]`]: undefined;
|
|
5217
|
+
[x: `bytes12[${string}]`]: undefined;
|
|
5218
|
+
[x: `bytes13[${string}]`]: undefined;
|
|
5219
|
+
[x: `bytes14[${string}]`]: undefined;
|
|
5220
|
+
[x: `bytes15[${string}]`]: undefined;
|
|
5221
|
+
[x: `bytes16[${string}]`]: undefined;
|
|
5222
|
+
[x: `bytes17[${string}]`]: undefined;
|
|
5223
|
+
[x: `bytes19[${string}]`]: undefined;
|
|
5224
|
+
[x: `bytes20[${string}]`]: undefined;
|
|
5225
|
+
[x: `bytes21[${string}]`]: undefined;
|
|
5226
|
+
[x: `bytes22[${string}]`]: undefined;
|
|
5227
|
+
[x: `bytes23[${string}]`]: undefined;
|
|
5228
|
+
[x: `bytes24[${string}]`]: undefined;
|
|
5229
|
+
[x: `bytes25[${string}]`]: undefined;
|
|
5230
|
+
[x: `bytes26[${string}]`]: undefined;
|
|
5231
|
+
[x: `bytes27[${string}]`]: undefined;
|
|
5232
|
+
[x: `bytes28[${string}]`]: undefined;
|
|
5233
|
+
[x: `bytes29[${string}]`]: undefined;
|
|
5234
|
+
[x: `bytes30[${string}]`]: undefined;
|
|
5235
|
+
[x: `bytes31[${string}]`]: undefined;
|
|
5236
|
+
[x: `bytes32[${string}]`]: undefined;
|
|
5381
5237
|
[x: `int[${string}]`]: undefined;
|
|
5382
|
-
[x: `int40[${string}]`]: undefined;
|
|
5383
|
-
[x: `int32[${string}]`]: undefined;
|
|
5384
|
-
[x: `int24[${string}]`]: undefined;
|
|
5385
|
-
[x: `int16[${string}]`]: undefined;
|
|
5386
5238
|
[x: `int8[${string}]`]: undefined;
|
|
5239
|
+
[x: `int16[${string}]`]: undefined;
|
|
5240
|
+
[x: `int24[${string}]`]: undefined;
|
|
5241
|
+
[x: `int32[${string}]`]: undefined;
|
|
5242
|
+
[x: `int40[${string}]`]: undefined;
|
|
5387
5243
|
[x: `int48[${string}]`]: undefined;
|
|
5388
5244
|
[x: `int56[${string}]`]: undefined;
|
|
5389
5245
|
[x: `int64[${string}]`]: undefined;
|
|
@@ -5412,11 +5268,11 @@ export declare const isAlchemySmartAccountClient: <TTransport extends Transport
|
|
|
5412
5268
|
[x: `int248[${string}]`]: undefined;
|
|
5413
5269
|
[x: `int256[${string}]`]: undefined;
|
|
5414
5270
|
[x: `uint[${string}]`]: undefined;
|
|
5415
|
-
[x: `uint40[${string}]`]: undefined;
|
|
5416
|
-
[x: `uint32[${string}]`]: undefined;
|
|
5417
|
-
[x: `uint24[${string}]`]: undefined;
|
|
5418
|
-
[x: `uint16[${string}]`]: undefined;
|
|
5419
5271
|
[x: `uint8[${string}]`]: undefined;
|
|
5272
|
+
[x: `uint16[${string}]`]: undefined;
|
|
5273
|
+
[x: `uint24[${string}]`]: undefined;
|
|
5274
|
+
[x: `uint32[${string}]`]: undefined;
|
|
5275
|
+
[x: `uint40[${string}]`]: undefined;
|
|
5420
5276
|
[x: `uint48[${string}]`]: undefined;
|
|
5421
5277
|
[x: `uint56[${string}]`]: undefined;
|
|
5422
5278
|
[x: `uint64[${string}]`]: undefined;
|
|
@@ -5452,39 +5308,39 @@ export declare const isAlchemySmartAccountClient: <TTransport extends Transport
|
|
|
5452
5308
|
bytes1?: undefined;
|
|
5453
5309
|
bytes5?: undefined;
|
|
5454
5310
|
bytes10?: undefined;
|
|
5311
|
+
bytes4?: undefined;
|
|
5455
5312
|
bytes2?: undefined;
|
|
5456
5313
|
bytes3?: undefined;
|
|
5457
|
-
bytes4?: undefined;
|
|
5458
|
-
bytes32?: undefined;
|
|
5459
|
-
bytes31?: undefined;
|
|
5460
|
-
bytes30?: undefined;
|
|
5461
|
-
bytes29?: undefined;
|
|
5462
|
-
bytes28?: undefined;
|
|
5463
|
-
bytes27?: undefined;
|
|
5464
|
-
bytes26?: undefined;
|
|
5465
|
-
bytes25?: undefined;
|
|
5466
|
-
bytes24?: undefined;
|
|
5467
|
-
bytes23?: undefined;
|
|
5468
|
-
bytes22?: undefined;
|
|
5469
|
-
bytes21?: undefined;
|
|
5470
|
-
bytes20?: undefined;
|
|
5471
|
-
bytes19?: undefined;
|
|
5472
|
-
bytes17?: undefined;
|
|
5473
|
-
bytes16?: undefined;
|
|
5474
|
-
bytes15?: undefined;
|
|
5475
|
-
bytes14?: undefined;
|
|
5476
|
-
bytes13?: undefined;
|
|
5477
|
-
bytes12?: undefined;
|
|
5478
|
-
bytes11?: undefined;
|
|
5479
|
-
bytes9?: undefined;
|
|
5480
|
-
bytes8?: undefined;
|
|
5481
|
-
bytes7?: undefined;
|
|
5482
5314
|
bytes6?: undefined;
|
|
5483
|
-
|
|
5484
|
-
|
|
5485
|
-
|
|
5486
|
-
|
|
5315
|
+
bytes7?: undefined;
|
|
5316
|
+
bytes8?: undefined;
|
|
5317
|
+
bytes9?: undefined;
|
|
5318
|
+
bytes11?: undefined;
|
|
5319
|
+
bytes12?: undefined;
|
|
5320
|
+
bytes13?: undefined;
|
|
5321
|
+
bytes14?: undefined;
|
|
5322
|
+
bytes15?: undefined;
|
|
5323
|
+
bytes16?: undefined;
|
|
5324
|
+
bytes17?: undefined;
|
|
5325
|
+
bytes19?: undefined;
|
|
5326
|
+
bytes20?: undefined;
|
|
5327
|
+
bytes21?: undefined;
|
|
5328
|
+
bytes22?: undefined;
|
|
5329
|
+
bytes23?: undefined;
|
|
5330
|
+
bytes24?: undefined;
|
|
5331
|
+
bytes25?: undefined;
|
|
5332
|
+
bytes26?: undefined;
|
|
5333
|
+
bytes27?: undefined;
|
|
5334
|
+
bytes28?: undefined;
|
|
5335
|
+
bytes29?: undefined;
|
|
5336
|
+
bytes30?: undefined;
|
|
5337
|
+
bytes31?: undefined;
|
|
5338
|
+
bytes32?: undefined;
|
|
5487
5339
|
int8?: undefined;
|
|
5340
|
+
int16?: undefined;
|
|
5341
|
+
int24?: undefined;
|
|
5342
|
+
int32?: undefined;
|
|
5343
|
+
int40?: undefined;
|
|
5488
5344
|
int48?: undefined;
|
|
5489
5345
|
int56?: undefined;
|
|
5490
5346
|
int64?: undefined;
|
|
@@ -5512,11 +5368,11 @@ export declare const isAlchemySmartAccountClient: <TTransport extends Transport
|
|
|
5512
5368
|
int240?: undefined;
|
|
5513
5369
|
int248?: undefined;
|
|
5514
5370
|
int256?: undefined;
|
|
5515
|
-
uint40?: undefined;
|
|
5516
|
-
uint32?: undefined;
|
|
5517
|
-
uint24?: undefined;
|
|
5518
|
-
uint16?: undefined;
|
|
5519
5371
|
uint8?: undefined;
|
|
5372
|
+
uint16?: undefined;
|
|
5373
|
+
uint24?: undefined;
|
|
5374
|
+
uint32?: undefined;
|
|
5375
|
+
uint40?: undefined;
|
|
5520
5376
|
uint48?: undefined;
|
|
5521
5377
|
uint56?: undefined;
|
|
5522
5378
|
uint64?: undefined;
|