viem 0.0.0-main.20240130T224622 → 0.0.0-main.20240130T235251

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 (88) hide show
  1. package/_cjs/actions/public/getTransaction.js.map +1 -1
  2. package/_cjs/errors/version.js +1 -1
  3. package/_cjs/index.js.map +1 -1
  4. package/_cjs/utils/formatters/transaction.js +9 -0
  5. package/_cjs/utils/formatters/transaction.js.map +1 -1
  6. package/_cjs/utils/formatters/transactionReceipt.js +6 -1
  7. package/_cjs/utils/formatters/transactionReceipt.js.map +1 -1
  8. package/_cjs/utils/formatters/transactionRequest.js +1 -0
  9. package/_cjs/utils/formatters/transactionRequest.js.map +1 -1
  10. package/_esm/actions/public/getTransaction.js.map +1 -1
  11. package/_esm/errors/version.js +1 -1
  12. package/_esm/index.js.map +1 -1
  13. package/_esm/utils/formatters/transaction.js +9 -0
  14. package/_esm/utils/formatters/transaction.js.map +1 -1
  15. package/_esm/utils/formatters/transactionReceipt.js +6 -1
  16. package/_esm/utils/formatters/transactionReceipt.js.map +1 -1
  17. package/_esm/utils/formatters/transactionRequest.js +1 -0
  18. package/_esm/utils/formatters/transactionRequest.js.map +1 -1
  19. package/_types/actions/public/getTransaction.d.ts +2 -1
  20. package/_types/actions/public/getTransaction.d.ts.map +1 -1
  21. package/_types/chains/celo/chainConfig.d.ts +373 -65
  22. package/_types/chains/celo/chainConfig.d.ts.map +1 -1
  23. package/_types/chains/celo/formatters.d.ts +373 -65
  24. package/_types/chains/celo/formatters.d.ts.map +1 -1
  25. package/_types/chains/definitions/base.d.ts +277 -49
  26. package/_types/chains/definitions/base.d.ts.map +1 -1
  27. package/_types/chains/definitions/baseGoerli.d.ts +277 -49
  28. package/_types/chains/definitions/baseGoerli.d.ts.map +1 -1
  29. package/_types/chains/definitions/baseSepolia.d.ts +277 -49
  30. package/_types/chains/definitions/baseSepolia.d.ts.map +1 -1
  31. package/_types/chains/definitions/celo.d.ts +373 -65
  32. package/_types/chains/definitions/celo.d.ts.map +1 -1
  33. package/_types/chains/definitions/celoAlfajores.d.ts +373 -65
  34. package/_types/chains/definitions/celoAlfajores.d.ts.map +1 -1
  35. package/_types/chains/definitions/optimism.d.ts +277 -49
  36. package/_types/chains/definitions/optimism.d.ts.map +1 -1
  37. package/_types/chains/definitions/optimismGoerli.d.ts +277 -49
  38. package/_types/chains/definitions/optimismGoerli.d.ts.map +1 -1
  39. package/_types/chains/definitions/optimismSepolia.d.ts +277 -49
  40. package/_types/chains/definitions/optimismSepolia.d.ts.map +1 -1
  41. package/_types/chains/definitions/pgn.d.ts +277 -49
  42. package/_types/chains/definitions/pgn.d.ts.map +1 -1
  43. package/_types/chains/definitions/pgnTestnet.d.ts +277 -49
  44. package/_types/chains/definitions/pgnTestnet.d.ts.map +1 -1
  45. package/_types/chains/definitions/zkSync.d.ts +120 -6
  46. package/_types/chains/definitions/zkSync.d.ts.map +1 -1
  47. package/_types/chains/definitions/zkSyncSepoliaTestnet.d.ts +120 -6
  48. package/_types/chains/definitions/zkSyncSepoliaTestnet.d.ts.map +1 -1
  49. package/_types/chains/definitions/zkSyncTestnet.d.ts +120 -6
  50. package/_types/chains/definitions/zkSyncTestnet.d.ts.map +1 -1
  51. package/_types/chains/definitions/zora.d.ts +277 -49
  52. package/_types/chains/definitions/zora.d.ts.map +1 -1
  53. package/_types/chains/definitions/zoraSepolia.d.ts +277 -49
  54. package/_types/chains/definitions/zoraSepolia.d.ts.map +1 -1
  55. package/_types/chains/definitions/zoraTestnet.d.ts +277 -49
  56. package/_types/chains/definitions/zoraTestnet.d.ts.map +1 -1
  57. package/_types/chains/opStack/chainConfig.d.ts +277 -49
  58. package/_types/chains/opStack/chainConfig.d.ts.map +1 -1
  59. package/_types/chains/opStack/formatters.d.ts +277 -49
  60. package/_types/chains/opStack/formatters.d.ts.map +1 -1
  61. package/_types/chains/zksync/chainConfig.d.ts +120 -6
  62. package/_types/chains/zksync/chainConfig.d.ts.map +1 -1
  63. package/_types/chains/zksync/formatters.d.ts +120 -6
  64. package/_types/chains/zksync/formatters.d.ts.map +1 -1
  65. package/_types/errors/version.d.ts +1 -1
  66. package/_types/index.d.ts +2 -2
  67. package/_types/index.d.ts.map +1 -1
  68. package/_types/types/fee.d.ts +9 -2
  69. package/_types/types/fee.d.ts.map +1 -1
  70. package/_types/types/rpc.d.ts +2 -2
  71. package/_types/types/rpc.d.ts.map +1 -1
  72. package/_types/types/transaction.d.ts +20 -5
  73. package/_types/types/transaction.d.ts.map +1 -1
  74. package/_types/utils/formatters/transaction.d.ts +387 -2
  75. package/_types/utils/formatters/transaction.d.ts.map +1 -1
  76. package/_types/utils/formatters/transactionReceipt.d.ts.map +1 -1
  77. package/_types/utils/formatters/transactionRequest.d.ts +2 -1
  78. package/_types/utils/formatters/transactionRequest.d.ts.map +1 -1
  79. package/actions/public/getTransaction.ts +2 -1
  80. package/errors/version.ts +1 -1
  81. package/index.ts +2 -0
  82. package/package.json +1 -1
  83. package/types/fee.ts +14 -1
  84. package/types/rpc.ts +3 -1
  85. package/types/transaction.ts +37 -6
  86. package/utils/formatters/transaction.ts +9 -0
  87. package/utils/formatters/transactionReceipt.ts +8 -1
  88. package/utils/formatters/transactionRequest.ts +1 -0
