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.
- package/CHANGELOG.md +6 -0
- package/_cjs/errors/version.js +1 -1
- package/_esm/errors/version.js +1 -1
- package/_types/celo/chainConfig.d.ts +20 -20
- package/_types/celo/formatters.d.ts +10 -10
- package/_types/chains/definitions/ancient8.d.ts +8 -8
- package/_types/chains/definitions/ancient8Sepolia.d.ts +8 -8
- package/_types/chains/definitions/base.d.ts +8 -8
- package/_types/chains/definitions/baseGoerli.d.ts +8 -8
- package/_types/chains/definitions/baseSepolia.d.ts +8 -8
- package/_types/chains/definitions/celo.d.ts +20 -20
- package/_types/chains/definitions/celoAlfajores.d.ts +20 -20
- package/_types/chains/definitions/fraxtal.d.ts +8 -8
- package/_types/chains/definitions/fraxtalTestnet.d.ts +8 -8
- package/_types/chains/definitions/liskSepolia.d.ts +8 -8
- package/_types/chains/definitions/optimism.d.ts +8 -8
- package/_types/chains/definitions/optimismGoerli.d.ts +8 -8
- package/_types/chains/definitions/optimismSepolia.d.ts +8 -8
- package/_types/chains/definitions/pgn.d.ts +8 -8
- package/_types/chains/definitions/pgnTestnet.d.ts +8 -8
- package/_types/chains/definitions/playfiAlbireo.d.ts +3 -3
- package/_types/chains/definitions/rss3.d.ts +8 -8
- package/_types/chains/definitions/rss3Sepolia.d.ts +8 -8
- package/_types/chains/definitions/zkSync.d.ts +3 -3
- package/_types/chains/definitions/zkSyncInMemoryNode.d.ts +3 -3
- package/_types/chains/definitions/zkSyncLocalNode.d.ts +3 -3
- package/_types/chains/definitions/zkSyncSepoliaTestnet.d.ts +3 -3
- package/_types/chains/definitions/zkSyncTestnet.d.ts +3 -3
- package/_types/chains/definitions/zora.d.ts +8 -8
- package/_types/chains/definitions/zoraSepolia.d.ts +8 -8
- package/_types/chains/definitions/zoraTestnet.d.ts +8 -8
- package/_types/errors/version.d.ts +1 -1
- package/_types/op-stack/chainConfig.d.ts +8 -8
- package/_types/op-stack/formatters.d.ts +8 -8
- package/_types/types/eip1193.d.ts +9 -7
- package/_types/types/eip1193.d.ts.map +1 -1
- package/_types/types/transaction.d.ts +1 -1
- package/_types/types/transaction.d.ts.map +1 -1
- package/_types/utils/formatters/transaction.d.ts +4 -4
- package/_types/zksync/chainConfig.d.ts +3 -3
- package/_types/zksync/formatters.d.ts +3 -3
- package/errors/version.ts +1 -1
- package/package.json +1 -1
- package/types/eip1193.ts +13 -8
- package/types/transaction.ts +1 -1
@@ -620,7 +620,7 @@ export declare const celo: {
|
|
620
620
|
input?: `0x${string}`;
|
621
621
|
transactionIndex?: `0x${string}` | null;
|
622
622
|
accessList?: import("../../index.js").AccessList | undefined;
|
623
|
-
blobVersionedHashes?: `0x${string}`[] | undefined;
|
623
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
624
624
|
chainId?: `0x${string}` | undefined;
|
625
625
|
} & import("../index.js").Omit<import("../index.js").PartialBy<{
|
626
626
|
r: `0x${string}`;
|
@@ -671,7 +671,7 @@ export declare const celo: {
|
|
671
671
|
input?: `0x${string}`;
|
672
672
|
transactionIndex?: `0x${string}` | null;
|
673
673
|
accessList?: import("../../index.js").AccessList | undefined;
|
674
|
-
blobVersionedHashes?: `0x${string}`[] | undefined;
|
674
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
675
675
|
chainId?: `0x${string}` | undefined;
|
676
676
|
} & import("../index.js").Omit<import("../index.js").PartialBy<{
|
677
677
|
blockHash: `0x${string}` | null;
|
@@ -722,7 +722,7 @@ export declare const celo: {
|
|
722
722
|
input?: `0x${string}`;
|
723
723
|
transactionIndex?: `0x${string}` | null;
|
724
724
|
accessList?: import("../../index.js").AccessList | undefined;
|
725
|
-
blobVersionedHashes?: `0x${string}`[] | undefined;
|
725
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
726
726
|
chainId?: `0x${string}` | undefined;
|
727
727
|
} & import("../index.js").Omit<import("../index.js").PartialBy<{
|
728
728
|
blockHash: `0x${string}` | null;
|
@@ -773,7 +773,7 @@ export declare const celo: {
|
|
773
773
|
input?: `0x${string}`;
|
774
774
|
transactionIndex?: `0x${string}` | null;
|
775
775
|
accessList?: import("../../index.js").AccessList | undefined;
|
776
|
-
blobVersionedHashes?: `0x${string}`[] | undefined;
|
776
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
777
777
|
chainId?: `0x${string}` | undefined;
|
778
778
|
} & import("../index.js").Omit<import("../index.js").PartialBy<{
|
779
779
|
blockHash: `0x${string}` | null;
|
@@ -796,7 +796,7 @@ export declare const celo: {
|
|
796
796
|
maxFeePerGas: `0x${string}`;
|
797
797
|
maxPriorityFeePerGas: `0x${string}`;
|
798
798
|
accessList: import("../../index.js").AccessList;
|
799
|
-
blobVersionedHashes: `0x${string}`[];
|
799
|
+
blobVersionedHashes: readonly `0x${string}`[];
|
800
800
|
chainId: `0x${string}`;
|
801
801
|
type: "0x3";
|
802
802
|
}, "yParity">, "typeHex"> & {
|
@@ -824,7 +824,7 @@ export declare const celo: {
|
|
824
824
|
input?: `0x${string}`;
|
825
825
|
transactionIndex?: `0x${string}` | null;
|
826
826
|
accessList?: import("../../index.js").AccessList | undefined;
|
827
|
-
blobVersionedHashes?: `0x${string}`[] | undefined;
|
827
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
828
828
|
chainId?: `0x${string}` | undefined;
|
829
829
|
} & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
830
830
|
feeCurrency: `0x${string}` | null;
|
@@ -852,7 +852,7 @@ export declare const celo: {
|
|
852
852
|
input?: `0x${string}`;
|
853
853
|
transactionIndex?: `0x${string}` | null;
|
854
854
|
accessList?: import("../../index.js").AccessList | undefined;
|
855
|
-
blobVersionedHashes?: `0x${string}`[] | undefined;
|
855
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
856
856
|
chainId?: `0x${string}` | undefined;
|
857
857
|
} & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
858
858
|
feeCurrency: `0x${string}` | null;
|
@@ -1177,7 +1177,7 @@ export declare const celo: {
|
|
1177
1177
|
maxFeePerGas: bigint;
|
1178
1178
|
maxPriorityFeePerGas: bigint;
|
1179
1179
|
accessList: import("../../index.js").AccessList;
|
1180
|
-
blobVersionedHashes: `0x${string}`[];
|
1180
|
+
blobVersionedHashes: readonly `0x${string}`[];
|
1181
1181
|
chainId: number;
|
1182
1182
|
type: "eip4844";
|
1183
1183
|
feeCurrency: `0x${string}` | null;
|
@@ -1204,7 +1204,7 @@ export declare const celo: {
|
|
1204
1204
|
maxFeePerGas: bigint;
|
1205
1205
|
maxPriorityFeePerGas: bigint;
|
1206
1206
|
accessList: import("../../index.js").AccessList;
|
1207
|
-
blobVersionedHashes: `0x${string}`[];
|
1207
|
+
blobVersionedHashes: readonly `0x${string}`[];
|
1208
1208
|
chainId: number;
|
1209
1209
|
type: "cip42";
|
1210
1210
|
feeCurrency: `0x${string}` | null;
|
@@ -1231,7 +1231,7 @@ export declare const celo: {
|
|
1231
1231
|
maxFeePerGas: bigint;
|
1232
1232
|
maxPriorityFeePerGas: bigint;
|
1233
1233
|
accessList: import("../../index.js").AccessList;
|
1234
|
-
blobVersionedHashes: `0x${string}`[];
|
1234
|
+
blobVersionedHashes: readonly `0x${string}`[];
|
1235
1235
|
chainId: number;
|
1236
1236
|
type: "cip64";
|
1237
1237
|
feeCurrency: `0x${string}` | null;
|
@@ -2880,7 +2880,7 @@ export declare const celo: {
|
|
2880
2880
|
input?: `0x${string}`;
|
2881
2881
|
transactionIndex?: `0x${string}` | null;
|
2882
2882
|
accessList?: import("../../index.js").AccessList | undefined;
|
2883
|
-
blobVersionedHashes?: `0x${string}`[] | undefined;
|
2883
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
2884
2884
|
chainId?: `0x${string}` | undefined;
|
2885
2885
|
} & import("../index.js").Omit<import("../index.js").PartialBy<{
|
2886
2886
|
r: `0x${string}`;
|
@@ -2931,7 +2931,7 @@ export declare const celo: {
|
|
2931
2931
|
input?: `0x${string}`;
|
2932
2932
|
transactionIndex?: `0x${string}` | null;
|
2933
2933
|
accessList?: import("../../index.js").AccessList | undefined;
|
2934
|
-
blobVersionedHashes?: `0x${string}`[] | undefined;
|
2934
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
2935
2935
|
chainId?: `0x${string}` | undefined;
|
2936
2936
|
} & import("../index.js").Omit<import("../index.js").PartialBy<{
|
2937
2937
|
blockHash: `0x${string}` | null;
|
@@ -2982,7 +2982,7 @@ export declare const celo: {
|
|
2982
2982
|
input?: `0x${string}`;
|
2983
2983
|
transactionIndex?: `0x${string}` | null;
|
2984
2984
|
accessList?: import("../../index.js").AccessList | undefined;
|
2985
|
-
blobVersionedHashes?: `0x${string}`[] | undefined;
|
2985
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
2986
2986
|
chainId?: `0x${string}` | undefined;
|
2987
2987
|
} & import("../index.js").Omit<import("../index.js").PartialBy<{
|
2988
2988
|
blockHash: `0x${string}` | null;
|
@@ -3033,7 +3033,7 @@ export declare const celo: {
|
|
3033
3033
|
input?: `0x${string}`;
|
3034
3034
|
transactionIndex?: `0x${string}` | null;
|
3035
3035
|
accessList?: import("../../index.js").AccessList | undefined;
|
3036
|
-
blobVersionedHashes?: `0x${string}`[] | undefined;
|
3036
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
3037
3037
|
chainId?: `0x${string}` | undefined;
|
3038
3038
|
} & import("../index.js").Omit<import("../index.js").PartialBy<{
|
3039
3039
|
blockHash: `0x${string}` | null;
|
@@ -3056,7 +3056,7 @@ export declare const celo: {
|
|
3056
3056
|
maxFeePerGas: `0x${string}`;
|
3057
3057
|
maxPriorityFeePerGas: `0x${string}`;
|
3058
3058
|
accessList: import("../../index.js").AccessList;
|
3059
|
-
blobVersionedHashes: `0x${string}`[];
|
3059
|
+
blobVersionedHashes: readonly `0x${string}`[];
|
3060
3060
|
chainId: `0x${string}`;
|
3061
3061
|
type: "0x3";
|
3062
3062
|
}, "yParity">, "typeHex"> & {
|
@@ -3084,7 +3084,7 @@ export declare const celo: {
|
|
3084
3084
|
input?: `0x${string}`;
|
3085
3085
|
transactionIndex?: `0x${string}` | null;
|
3086
3086
|
accessList?: import("../../index.js").AccessList | undefined;
|
3087
|
-
blobVersionedHashes?: `0x${string}`[] | undefined;
|
3087
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
3088
3088
|
chainId?: `0x${string}` | undefined;
|
3089
3089
|
} & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
3090
3090
|
feeCurrency: `0x${string}` | null;
|
@@ -3112,7 +3112,7 @@ export declare const celo: {
|
|
3112
3112
|
input?: `0x${string}`;
|
3113
3113
|
transactionIndex?: `0x${string}` | null;
|
3114
3114
|
accessList?: import("../../index.js").AccessList | undefined;
|
3115
|
-
blobVersionedHashes?: `0x${string}`[] | undefined;
|
3115
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
3116
3116
|
chainId?: `0x${string}` | undefined;
|
3117
3117
|
} & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
3118
3118
|
feeCurrency: `0x${string}` | null;
|
@@ -3437,7 +3437,7 @@ export declare const celo: {
|
|
3437
3437
|
maxFeePerGas: bigint;
|
3438
3438
|
maxPriorityFeePerGas: bigint;
|
3439
3439
|
accessList: import("../../index.js").AccessList;
|
3440
|
-
blobVersionedHashes: `0x${string}`[];
|
3440
|
+
blobVersionedHashes: readonly `0x${string}`[];
|
3441
3441
|
chainId: number;
|
3442
3442
|
type: "eip4844";
|
3443
3443
|
feeCurrency: `0x${string}` | null;
|
@@ -3464,7 +3464,7 @@ export declare const celo: {
|
|
3464
3464
|
maxFeePerGas: bigint;
|
3465
3465
|
maxPriorityFeePerGas: bigint;
|
3466
3466
|
accessList: import("../../index.js").AccessList;
|
3467
|
-
blobVersionedHashes: `0x${string}`[];
|
3467
|
+
blobVersionedHashes: readonly `0x${string}`[];
|
3468
3468
|
chainId: number;
|
3469
3469
|
type: "cip42";
|
3470
3470
|
feeCurrency: `0x${string}` | null;
|
@@ -3491,7 +3491,7 @@ export declare const celo: {
|
|
3491
3491
|
maxFeePerGas: bigint;
|
3492
3492
|
maxPriorityFeePerGas: bigint;
|
3493
3493
|
accessList: import("../../index.js").AccessList;
|
3494
|
-
blobVersionedHashes: `0x${string}`[];
|
3494
|
+
blobVersionedHashes: readonly `0x${string}`[];
|
3495
3495
|
chainId: number;
|
3496
3496
|
type: "cip64";
|
3497
3497
|
feeCurrency: `0x${string}` | null;
|
@@ -620,7 +620,7 @@ export declare const celoAlfajores: {
|
|
620
620
|
input?: `0x${string}`;
|
621
621
|
transactionIndex?: `0x${string}` | null;
|
622
622
|
accessList?: import("../../index.js").AccessList | undefined;
|
623
|
-
blobVersionedHashes?: `0x${string}`[] | undefined;
|
623
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
624
624
|
chainId?: `0x${string}` | undefined;
|
625
625
|
} & import("../index.js").Omit<import("../index.js").PartialBy<{
|
626
626
|
r: `0x${string}`;
|
@@ -671,7 +671,7 @@ export declare const celoAlfajores: {
|
|
671
671
|
input?: `0x${string}`;
|
672
672
|
transactionIndex?: `0x${string}` | null;
|
673
673
|
accessList?: import("../../index.js").AccessList | undefined;
|
674
|
-
blobVersionedHashes?: `0x${string}`[] | undefined;
|
674
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
675
675
|
chainId?: `0x${string}` | undefined;
|
676
676
|
} & import("../index.js").Omit<import("../index.js").PartialBy<{
|
677
677
|
blockHash: `0x${string}` | null;
|
@@ -722,7 +722,7 @@ export declare const celoAlfajores: {
|
|
722
722
|
input?: `0x${string}`;
|
723
723
|
transactionIndex?: `0x${string}` | null;
|
724
724
|
accessList?: import("../../index.js").AccessList | undefined;
|
725
|
-
blobVersionedHashes?: `0x${string}`[] | undefined;
|
725
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
726
726
|
chainId?: `0x${string}` | undefined;
|
727
727
|
} & import("../index.js").Omit<import("../index.js").PartialBy<{
|
728
728
|
blockHash: `0x${string}` | null;
|
@@ -773,7 +773,7 @@ export declare const celoAlfajores: {
|
|
773
773
|
input?: `0x${string}`;
|
774
774
|
transactionIndex?: `0x${string}` | null;
|
775
775
|
accessList?: import("../../index.js").AccessList | undefined;
|
776
|
-
blobVersionedHashes?: `0x${string}`[] | undefined;
|
776
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
777
777
|
chainId?: `0x${string}` | undefined;
|
778
778
|
} & import("../index.js").Omit<import("../index.js").PartialBy<{
|
779
779
|
blockHash: `0x${string}` | null;
|
@@ -796,7 +796,7 @@ export declare const celoAlfajores: {
|
|
796
796
|
maxFeePerGas: `0x${string}`;
|
797
797
|
maxPriorityFeePerGas: `0x${string}`;
|
798
798
|
accessList: import("../../index.js").AccessList;
|
799
|
-
blobVersionedHashes: `0x${string}`[];
|
799
|
+
blobVersionedHashes: readonly `0x${string}`[];
|
800
800
|
chainId: `0x${string}`;
|
801
801
|
type: "0x3";
|
802
802
|
}, "yParity">, "typeHex"> & {
|
@@ -824,7 +824,7 @@ export declare const celoAlfajores: {
|
|
824
824
|
input?: `0x${string}`;
|
825
825
|
transactionIndex?: `0x${string}` | null;
|
826
826
|
accessList?: import("../../index.js").AccessList | undefined;
|
827
|
-
blobVersionedHashes?: `0x${string}`[] | undefined;
|
827
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
828
828
|
chainId?: `0x${string}` | undefined;
|
829
829
|
} & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
830
830
|
feeCurrency: `0x${string}` | null;
|
@@ -852,7 +852,7 @@ export declare const celoAlfajores: {
|
|
852
852
|
input?: `0x${string}`;
|
853
853
|
transactionIndex?: `0x${string}` | null;
|
854
854
|
accessList?: import("../../index.js").AccessList | undefined;
|
855
|
-
blobVersionedHashes?: `0x${string}`[] | undefined;
|
855
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
856
856
|
chainId?: `0x${string}` | undefined;
|
857
857
|
} & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
858
858
|
feeCurrency: `0x${string}` | null;
|
@@ -1177,7 +1177,7 @@ export declare const celoAlfajores: {
|
|
1177
1177
|
maxFeePerGas: bigint;
|
1178
1178
|
maxPriorityFeePerGas: bigint;
|
1179
1179
|
accessList: import("../../index.js").AccessList;
|
1180
|
-
blobVersionedHashes: `0x${string}`[];
|
1180
|
+
blobVersionedHashes: readonly `0x${string}`[];
|
1181
1181
|
chainId: number;
|
1182
1182
|
type: "eip4844";
|
1183
1183
|
feeCurrency: `0x${string}` | null;
|
@@ -1204,7 +1204,7 @@ export declare const celoAlfajores: {
|
|
1204
1204
|
maxFeePerGas: bigint;
|
1205
1205
|
maxPriorityFeePerGas: bigint;
|
1206
1206
|
accessList: import("../../index.js").AccessList;
|
1207
|
-
blobVersionedHashes: `0x${string}`[];
|
1207
|
+
blobVersionedHashes: readonly `0x${string}`[];
|
1208
1208
|
chainId: number;
|
1209
1209
|
type: "cip42";
|
1210
1210
|
feeCurrency: `0x${string}` | null;
|
@@ -1231,7 +1231,7 @@ export declare const celoAlfajores: {
|
|
1231
1231
|
maxFeePerGas: bigint;
|
1232
1232
|
maxPriorityFeePerGas: bigint;
|
1233
1233
|
accessList: import("../../index.js").AccessList;
|
1234
|
-
blobVersionedHashes: `0x${string}`[];
|
1234
|
+
blobVersionedHashes: readonly `0x${string}`[];
|
1235
1235
|
chainId: number;
|
1236
1236
|
type: "cip64";
|
1237
1237
|
feeCurrency: `0x${string}` | null;
|
@@ -2880,7 +2880,7 @@ export declare const celoAlfajores: {
|
|
2880
2880
|
input?: `0x${string}`;
|
2881
2881
|
transactionIndex?: `0x${string}` | null;
|
2882
2882
|
accessList?: import("../../index.js").AccessList | undefined;
|
2883
|
-
blobVersionedHashes?: `0x${string}`[] | undefined;
|
2883
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
2884
2884
|
chainId?: `0x${string}` | undefined;
|
2885
2885
|
} & import("../index.js").Omit<import("../index.js").PartialBy<{
|
2886
2886
|
r: `0x${string}`;
|
@@ -2931,7 +2931,7 @@ export declare const celoAlfajores: {
|
|
2931
2931
|
input?: `0x${string}`;
|
2932
2932
|
transactionIndex?: `0x${string}` | null;
|
2933
2933
|
accessList?: import("../../index.js").AccessList | undefined;
|
2934
|
-
blobVersionedHashes?: `0x${string}`[] | undefined;
|
2934
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
2935
2935
|
chainId?: `0x${string}` | undefined;
|
2936
2936
|
} & import("../index.js").Omit<import("../index.js").PartialBy<{
|
2937
2937
|
blockHash: `0x${string}` | null;
|
@@ -2982,7 +2982,7 @@ export declare const celoAlfajores: {
|
|
2982
2982
|
input?: `0x${string}`;
|
2983
2983
|
transactionIndex?: `0x${string}` | null;
|
2984
2984
|
accessList?: import("../../index.js").AccessList | undefined;
|
2985
|
-
blobVersionedHashes?: `0x${string}`[] | undefined;
|
2985
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
2986
2986
|
chainId?: `0x${string}` | undefined;
|
2987
2987
|
} & import("../index.js").Omit<import("../index.js").PartialBy<{
|
2988
2988
|
blockHash: `0x${string}` | null;
|
@@ -3033,7 +3033,7 @@ export declare const celoAlfajores: {
|
|
3033
3033
|
input?: `0x${string}`;
|
3034
3034
|
transactionIndex?: `0x${string}` | null;
|
3035
3035
|
accessList?: import("../../index.js").AccessList | undefined;
|
3036
|
-
blobVersionedHashes?: `0x${string}`[] | undefined;
|
3036
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
3037
3037
|
chainId?: `0x${string}` | undefined;
|
3038
3038
|
} & import("../index.js").Omit<import("../index.js").PartialBy<{
|
3039
3039
|
blockHash: `0x${string}` | null;
|
@@ -3056,7 +3056,7 @@ export declare const celoAlfajores: {
|
|
3056
3056
|
maxFeePerGas: `0x${string}`;
|
3057
3057
|
maxPriorityFeePerGas: `0x${string}`;
|
3058
3058
|
accessList: import("../../index.js").AccessList;
|
3059
|
-
blobVersionedHashes: `0x${string}`[];
|
3059
|
+
blobVersionedHashes: readonly `0x${string}`[];
|
3060
3060
|
chainId: `0x${string}`;
|
3061
3061
|
type: "0x3";
|
3062
3062
|
}, "yParity">, "typeHex"> & {
|
@@ -3084,7 +3084,7 @@ export declare const celoAlfajores: {
|
|
3084
3084
|
input?: `0x${string}`;
|
3085
3085
|
transactionIndex?: `0x${string}` | null;
|
3086
3086
|
accessList?: import("../../index.js").AccessList | undefined;
|
3087
|
-
blobVersionedHashes?: `0x${string}`[] | undefined;
|
3087
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
3088
3088
|
chainId?: `0x${string}` | undefined;
|
3089
3089
|
} & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
3090
3090
|
feeCurrency: `0x${string}` | null;
|
@@ -3112,7 +3112,7 @@ export declare const celoAlfajores: {
|
|
3112
3112
|
input?: `0x${string}`;
|
3113
3113
|
transactionIndex?: `0x${string}` | null;
|
3114
3114
|
accessList?: import("../../index.js").AccessList | undefined;
|
3115
|
-
blobVersionedHashes?: `0x${string}`[] | undefined;
|
3115
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
3116
3116
|
chainId?: `0x${string}` | undefined;
|
3117
3117
|
} & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
3118
3118
|
feeCurrency: `0x${string}` | null;
|
@@ -3437,7 +3437,7 @@ export declare const celoAlfajores: {
|
|
3437
3437
|
maxFeePerGas: bigint;
|
3438
3438
|
maxPriorityFeePerGas: bigint;
|
3439
3439
|
accessList: import("../../index.js").AccessList;
|
3440
|
-
blobVersionedHashes: `0x${string}`[];
|
3440
|
+
blobVersionedHashes: readonly `0x${string}`[];
|
3441
3441
|
chainId: number;
|
3442
3442
|
type: "eip4844";
|
3443
3443
|
feeCurrency: `0x${string}` | null;
|
@@ -3464,7 +3464,7 @@ export declare const celoAlfajores: {
|
|
3464
3464
|
maxFeePerGas: bigint;
|
3465
3465
|
maxPriorityFeePerGas: bigint;
|
3466
3466
|
accessList: import("../../index.js").AccessList;
|
3467
|
-
blobVersionedHashes: `0x${string}`[];
|
3467
|
+
blobVersionedHashes: readonly `0x${string}`[];
|
3468
3468
|
chainId: number;
|
3469
3469
|
type: "cip42";
|
3470
3470
|
feeCurrency: `0x${string}` | null;
|
@@ -3491,7 +3491,7 @@ export declare const celoAlfajores: {
|
|
3491
3491
|
maxFeePerGas: bigint;
|
3492
3492
|
maxPriorityFeePerGas: bigint;
|
3493
3493
|
accessList: import("../../index.js").AccessList;
|
3494
|
-
blobVersionedHashes: `0x${string}`[];
|
3494
|
+
blobVersionedHashes: readonly `0x${string}`[];
|
3495
3495
|
chainId: number;
|
3496
3496
|
type: "cip64";
|
3497
3497
|
feeCurrency: `0x${string}` | null;
|
@@ -560,7 +560,7 @@ export declare const fraxtal: {
|
|
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 fraxtal: {
|
|
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 fraxtal: {
|
|
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 fraxtal: {
|
|
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 fraxtal: {
|
|
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 fraxtal: {
|
|
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 fraxtal: {
|
|
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 fraxtal: {
|
|
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 fraxtalTestnet: {
|
|
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 fraxtalTestnet: {
|
|
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 fraxtalTestnet: {
|
|
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 fraxtalTestnet: {
|
|
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 fraxtalTestnet: {
|
|
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 fraxtalTestnet: {
|
|
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 fraxtalTestnet: {
|
|
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 fraxtalTestnet: {
|
|
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;
|
@@ -558,7 +558,7 @@ export declare const liskSepolia: {
|
|
558
558
|
input?: `0x${string}`;
|
559
559
|
transactionIndex?: `0x${string}` | null;
|
560
560
|
accessList?: import("../../index.js").AccessList | undefined;
|
561
|
-
blobVersionedHashes?: `0x${string}`[] | undefined;
|
561
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
562
562
|
chainId?: `0x${string}` | undefined;
|
563
563
|
} & import("../index.js").Omit<import("../index.js").PartialBy<{
|
564
564
|
r: `0x${string}`;
|
@@ -609,7 +609,7 @@ export declare const liskSepolia: {
|
|
609
609
|
input?: `0x${string}`;
|
610
610
|
transactionIndex?: `0x${string}` | null;
|
611
611
|
accessList?: import("../../index.js").AccessList | undefined;
|
612
|
-
blobVersionedHashes?: `0x${string}`[] | undefined;
|
612
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
613
613
|
chainId?: `0x${string}` | undefined;
|
614
614
|
} & import("../index.js").Omit<import("../index.js").PartialBy<{
|
615
615
|
blockHash: `0x${string}` | null;
|
@@ -660,7 +660,7 @@ export declare const liskSepolia: {
|
|
660
660
|
input?: `0x${string}`;
|
661
661
|
transactionIndex?: `0x${string}` | null;
|
662
662
|
accessList?: import("../../index.js").AccessList | undefined;
|
663
|
-
blobVersionedHashes?: `0x${string}`[] | undefined;
|
663
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
664
664
|
chainId?: `0x${string}` | undefined;
|
665
665
|
} & import("../index.js").Omit<import("../index.js").PartialBy<{
|
666
666
|
blockHash: `0x${string}` | null;
|
@@ -711,7 +711,7 @@ export declare const liskSepolia: {
|
|
711
711
|
input?: `0x${string}`;
|
712
712
|
transactionIndex?: `0x${string}` | null;
|
713
713
|
accessList?: import("../../index.js").AccessList | undefined;
|
714
|
-
blobVersionedHashes?: `0x${string}`[] | undefined;
|
714
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
715
715
|
chainId?: `0x${string}` | undefined;
|
716
716
|
} & import("../index.js").Omit<import("../index.js").PartialBy<{
|
717
717
|
blockHash: `0x${string}` | null;
|
@@ -734,7 +734,7 @@ export declare const liskSepolia: {
|
|
734
734
|
maxFeePerGas: `0x${string}`;
|
735
735
|
maxPriorityFeePerGas: `0x${string}`;
|
736
736
|
accessList: import("../../index.js").AccessList;
|
737
|
-
blobVersionedHashes: `0x${string}`[];
|
737
|
+
blobVersionedHashes: readonly `0x${string}`[];
|
738
738
|
chainId: `0x${string}`;
|
739
739
|
type: "0x3";
|
740
740
|
}, "yParity">, "typeHex"> & {
|
@@ -762,7 +762,7 @@ export declare const liskSepolia: {
|
|
762
762
|
input?: `0x${string}`;
|
763
763
|
transactionIndex?: `0x${string}` | null;
|
764
764
|
accessList?: import("../../index.js").AccessList | undefined;
|
765
|
-
blobVersionedHashes?: `0x${string}`[] | undefined;
|
765
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
766
766
|
chainId?: `0x${string}` | undefined;
|
767
767
|
} & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
768
768
|
isSystemTx?: boolean | undefined;
|
@@ -1006,7 +1006,7 @@ export declare const liskSepolia: {
|
|
1006
1006
|
maxFeePerGas: bigint;
|
1007
1007
|
maxPriorityFeePerGas: bigint;
|
1008
1008
|
accessList: import("../../index.js").AccessList;
|
1009
|
-
blobVersionedHashes: `0x${string}`[];
|
1009
|
+
blobVersionedHashes: readonly `0x${string}`[];
|
1010
1010
|
chainId: number;
|
1011
1011
|
type: "eip4844";
|
1012
1012
|
isSystemTx?: undefined;
|
@@ -1033,7 +1033,7 @@ export declare const liskSepolia: {
|
|
1033
1033
|
maxFeePerGas: bigint;
|
1034
1034
|
maxPriorityFeePerGas: bigint;
|
1035
1035
|
accessList: import("../../index.js").AccessList;
|
1036
|
-
blobVersionedHashes: `0x${string}`[];
|
1036
|
+
blobVersionedHashes: readonly `0x${string}`[];
|
1037
1037
|
chainId: number;
|
1038
1038
|
type: "deposit";
|
1039
1039
|
isSystemTx?: boolean;
|
@@ -559,7 +559,7 @@ export declare const optimism: {
|
|
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 optimism: {
|
|
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 optimism: {
|
|
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 optimism: {
|
|
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 optimism: {
|
|
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 optimism: {
|
|
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 optimism: {
|
|
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 optimism: {
|
|
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;
|