viem 2.10.0 → 2.10.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 (45) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/_cjs/errors/version.js +1 -1
  3. package/_esm/errors/version.js +1 -1
  4. package/_types/celo/chainConfig.d.ts +20 -20
  5. package/_types/celo/formatters.d.ts +10 -10
  6. package/_types/chains/definitions/ancient8.d.ts +8 -8
  7. package/_types/chains/definitions/ancient8Sepolia.d.ts +8 -8
  8. package/_types/chains/definitions/base.d.ts +8 -8
  9. package/_types/chains/definitions/baseGoerli.d.ts +8 -8
  10. package/_types/chains/definitions/baseSepolia.d.ts +8 -8
  11. package/_types/chains/definitions/celo.d.ts +20 -20
  12. package/_types/chains/definitions/celoAlfajores.d.ts +20 -20
  13. package/_types/chains/definitions/fraxtal.d.ts +8 -8
  14. package/_types/chains/definitions/fraxtalTestnet.d.ts +8 -8
  15. package/_types/chains/definitions/liskSepolia.d.ts +8 -8
  16. package/_types/chains/definitions/optimism.d.ts +8 -8
  17. package/_types/chains/definitions/optimismGoerli.d.ts +8 -8
  18. package/_types/chains/definitions/optimismSepolia.d.ts +8 -8
  19. package/_types/chains/definitions/pgn.d.ts +8 -8
  20. package/_types/chains/definitions/pgnTestnet.d.ts +8 -8
  21. package/_types/chains/definitions/playfiAlbireo.d.ts +3 -3
  22. package/_types/chains/definitions/rss3.d.ts +8 -8
  23. package/_types/chains/definitions/rss3Sepolia.d.ts +8 -8
  24. package/_types/chains/definitions/zkSync.d.ts +3 -3
  25. package/_types/chains/definitions/zkSyncInMemoryNode.d.ts +3 -3
  26. package/_types/chains/definitions/zkSyncLocalNode.d.ts +3 -3
  27. package/_types/chains/definitions/zkSyncSepoliaTestnet.d.ts +3 -3
  28. package/_types/chains/definitions/zkSyncTestnet.d.ts +3 -3
  29. package/_types/chains/definitions/zora.d.ts +8 -8
  30. package/_types/chains/definitions/zoraSepolia.d.ts +8 -8
  31. package/_types/chains/definitions/zoraTestnet.d.ts +8 -8
  32. package/_types/errors/version.d.ts +1 -1
  33. package/_types/op-stack/chainConfig.d.ts +8 -8
  34. package/_types/op-stack/formatters.d.ts +8 -8
  35. package/_types/types/eip1193.d.ts +9 -7
  36. package/_types/types/eip1193.d.ts.map +1 -1
  37. package/_types/types/transaction.d.ts +1 -1
  38. package/_types/types/transaction.d.ts.map +1 -1
  39. package/_types/utils/formatters/transaction.d.ts +4 -4
  40. package/_types/zksync/chainConfig.d.ts +3 -3
  41. package/_types/zksync/formatters.d.ts +3 -3
  42. package/errors/version.ts +1 -1
  43. package/package.json +1 -1
  44. package/types/eip1193.ts +13 -8
  45. package/types/transaction.ts +1 -1
