viem 2.27.1-canary-20250417045626 → 2.27.1

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (133) hide show
  1. package/CHANGELOG.md +1 -1
  2. package/_cjs/account-abstraction/accounts/implementations/toCoinbaseSmartAccount.js.map +1 -1
  3. package/_cjs/account-abstraction/accounts/implementations/toSimple7702SmartAccount.js +313 -0
  4. package/_cjs/account-abstraction/accounts/implementations/toSimple7702SmartAccount.js.map +1 -0
  5. package/_cjs/account-abstraction/accounts/implementations/toSoladySmartAccount.js.map +1 -1
  6. package/_cjs/account-abstraction/accounts/toSmartAccount.js +2 -2
  7. package/_cjs/account-abstraction/accounts/toSmartAccount.js.map +1 -1
  8. package/_cjs/account-abstraction/actions/bundler/estimateUserOperationGas.js +7 -1
  9. package/_cjs/account-abstraction/actions/bundler/estimateUserOperationGas.js.map +1 -1
  10. package/_cjs/account-abstraction/actions/bundler/prepareUserOperation.js +21 -1
  11. package/_cjs/account-abstraction/actions/bundler/prepareUserOperation.js.map +1 -1
  12. package/_cjs/account-abstraction/actions/bundler/sendUserOperation.js +2 -2
  13. package/_cjs/account-abstraction/actions/bundler/sendUserOperation.js.map +1 -1
  14. package/_cjs/account-abstraction/actions/paymaster/getPaymasterData.js.map +1 -1
  15. package/_cjs/account-abstraction/constants/abis.js +691 -1
  16. package/_cjs/account-abstraction/constants/abis.js.map +1 -1
  17. package/_cjs/account-abstraction/constants/address.js +2 -1
  18. package/_cjs/account-abstraction/constants/address.js.map +1 -1
  19. package/_cjs/account-abstraction/index.js +6 -2
  20. package/_cjs/account-abstraction/index.js.map +1 -1
  21. package/_cjs/account-abstraction/utils/formatters/userOperationRequest.js +19 -0
  22. package/_cjs/account-abstraction/utils/formatters/userOperationRequest.js.map +1 -1
  23. package/_cjs/account-abstraction/utils/userOperation/getUserOperationHash.js +70 -0
  24. package/_cjs/account-abstraction/utils/userOperation/getUserOperationHash.js.map +1 -1
  25. package/_cjs/constants/address.js +2 -1
  26. package/_cjs/constants/address.js.map +1 -1
  27. package/_cjs/errors/version.js +1 -1
  28. package/_cjs/errors/version.js.map +1 -1
  29. package/_esm/account-abstraction/accounts/implementations/toCoinbaseSmartAccount.js.map +1 -1
  30. package/_esm/account-abstraction/accounts/implementations/toSimple7702SmartAccount.js +327 -0
  31. package/_esm/account-abstraction/accounts/implementations/toSimple7702SmartAccount.js.map +1 -0
  32. package/_esm/account-abstraction/accounts/implementations/toSoladySmartAccount.js.map +1 -1
  33. package/_esm/account-abstraction/accounts/toSmartAccount.js +2 -2
  34. package/_esm/account-abstraction/accounts/toSmartAccount.js.map +1 -1
  35. package/_esm/account-abstraction/actions/bundler/estimateUserOperationGas.js +7 -1
  36. package/_esm/account-abstraction/actions/bundler/estimateUserOperationGas.js.map +1 -1
  37. package/_esm/account-abstraction/actions/bundler/prepareUserOperation.js +21 -1
  38. package/_esm/account-abstraction/actions/bundler/prepareUserOperation.js.map +1 -1
  39. package/_esm/account-abstraction/actions/bundler/sendUserOperation.js +2 -2
  40. package/_esm/account-abstraction/actions/bundler/sendUserOperation.js.map +1 -1
  41. package/_esm/account-abstraction/actions/paymaster/getPaymasterData.js.map +1 -1
  42. package/_esm/account-abstraction/constants/abis.js +690 -0
  43. package/_esm/account-abstraction/constants/abis.js.map +1 -1
  44. package/_esm/account-abstraction/constants/address.js +1 -0
  45. package/_esm/account-abstraction/constants/address.js.map +1 -1
  46. package/_esm/account-abstraction/index.js +3 -2
  47. package/_esm/account-abstraction/index.js.map +1 -1
  48. package/_esm/account-abstraction/utils/formatters/userOperationRequest.js +19 -0
  49. package/_esm/account-abstraction/utils/formatters/userOperationRequest.js.map +1 -1
  50. package/_esm/account-abstraction/utils/userOperation/getUserOperationHash.js +70 -0
  51. package/_esm/account-abstraction/utils/userOperation/getUserOperationHash.js.map +1 -1
  52. package/_esm/constants/address.js +1 -0
  53. package/_esm/constants/address.js.map +1 -1
  54. package/_esm/errors/version.js +1 -1
  55. package/_esm/errors/version.js.map +1 -1
  56. package/_types/account-abstraction/accounts/implementations/toCoinbaseSmartAccount.d.ts +1 -2
  57. package/_types/account-abstraction/accounts/implementations/toCoinbaseSmartAccount.d.ts.map +1 -1
  58. package/_types/account-abstraction/accounts/implementations/toSimple7702SmartAccount.d.ts +311 -0
  59. package/_types/account-abstraction/accounts/implementations/toSimple7702SmartAccount.d.ts.map +1 -0
  60. package/_types/account-abstraction/accounts/implementations/toSoladySmartAccount.d.ts +1 -2
  61. package/_types/account-abstraction/accounts/implementations/toSoladySmartAccount.d.ts.map +1 -1
  62. package/_types/account-abstraction/accounts/types.d.ts +16 -3
  63. package/_types/account-abstraction/accounts/types.d.ts.map +1 -1
  64. package/_types/account-abstraction/actions/bundler/estimateUserOperationGas.d.ts.map +1 -1
  65. package/_types/account-abstraction/actions/bundler/prepareUserOperation.d.ts +23 -6
  66. package/_types/account-abstraction/actions/bundler/prepareUserOperation.d.ts.map +1 -1
  67. package/_types/account-abstraction/actions/paymaster/getPaymasterData.d.ts +1 -1
  68. package/_types/account-abstraction/actions/paymaster/getPaymasterData.d.ts.map +1 -1
  69. package/_types/account-abstraction/constants/abis.d.ts +830 -0
  70. package/_types/account-abstraction/constants/abis.d.ts.map +1 -1
  71. package/_types/account-abstraction/constants/address.d.ts +1 -0
  72. package/_types/account-abstraction/constants/address.d.ts.map +1 -1
  73. package/_types/account-abstraction/index.d.ts +3 -2
  74. package/_types/account-abstraction/index.d.ts.map +1 -1
  75. package/_types/account-abstraction/types/entryPointVersion.d.ts +1 -1
  76. package/_types/account-abstraction/types/entryPointVersion.d.ts.map +1 -1
  77. package/_types/account-abstraction/types/rpc.d.ts +6 -3
  78. package/_types/account-abstraction/types/rpc.d.ts.map +1 -1
  79. package/_types/account-abstraction/types/userOperation.d.ts +49 -5
  80. package/_types/account-abstraction/types/userOperation.d.ts.map +1 -1
  81. package/_types/account-abstraction/utils/formatters/userOperationRequest.d.ts.map +1 -1
  82. package/_types/account-abstraction/utils/userOperation/getUserOperationHash.d.ts.map +1 -1
  83. package/_types/celo/chainConfig.d.ts +14 -14
  84. package/_types/celo/formatters.d.ts +7 -7
  85. package/_types/chains/definitions/abstract.d.ts +3 -3
  86. package/_types/chains/definitions/abstractTestnet.d.ts +3 -3
  87. package/_types/chains/definitions/celo.d.ts +14 -14
  88. package/_types/chains/definitions/celoAlfajores.d.ts +14 -14
  89. package/_types/chains/definitions/playfiAlbireo.d.ts +3 -3
  90. package/_types/chains/definitions/sophon.d.ts +3 -3
  91. package/_types/chains/definitions/sophonTestnet.d.ts +3 -3
  92. package/_types/chains/definitions/treasure.d.ts +3 -3
  93. package/_types/chains/definitions/treasureTopaz.d.ts +3 -3
  94. package/_types/chains/definitions/zksync.d.ts +3 -3
  95. package/_types/chains/definitions/zksyncInMemoryNode.d.ts +3 -3
  96. package/_types/chains/definitions/zksyncLocalCustomHyperchain.d.ts +3 -3
  97. package/_types/chains/definitions/zksyncLocalHyperchain.d.ts +3 -3
  98. package/_types/chains/definitions/zksyncLocalNode.d.ts +3 -3
  99. package/_types/chains/definitions/zksyncSepoliaTestnet.d.ts +3 -3
  100. package/_types/constants/address.d.ts +1 -0
  101. package/_types/constants/address.d.ts.map +1 -1
  102. package/_types/errors/version.d.ts +1 -1
  103. package/_types/errors/version.d.ts.map +1 -1
  104. package/_types/types/authorization.d.ts +1 -1
  105. package/_types/types/authorization.d.ts.map +1 -1
  106. package/_types/types/misc.d.ts +7 -7
  107. package/_types/types/misc.d.ts.map +1 -1
  108. package/_types/utils/formatters/transaction.d.ts +1 -1
  109. package/_types/utils/formatters/transactionRequest.d.ts +1 -1
  110. package/_types/zksync/chainConfig.d.ts +3 -3
  111. package/_types/zksync/formatters.d.ts +3 -3
  112. package/account-abstraction/accounts/implementations/toCoinbaseSmartAccount.ts +1 -2
  113. package/account-abstraction/accounts/implementations/toSimple7702SmartAccount.ts +382 -0
  114. package/account-abstraction/accounts/implementations/toSoladySmartAccount.ts +1 -2
  115. package/account-abstraction/accounts/toSmartAccount.ts +2 -2
  116. package/account-abstraction/accounts/types.ts +26 -2
  117. package/account-abstraction/actions/bundler/estimateUserOperationGas.ts +8 -1
  118. package/account-abstraction/actions/bundler/prepareUserOperation.ts +56 -2
  119. package/account-abstraction/actions/bundler/sendUserOperation.ts +2 -2
  120. package/account-abstraction/actions/paymaster/getPaymasterData.ts +24 -0
  121. package/account-abstraction/constants/abis.ts +691 -0
  122. package/account-abstraction/constants/address.ts +2 -0
  123. package/account-abstraction/index.ts +12 -1
  124. package/account-abstraction/types/entryPointVersion.ts +1 -1
  125. package/account-abstraction/types/rpc.ts +6 -3
  126. package/account-abstraction/types/userOperation.ts +69 -3
  127. package/account-abstraction/utils/formatters/userOperationRequest.ts +21 -0
  128. package/account-abstraction/utils/userOperation/getUserOperationHash.ts +79 -0
  129. package/constants/address.ts +2 -0
  130. package/errors/version.ts +1 -1
  131. package/package.json +1 -1
  132. package/types/authorization.ts +1 -1
  133. package/types/misc.ts +7 -7