@@ -46,11 +46,17 @@ export declare const formatters: {
46
46
  readonly transaction: {
47
47
  exclude: [] | undefined;
48
48
  format: (args: ({
49
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b" | undefined;
50
+ gas?: `0x${string}` | undefined;
51
+ value?: `0x${string}` | undefined;
52
+ gasPrice?: `0x${string}` | undefined;
53
+ maxFeePerBlobGas?: `0x${string}` | undefined;
54
+ maxFeePerGas?: `0x${string}` | undefined;
55
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
49
56
  yParity?: `0x${string}` | undefined;
50
57
  blockHash?: `0x${string}` | null | undefined;
51
58
  blockNumber?: `0x${string}` | null | undefined;
52
59
  from?: `0x${string}` | undefined;
53
- gas?: `0x${string}` | undefined;
54
60
  hash?: `0x${string}` | undefined;
55
61
  input?: `0x${string}` | undefined;
56
62
  nonce?: `0x${string}` | undefined;
@@ -59,23 +65,25 @@ export declare const formatters: {
59
65
  to?: `0x${string}` | null | undefined;
60
66
  transactionIndex?: `0x${string}` | null | undefined;
61
67
  v?: `0x${string}` | undefined;
62
- value?: `0x${string}` | undefined;
63
- type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
64
- gasPrice?: `0x${string}` | undefined;
65
- maxFeePerGas?: `0x${string}` | undefined;
66
- maxPriorityFeePerGas?: `0x${string}` | undefined;
67
68
  accessList?: undefined;
69
+ blobVersionedHashes?: undefined;
68
70
  chainId?: `0x${string}` | undefined;
69
71
  } & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "yParity">, "typeHex"> & {
70
72
  feeCurrency: `0x${string}` | null;
71
73
  gatewayFee: `0x${string}` | null;
72
74
  gatewayFeeRecipient: `0x${string}` | null;
73
75
  }) | ({
76
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b" | undefined;
77
+ gas?: `0x${string}` | undefined;
78
+ value?: `0x${string}` | undefined;
79
+ gasPrice?: `0x${string}` | undefined;
80
+ maxFeePerBlobGas?: `0x${string}` | undefined;
81
+ maxFeePerGas?: `0x${string}` | undefined;
82
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
74
83
  yParity?: `0x${string}` | undefined;
75
84
  blockHash?: `0x${string}` | null | undefined;
76
85
  blockNumber?: `0x${string}` | null | undefined;
77
86
  from?: `0x${string}` | undefined;
78
- gas?: `0x${string}` | undefined;
79
87
  hash?: `0x${string}` | undefined;
80
88
  input?: `0x${string}` | undefined;
81
89
  nonce?: `0x${string}` | undefined;
@@ -84,12 +92,8 @@ export declare const formatters: {
84
92
  to?: `0x${string}` | null | undefined;
85
93
  transactionIndex?: `0x${string}` | null | undefined;
86
94
  v?: `0x${string}` | undefined;
87
- value?: `0x${string}` | undefined;
88
- type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
89
- gasPrice?: `0x${string}` | undefined;
90
- maxFeePerGas?: `0x${string}` | undefined;
91
- maxPriorityFeePerGas?: `0x${string}` | undefined;
92
95
  accessList?: undefined;
96
+ blobVersionedHashes?: undefined;
93
97
  chainId?: `0x${string}` | undefined;
94
98
  } & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
95
99
  feeCurrency: `0x${string}` | null;
@@ -97,11 +101,17 @@ export declare const formatters: {
97
101
  gatewayFeeRecipient: `0x${string}` | null;
98
102
  type: "0x7c";
99
103
  }) | ({
104
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b" | undefined;
105
+ gas?: `0x${string}` | undefined;
106
+ value?: `0x${string}` | undefined;
107
+ gasPrice?: `0x${string}` | undefined;
108
+ maxFeePerBlobGas?: `0x${string}` | undefined;
109
+ maxFeePerGas?: `0x${string}` | undefined;
110
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
100
111
  yParity?: `0x${string}` | undefined;
101
112
  blockHash?: `0x${string}` | null | undefined;
102
113
  blockNumber?: `0x${string}` | null | undefined;
103
114
  from?: `0x${string}` | undefined;
104
- gas?: `0x${string}` | undefined;
105
115
  hash?: `0x${string}` | undefined;
106
116
  input?: `0x${string}` | undefined;
107
117
  nonce?: `0x${string}` | undefined;
@@ -110,12 +120,8 @@ export declare const formatters: {
110
120
  to?: `0x${string}` | null | undefined;
111
121
  transactionIndex?: `0x${string}` | null | undefined;
112
122
  v?: `0x${string}` | undefined;
113
- value?: `0x${string}` | undefined;
114
- type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
115
- gasPrice?: `0x${string}` | undefined;
116
- maxFeePerGas?: `0x${string}` | undefined;
117
- maxPriorityFeePerGas?: `0x${string}` | undefined;
118
123
  accessList?: undefined;
124
+ blobVersionedHashes?: undefined;
119
125
  chainId?: `0x${string}` | undefined;
120
126
  } & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
121
127
  feeCurrency: `0x${string}` | null;
@@ -123,11 +129,17 @@ export declare const formatters: {
123
129
  gatewayFeeRecipient?: undefined;
124
130
  type: "0x7b";
125
131
  }) | ({
132
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b" | undefined;
133
+ gas?: `0x${string}` | undefined;
134
+ value?: `0x${string}` | undefined;
135
+ gasPrice?: `0x${string}` | undefined;
136
+ maxFeePerBlobGas?: `0x${string}` | undefined;
137
+ maxFeePerGas?: `0x${string}` | undefined;
138
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
126
139
  yParity?: `0x${string}` | undefined;
127
140
  blockHash?: `0x${string}` | null | undefined;
128
141
  blockNumber?: `0x${string}` | null | undefined;
129
142
  from?: `0x${string}` | undefined;
130
- gas?: `0x${string}` | undefined;
131
143
  hash?: `0x${string}` | undefined;
132
144
  input?: `0x${string}` | undefined;
133
145
  nonce?: `0x${string}` | undefined;
@@ -136,23 +148,52 @@ export declare const formatters: {
136
148
  to?: `0x${string}` | null | undefined;
137
149
  transactionIndex?: `0x${string}` | null | undefined;
138
150
  v?: `0x${string}` | undefined;
151
+ accessList?: import("../../index.js").AccessList | undefined;
152
+ blobVersionedHashes?: undefined;
153
+ chainId?: `0x${string}` | undefined;
154
+ } & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "yParity">, "typeHex"> & {
155
+ feeCurrency: `0x${string}` | null;
156
+ gatewayFee: `0x${string}` | null;
157
+ gatewayFeeRecipient: `0x${string}` | null;
158
+ }) | ({
159
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b" | undefined;
160
+ gas?: `0x${string}` | undefined;
139
161
  value?: `0x${string}` | undefined;
140
- type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
141
162
  gasPrice?: `0x${string}` | undefined;
163
+ maxFeePerBlobGas?: `0x${string}` | undefined;
142
164
  maxFeePerGas?: `0x${string}` | undefined;
143
165
  maxPriorityFeePerGas?: `0x${string}` | undefined;
166
+ yParity?: `0x${string}` | undefined;
167
+ blockHash?: `0x${string}` | null | undefined;
168
+ blockNumber?: `0x${string}` | null | undefined;
169
+ from?: `0x${string}` | undefined;
170
+ hash?: `0x${string}` | undefined;
171
+ input?: `0x${string}` | undefined;
172
+ nonce?: `0x${string}` | undefined;
173
+ r?: `0x${string}` | undefined;
174
+ s?: `0x${string}` | undefined;
175
+ to?: `0x${string}` | null | undefined;
176
+ transactionIndex?: `0x${string}` | null | undefined;
177
+ v?: `0x${string}` | undefined;
144
178
  accessList?: import("../../index.js").AccessList | undefined;
179
+ blobVersionedHashes?: undefined;
145
180
  chainId?: `0x${string}` | undefined;
146
- } & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "yParity">, "typeHex"> & {
181
+ } & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "yParity">, "typeHex"> & {
147
182
  feeCurrency: `0x${string}` | null;
148
183
  gatewayFee: `0x${string}` | null;
149
184
  gatewayFeeRecipient: `0x${string}` | null;
150
185
  }) | ({
186
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b" | undefined;
187
+ gas?: `0x${string}` | undefined;
188
+ value?: `0x${string}` | undefined;
189
+ gasPrice?: `0x${string}` | undefined;
190
+ maxFeePerBlobGas?: `0x${string}` | undefined;
191
+ maxFeePerGas?: `0x${string}` | undefined;
192
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
151
193
  yParity?: `0x${string}` | undefined;
152
194
  blockHash?: `0x${string}` | null | undefined;
153
195
  blockNumber?: `0x${string}` | null | undefined;
154
196
  from?: `0x${string}` | undefined;
155
- gas?: `0x${string}` | undefined;
156
197
  hash?: `0x${string}` | undefined;
157
198
  input?: `0x${string}` | undefined;
158
199
  nonce?: `0x${string}` | undefined;
@@ -161,23 +202,53 @@ export declare const formatters: {
161
202
  to?: `0x${string}` | null | undefined;
162
203
  transactionIndex?: `0x${string}` | null | undefined;
163
204
  v?: `0x${string}` | undefined;
205
+ accessList?: import("../../index.js").AccessList | undefined;
206
+ blobVersionedHashes?: undefined;
207
+ chainId?: `0x${string}` | undefined;
208
+ } & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "yParity">, "typeHex"> & {
209
+ feeCurrency: `0x${string}` | null;
210
+ gatewayFee: `0x${string}` | null;
211
+ gatewayFeeRecipient: `0x${string}` | null;
212
+ }) | ({
213
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b" | undefined;
214
+ gas?: `0x${string}` | undefined;
164
215
  value?: `0x${string}` | undefined;
165
- type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
166
216
  gasPrice?: `0x${string}` | undefined;
217
+ maxFeePerBlobGas?: `0x${string}` | undefined;
167
218
  maxFeePerGas?: `0x${string}` | undefined;
168
219
  maxPriorityFeePerGas?: `0x${string}` | undefined;
220
+ yParity?: `0x${string}` | undefined;
221
+ blockHash?: `0x${string}` | null | undefined;
222
+ blockNumber?: `0x${string}` | null | undefined;
223
+ from?: `0x${string}` | undefined;
224
+ hash?: `0x${string}` | undefined;
225
+ input?: `0x${string}` | undefined;
226
+ nonce?: `0x${string}` | undefined;
227
+ r?: `0x${string}` | undefined;
228
+ s?: `0x${string}` | undefined;
229
+ to?: `0x${string}` | null | undefined;
230
+ transactionIndex?: `0x${string}` | null | undefined;
231
+ v?: `0x${string}` | undefined;
169
232
  accessList?: import("../../index.js").AccessList | undefined;
233
+ blobVersionedHashes?: undefined;
170
234
  chainId?: `0x${string}` | undefined;
171
- } & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "yParity">, "typeHex"> & {
235
+ } & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
172
236
  feeCurrency: `0x${string}` | null;
173
237
  gatewayFee: `0x${string}` | null;
174
238
  gatewayFeeRecipient: `0x${string}` | null;
239
+ type: "0x7c";
175
240
  }) | ({
241
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b" | undefined;
242
+ gas?: `0x${string}` | undefined;
243
+ value?: `0x${string}` | undefined;
244
+ gasPrice?: `0x${string}` | undefined;
245
+ maxFeePerBlobGas?: `0x${string}` | undefined;
246
+ maxFeePerGas?: `0x${string}` | undefined;
247
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
176
248
  yParity?: `0x${string}` | undefined;
177
249
  blockHash?: `0x${string}` | null | undefined;
178
250
  blockNumber?: `0x${string}` | null | undefined;
179
251
  from?: `0x${string}` | undefined;
180
- gas?: `0x${string}` | undefined;
181
252
  hash?: `0x${string}` | undefined;
182
253
  input?: `0x${string}` | undefined;
183
254
  nonce?: `0x${string}` | undefined;
@@ -186,23 +257,53 @@ export declare const formatters: {
186
257
  to?: `0x${string}` | null | undefined;
187
258
  transactionIndex?: `0x${string}` | null | undefined;
188
259
  v?: `0x${string}` | undefined;
260
+ accessList?: import("../../index.js").AccessList | undefined;
261
+ blobVersionedHashes?: undefined;
262
+ chainId?: `0x${string}` | undefined;
263
+ } & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
264
+ feeCurrency: `0x${string}` | null;
265
+ gatewayFee?: undefined;
266
+ gatewayFeeRecipient?: undefined;
267
+ type: "0x7b";
268
+ }) | ({
269
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b" | undefined;
270
+ gas?: `0x${string}` | undefined;
189
271
  value?: `0x${string}` | undefined;
190
- type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
191
272
  gasPrice?: `0x${string}` | undefined;
273
+ maxFeePerBlobGas?: `0x${string}` | undefined;
192
274
  maxFeePerGas?: `0x${string}` | undefined;
193
275
  maxPriorityFeePerGas?: `0x${string}` | undefined;
276
+ yParity?: `0x${string}` | undefined;
277
+ blockHash?: `0x${string}` | null | undefined;
278
+ blockNumber?: `0x${string}` | null | undefined;
279
+ from?: `0x${string}` | undefined;
280
+ hash?: `0x${string}` | undefined;
281
+ input?: `0x${string}` | undefined;
282
+ nonce?: `0x${string}` | undefined;
283
+ r?: `0x${string}` | undefined;
284
+ s?: `0x${string}` | undefined;
285
+ to?: `0x${string}` | null | undefined;
286
+ transactionIndex?: `0x${string}` | null | undefined;
287
+ v?: `0x${string}` | undefined;
194
288
  accessList?: import("../../index.js").AccessList | undefined;
289
+ blobVersionedHashes?: undefined;
195
290
  chainId?: `0x${string}` | undefined;
196
- } & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "yParity">, "typeHex"> & {
291
+ } & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "yParity">, "typeHex"> & {
197
292
  feeCurrency: `0x${string}` | null;
198
293
  gatewayFee: `0x${string}` | null;
199
294
  gatewayFeeRecipient: `0x${string}` | null;
200
295
  }) | ({
296
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b" | undefined;
297
+ gas?: `0x${string}` | undefined;
298
+ value?: `0x${string}` | undefined;
299
+ gasPrice?: `0x${string}` | undefined;
300
+ maxFeePerBlobGas?: `0x${string}` | undefined;
301
+ maxFeePerGas?: `0x${string}` | undefined;
302
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
201
303
  yParity?: `0x${string}` | undefined;
202
304
  blockHash?: `0x${string}` | null | undefined;
203
305
  blockNumber?: `0x${string}` | null | undefined;
204
306
  from?: `0x${string}` | undefined;
205
- gas?: `0x${string}` | undefined;
206
307
  hash?: `0x${string}` | undefined;
207
308
  input?: `0x${string}` | undefined;
208
309
  nonce?: `0x${string}` | undefined;
@@ -211,24 +312,52 @@ export declare const formatters: {
211
312
  to?: `0x${string}` | null | undefined;
212
313
  transactionIndex?: `0x${string}` | null | undefined;
213
314
  v?: `0x${string}` | undefined;
315
+ accessList?: import("../../index.js").AccessList | undefined;
316
+ blobVersionedHashes?: undefined;
317
+ chainId?: `0x${string}` | undefined;
318
+ } & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "yParity">, "typeHex"> & {
319
+ feeCurrency: `0x${string}` | null;
320
+ gatewayFee: `0x${string}` | null;
321
+ gatewayFeeRecipient: `0x${string}` | null;
322
+ }) | ({
323
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b" | undefined;
324
+ gas?: `0x${string}` | undefined;
214
325
  value?: `0x${string}` | undefined;
215
- type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
216
326
  gasPrice?: `0x${string}` | undefined;
327
+ maxFeePerBlobGas?: `0x${string}` | undefined;
217
328
  maxFeePerGas?: `0x${string}` | undefined;
218
329
  maxPriorityFeePerGas?: `0x${string}` | undefined;
330
+ yParity?: `0x${string}` | undefined;
331
+ blockHash?: `0x${string}` | null | undefined;
332
+ blockNumber?: `0x${string}` | null | undefined;
333
+ from?: `0x${string}` | undefined;
334
+ hash?: `0x${string}` | undefined;
335
+ input?: `0x${string}` | undefined;
336
+ nonce?: `0x${string}` | undefined;
337
+ r?: `0x${string}` | undefined;
338
+ s?: `0x${string}` | undefined;
339
+ to?: `0x${string}` | null | undefined;
340
+ transactionIndex?: `0x${string}` | null | undefined;
341
+ v?: `0x${string}` | undefined;
219
342
  accessList?: import("../../index.js").AccessList | undefined;
343
+ blobVersionedHashes?: undefined;
220
344
  chainId?: `0x${string}` | undefined;
221
- } & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
345
+ } & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "yParity">, "typeHex"> & {
222
346
  feeCurrency: `0x${string}` | null;
223
347
  gatewayFee: `0x${string}` | null;
224
348
  gatewayFeeRecipient: `0x${string}` | null;
225
- type: "0x7c";
226
349
  }) | ({
350
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b" | undefined;
351
+ gas?: `0x${string}` | undefined;
352
+ value?: `0x${string}` | undefined;
353
+ gasPrice?: `0x${string}` | undefined;
354
+ maxFeePerBlobGas?: `0x${string}` | undefined;
355
+ maxFeePerGas?: `0x${string}` | undefined;
356
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
227
357
  yParity?: `0x${string}` | undefined;
228
358
  blockHash?: `0x${string}` | null | undefined;
229
359
  blockNumber?: `0x${string}` | null | undefined;
230
360
  from?: `0x${string}` | undefined;
231
- gas?: `0x${string}` | undefined;
232
361
  hash?: `0x${string}` | undefined;
233
362
  input?: `0x${string}` | undefined;
234
363
  nonce?: `0x${string}` | undefined;
@@ -237,12 +366,36 @@ export declare const formatters: {
237
366
  to?: `0x${string}` | null | undefined;
238
367
  transactionIndex?: `0x${string}` | null | undefined;
239
368
  v?: `0x${string}` | undefined;
369
+ accessList?: import("../../index.js").AccessList | undefined;
370
+ blobVersionedHashes?: undefined;
371
+ chainId?: `0x${string}` | undefined;
372
+ } & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
373
+ feeCurrency: `0x${string}` | null;
374
+ gatewayFee: `0x${string}` | null;
375
+ gatewayFeeRecipient: `0x${string}` | null;
376
+ type: "0x7c";
377
+ }) | ({
378
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b" | undefined;
379
+ gas?: `0x${string}` | undefined;
240
380
  value?: `0x${string}` | undefined;
241
- type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
242
381
  gasPrice?: `0x${string}` | undefined;
382
+ maxFeePerBlobGas?: `0x${string}` | undefined;
243
383
  maxFeePerGas?: `0x${string}` | undefined;
244
384
  maxPriorityFeePerGas?: `0x${string}` | undefined;
385
+ yParity?: `0x${string}` | undefined;
386
+ blockHash?: `0x${string}` | null | undefined;
387
+ blockNumber?: `0x${string}` | null | undefined;
388
+ from?: `0x${string}` | undefined;
389
+ hash?: `0x${string}` | undefined;
390
+ input?: `0x${string}` | undefined;
391
+ nonce?: `0x${string}` | undefined;
392
+ r?: `0x${string}` | undefined;
393
+ s?: `0x${string}` | undefined;
394
+ to?: `0x${string}` | null | undefined;
395
+ transactionIndex?: `0x${string}` | null | undefined;
396
+ v?: `0x${string}` | undefined;
245
397
  accessList?: import("../../index.js").AccessList | undefined;
398
+ blobVersionedHashes?: undefined;
246
399
  chainId?: `0x${string}` | undefined;
247
400
  } & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
248
401
  feeCurrency: `0x${string}` | null;
@@ -250,11 +403,17 @@ export declare const formatters: {
250
403
  gatewayFeeRecipient?: undefined;
251
404
  type: "0x7b";
252
405
  }) | ({
406
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b" | undefined;
407
+ gas?: `0x${string}` | undefined;
408
+ value?: `0x${string}` | undefined;
409
+ gasPrice?: `0x${string}` | undefined;
410
+ maxFeePerBlobGas?: `0x${string}` | undefined;
411
+ maxFeePerGas?: `0x${string}` | undefined;
412
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
253
413
  yParity?: `0x${string}` | undefined;
254
414
  blockHash?: `0x${string}` | null | undefined;
255
415
  blockNumber?: `0x${string}` | null | undefined;
256
416
  from?: `0x${string}` | undefined;
257
- gas?: `0x${string}` | undefined;
258
417
  hash?: `0x${string}` | undefined;
259
418
  input?: `0x${string}` | undefined;
260
419
  nonce?: `0x${string}` | undefined;
@@ -263,23 +422,25 @@ export declare const formatters: {
263
422
  to?: `0x${string}` | null | undefined;
264
423
  transactionIndex?: `0x${string}` | null | undefined;
265
424
  v?: `0x${string}` | undefined;
266
- value?: `0x${string}` | undefined;
267
- type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
268
- gasPrice?: `0x${string}` | undefined;
269
- maxFeePerGas?: `0x${string}` | undefined;
270
- maxPriorityFeePerGas?: `0x${string}` | undefined;
271
425
  accessList?: import("../../index.js").AccessList | undefined;
426
+ blobVersionedHashes?: `0x${string}`[] | undefined;
272
427
  chainId?: `0x${string}` | undefined;
273
428
  } & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "yParity">, "typeHex"> & {
274
429
  feeCurrency: `0x${string}` | null;
275
430
  gatewayFee: `0x${string}` | null;
276
431
  gatewayFeeRecipient: `0x${string}` | null;
277
432
  }) | ({
433
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b" | undefined;
434
+ gas?: `0x${string}` | undefined;
435
+ value?: `0x${string}` | undefined;
436
+ gasPrice?: `0x${string}` | undefined;
437
+ maxFeePerBlobGas?: `0x${string}` | undefined;
438
+ maxFeePerGas?: `0x${string}` | undefined;
439
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
278
440
  yParity?: `0x${string}` | undefined;
279
441
  blockHash?: `0x${string}` | null | undefined;
280
442
  blockNumber?: `0x${string}` | null | undefined;
281
443
  from?: `0x${string}` | undefined;
282
- gas?: `0x${string}` | undefined;
283
444
  hash?: `0x${string}` | undefined;
284
445
  input?: `0x${string}` | undefined;
285
446
  nonce?: `0x${string}` | undefined;
@@ -288,23 +449,25 @@ export declare const formatters: {
288
449
  to?: `0x${string}` | null | undefined;
289
450
  transactionIndex?: `0x${string}` | null | undefined;
290
451
  v?: `0x${string}` | undefined;
291
- value?: `0x${string}` | undefined;
292
- type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
293
- gasPrice?: `0x${string}` | undefined;
294
- maxFeePerGas?: `0x${string}` | undefined;
295
- maxPriorityFeePerGas?: `0x${string}` | undefined;
296
452
  accessList?: import("../../index.js").AccessList | undefined;
453
+ blobVersionedHashes?: `0x${string}`[] | undefined;
297
454
  chainId?: `0x${string}` | undefined;
298
455
  } & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "yParity">, "typeHex"> & {
299
456
  feeCurrency: `0x${string}` | null;
300
457
  gatewayFee: `0x${string}` | null;
301
458
  gatewayFeeRecipient: `0x${string}` | null;
302
459
  }) | ({
460
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b" | undefined;
461
+ gas?: `0x${string}` | undefined;
462
+ value?: `0x${string}` | undefined;
463
+ gasPrice?: `0x${string}` | undefined;
464
+ maxFeePerBlobGas?: `0x${string}` | undefined;
465
+ maxFeePerGas?: `0x${string}` | undefined;
466
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
303
467
  yParity?: `0x${string}` | undefined;
304
468
  blockHash?: `0x${string}` | null | undefined;
305
469
  blockNumber?: `0x${string}` | null | undefined;
306
470
  from?: `0x${string}` | undefined;
307
- gas?: `0x${string}` | undefined;
308
471
  hash?: `0x${string}` | undefined;
309
472
  input?: `0x${string}` | undefined;
310
473
  nonce?: `0x${string}` | undefined;
@@ -313,23 +476,25 @@ export declare const formatters: {
313
476
  to?: `0x${string}` | null | undefined;
314
477
  transactionIndex?: `0x${string}` | null | undefined;
315
478
  v?: `0x${string}` | undefined;
316
- value?: `0x${string}` | undefined;
317
- type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
318
- gasPrice?: `0x${string}` | undefined;
319
- maxFeePerGas?: `0x${string}` | undefined;
320
- maxPriorityFeePerGas?: `0x${string}` | undefined;
321
479
  accessList?: import("../../index.js").AccessList | undefined;
480
+ blobVersionedHashes?: `0x${string}`[] | undefined;
322
481
  chainId?: `0x${string}` | undefined;
323
482
  } & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "yParity">, "typeHex"> & {
324
483
  feeCurrency: `0x${string}` | null;
325
484
  gatewayFee: `0x${string}` | null;
326
485
  gatewayFeeRecipient: `0x${string}` | null;
327
486
  }) | ({
487
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b" | undefined;
488
+ gas?: `0x${string}` | undefined;
489
+ value?: `0x${string}` | undefined;
490
+ gasPrice?: `0x${string}` | undefined;
491
+ maxFeePerBlobGas?: `0x${string}` | undefined;
492
+ maxFeePerGas?: `0x${string}` | undefined;
493
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
328
494
  yParity?: `0x${string}` | undefined;
329
495
  blockHash?: `0x${string}` | null | undefined;
330
496
  blockNumber?: `0x${string}` | null | undefined;
331
497
  from?: `0x${string}` | undefined;
332
- gas?: `0x${string}` | undefined;
333
498
  hash?: `0x${string}` | undefined;
334
499
  input?: `0x${string}` | undefined;
335
500
  nonce?: `0x${string}` | undefined;
@@ -338,12 +503,35 @@ export declare const formatters: {
338
503
  to?: `0x${string}` | null | undefined;
339
504
  transactionIndex?: `0x${string}` | null | undefined;
340
505
  v?: `0x${string}` | undefined;
506
+ accessList?: import("../../index.js").AccessList | undefined;
507
+ blobVersionedHashes?: `0x${string}`[] | undefined;
508
+ chainId?: `0x${string}` | undefined;
509
+ } & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP4844<`0x${string}`, `0x${string}`, boolean, "0x3">, "yParity">, "typeHex"> & {
510
+ feeCurrency: `0x${string}` | null;
511
+ gatewayFee: `0x${string}` | null;
512
+ gatewayFeeRecipient: `0x${string}` | null;
513
+ }) | ({
514
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b" | undefined;
515
+ gas?: `0x${string}` | undefined;
341
516
  value?: `0x${string}` | undefined;
342
- type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
343
517
  gasPrice?: `0x${string}` | undefined;
518
+ maxFeePerBlobGas?: `0x${string}` | undefined;
344
519
  maxFeePerGas?: `0x${string}` | undefined;
345
520
  maxPriorityFeePerGas?: `0x${string}` | undefined;
521
+ yParity?: `0x${string}` | undefined;
522
+ blockHash?: `0x${string}` | null | undefined;
523
+ blockNumber?: `0x${string}` | null | undefined;
524
+ from?: `0x${string}` | undefined;
525
+ hash?: `0x${string}` | undefined;
526
+ input?: `0x${string}` | undefined;
527
+ nonce?: `0x${string}` | undefined;
528
+ r?: `0x${string}` | undefined;
529
+ s?: `0x${string}` | undefined;
530
+ to?: `0x${string}` | null | undefined;
531
+ transactionIndex?: `0x${string}` | null | undefined;
532
+ v?: `0x${string}` | undefined;
346
533
  accessList?: import("../../index.js").AccessList | undefined;
534
+ blobVersionedHashes?: `0x${string}`[] | undefined;
347
535
  chainId?: `0x${string}` | undefined;
348
536
  } & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
349
537
  feeCurrency: `0x${string}` | null;
@@ -351,11 +539,17 @@ export declare const formatters: {
351
539
  gatewayFeeRecipient: `0x${string}` | null;
352
540
  type: "0x7c";
353
541
  }) | ({
542
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b" | undefined;
543
+ gas?: `0x${string}` | undefined;
544
+ value?: `0x${string}` | undefined;
545
+ gasPrice?: `0x${string}` | undefined;
546
+ maxFeePerBlobGas?: `0x${string}` | undefined;
547
+ maxFeePerGas?: `0x${string}` | undefined;
548
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
354
549
  yParity?: `0x${string}` | undefined;
355
550
  blockHash?: `0x${string}` | null | undefined;
356
551
  blockNumber?: `0x${string}` | null | undefined;
357
552
  from?: `0x${string}` | undefined;
358
- gas?: `0x${string}` | undefined;
359
553
  hash?: `0x${string}` | undefined;
360
554
  input?: `0x${string}` | undefined;
361
555
  nonce?: `0x${string}` | undefined;
@@ -364,12 +558,8 @@ export declare const formatters: {
364
558
  to?: `0x${string}` | null | undefined;
365
559
  transactionIndex?: `0x${string}` | null | undefined;
366
560
  v?: `0x${string}` | undefined;
367
- value?: `0x${string}` | undefined;
368
- type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
369
- gasPrice?: `0x${string}` | undefined;
370
- maxFeePerGas?: `0x${string}` | undefined;
371
- maxPriorityFeePerGas?: `0x${string}` | undefined;
372
561
  accessList?: import("../../index.js").AccessList | undefined;
562
+ blobVersionedHashes?: `0x${string}`[] | undefined;
373
563
  chainId?: `0x${string}` | undefined;
374
564
  } & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
375
565
  feeCurrency: `0x${string}` | null;
@@ -377,10 +567,11 @@ export declare const formatters: {
377
567
  gatewayFeeRecipient?: undefined;
378
568
  type: "0x7b";
379
569
  })) => ({
570
+ gas: bigint;
571
+ value: bigint;
380
572
  blockHash: `0x${string}` | null;
381
573
  blockNumber: bigint | null;
382
574
  from: `0x${string}`;
383
- gas: bigint;
384
575
  hash: `0x${string}`;
385
576
  input: `0x${string}`;
386
577
  nonce: number;
@@ -390,11 +581,12 @@ export declare const formatters: {
390
581
  transactionIndex: number | null;
391
582
  typeHex: `0x${string}` | null;
392
583
  v: bigint;
393
- value: bigint;
394
584
  gasPrice: bigint;
585
+ maxFeePerBlobGas?: undefined;
395
586
  maxFeePerGas?: undefined;
396
587
  maxPriorityFeePerGas?: undefined;
397
588
  accessList?: undefined;
589
+ blobVersionedHashes?: undefined;
398
590
  chainId?: number | undefined;
399
591
  yParity?: undefined;
400
592
  type: "legacy";
@@ -402,10 +594,11 @@ export declare const formatters: {
402
594
  gatewayFee: bigint | null;
403
595
  gatewayFeeRecipient: `0x${string}` | null;
404
596
  } | {
597
+ gas: bigint;
598
+ value: bigint;
405
599
  blockHash: `0x${string}` | null;
406
600
  blockNumber: bigint | null;
407
601
  from: `0x${string}`;
408
- gas: bigint;
409
602
  hash: `0x${string}`;
410
603
  input: `0x${string}`;
411
604
  nonce: number;
@@ -415,11 +608,12 @@ export declare const formatters: {
415
608
  transactionIndex: number | null;
416
609
  typeHex: `0x${string}` | null;
417
610
  v: bigint;
418
- value: bigint;
419
611
  gasPrice: undefined;
612
+ maxFeePerBlobGas?: undefined;
420
613
  maxFeePerGas: bigint;
421
614
  maxPriorityFeePerGas: bigint;
422
615
  accessList?: undefined;
616
+ blobVersionedHashes?: undefined;
423
617
  chainId?: number | undefined;
424
618
  yParity: number;
425
619
  type: "cip42";
@@ -427,10 +621,11 @@ export declare const formatters: {
427
621
  gatewayFee: bigint | null;
428
622
  gatewayFeeRecipient: `0x${string}` | null;
429
623
  } | {
624
+ gas: bigint;
625
+ value: bigint;
430
626
  blockHash: `0x${string}` | null;
431
627
  blockNumber: bigint | null;
432
628
  from: `0x${string}`;
433
- gas: bigint;
434
629
  hash: `0x${string}`;
435
630
  input: `0x${string}`;
436
631
  nonce: number;
@@ -440,11 +635,12 @@ export declare const formatters: {
440
635
  transactionIndex: number | null;
441
636
  typeHex: `0x${string}` | null;
442
637
  v: bigint;
443
- value: bigint;
444
638
  gasPrice: undefined;
639
+ maxFeePerBlobGas?: undefined;
445
640
  maxFeePerGas: bigint;
446
641
  maxPriorityFeePerGas: bigint;
447
642
  accessList?: undefined;
643
+ blobVersionedHashes?: undefined;
448
644
  chainId?: number | undefined;
449
645
  yParity: number;
450
646
  type: "cip64";
@@ -468,9 +664,11 @@ export declare const formatters: {
468
664
  value: bigint;
469
665
  yParity: number;
470
666
  gasPrice: bigint;
667
+ maxFeePerBlobGas?: undefined;
471
668
  maxFeePerGas?: undefined;
472
669
  maxPriorityFeePerGas?: undefined;
473
670
  accessList: import("../../index.js").AccessList;
671
+ blobVersionedHashes?: undefined;
474
672
  chainId: number;
475
673
  type: "eip2930";
476
674
  feeCurrency: `0x${string}` | null;
@@ -493,9 +691,11 @@ export declare const formatters: {
493
691
  value: bigint;
494
692
  yParity: number;
495
693
  gasPrice: undefined;
694
+ maxFeePerBlobGas?: undefined;
496
695
  maxFeePerGas: bigint;
497
696
  maxPriorityFeePerGas: bigint;
498
697
  accessList: import("../../index.js").AccessList;
698
+ blobVersionedHashes?: undefined;
499
699
  chainId: number;
500
700
  type: "eip1559";
501
701
  feeCurrency: `0x${string}` | null;
@@ -518,9 +718,11 @@ export declare const formatters: {
518
718
  value: bigint;
519
719
  yParity: number;
520
720
  gasPrice: undefined;
721
+ maxFeePerBlobGas?: undefined;
521
722
  maxFeePerGas: bigint;
522
723
  maxPriorityFeePerGas: bigint;
523
724
  accessList: import("../../index.js").AccessList;
725
+ blobVersionedHashes?: undefined;
524
726
  chainId: number;
525
727
  type: "cip42";
526
728
  feeCurrency: `0x${string}` | null;
@@ -543,9 +745,11 @@ export declare const formatters: {
543
745
  value: bigint;
544
746
  yParity: number;
545
747
  gasPrice: undefined;
748
+ maxFeePerBlobGas?: undefined;
546
749
  maxFeePerGas: bigint;
547
750
  maxPriorityFeePerGas: bigint;
548
751
  accessList: import("../../index.js").AccessList;
752
+ blobVersionedHashes?: undefined;
549
753
  chainId: number;
550
754
  type: "cip64";
551
755
  feeCurrency: `0x${string}` | null;
@@ -568,9 +772,11 @@ export declare const formatters: {
568
772
  value: bigint;
569
773
  yParity: number;
570
774
  gasPrice: bigint;
775
+ maxFeePerBlobGas?: undefined;
571
776
  maxFeePerGas: undefined;
572
777
  maxPriorityFeePerGas: undefined;
573
778
  accessList: import("../../index.js").AccessList;
779
+ blobVersionedHashes?: undefined;
574
780
  chainId: number;
575
781
  type: "eip2930";
576
782
  feeCurrency: `0x${string}` | null;
@@ -593,9 +799,11 @@ export declare const formatters: {
593
799
  value: bigint;
594
800
  yParity: number;
595
801
  gasPrice?: undefined;
802
+ maxFeePerBlobGas?: undefined;
596
803
  maxFeePerGas: bigint;
597
804
  maxPriorityFeePerGas: bigint;
598
805
  accessList: import("../../index.js").AccessList;
806
+ blobVersionedHashes?: undefined;
599
807
  chainId: number;
600
808
  type: "eip1559";
601
809
  feeCurrency: `0x${string}` | null;
@@ -618,9 +826,92 @@ export declare const formatters: {
618
826
  value: bigint;
619
827
  yParity: number;
620
828
  gasPrice?: undefined;
829
+ maxFeePerBlobGas?: undefined;
830
+ maxFeePerGas: bigint;
831
+ maxPriorityFeePerGas: bigint;
832
+ accessList: import("../../index.js").AccessList;
833
+ blobVersionedHashes?: undefined;
834
+ chainId: number;
835
+ type: "cip42";
836
+ feeCurrency: `0x${string}` | null;
837
+ gatewayFee: bigint | null;
838
+ gatewayFeeRecipient: `0x${string}` | null;
839
+ } | {
840
+ blockHash: `0x${string}` | null;
841
+ blockNumber: bigint | null;
842
+ from: `0x${string}`;
843
+ gas: bigint;
844
+ hash: `0x${string}`;
845
+ input: `0x${string}`;
846
+ nonce: number;
847
+ r: `0x${string}`;
848
+ s: `0x${string}`;
849
+ to: `0x${string}` | null;
850
+ transactionIndex: number | null;
851
+ typeHex: `0x${string}` | null;
852
+ v: bigint;
853
+ value: bigint;
854
+ yParity: number;
855
+ gasPrice?: undefined;
856
+ maxFeePerBlobGas?: undefined;
857
+ maxFeePerGas: bigint;
858
+ maxPriorityFeePerGas: bigint;
859
+ accessList: import("../../index.js").AccessList;
860
+ blobVersionedHashes?: undefined;
861
+ chainId: number;
862
+ type: "cip64";
863
+ feeCurrency: `0x${string}` | null;
864
+ gatewayFee?: undefined;
865
+ gatewayFeeRecipient?: undefined;
866
+ } | {
867
+ blockHash: `0x${string}` | null;
868
+ blockNumber: bigint | null;
869
+ from: `0x${string}`;
870
+ gas: bigint;
871
+ hash: `0x${string}`;
872
+ input: `0x${string}`;
873
+ nonce: number;
874
+ r: `0x${string}`;
875
+ s: `0x${string}`;
876
+ to: `0x${string}` | null;
877
+ transactionIndex: number | null;
878
+ typeHex: `0x${string}` | null;
879
+ v: bigint;
880
+ value: bigint;
881
+ yParity: number;
882
+ gasPrice?: undefined;
883
+ maxFeePerBlobGas: bigint;
884
+ maxFeePerGas: bigint;
885
+ maxPriorityFeePerGas: bigint;
886
+ accessList: import("../../index.js").AccessList;
887
+ blobVersionedHashes: `0x${string}`[];
888
+ chainId: number;
889
+ type: "eip4844";
890
+ feeCurrency: `0x${string}` | null;
891
+ gatewayFee: bigint | null;
892
+ gatewayFeeRecipient: `0x${string}` | null;
893
+ } | {
894
+ blockHash: `0x${string}` | null;
895
+ blockNumber: bigint | null;
896
+ from: `0x${string}`;
897
+ gas: bigint;
898
+ hash: `0x${string}`;
899
+ input: `0x${string}`;
900
+ nonce: number;
901
+ r: `0x${string}`;
902
+ s: `0x${string}`;
903
+ to: `0x${string}` | null;
904
+ transactionIndex: number | null;
905
+ typeHex: `0x${string}` | null;
906
+ v: bigint;
907
+ value: bigint;
908
+ yParity: number;
909
+ gasPrice?: undefined;
910
+ maxFeePerBlobGas: undefined;
621
911
  maxFeePerGas: bigint;
622
912
  maxPriorityFeePerGas: bigint;
623
913
  accessList: import("../../index.js").AccessList;
914
+ blobVersionedHashes: `0x${string}`[];
624
915
  chainId: number;
625
916
  type: "cip42";
626
917
  feeCurrency: `0x${string}` | null;
@@ -643,9 +934,11 @@ export declare const formatters: {
643
934
  value: bigint;
644
935
  yParity: number;
645
936
  gasPrice?: undefined;
937
+ maxFeePerBlobGas: undefined;
646
938
  maxFeePerGas: bigint;
647
939
  maxPriorityFeePerGas: bigint;
648
940
  accessList: import("../../index.js").AccessList;
941
+ blobVersionedHashes: `0x${string}`[];
649
942
  chainId: number;
650
943
  type: "cip64";
651
944
  feeCurrency: `0x${string}` | null;
@@ -668,6 +961,7 @@ export declare const formatters: {
668
961
  maxPriorityFeePerGas?: undefined;
669
962
  accessList?: undefined;
670
963
  type?: "0x0" | undefined;
964
+ maxFeePerBlobGas?: undefined;
671
965
  feeCurrency?: `0x${string}` | undefined;
672
966
  gatewayFee?: `0x${string}` | undefined;
673
967
  gatewayFeeRecipient?: `0x${string}` | undefined;
@@ -683,6 +977,7 @@ export declare const formatters: {
683
977
  maxPriorityFeePerGas?: undefined;
684
978
  accessList?: import("../../index.js").AccessList | undefined;
685
979
  type?: "0x1" | undefined;
980
+ maxFeePerBlobGas?: undefined;
686
981
  feeCurrency?: `0x${string}` | undefined;
687
982
  gatewayFee?: `0x${string}` | undefined;
688
983
  gatewayFeeRecipient?: `0x${string}` | undefined;
@@ -698,6 +993,7 @@ export declare const formatters: {
698
993
  maxPriorityFeePerGas?: `0x${string}` | undefined;
699
994
  accessList?: import("../../index.js").AccessList | undefined;
700
995
  type?: "0x2" | undefined;
996
+ maxFeePerBlobGas?: undefined;
701
997
  feeCurrency?: `0x${string}` | undefined;
702
998
  gatewayFee?: `0x${string}` | undefined;
703
999
  gatewayFeeRecipient?: `0x${string}` | undefined;
@@ -713,6 +1009,7 @@ export declare const formatters: {
713
1009
  maxPriorityFeePerGas?: `0x${string}` | undefined;
714
1010
  accessList?: import("../../index.js").AccessList | undefined;
715
1011
  type?: "0x7c" | undefined;
1012
+ maxFeePerBlobGas?: undefined;
716
1013
  feeCurrency?: `0x${string}` | undefined;
717
1014
  gatewayFee?: `0x${string}` | undefined;
718
1015
  gatewayFeeRecipient?: `0x${string}` | undefined;
@@ -728,6 +1025,7 @@ export declare const formatters: {
728
1025
  maxPriorityFeePerGas?: `0x${string}` | undefined;
729
1026
  accessList?: import("../../index.js").AccessList | undefined;
730
1027
  type?: "0x7b" | undefined;
1028
+ maxFeePerBlobGas?: undefined;
731
1029
  feeCurrency?: `0x${string}` | undefined;
732
1030
  gatewayFee?: undefined;
733
1031
  gatewayFeeRecipient?: undefined;
@@ -743,6 +1041,7 @@ export declare const formatters: {
743
1041
  maxPriorityFeePerGas?: undefined;
744
1042
  accessList?: undefined;
745
1043
  type?: "0x0" | undefined;
1044
+ maxFeePerBlobGas?: undefined;
746
1045
  feeCurrency?: `0x${string}` | undefined;
747
1046
  gatewayFee?: `0x${string}` | undefined;
748
1047
  gatewayFeeRecipient?: `0x${string}` | undefined;
@@ -758,6 +1057,7 @@ export declare const formatters: {
758
1057
  maxPriorityFeePerGas?: undefined;
759
1058
  accessList?: import("../../index.js").AccessList | undefined;
760
1059
  type?: "0x1" | undefined;
1060
+ maxFeePerBlobGas?: undefined;
761
1061
  feeCurrency?: `0x${string}` | undefined;
762
1062
  gatewayFee?: `0x${string}` | undefined;
763
1063
  gatewayFeeRecipient?: `0x${string}` | undefined;
@@ -773,6 +1073,7 @@ export declare const formatters: {
773
1073
  maxPriorityFeePerGas?: `0x${string}` | undefined;
774
1074
  accessList?: import("../../index.js").AccessList | undefined;
775
1075
  type?: "0x2" | undefined;
1076
+ maxFeePerBlobGas?: undefined;
776
1077
  feeCurrency?: `0x${string}` | undefined;
777
1078
  gatewayFee?: `0x${string}` | undefined;
778
1079
  gatewayFeeRecipient?: `0x${string}` | undefined;
@@ -788,6 +1089,7 @@ export declare const formatters: {
788
1089
  maxPriorityFeePerGas?: `0x${string}` | undefined;
789
1090
  accessList?: import("../../index.js").AccessList | undefined;
790
1091
  type?: "0x7c" | undefined;
1092
+ maxFeePerBlobGas?: undefined;
791
1093
  feeCurrency?: `0x${string}` | undefined;
792
1094
  gatewayFee?: `0x${string}` | undefined;
793
1095
  gatewayFeeRecipient?: `0x${string}` | undefined;
@@ -803,6 +1105,7 @@ export declare const formatters: {
803
1105
  maxPriorityFeePerGas?: `0x${string}` | undefined;
804
1106
  accessList?: import("../../index.js").AccessList | undefined;
805
1107
  type?: "0x7b" | undefined;
1108
+ maxFeePerBlobGas?: undefined;
806
1109
  feeCurrency?: `0x${string}` | undefined;
807
1110
  gatewayFee?: undefined;
808
1111
  gatewayFeeRecipient?: undefined;
@@ -818,6 +1121,7 @@ export declare const formatters: {
818
1121
  maxPriorityFeePerGas?: undefined;
819
1122
  accessList?: undefined;
820
1123
  type?: "0x0" | undefined;
1124
+ maxFeePerBlobGas?: undefined;
821
1125
  feeCurrency?: `0x${string}` | undefined;
822
1126
  gatewayFee?: `0x${string}` | undefined;
823
1127
  gatewayFeeRecipient?: `0x${string}` | undefined;
@@ -833,6 +1137,7 @@ export declare const formatters: {
833
1137
  maxPriorityFeePerGas?: undefined;
834
1138
  accessList?: import("../../index.js").AccessList | undefined;
835
1139
  type?: "0x1" | undefined;
1140
+ maxFeePerBlobGas?: undefined;
836
1141
  feeCurrency?: `0x${string}` | undefined;
837
1142
  gatewayFee?: `0x${string}` | undefined;
838
1143
  gatewayFeeRecipient?: `0x${string}` | undefined;
@@ -848,6 +1153,7 @@ export declare const formatters: {
848
1153
  maxPriorityFeePerGas?: `0x${string}` | undefined;
849
1154
  accessList?: import("../../index.js").AccessList | undefined;
850
1155
  type?: "0x2" | undefined;
1156
+ maxFeePerBlobGas?: undefined;
851
1157
  feeCurrency?: `0x${string}` | undefined;
852
1158
  gatewayFee?: `0x${string}` | undefined;
853
1159
  gatewayFeeRecipient?: `0x${string}` | undefined;
@@ -863,6 +1169,7 @@ export declare const formatters: {
863
1169
  maxPriorityFeePerGas?: `0x${string}` | undefined;
864
1170
  accessList?: import("../../index.js").AccessList | undefined;
865
1171
  type?: "0x7c" | undefined;
1172
+ maxFeePerBlobGas?: undefined;
866
1173
  feeCurrency?: `0x${string}` | undefined;
867
1174
  gatewayFee?: `0x${string}` | undefined;
868
1175
  gatewayFeeRecipient?: `0x${string}` | undefined;
@@ -878,6 +1185,7 @@ export declare const formatters: {
878
1185
  maxPriorityFeePerGas?: `0x${string}` | undefined;
879
1186
  accessList?: import("../../index.js").AccessList | undefined;
880
1187
  type?: "0x7b" | undefined;
1188
+ maxFeePerBlobGas?: undefined;
881
1189
  feeCurrency?: `0x${string}` | undefined;
882
1190
  gatewayFee?: undefined;
883
1191
  gatewayFeeRecipient?: undefined;