@@ -559,7 +559,7 @@ export declare const optimismGoerli: {
559
559
  input?: `0x${string}`;
560
560
  transactionIndex?: `0x${string}` | null;
561
561
  accessList?: import("../../index.js").AccessList | undefined;
562
- blobVersionedHashes?: `0x${string}`[] | undefined;
562
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
563
563
  chainId?: `0x${string}` | undefined;
564
564
  } & import("../index.js").Omit<import("../index.js").PartialBy<{
565
565
  r: `0x${string}`;
@@ -610,7 +610,7 @@ export declare const optimismGoerli: {
610
610
  input?: `0x${string}`;
611
611
  transactionIndex?: `0x${string}` | null;
612
612
  accessList?: import("../../index.js").AccessList | undefined;
613
- blobVersionedHashes?: `0x${string}`[] | undefined;
613
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
614
614
  chainId?: `0x${string}` | undefined;
615
615
  } & import("../index.js").Omit<import("../index.js").PartialBy<{
616
616
  blockHash: `0x${string}` | null;
@@ -661,7 +661,7 @@ export declare const optimismGoerli: {
661
661
  input?: `0x${string}`;
662
662
  transactionIndex?: `0x${string}` | null;
663
663
  accessList?: import("../../index.js").AccessList | undefined;
664
- blobVersionedHashes?: `0x${string}`[] | undefined;
664
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
665
665
  chainId?: `0x${string}` | undefined;
666
666
  } & import("../index.js").Omit<import("../index.js").PartialBy<{
667
667
  blockHash: `0x${string}` | null;
@@ -712,7 +712,7 @@ export declare const optimismGoerli: {
712
712
  input?: `0x${string}`;
713
713
  transactionIndex?: `0x${string}` | null;
714
714
  accessList?: import("../../index.js").AccessList | undefined;
715
- blobVersionedHashes?: `0x${string}`[] | undefined;
715
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
716
716
  chainId?: `0x${string}` | undefined;
717
717
  } & import("../index.js").Omit<import("../index.js").PartialBy<{
718
718
  blockHash: `0x${string}` | null;
@@ -735,7 +735,7 @@ export declare const optimismGoerli: {
735
735
  maxFeePerGas: `0x${string}`;
736
736
  maxPriorityFeePerGas: `0x${string}`;
737
737
  accessList: import("../../index.js").AccessList;
738
- blobVersionedHashes: `0x${string}`[];
738
+ blobVersionedHashes: readonly `0x${string}`[];
739
739
  chainId: `0x${string}`;
740
740
  type: "0x3";
741
741
  }, "yParity">, "typeHex"> & {
@@ -763,7 +763,7 @@ export declare const optimismGoerli: {
763
763
  input?: `0x${string}`;
764
764
  transactionIndex?: `0x${string}` | null;
765
765
  accessList?: import("../../index.js").AccessList | undefined;
766
- blobVersionedHashes?: `0x${string}`[] | undefined;
766
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
767
767
  chainId?: `0x${string}` | undefined;
768
768
  } & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
769
769
  isSystemTx?: boolean | undefined;
@@ -1007,7 +1007,7 @@ export declare const optimismGoerli: {
1007
1007
  maxFeePerGas: bigint;
1008
1008
  maxPriorityFeePerGas: bigint;
1009
1009
  accessList: import("../../index.js").AccessList;
1010
- blobVersionedHashes: `0x${string}`[];
1010
+ blobVersionedHashes: readonly `0x${string}`[];
1011
1011
  chainId: number;
1012
1012
  type: "eip4844";
1013
1013
  isSystemTx?: undefined;
@@ -1034,7 +1034,7 @@ export declare const optimismGoerli: {
1034
1034
  maxFeePerGas: bigint;
1035
1035
  maxPriorityFeePerGas: bigint;
1036
1036
  accessList: import("../../index.js").AccessList;
1037
- blobVersionedHashes: `0x${string}`[];
1037
+ blobVersionedHashes: readonly `0x${string}`[];
1038
1038
  chainId: number;
1039
1039
  type: "deposit";
1040
1040
  isSystemTx?: boolean;
@@ -564,7 +564,7 @@ export declare const optimismSepolia: {
564
564
  input?: `0x${string}`;
565
565
  transactionIndex?: `0x${string}` | null;
566
566
  accessList?: import("../../index.js").AccessList | undefined;
567
- blobVersionedHashes?: `0x${string}`[] | undefined;
567
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
568
568
  chainId?: `0x${string}` | undefined;
569
569
  } & import("../index.js").Omit<import("../index.js").PartialBy<{
570
570
  r: `0x${string}`;
@@ -615,7 +615,7 @@ export declare const optimismSepolia: {
615
615
  input?: `0x${string}`;
616
616
  transactionIndex?: `0x${string}` | null;
617
617
  accessList?: import("../../index.js").AccessList | undefined;
618
- blobVersionedHashes?: `0x${string}`[] | undefined;
618
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
619
619
  chainId?: `0x${string}` | undefined;
620
620
  } & import("../index.js").Omit<import("../index.js").PartialBy<{
621
621
  blockHash: `0x${string}` | null;
@@ -666,7 +666,7 @@ export declare const optimismSepolia: {
666
666
  input?: `0x${string}`;
667
667
  transactionIndex?: `0x${string}` | null;
668
668
  accessList?: import("../../index.js").AccessList | undefined;
669
- blobVersionedHashes?: `0x${string}`[] | undefined;
669
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
670
670
  chainId?: `0x${string}` | undefined;
671
671
  } & import("../index.js").Omit<import("../index.js").PartialBy<{
672
672
  blockHash: `0x${string}` | null;
@@ -717,7 +717,7 @@ export declare const optimismSepolia: {
717
717
  input?: `0x${string}`;
718
718
  transactionIndex?: `0x${string}` | null;
719
719
  accessList?: import("../../index.js").AccessList | undefined;
720
- blobVersionedHashes?: `0x${string}`[] | undefined;
720
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
721
721
  chainId?: `0x${string}` | undefined;
722
722
  } & import("../index.js").Omit<import("../index.js").PartialBy<{
723
723
  blockHash: `0x${string}` | null;
@@ -740,7 +740,7 @@ export declare const optimismSepolia: {
740
740
  maxFeePerGas: `0x${string}`;
741
741
  maxPriorityFeePerGas: `0x${string}`;
742
742
  accessList: import("../../index.js").AccessList;
743
- blobVersionedHashes: `0x${string}`[];
743
+ blobVersionedHashes: readonly `0x${string}`[];
744
744
  chainId: `0x${string}`;
745
745
  type: "0x3";
746
746
  }, "yParity">, "typeHex"> & {
@@ -768,7 +768,7 @@ export declare const optimismSepolia: {
768
768
  input?: `0x${string}`;
769
769
  transactionIndex?: `0x${string}` | null;
770
770
  accessList?: import("../../index.js").AccessList | undefined;
771
- blobVersionedHashes?: `0x${string}`[] | undefined;
771
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
772
772
  chainId?: `0x${string}` | undefined;
773
773
  } & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
774
774
  isSystemTx?: boolean | undefined;
@@ -1012,7 +1012,7 @@ export declare const optimismSepolia: {
1012
1012
  maxFeePerGas: bigint;
1013
1013
  maxPriorityFeePerGas: bigint;
1014
1014
  accessList: import("../../index.js").AccessList;
1015
- blobVersionedHashes: `0x${string}`[];
1015
+ blobVersionedHashes: readonly `0x${string}`[];
1016
1016
  chainId: number;
1017
1017
  type: "eip4844";
1018
1018
  isSystemTx?: undefined;
@@ -1039,7 +1039,7 @@ export declare const optimismSepolia: {
1039
1039
  maxFeePerGas: bigint;
1040
1040
  maxPriorityFeePerGas: bigint;
1041
1041
  accessList: import("../../index.js").AccessList;
1042
- blobVersionedHashes: `0x${string}`[];
1042
+ blobVersionedHashes: readonly `0x${string}`[];
1043
1043
  chainId: number;
1044
1044
  type: "deposit";
1045
1045
  isSystemTx?: boolean;
@@ -546,7 +546,7 @@ export declare const pgn: {
546
546
  input?: `0x${string}`;
547
547
  transactionIndex?: `0x${string}` | null;
548
548
  accessList?: import("../../index.js").AccessList | undefined;
549
- blobVersionedHashes?: `0x${string}`[] | undefined;
549
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
550
550
  chainId?: `0x${string}` | undefined;
551
551
  } & import("../index.js").Omit<import("../index.js").PartialBy<{
552
552
  r: `0x${string}`;
@@ -597,7 +597,7 @@ export declare const pgn: {
597
597
  input?: `0x${string}`;
598
598
  transactionIndex?: `0x${string}` | null;
599
599
  accessList?: import("../../index.js").AccessList | undefined;
600
- blobVersionedHashes?: `0x${string}`[] | undefined;
600
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
601
601
  chainId?: `0x${string}` | undefined;
602
602
  } & import("../index.js").Omit<import("../index.js").PartialBy<{
603
603
  blockHash: `0x${string}` | null;
@@ -648,7 +648,7 @@ export declare const pgn: {
648
648
  input?: `0x${string}`;
649
649
  transactionIndex?: `0x${string}` | null;
650
650
  accessList?: import("../../index.js").AccessList | undefined;
651
- blobVersionedHashes?: `0x${string}`[] | undefined;
651
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
652
652
  chainId?: `0x${string}` | undefined;
653
653
  } & import("../index.js").Omit<import("../index.js").PartialBy<{
654
654
  blockHash: `0x${string}` | null;
@@ -699,7 +699,7 @@ export declare const pgn: {
699
699
  input?: `0x${string}`;
700
700
  transactionIndex?: `0x${string}` | null;
701
701
  accessList?: import("../../index.js").AccessList | undefined;
702
- blobVersionedHashes?: `0x${string}`[] | undefined;
702
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
703
703
  chainId?: `0x${string}` | undefined;
704
704
  } & import("../index.js").Omit<import("../index.js").PartialBy<{
705
705
  blockHash: `0x${string}` | null;
@@ -722,7 +722,7 @@ export declare const pgn: {
722
722
  maxFeePerGas: `0x${string}`;
723
723
  maxPriorityFeePerGas: `0x${string}`;
724
724
  accessList: import("../../index.js").AccessList;
725
- blobVersionedHashes: `0x${string}`[];
725
+ blobVersionedHashes: readonly `0x${string}`[];
726
726
  chainId: `0x${string}`;
727
727
  type: "0x3";
728
728
  }, "yParity">, "typeHex"> & {
@@ -750,7 +750,7 @@ export declare const pgn: {
750
750
  input?: `0x${string}`;
751
751
  transactionIndex?: `0x${string}` | null;
752
752
  accessList?: import("../../index.js").AccessList | undefined;
753
- blobVersionedHashes?: `0x${string}`[] | undefined;
753
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
754
754
  chainId?: `0x${string}` | undefined;
755
755
  } & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
756
756
  isSystemTx?: boolean | undefined;
@@ -994,7 +994,7 @@ export declare const pgn: {
994
994
  maxFeePerGas: bigint;
995
995
  maxPriorityFeePerGas: bigint;
996
996
  accessList: import("../../index.js").AccessList;
997
- blobVersionedHashes: `0x${string}`[];
997
+ blobVersionedHashes: readonly `0x${string}`[];
998
998
  chainId: number;
999
999
  type: "eip4844";
1000
1000
  isSystemTx?: undefined;
@@ -1021,7 +1021,7 @@ export declare const pgn: {
1021
1021
  maxFeePerGas: bigint;
1022
1022
  maxPriorityFeePerGas: bigint;
1023
1023
  accessList: import("../../index.js").AccessList;
1024
- blobVersionedHashes: `0x${string}`[];
1024
+ blobVersionedHashes: readonly `0x${string}`[];
1025
1025
  chainId: number;
1026
1026
  type: "deposit";
1027
1027
  isSystemTx?: boolean;
@@ -546,7 +546,7 @@ export declare const pgnTestnet: {
546
546
  input?: `0x${string}`;
547
547
  transactionIndex?: `0x${string}` | null;
548
548
  accessList?: import("../../index.js").AccessList | undefined;
549
- blobVersionedHashes?: `0x${string}`[] | undefined;
549
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
550
550
  chainId?: `0x${string}` | undefined;
551
551
  } & import("../index.js").Omit<import("../index.js").PartialBy<{
552
552
  r: `0x${string}`;
@@ -597,7 +597,7 @@ export declare const pgnTestnet: {
597
597
  input?: `0x${string}`;
598
598
  transactionIndex?: `0x${string}` | null;
599
599
  accessList?: import("../../index.js").AccessList | undefined;
600
- blobVersionedHashes?: `0x${string}`[] | undefined;
600
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
601
601
  chainId?: `0x${string}` | undefined;
602
602
  } & import("../index.js").Omit<import("../index.js").PartialBy<{
603
603
  blockHash: `0x${string}` | null;
@@ -648,7 +648,7 @@ export declare const pgnTestnet: {
648
648
  input?: `0x${string}`;
649
649
  transactionIndex?: `0x${string}` | null;
650
650
  accessList?: import("../../index.js").AccessList | undefined;
651
- blobVersionedHashes?: `0x${string}`[] | undefined;
651
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
652
652
  chainId?: `0x${string}` | undefined;
653
653
  } & import("../index.js").Omit<import("../index.js").PartialBy<{
654
654
  blockHash: `0x${string}` | null;
@@ -699,7 +699,7 @@ export declare const pgnTestnet: {
699
699
  input?: `0x${string}`;
700
700
  transactionIndex?: `0x${string}` | null;
701
701
  accessList?: import("../../index.js").AccessList | undefined;
702
- blobVersionedHashes?: `0x${string}`[] | undefined;
702
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
703
703
  chainId?: `0x${string}` | undefined;
704
704
  } & import("../index.js").Omit<import("../index.js").PartialBy<{
705
705
  blockHash: `0x${string}` | null;
@@ -722,7 +722,7 @@ export declare const pgnTestnet: {
722
722
  maxFeePerGas: `0x${string}`;
723
723
  maxPriorityFeePerGas: `0x${string}`;
724
724
  accessList: import("../../index.js").AccessList;
725
- blobVersionedHashes: `0x${string}`[];
725
+ blobVersionedHashes: readonly `0x${string}`[];
726
726
  chainId: `0x${string}`;
727
727
  type: "0x3";
728
728
  }, "yParity">, "typeHex"> & {
@@ -750,7 +750,7 @@ export declare const pgnTestnet: {
750
750
  input?: `0x${string}`;
751
751
  transactionIndex?: `0x${string}` | null;
752
752
  accessList?: import("../../index.js").AccessList | undefined;
753
- blobVersionedHashes?: `0x${string}`[] | undefined;
753
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
754
754
  chainId?: `0x${string}` | undefined;
755
755
  } & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
756
756
  isSystemTx?: boolean | undefined;
@@ -994,7 +994,7 @@ export declare const pgnTestnet: {
994
994
  maxFeePerGas: bigint;
995
995
  maxPriorityFeePerGas: bigint;
996
996
  accessList: import("../../index.js").AccessList;
997
- blobVersionedHashes: `0x${string}`[];
997
+ blobVersionedHashes: readonly `0x${string}`[];
998
998
  chainId: number;
999
999
  type: "eip4844";
1000
1000
  isSystemTx?: undefined;
@@ -1021,7 +1021,7 @@ export declare const pgnTestnet: {
1021
1021
  maxFeePerGas: bigint;
1022
1022
  maxPriorityFeePerGas: bigint;
1023
1023
  accessList: import("../../index.js").AccessList;
1024
- blobVersionedHashes: `0x${string}`[];
1024
+ blobVersionedHashes: readonly `0x${string}`[];
1025
1025
  chainId: number;
1026
1026
  type: "deposit";
1027
1027
  isSystemTx?: boolean;
@@ -374,7 +374,7 @@ export declare const playfiAlbireo: {
374
374
  maxFeePerGas: bigint;
375
375
  maxPriorityFeePerGas: bigint;
376
376
  accessList: import("../../index.js").AccessList;
377
- blobVersionedHashes: `0x${string}`[];
377
+ blobVersionedHashes: readonly `0x${string}`[];
378
378
  chainId: number;
379
379
  type: "eip4844";
380
380
  l1BatchNumber: bigint | null;
@@ -400,7 +400,7 @@ export declare const playfiAlbireo: {
400
400
  maxFeePerGas: bigint;
401
401
  maxPriorityFeePerGas: bigint;
402
402
  accessList: import("../../index.js").AccessList;
403
- blobVersionedHashes: `0x${string}`[];
403
+ blobVersionedHashes: readonly `0x${string}`[];
404
404
  chainId: number;
405
405
  type: "priority";
406
406
  l1BatchNumber: bigint | null;
@@ -426,7 +426,7 @@ export declare const playfiAlbireo: {
426
426
  maxFeePerGas: bigint;
427
427
  maxPriorityFeePerGas: bigint;
428
428
  accessList: import("../../index.js").AccessList;
429
- blobVersionedHashes: `0x${string}`[];
429
+ blobVersionedHashes: readonly `0x${string}`[];
430
430
  chainId: number;
431
431
  type: "priority" | "eip712";
432
432
  l1BatchNumber: bigint | null;
@@ -560,7 +560,7 @@ export declare const rss3: {
560
560
  input?: `0x${string}`;
561
561
  transactionIndex?: `0x${string}` | null;
562
562
  accessList?: import("../../index.js").AccessList | undefined;
563
- blobVersionedHashes?: `0x${string}`[] | undefined;
563
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
564
564
  chainId?: `0x${string}` | undefined;
565
565
  } & import("../index.js").Omit<import("../index.js").PartialBy<{
566
566
  r: `0x${string}`;
@@ -611,7 +611,7 @@ export declare const rss3: {
611
611
  input?: `0x${string}`;
612
612
  transactionIndex?: `0x${string}` | null;
613
613
  accessList?: import("../../index.js").AccessList | undefined;
614
- blobVersionedHashes?: `0x${string}`[] | undefined;
614
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
615
615
  chainId?: `0x${string}` | undefined;
616
616
  } & import("../index.js").Omit<import("../index.js").PartialBy<{
617
617
  blockHash: `0x${string}` | null;
@@ -662,7 +662,7 @@ export declare const rss3: {
662
662
  input?: `0x${string}`;
663
663
  transactionIndex?: `0x${string}` | null;
664
664
  accessList?: import("../../index.js").AccessList | undefined;
665
- blobVersionedHashes?: `0x${string}`[] | undefined;
665
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
666
666
  chainId?: `0x${string}` | undefined;
667
667
  } & import("../index.js").Omit<import("../index.js").PartialBy<{
668
668
  blockHash: `0x${string}` | null;
@@ -713,7 +713,7 @@ export declare const rss3: {
713
713
  input?: `0x${string}`;
714
714
  transactionIndex?: `0x${string}` | null;
715
715
  accessList?: import("../../index.js").AccessList | undefined;
716
- blobVersionedHashes?: `0x${string}`[] | undefined;
716
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
717
717
  chainId?: `0x${string}` | undefined;
718
718
  } & import("../index.js").Omit<import("../index.js").PartialBy<{
719
719
  blockHash: `0x${string}` | null;
@@ -736,7 +736,7 @@ export declare const rss3: {
736
736
  maxFeePerGas: `0x${string}`;
737
737
  maxPriorityFeePerGas: `0x${string}`;
738
738
  accessList: import("../../index.js").AccessList;
739
- blobVersionedHashes: `0x${string}`[];
739
+ blobVersionedHashes: readonly `0x${string}`[];
740
740
  chainId: `0x${string}`;
741
741
  type: "0x3";
742
742
  }, "yParity">, "typeHex"> & {
@@ -764,7 +764,7 @@ export declare const rss3: {
764
764
  input?: `0x${string}`;
765
765
  transactionIndex?: `0x${string}` | null;
766
766
  accessList?: import("../../index.js").AccessList | undefined;
767
- blobVersionedHashes?: `0x${string}`[] | undefined;
767
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
768
768
  chainId?: `0x${string}` | undefined;
769
769
  } & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
770
770
  isSystemTx?: boolean | undefined;
@@ -1008,7 +1008,7 @@ export declare const rss3: {
1008
1008
  maxFeePerGas: bigint;
1009
1009
  maxPriorityFeePerGas: bigint;
1010
1010
  accessList: import("../../index.js").AccessList;
1011
- blobVersionedHashes: `0x${string}`[];
1011
+ blobVersionedHashes: readonly `0x${string}`[];
1012
1012
  chainId: number;
1013
1013
  type: "eip4844";
1014
1014
  isSystemTx?: undefined;
@@ -1035,7 +1035,7 @@ export declare const rss3: {
1035
1035
  maxFeePerGas: bigint;
1036
1036
  maxPriorityFeePerGas: bigint;
1037
1037
  accessList: import("../../index.js").AccessList;
1038
- blobVersionedHashes: `0x${string}`[];
1038
+ blobVersionedHashes: readonly `0x${string}`[];
1039
1039
  chainId: number;
1040
1040
  type: "deposit";
1041
1041
  isSystemTx?: boolean;
@@ -560,7 +560,7 @@ export declare const rss3Sepolia: {
560
560
  input?: `0x${string}`;
561
561
  transactionIndex?: `0x${string}` | null;
562
562
  accessList?: import("../../index.js").AccessList | undefined;
563
- blobVersionedHashes?: `0x${string}`[] | undefined;
563
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
564
564
  chainId?: `0x${string}` | undefined;
565
565
  } & import("../index.js").Omit<import("../index.js").PartialBy<{
566
566
  r: `0x${string}`;
@@ -611,7 +611,7 @@ export declare const rss3Sepolia: {
611
611
  input?: `0x${string}`;
612
612
  transactionIndex?: `0x${string}` | null;
613
613
  accessList?: import("../../index.js").AccessList | undefined;
614
- blobVersionedHashes?: `0x${string}`[] | undefined;
614
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
615
615
  chainId?: `0x${string}` | undefined;
616
616
  } & import("../index.js").Omit<import("../index.js").PartialBy<{
617
617
  blockHash: `0x${string}` | null;
@@ -662,7 +662,7 @@ export declare const rss3Sepolia: {
662
662
  input?: `0x${string}`;
663
663
  transactionIndex?: `0x${string}` | null;
664
664
  accessList?: import("../../index.js").AccessList | undefined;
665
- blobVersionedHashes?: `0x${string}`[] | undefined;
665
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
666
666
  chainId?: `0x${string}` | undefined;
667
667
  } & import("../index.js").Omit<import("../index.js").PartialBy<{
668
668
  blockHash: `0x${string}` | null;
@@ -713,7 +713,7 @@ export declare const rss3Sepolia: {
713
713
  input?: `0x${string}`;
714
714
  transactionIndex?: `0x${string}` | null;
715
715
  accessList?: import("../../index.js").AccessList | undefined;
716
- blobVersionedHashes?: `0x${string}`[] | undefined;
716
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
717
717
  chainId?: `0x${string}` | undefined;
718
718
  } & import("../index.js").Omit<import("../index.js").PartialBy<{
719
719
  blockHash: `0x${string}` | null;
@@ -736,7 +736,7 @@ export declare const rss3Sepolia: {
736
736
  maxFeePerGas: `0x${string}`;
737
737
  maxPriorityFeePerGas: `0x${string}`;
738
738
  accessList: import("../../index.js").AccessList;
739
- blobVersionedHashes: `0x${string}`[];
739
+ blobVersionedHashes: readonly `0x${string}`[];
740
740
  chainId: `0x${string}`;
741
741
  type: "0x3";
742
742
  }, "yParity">, "typeHex"> & {
@@ -764,7 +764,7 @@ export declare const rss3Sepolia: {
764
764
  input?: `0x${string}`;
765
765
  transactionIndex?: `0x${string}` | null;
766
766
  accessList?: import("../../index.js").AccessList | undefined;
767
- blobVersionedHashes?: `0x${string}`[] | undefined;
767
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
768
768
  chainId?: `0x${string}` | undefined;
769
769
  } & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
770
770
  isSystemTx?: boolean | undefined;
@@ -1008,7 +1008,7 @@ export declare const rss3Sepolia: {
1008
1008
  maxFeePerGas: bigint;
1009
1009
  maxPriorityFeePerGas: bigint;
1010
1010
  accessList: import("../../index.js").AccessList;
1011
- blobVersionedHashes: `0x${string}`[];
1011
+ blobVersionedHashes: readonly `0x${string}`[];
1012
1012
  chainId: number;
1013
1013
  type: "eip4844";
1014
1014
  isSystemTx?: undefined;
@@ -1035,7 +1035,7 @@ export declare const rss3Sepolia: {
1035
1035
  maxFeePerGas: bigint;
1036
1036
  maxPriorityFeePerGas: bigint;
1037
1037
  accessList: import("../../index.js").AccessList;
1038
- blobVersionedHashes: `0x${string}`[];
1038
+ blobVersionedHashes: readonly `0x${string}`[];
1039
1039
  chainId: number;
1040
1040
  type: "deposit";
1041
1041
  isSystemTx?: boolean;
@@ -375,7 +375,7 @@ export declare const zkSync: {
375
375
  maxFeePerGas: bigint;
376
376
  maxPriorityFeePerGas: bigint;
377
377
  accessList: import("../../index.js").AccessList;
378
- blobVersionedHashes: `0x${string}`[];
378
+ blobVersionedHashes: readonly `0x${string}`[];
379
379
  chainId: number;
380
380
  type: "eip4844";
381
381
  l1BatchNumber: bigint | null;
@@ -401,7 +401,7 @@ export declare const zkSync: {
401
401
  maxFeePerGas: bigint;
402
402
  maxPriorityFeePerGas: bigint;
403
403
  accessList: import("../../index.js").AccessList;
404
- blobVersionedHashes: `0x${string}`[];
404
+ blobVersionedHashes: readonly `0x${string}`[];
405
405
  chainId: number;
406
406
  type: "priority";
407
407
  l1BatchNumber: bigint | null;
@@ -427,7 +427,7 @@ export declare const zkSync: {
427
427
  maxFeePerGas: bigint;
428
428
  maxPriorityFeePerGas: bigint;
429
429
  accessList: import("../../index.js").AccessList;
430
- blobVersionedHashes: `0x${string}`[];
430
+ blobVersionedHashes: readonly `0x${string}`[];
431
431
  chainId: number;
432
432
  type: "priority" | "eip712";
433
433
  l1BatchNumber: bigint | null;
@@ -382,7 +382,7 @@ export declare const zkSyncInMemoryNode: {
382
382
  maxFeePerGas: bigint;
383
383
  maxPriorityFeePerGas: bigint;
384
384
  accessList: import("../../index.js").AccessList;
385
- blobVersionedHashes: `0x${string}`[];
385
+ blobVersionedHashes: readonly `0x${string}`[];
386
386
  chainId: number;
387
387
  type: "eip4844";
388
388
  l1BatchNumber: bigint | null;
@@ -408,7 +408,7 @@ export declare const zkSyncInMemoryNode: {
408
408
  maxFeePerGas: bigint;
409
409
  maxPriorityFeePerGas: bigint;
410
410
  accessList: import("../../index.js").AccessList;
411
- blobVersionedHashes: `0x${string}`[];
411
+ blobVersionedHashes: readonly `0x${string}`[];
412
412
  chainId: number;
413
413
  type: "priority";
414
414
  l1BatchNumber: bigint | null;
@@ -434,7 +434,7 @@ export declare const zkSyncInMemoryNode: {
434
434
  maxFeePerGas: bigint;
435
435
  maxPriorityFeePerGas: bigint;
436
436
  accessList: import("../../index.js").AccessList;
437
- blobVersionedHashes: `0x${string}`[];
437
+ blobVersionedHashes: readonly `0x${string}`[];
438
438
  chainId: number;
439
439
  type: "priority" | "eip712";
440
440
  l1BatchNumber: bigint | null;
@@ -382,7 +382,7 @@ export declare const zkSyncLocalNode: {
382
382
  maxFeePerGas: bigint;
383
383
  maxPriorityFeePerGas: bigint;
384
384
  accessList: import("../../index.js").AccessList;
385
- blobVersionedHashes: `0x${string}`[];
385
+ blobVersionedHashes: readonly `0x${string}`[];
386
386
  chainId: number;
387
387
  type: "eip4844";
388
388
  l1BatchNumber: bigint | null;
@@ -408,7 +408,7 @@ export declare const zkSyncLocalNode: {
408
408
  maxFeePerGas: bigint;
409
409
  maxPriorityFeePerGas: bigint;
410
410
  accessList: import("../../index.js").AccessList;
411
- blobVersionedHashes: `0x${string}`[];
411
+ blobVersionedHashes: readonly `0x${string}`[];
412
412
  chainId: number;
413
413
  type: "priority";
414
414
  l1BatchNumber: bigint | null;
@@ -434,7 +434,7 @@ export declare const zkSyncLocalNode: {
434
434
  maxFeePerGas: bigint;
435
435
  maxPriorityFeePerGas: bigint;
436
436
  accessList: import("../../index.js").AccessList;
437
- blobVersionedHashes: `0x${string}`[];
437
+ blobVersionedHashes: readonly `0x${string}`[];
438
438
  chainId: number;
439
439
  type: "priority" | "eip712";
440
440
  l1BatchNumber: bigint | null;
@@ -374,7 +374,7 @@ export declare const zkSyncSepoliaTestnet: {
374
374
  maxFeePerGas: bigint;
375
375
  maxPriorityFeePerGas: bigint;
376
376
  accessList: import("../../index.js").AccessList;
377
- blobVersionedHashes: `0x${string}`[];
377
+ blobVersionedHashes: readonly `0x${string}`[];
378
378
  chainId: number;
379
379
  type: "eip4844";
380
380
  l1BatchNumber: bigint | null;
@@ -400,7 +400,7 @@ export declare const zkSyncSepoliaTestnet: {
400
400
  maxFeePerGas: bigint;
401
401
  maxPriorityFeePerGas: bigint;
402
402
  accessList: import("../../index.js").AccessList;
403
- blobVersionedHashes: `0x${string}`[];
403
+ blobVersionedHashes: readonly `0x${string}`[];
404
404
  chainId: number;
405
405
  type: "priority";
406
406
  l1BatchNumber: bigint | null;
@@ -426,7 +426,7 @@ export declare const zkSyncSepoliaTestnet: {
426
426
  maxFeePerGas: bigint;
427
427
  maxPriorityFeePerGas: bigint;
428
428
  accessList: import("../../index.js").AccessList;
429
- blobVersionedHashes: `0x${string}`[];
429
+ blobVersionedHashes: readonly `0x${string}`[];
430
430
  chainId: number;
431
431
  type: "priority" | "eip712";
432
432
  l1BatchNumber: bigint | null;
@@ -375,7 +375,7 @@ export declare const zkSyncTestnet: {
375
375
  maxFeePerGas: bigint;
376
376
  maxPriorityFeePerGas: bigint;
377
377
  accessList: import("../../index.js").AccessList;
378
- blobVersionedHashes: `0x${string}`[];
378
+ blobVersionedHashes: readonly `0x${string}`[];
379
379
  chainId: number;
380
380
  type: "eip4844";
381
381
  l1BatchNumber: bigint | null;
@@ -401,7 +401,7 @@ export declare const zkSyncTestnet: {
401
401
  maxFeePerGas: bigint;
402
402
  maxPriorityFeePerGas: bigint;
403
403
  accessList: import("../../index.js").AccessList;
404
- blobVersionedHashes: `0x${string}`[];
404
+ blobVersionedHashes: readonly `0x${string}`[];
405
405
  chainId: number;
406
406
  type: "priority";
407
407
  l1BatchNumber: bigint | null;
@@ -427,7 +427,7 @@ export declare const zkSyncTestnet: {
427
427
  maxFeePerGas: bigint;
428
428
  maxPriorityFeePerGas: bigint;
429
429
  accessList: import("../../index.js").AccessList;
430
- blobVersionedHashes: `0x${string}`[];
430
+ blobVersionedHashes: readonly `0x${string}`[];
431
431
  chainId: number;
432
432
  type: "priority" | "eip712";
433
433
  l1BatchNumber: bigint | null;