@@ -249,8 +249,8 @@ export declare const celo: {
249
249
  gatewayFee: bigint | null;
250
250
  gatewayFeeRecipient: import("abitype").Address | null;
251
251
  type: "cip42";
252
- authorizationList?: undefined;
253
252
  blobVersionedHashes?: undefined;
253
+ authorizationList?: undefined;
254
254
  mint?: undefined;
255
255
  isSystemTx?: undefined;
256
256
  sourceHash?: undefined;
@@ -278,8 +278,8 @@ export declare const celo: {
278
278
  chainId: number;
279
279
  feeCurrency: import("abitype").Address | null;
280
280
  type: "cip64";
281
- authorizationList?: undefined;
282
281
  blobVersionedHashes?: undefined;
282
+ authorizationList?: undefined;
283
283
  mint?: undefined;
284
284
  isSystemTx?: undefined;
285
285
  sourceHash?: undefined;
@@ -310,8 +310,8 @@ export declare const celo: {
310
310
  sourceHash: import("../../index.js").Hex;
311
311
  type: "deposit";
312
312
  accessList?: undefined;
313
- authorizationList?: undefined;
314
313
  blobVersionedHashes?: undefined;
314
+ authorizationList?: undefined;
315
315
  chainId?: undefined;
316
316
  feeCurrency?: undefined;
317
317
  gatewayFee?: undefined;
@@ -335,10 +335,10 @@ export declare const celo: {
335
335
  maxPriorityFeePerGas?: undefined | undefined;
336
336
  blobs?: undefined;
337
337
  accessList?: undefined;
338
- authorizationList?: undefined;
339
338
  blobVersionedHashes?: undefined;
340
339
  kzg?: undefined;
341
340
  sidecars?: undefined;
341
+ authorizationList?: undefined;
342
342
  feeCurrency?: `0x${string}` | undefined;
343
343
  } | {
344
344
  data?: `0x${string}` | undefined;
@@ -354,10 +354,10 @@ export declare const celo: {
354
354
  maxPriorityFeePerGas?: undefined | undefined;
355
355
  accessList?: import("../../index.js").AccessList | undefined;
356
356
  blobs?: undefined;
357
- authorizationList?: undefined;
358
357
  blobVersionedHashes?: undefined;
359
358
  kzg?: undefined;
360
359
  sidecars?: undefined;
360
+ authorizationList?: undefined;
361
361
  feeCurrency?: `0x${string}` | undefined;
362
362
  } | {
363
363
  data?: `0x${string}` | undefined;
@@ -373,10 +373,10 @@ export declare const celo: {
373
373
  maxPriorityFeePerGas?: `0x${string}` | undefined;
374
374
  accessList?: import("../../index.js").AccessList | undefined;
375
375
  blobs?: undefined;
376
- authorizationList?: undefined;
377
376
  blobVersionedHashes?: undefined;
378
377
  kzg?: undefined;
379
378
  sidecars?: undefined;
379
+ authorizationList?: undefined;
380
380
  feeCurrency?: `0x${string}` | undefined;
381
381
  } | {
382
382
  type?: "0x3" | undefined;
@@ -431,10 +431,10 @@ export declare const celo: {
431
431
  maxFeePerGas?: `0x${string}` | undefined;
432
432
  maxPriorityFeePerGas?: `0x${string}` | undefined;
433
433
  blobs?: undefined;
434
- authorizationList?: undefined;
435
434
  blobVersionedHashes?: undefined;
436
435
  kzg?: undefined;
437
436
  sidecars?: undefined;
437
+ authorizationList?: undefined;
438
438
  }) & {};
439
439
  type: "transactionRequest";
440
440
  };
@@ -660,8 +660,8 @@ export declare const celo: {
660
660
  gatewayFee: bigint | null;
661
661
  gatewayFeeRecipient: import("abitype").Address | null;
662
662
  type: "cip42";
663
- authorizationList?: undefined;
664
663
  blobVersionedHashes?: undefined;
664
+ authorizationList?: undefined;
665
665
  mint?: undefined;
666
666
  isSystemTx?: undefined;
667
667
  sourceHash?: undefined;
@@ -689,8 +689,8 @@ export declare const celo: {
689
689
  chainId: number;
690
690
  feeCurrency: import("abitype").Address | null;
691
691
  type: "cip64";
692
- authorizationList?: undefined;
693
692
  blobVersionedHashes?: undefined;
693
+ authorizationList?: undefined;
694
694
  mint?: undefined;
695
695
  isSystemTx?: undefined;
696
696
  sourceHash?: undefined;
@@ -721,8 +721,8 @@ export declare const celo: {
721
721
  sourceHash: import("../../index.js").Hex;
722
722
  type: "deposit";
723
723
  accessList?: undefined;
724
- authorizationList?: undefined;
725
724
  blobVersionedHashes?: undefined;
725
+ authorizationList?: undefined;
726
726
  chainId?: undefined;
727
727
  feeCurrency?: undefined;
728
728
  gatewayFee?: undefined;
@@ -746,10 +746,10 @@ export declare const celo: {
746
746
  maxPriorityFeePerGas?: undefined | undefined;
747
747
  blobs?: undefined;
748
748
  accessList?: undefined;
749
- authorizationList?: undefined;
750
749
  blobVersionedHashes?: undefined;
751
750
  kzg?: undefined;
752
751
  sidecars?: undefined;
752
+ authorizationList?: undefined;
753
753
  feeCurrency?: `0x${string}` | undefined;
754
754
  } | {
755
755
  data?: `0x${string}` | undefined;
@@ -765,10 +765,10 @@ export declare const celo: {
765
765
  maxPriorityFeePerGas?: undefined | undefined;
766
766
  accessList?: import("../../index.js").AccessList | undefined;
767
767
  blobs?: undefined;
768
- authorizationList?: undefined;
769
768
  blobVersionedHashes?: undefined;
770
769
  kzg?: undefined;
771
770
  sidecars?: undefined;
771
+ authorizationList?: undefined;
772
772
  feeCurrency?: `0x${string}` | undefined;
773
773
  } | {
774
774
  data?: `0x${string}` | undefined;
@@ -784,10 +784,10 @@ export declare const celo: {
784
784
  maxPriorityFeePerGas?: `0x${string}` | undefined;
785
785
  accessList?: import("../../index.js").AccessList | undefined;
786
786
  blobs?: undefined;
787
- authorizationList?: undefined;
788
787
  blobVersionedHashes?: undefined;
789
788
  kzg?: undefined;
790
789
  sidecars?: undefined;
790
+ authorizationList?: undefined;
791
791
  feeCurrency?: `0x${string}` | undefined;
792
792
  } | {
793
793
  type?: "0x3" | undefined;
@@ -842,10 +842,10 @@ export declare const celo: {
842
842
  maxFeePerGas?: `0x${string}` | undefined;
843
843
  maxPriorityFeePerGas?: `0x${string}` | undefined;
844
844
  blobs?: undefined;
845
- authorizationList?: undefined;
846
845
  blobVersionedHashes?: undefined;
847
846
  kzg?: undefined;
848
847
  sidecars?: undefined;
848
+ authorizationList?: undefined;
849
849
  }) & {};
850
850
  type: "transactionRequest";
851
851
  };
@@ -291,8 +291,8 @@ export declare const celoAlfajores: {
291
291
  gatewayFee: bigint | null;
292
292
  gatewayFeeRecipient: import("abitype").Address | null;
293
293
  type: "cip42";
294
- authorizationList?: undefined;
295
294
  blobVersionedHashes?: undefined;
295
+ authorizationList?: undefined;
296
296
  mint?: undefined;
297
297
  isSystemTx?: undefined;
298
298
  sourceHash?: undefined;
@@ -320,8 +320,8 @@ export declare const celoAlfajores: {
320
320
  chainId: number;
321
321
  feeCurrency: import("abitype").Address | null;
322
322
  type: "cip64";
323
- authorizationList?: undefined;
324
323
  blobVersionedHashes?: undefined;
324
+ authorizationList?: undefined;
325
325
  mint?: undefined;
326
326
  isSystemTx?: undefined;
327
327
  sourceHash?: undefined;
@@ -352,8 +352,8 @@ export declare const celoAlfajores: {
352
352
  sourceHash: import("../../index.js").Hex;
353
353
  type: "deposit";
354
354
  accessList?: undefined;
355
- authorizationList?: undefined;
356
355
  blobVersionedHashes?: undefined;
356
+ authorizationList?: undefined;
357
357
  chainId?: undefined;
358
358
  feeCurrency?: undefined;
359
359
  gatewayFee?: undefined;
@@ -377,10 +377,10 @@ export declare const celoAlfajores: {
377
377
  maxPriorityFeePerGas?: undefined | undefined;
378
378
  blobs?: undefined;
379
379
  accessList?: undefined;
380
- authorizationList?: undefined;
381
380
  blobVersionedHashes?: undefined;
382
381
  kzg?: undefined;
383
382
  sidecars?: undefined;
383
+ authorizationList?: undefined;
384
384
  feeCurrency?: `0x${string}` | undefined;
385
385
  } | {
386
386
  data?: `0x${string}` | undefined;
@@ -396,10 +396,10 @@ export declare const celoAlfajores: {
396
396
  maxPriorityFeePerGas?: undefined | undefined;
397
397
  accessList?: import("../../index.js").AccessList | undefined;
398
398
  blobs?: undefined;
399
- authorizationList?: undefined;
400
399
  blobVersionedHashes?: undefined;
401
400
  kzg?: undefined;
402
401
  sidecars?: undefined;
402
+ authorizationList?: undefined;
403
403
  feeCurrency?: `0x${string}` | undefined;
404
404
  } | {
405
405
  data?: `0x${string}` | undefined;
@@ -415,10 +415,10 @@ export declare const celoAlfajores: {
415
415
  maxPriorityFeePerGas?: `0x${string}` | undefined;
416
416
  accessList?: import("../../index.js").AccessList | undefined;
417
417
  blobs?: undefined;
418
- authorizationList?: undefined;
419
418
  blobVersionedHashes?: undefined;
420
419
  kzg?: undefined;
421
420
  sidecars?: undefined;
421
+ authorizationList?: undefined;
422
422
  feeCurrency?: `0x${string}` | undefined;
423
423
  } | {
424
424
  type?: "0x3" | undefined;
@@ -473,10 +473,10 @@ export declare const celoAlfajores: {
473
473
  maxFeePerGas?: `0x${string}` | undefined;
474
474
  maxPriorityFeePerGas?: `0x${string}` | undefined;
475
475
  blobs?: undefined;
476
- authorizationList?: undefined;
477
476
  blobVersionedHashes?: undefined;
478
477
  kzg?: undefined;
479
478
  sidecars?: undefined;
479
+ authorizationList?: undefined;
480
480
  }) & {};
481
481
  type: "transactionRequest";
482
482
  };
@@ -702,8 +702,8 @@ export declare const celoAlfajores: {
702
702
  gatewayFee: bigint | null;
703
703
  gatewayFeeRecipient: import("abitype").Address | null;
704
704
  type: "cip42";
705
- authorizationList?: undefined;
706
705
  blobVersionedHashes?: undefined;
706
+ authorizationList?: undefined;
707
707
  mint?: undefined;
708
708
  isSystemTx?: undefined;
709
709
  sourceHash?: undefined;
@@ -731,8 +731,8 @@ export declare const celoAlfajores: {
731
731
  chainId: number;
732
732
  feeCurrency: import("abitype").Address | null;
733
733
  type: "cip64";
734
- authorizationList?: undefined;
735
734
  blobVersionedHashes?: undefined;
735
+ authorizationList?: undefined;
736
736
  mint?: undefined;
737
737
  isSystemTx?: undefined;
738
738
  sourceHash?: undefined;
@@ -763,8 +763,8 @@ export declare const celoAlfajores: {
763
763
  sourceHash: import("../../index.js").Hex;
764
764
  type: "deposit";
765
765
  accessList?: undefined;
766
- authorizationList?: undefined;
767
766
  blobVersionedHashes?: undefined;
767
+ authorizationList?: undefined;
768
768
  chainId?: undefined;
769
769
  feeCurrency?: undefined;
770
770
  gatewayFee?: undefined;
@@ -788,10 +788,10 @@ export declare const celoAlfajores: {
788
788
  maxPriorityFeePerGas?: undefined | undefined;
789
789
  blobs?: undefined;
790
790
  accessList?: undefined;
791
- authorizationList?: undefined;
792
791
  blobVersionedHashes?: undefined;
793
792
  kzg?: undefined;
794
793
  sidecars?: undefined;
794
+ authorizationList?: undefined;
795
795
  feeCurrency?: `0x${string}` | undefined;
796
796
  } | {
797
797
  data?: `0x${string}` | undefined;
@@ -807,10 +807,10 @@ export declare const celoAlfajores: {
807
807
  maxPriorityFeePerGas?: undefined | undefined;
808
808
  accessList?: import("../../index.js").AccessList | undefined;
809
809
  blobs?: undefined;
810
- authorizationList?: undefined;
811
810
  blobVersionedHashes?: undefined;
812
811
  kzg?: undefined;
813
812
  sidecars?: undefined;
813
+ authorizationList?: undefined;
814
814
  feeCurrency?: `0x${string}` | undefined;
815
815
  } | {
816
816
  data?: `0x${string}` | undefined;
@@ -826,10 +826,10 @@ export declare const celoAlfajores: {
826
826
  maxPriorityFeePerGas?: `0x${string}` | undefined;
827
827
  accessList?: import("../../index.js").AccessList | undefined;
828
828
  blobs?: undefined;
829
- authorizationList?: undefined;
830
829
  blobVersionedHashes?: undefined;
831
830
  kzg?: undefined;
832
831
  sidecars?: undefined;
832
+ authorizationList?: undefined;
833
833
  feeCurrency?: `0x${string}` | undefined;
834
834
  } | {
835
835
  type?: "0x3" | undefined;
@@ -884,10 +884,10 @@ export declare const celoAlfajores: {
884
884
  maxFeePerGas?: `0x${string}` | undefined;
885
885
  maxPriorityFeePerGas?: `0x${string}` | undefined;
886
886
  blobs?: undefined;
887
- authorizationList?: undefined;
888
887
  blobVersionedHashes?: undefined;
889
888
  kzg?: undefined;
890
889
  sidecars?: undefined;
890
+ authorizationList?: undefined;
891
891
  }) & {};
892
892
  type: "transactionRequest";
893
893
  };
@@ -294,10 +294,10 @@ export declare const playfiAlbireo: {
294
294
  maxPriorityFeePerGas?: undefined | undefined;
295
295
  blobs?: undefined;
296
296
  accessList?: undefined;
297
- authorizationList?: undefined;
298
297
  blobVersionedHashes?: undefined;
299
298
  kzg?: undefined;
300
299
  sidecars?: undefined;
300
+ authorizationList?: undefined;
301
301
  eip712Meta?: undefined | undefined;
302
302
  } | {
303
303
  data?: `0x${string}` | undefined;
@@ -313,10 +313,10 @@ export declare const playfiAlbireo: {
313
313
  maxPriorityFeePerGas?: undefined | undefined;
314
314
  accessList?: import("../../index.js").AccessList | undefined;
315
315
  blobs?: undefined;
316
- authorizationList?: undefined;
317
316
  blobVersionedHashes?: undefined;
318
317
  kzg?: undefined;
319
318
  sidecars?: undefined;
319
+ authorizationList?: undefined;
320
320
  eip712Meta?: undefined | undefined;
321
321
  } | {
322
322
  data?: `0x${string}` | undefined;
@@ -332,10 +332,10 @@ export declare const playfiAlbireo: {
332
332
  maxPriorityFeePerGas?: `0x${string}` | undefined;
333
333
  accessList?: import("../../index.js").AccessList | undefined;
334
334
  blobs?: undefined;
335
- authorizationList?: undefined;
336
335
  blobVersionedHashes?: undefined;
337
336
  kzg?: undefined;
338
337
  sidecars?: undefined;
338
+ authorizationList?: undefined;
339
339
  eip712Meta?: undefined | undefined;
340
340
  } | {
341
341
  type?: "0x3" | undefined;
@@ -295,10 +295,10 @@ export declare const sophon: {
295
295
  maxPriorityFeePerGas?: undefined | undefined;
296
296
  blobs?: undefined;
297
297
  accessList?: undefined;
298
- authorizationList?: undefined;
299
298
  blobVersionedHashes?: undefined;
300
299
  kzg?: undefined;
301
300
  sidecars?: undefined;
301
+ authorizationList?: undefined;
302
302
  eip712Meta?: undefined | undefined;
303
303
  } | {
304
304
  data?: `0x${string}` | undefined;
@@ -314,10 +314,10 @@ export declare const sophon: {
314
314
  maxPriorityFeePerGas?: undefined | undefined;
315
315
  accessList?: import("../../index.js").AccessList | undefined;
316
316
  blobs?: undefined;
317
- authorizationList?: undefined;
318
317
  blobVersionedHashes?: undefined;
319
318
  kzg?: undefined;
320
319
  sidecars?: undefined;
320
+ authorizationList?: undefined;
321
321
  eip712Meta?: undefined | undefined;
322
322
  } | {
323
323
  data?: `0x${string}` | undefined;
@@ -333,10 +333,10 @@ export declare const sophon: {
333
333
  maxPriorityFeePerGas?: `0x${string}` | undefined;
334
334
  accessList?: import("../../index.js").AccessList | undefined;
335
335
  blobs?: undefined;
336
- authorizationList?: undefined;
337
336
  blobVersionedHashes?: undefined;
338
337
  kzg?: undefined;
339
338
  sidecars?: undefined;
339
+ authorizationList?: undefined;
340
340
  eip712Meta?: undefined | undefined;
341
341
  } | {
342
342
  type?: "0x3" | undefined;
@@ -295,10 +295,10 @@ export declare const sophonTestnet: {
295
295
  maxPriorityFeePerGas?: undefined | undefined;
296
296
  blobs?: undefined;
297
297
  accessList?: undefined;
298
- authorizationList?: undefined;
299
298
  blobVersionedHashes?: undefined;
300
299
  kzg?: undefined;
301
300
  sidecars?: undefined;
301
+ authorizationList?: undefined;
302
302
  eip712Meta?: undefined | undefined;
303
303
  } | {
304
304
  data?: `0x${string}` | undefined;
@@ -314,10 +314,10 @@ export declare const sophonTestnet: {
314
314
  maxPriorityFeePerGas?: undefined | undefined;
315
315
  accessList?: import("../../index.js").AccessList | undefined;
316
316
  blobs?: undefined;
317
- authorizationList?: undefined;
318
317
  blobVersionedHashes?: undefined;
319
318
  kzg?: undefined;
320
319
  sidecars?: undefined;
320
+ authorizationList?: undefined;
321
321
  eip712Meta?: undefined | undefined;
322
322
  } | {
323
323
  data?: `0x${string}` | undefined;
@@ -333,10 +333,10 @@ export declare const sophonTestnet: {
333
333
  maxPriorityFeePerGas?: `0x${string}` | undefined;
334
334
  accessList?: import("../../index.js").AccessList | undefined;
335
335
  blobs?: undefined;
336
- authorizationList?: undefined;
337
336
  blobVersionedHashes?: undefined;
338
337
  kzg?: undefined;
339
338
  sidecars?: undefined;
339
+ authorizationList?: undefined;
340
340
  eip712Meta?: undefined | undefined;
341
341
  } | {
342
342
  type?: "0x3" | undefined;
@@ -295,10 +295,10 @@ export declare const treasure: {
295
295
  maxPriorityFeePerGas?: undefined | undefined;
296
296
  blobs?: undefined;
297
297
  accessList?: undefined;
298
- authorizationList?: undefined;
299
298
  blobVersionedHashes?: undefined;
300
299
  kzg?: undefined;
301
300
  sidecars?: undefined;
301
+ authorizationList?: undefined;
302
302
  eip712Meta?: undefined | undefined;
303
303
  } | {
304
304
  data?: `0x${string}` | undefined;
@@ -314,10 +314,10 @@ export declare const treasure: {
314
314
  maxPriorityFeePerGas?: undefined | undefined;
315
315
  accessList?: import("../../index.js").AccessList | undefined;
316
316
  blobs?: undefined;
317
- authorizationList?: undefined;
318
317
  blobVersionedHashes?: undefined;
319
318
  kzg?: undefined;
320
319
  sidecars?: undefined;
320
+ authorizationList?: undefined;
321
321
  eip712Meta?: undefined | undefined;
322
322
  } | {
323
323
  data?: `0x${string}` | undefined;
@@ -333,10 +333,10 @@ export declare const treasure: {
333
333
  maxPriorityFeePerGas?: `0x${string}` | undefined;
334
334
  accessList?: import("../../index.js").AccessList | undefined;
335
335
  blobs?: undefined;
336
- authorizationList?: undefined;
337
336
  blobVersionedHashes?: undefined;
338
337
  kzg?: undefined;
339
338
  sidecars?: undefined;
339
+ authorizationList?: undefined;
340
340
  eip712Meta?: undefined | undefined;
341
341
  } | {
342
342
  type?: "0x3" | undefined;
@@ -295,10 +295,10 @@ export declare const treasureTopaz: {
295
295
  maxPriorityFeePerGas?: undefined | undefined;
296
296
  blobs?: undefined;
297
297
  accessList?: undefined;
298
- authorizationList?: undefined;
299
298
  blobVersionedHashes?: undefined;
300
299
  kzg?: undefined;
301
300
  sidecars?: undefined;
301
+ authorizationList?: undefined;
302
302
  eip712Meta?: undefined | undefined;
303
303
  } | {
304
304
  data?: `0x${string}` | undefined;
@@ -314,10 +314,10 @@ export declare const treasureTopaz: {
314
314
  maxPriorityFeePerGas?: undefined | undefined;
315
315
  accessList?: import("../../index.js").AccessList | undefined;
316
316
  blobs?: undefined;
317
- authorizationList?: undefined;
318
317
  blobVersionedHashes?: undefined;
319
318
  kzg?: undefined;
320
319
  sidecars?: undefined;
320
+ authorizationList?: undefined;
321
321
  eip712Meta?: undefined | undefined;
322
322
  } | {
323
323
  data?: `0x${string}` | undefined;
@@ -333,10 +333,10 @@ export declare const treasureTopaz: {
333
333
  maxPriorityFeePerGas?: `0x${string}` | undefined;
334
334
  accessList?: import("../../index.js").AccessList | undefined;
335
335
  blobs?: undefined;
336
- authorizationList?: undefined;
337
336
  blobVersionedHashes?: undefined;
338
337
  kzg?: undefined;
339
338
  sidecars?: undefined;
339
+ authorizationList?: undefined;
340
340
  eip712Meta?: undefined | undefined;
341
341
  } | {
342
342
  type?: "0x3" | undefined;
@@ -304,10 +304,10 @@ export declare const zksync: {
304
304
  maxPriorityFeePerGas?: undefined | undefined;
305
305
  blobs?: undefined;
306
306
  accessList?: undefined;
307
- authorizationList?: undefined;
308
307
  blobVersionedHashes?: undefined;
309
308
  kzg?: undefined;
310
309
  sidecars?: undefined;
310
+ authorizationList?: undefined;
311
311
  eip712Meta?: undefined | undefined;
312
312
  } | {
313
313
  data?: `0x${string}` | undefined;
@@ -323,10 +323,10 @@ export declare const zksync: {
323
323
  maxPriorityFeePerGas?: undefined | undefined;
324
324
  accessList?: import("../../index.js").AccessList | undefined;
325
325
  blobs?: undefined;
326
- authorizationList?: undefined;
327
326
  blobVersionedHashes?: undefined;
328
327
  kzg?: undefined;
329
328
  sidecars?: undefined;
329
+ authorizationList?: undefined;
330
330
  eip712Meta?: undefined | undefined;
331
331
  } | {
332
332
  data?: `0x${string}` | undefined;
@@ -342,10 +342,10 @@ export declare const zksync: {
342
342
  maxPriorityFeePerGas?: `0x${string}` | undefined;
343
343
  accessList?: import("../../index.js").AccessList | undefined;
344
344
  blobs?: undefined;
345
- authorizationList?: undefined;
346
345
  blobVersionedHashes?: undefined;
347
346
  kzg?: undefined;
348
347
  sidecars?: undefined;
348
+ authorizationList?: undefined;
349
349
  eip712Meta?: undefined | undefined;
350
350
  } | {
351
351
  type?: "0x3" | undefined;
@@ -303,10 +303,10 @@ export declare const zksyncInMemoryNode: {
303
303
  maxPriorityFeePerGas?: undefined | undefined;
304
304
  blobs?: undefined;
305
305
  accessList?: undefined;
306
- authorizationList?: undefined;
307
306
  blobVersionedHashes?: undefined;
308
307
  kzg?: undefined;
309
308
  sidecars?: undefined;
309
+ authorizationList?: undefined;
310
310
  eip712Meta?: undefined | undefined;
311
311
  } | {
312
312
  data?: `0x${string}` | undefined;
@@ -322,10 +322,10 @@ export declare const zksyncInMemoryNode: {
322
322
  maxPriorityFeePerGas?: undefined | undefined;
323
323
  accessList?: import("../../index.js").AccessList | undefined;
324
324
  blobs?: undefined;
325
- authorizationList?: undefined;
326
325
  blobVersionedHashes?: undefined;
327
326
  kzg?: undefined;
328
327
  sidecars?: undefined;
328
+ authorizationList?: undefined;
329
329
  eip712Meta?: undefined | undefined;
330
330
  } | {
331
331
  data?: `0x${string}` | undefined;
@@ -341,10 +341,10 @@ export declare const zksyncInMemoryNode: {
341
341
  maxPriorityFeePerGas?: `0x${string}` | undefined;
342
342
  accessList?: import("../../index.js").AccessList | undefined;
343
343
  blobs?: undefined;
344
- authorizationList?: undefined;
345
344
  blobVersionedHashes?: undefined;
346
345
  kzg?: undefined;
347
346
  sidecars?: undefined;
347
+ authorizationList?: undefined;
348
348
  eip712Meta?: undefined | undefined;
349
349
  } | {
350
350
  type?: "0x3" | undefined;
@@ -299,10 +299,10 @@ export declare const zksyncLocalCustomHyperchain: {
299
299
  maxPriorityFeePerGas?: undefined | undefined;
300
300
  blobs?: undefined;
301
301
  accessList?: undefined;
302
- authorizationList?: undefined;
303
302
  blobVersionedHashes?: undefined;
304
303
  kzg?: undefined;
305
304
  sidecars?: undefined;
305
+ authorizationList?: undefined;
306
306
  eip712Meta?: undefined | undefined;
307
307
  } | {
308
308
  data?: `0x${string}` | undefined;
@@ -318,10 +318,10 @@ export declare const zksyncLocalCustomHyperchain: {
318
318
  maxPriorityFeePerGas?: undefined | undefined;
319
319
  accessList?: import("../../index.js").AccessList | undefined;
320
320
  blobs?: undefined;
321
- authorizationList?: undefined;
322
321
  blobVersionedHashes?: undefined;
323
322
  kzg?: undefined;
324
323
  sidecars?: undefined;
324
+ authorizationList?: undefined;
325
325
  eip712Meta?: undefined | undefined;
326
326
  } | {
327
327
  data?: `0x${string}` | undefined;
@@ -337,10 +337,10 @@ export declare const zksyncLocalCustomHyperchain: {
337
337
  maxPriorityFeePerGas?: `0x${string}` | undefined;
338
338
  accessList?: import("../../index.js").AccessList | undefined;
339
339
  blobs?: undefined;
340
- authorizationList?: undefined;
341
340
  blobVersionedHashes?: undefined;
342
341
  kzg?: undefined;
343
342
  sidecars?: undefined;
343
+ authorizationList?: undefined;
344
344
  eip712Meta?: undefined | undefined;
345
345
  } | {
346
346
  type?: "0x3" | undefined;
@@ -299,10 +299,10 @@ export declare const zksyncLocalHyperchain: {
299
299
  maxPriorityFeePerGas?: undefined | undefined;
300
300
  blobs?: undefined;
301
301
  accessList?: undefined;
302
- authorizationList?: undefined;
303
302
  blobVersionedHashes?: undefined;
304
303
  kzg?: undefined;
305
304
  sidecars?: undefined;
305
+ authorizationList?: undefined;
306
306
  eip712Meta?: undefined | undefined;
307
307
  } | {
308
308
  data?: `0x${string}` | undefined;
@@ -318,10 +318,10 @@ export declare const zksyncLocalHyperchain: {
318
318
  maxPriorityFeePerGas?: undefined | undefined;
319
319
  accessList?: import("../../index.js").AccessList | undefined;
320
320
  blobs?: undefined;
321
- authorizationList?: undefined;
322
321
  blobVersionedHashes?: undefined;
323
322
  kzg?: undefined;
324
323
  sidecars?: undefined;
324
+ authorizationList?: undefined;
325
325
  eip712Meta?: undefined | undefined;
326
326
  } | {
327
327
  data?: `0x${string}` | undefined;
@@ -337,10 +337,10 @@ export declare const zksyncLocalHyperchain: {
337
337
  maxPriorityFeePerGas?: `0x${string}` | undefined;
338
338
  accessList?: import("../../index.js").AccessList | undefined;
339
339
  blobs?: undefined;
340
- authorizationList?: undefined;
341
340
  blobVersionedHashes?: undefined;
342
341
  kzg?: undefined;
343
342
  sidecars?: undefined;
343
+ authorizationList?: undefined;
344
344
  eip712Meta?: undefined | undefined;
345
345
  } | {
346
346
  type?: "0x3" | undefined;
@@ -303,10 +303,10 @@ export declare const zksyncLocalNode: {
303
303
  maxPriorityFeePerGas?: undefined | undefined;
304
304
  blobs?: undefined;
305
305
  accessList?: undefined;
306
- authorizationList?: undefined;
307
306
  blobVersionedHashes?: undefined;
308
307
  kzg?: undefined;
309
308
  sidecars?: undefined;
309
+ authorizationList?: undefined;
310
310
  eip712Meta?: undefined | undefined;
311
311
  } | {
312
312
  data?: `0x${string}` | undefined;
@@ -322,10 +322,10 @@ export declare const zksyncLocalNode: {
322
322
  maxPriorityFeePerGas?: undefined | undefined;
323
323
  accessList?: import("../../index.js").AccessList | undefined;
324
324
  blobs?: undefined;
325
- authorizationList?: undefined;
326
325
  blobVersionedHashes?: undefined;
327
326
  kzg?: undefined;
328
327
  sidecars?: undefined;
328
+ authorizationList?: undefined;
329
329
  eip712Meta?: undefined | undefined;
330
330
  } | {
331
331
  data?: `0x${string}` | undefined;
@@ -341,10 +341,10 @@ export declare const zksyncLocalNode: {
341
341
  maxPriorityFeePerGas?: `0x${string}` | undefined;
342
342
  accessList?: import("../../index.js").AccessList | undefined;
343
343
  blobs?: undefined;
344
- authorizationList?: undefined;
345
344
  blobVersionedHashes?: undefined;
346
345
  kzg?: undefined;
347
346
  sidecars?: undefined;
347
+ authorizationList?: undefined;
348
348
  eip712Meta?: undefined | undefined;
349
349
  } | {
350
350
  type?: "0x3" | undefined;