viem 0.0.0-main.20240130T223314 → 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
@@ -73,11 +73,17 @@ export declare const celo: {
73
73
  readonly transaction: {
74
74
  exclude: [] | undefined;
75
75
  format: (args: ({
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;
76
83
  yParity?: `0x${string}` | undefined;
77
84
  blockHash?: `0x${string}` | null | undefined;
78
85
  blockNumber?: `0x${string}` | null | undefined;
79
86
  from?: `0x${string}` | undefined;
80
- gas?: `0x${string}` | undefined;
81
87
  hash?: `0x${string}` | undefined;
82
88
  input?: `0x${string}` | undefined;
83
89
  nonce?: `0x${string}` | undefined;
@@ -86,23 +92,25 @@ export declare const celo: {
86
92
  to?: `0x${string}` | null | undefined;
87
93
  transactionIndex?: `0x${string}` | null | undefined;
88
94
  v?: `0x${string}` | undefined;
89
- value?: `0x${string}` | undefined;
90
- type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
91
- gasPrice?: `0x${string}` | undefined;
92
- maxFeePerGas?: `0x${string}` | undefined;
93
- maxPriorityFeePerGas?: `0x${string}` | undefined;
94
95
  accessList?: undefined;
96
+ blobVersionedHashes?: undefined;
95
97
  chainId?: `0x${string}` | undefined;
96
98
  } & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "yParity">, "typeHex"> & {
97
99
  feeCurrency: `0x${string}` | null;
98
100
  gatewayFee: `0x${string}` | null;
99
101
  gatewayFeeRecipient: `0x${string}` | null;
100
102
  }) | ({
103
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b" | undefined;
104
+ gas?: `0x${string}` | undefined;
105
+ value?: `0x${string}` | undefined;
106
+ gasPrice?: `0x${string}` | undefined;
107
+ maxFeePerBlobGas?: `0x${string}` | undefined;
108
+ maxFeePerGas?: `0x${string}` | undefined;
109
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
101
110
  yParity?: `0x${string}` | undefined;
102
111
  blockHash?: `0x${string}` | null | undefined;
103
112
  blockNumber?: `0x${string}` | null | undefined;
104
113
  from?: `0x${string}` | undefined;
105
- gas?: `0x${string}` | undefined;
106
114
  hash?: `0x${string}` | undefined;
107
115
  input?: `0x${string}` | undefined;
108
116
  nonce?: `0x${string}` | undefined;
@@ -111,12 +119,8 @@ export declare const celo: {
111
119
  to?: `0x${string}` | null | undefined;
112
120
  transactionIndex?: `0x${string}` | null | undefined;
113
121
  v?: `0x${string}` | undefined;
114
- value?: `0x${string}` | undefined;
115
- type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
116
- gasPrice?: `0x${string}` | undefined;
117
- maxFeePerGas?: `0x${string}` | undefined;
118
- maxPriorityFeePerGas?: `0x${string}` | undefined;
119
122
  accessList?: undefined;
123
+ blobVersionedHashes?: undefined;
120
124
  chainId?: `0x${string}` | undefined;
121
125
  } & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
122
126
  feeCurrency: `0x${string}` | null;
@@ -124,11 +128,17 @@ export declare const celo: {
124
128
  gatewayFeeRecipient: `0x${string}` | null;
125
129
  type: "0x7c";
126
130
  }) | ({
131
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b" | undefined;
132
+ gas?: `0x${string}` | undefined;
133
+ value?: `0x${string}` | undefined;
134
+ gasPrice?: `0x${string}` | undefined;
135
+ maxFeePerBlobGas?: `0x${string}` | undefined;
136
+ maxFeePerGas?: `0x${string}` | undefined;
137
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
127
138
  yParity?: `0x${string}` | undefined;
128
139
  blockHash?: `0x${string}` | null | undefined;
129
140
  blockNumber?: `0x${string}` | null | undefined;
130
141
  from?: `0x${string}` | undefined;
131
- gas?: `0x${string}` | undefined;
132
142
  hash?: `0x${string}` | undefined;
133
143
  input?: `0x${string}` | undefined;
134
144
  nonce?: `0x${string}` | undefined;
@@ -137,12 +147,8 @@ export declare const celo: {
137
147
  to?: `0x${string}` | null | undefined;
138
148
  transactionIndex?: `0x${string}` | null | undefined;
139
149
  v?: `0x${string}` | undefined;
140
- value?: `0x${string}` | undefined;
141
- type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
142
- gasPrice?: `0x${string}` | undefined;
143
- maxFeePerGas?: `0x${string}` | undefined;
144
- maxPriorityFeePerGas?: `0x${string}` | undefined;
145
150
  accessList?: undefined;
151
+ blobVersionedHashes?: undefined;
146
152
  chainId?: `0x${string}` | undefined;
147
153
  } & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
148
154
  feeCurrency: `0x${string}` | null;
@@ -150,11 +156,17 @@ export declare const celo: {
150
156
  gatewayFeeRecipient?: undefined;
151
157
  type: "0x7b";
152
158
  }) | ({
159
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b" | undefined;
160
+ gas?: `0x${string}` | undefined;
161
+ value?: `0x${string}` | undefined;
162
+ gasPrice?: `0x${string}` | undefined;
163
+ maxFeePerBlobGas?: `0x${string}` | undefined;
164
+ maxFeePerGas?: `0x${string}` | undefined;
165
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
153
166
  yParity?: `0x${string}` | undefined;
154
167
  blockHash?: `0x${string}` | null | undefined;
155
168
  blockNumber?: `0x${string}` | null | undefined;
156
169
  from?: `0x${string}` | undefined;
157
- gas?: `0x${string}` | undefined;
158
170
  hash?: `0x${string}` | undefined;
159
171
  input?: `0x${string}` | undefined;
160
172
  nonce?: `0x${string}` | undefined;
@@ -163,23 +175,52 @@ export declare const celo: {
163
175
  to?: `0x${string}` | null | undefined;
164
176
  transactionIndex?: `0x${string}` | null | undefined;
165
177
  v?: `0x${string}` | undefined;
178
+ accessList?: import("../../index.js").AccessList | undefined;
179
+ blobVersionedHashes?: undefined;
180
+ chainId?: `0x${string}` | undefined;
181
+ } & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "yParity">, "typeHex"> & {
182
+ feeCurrency: `0x${string}` | null;
183
+ gatewayFee: `0x${string}` | null;
184
+ gatewayFeeRecipient: `0x${string}` | null;
185
+ }) | ({
186
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b" | undefined;
187
+ gas?: `0x${string}` | undefined;
166
188
  value?: `0x${string}` | undefined;
167
- type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
168
189
  gasPrice?: `0x${string}` | undefined;
190
+ maxFeePerBlobGas?: `0x${string}` | undefined;
169
191
  maxFeePerGas?: `0x${string}` | undefined;
170
192
  maxPriorityFeePerGas?: `0x${string}` | undefined;
193
+ yParity?: `0x${string}` | undefined;
194
+ blockHash?: `0x${string}` | null | undefined;
195
+ blockNumber?: `0x${string}` | null | undefined;
196
+ from?: `0x${string}` | undefined;
197
+ hash?: `0x${string}` | undefined;
198
+ input?: `0x${string}` | undefined;
199
+ nonce?: `0x${string}` | undefined;
200
+ r?: `0x${string}` | undefined;
201
+ s?: `0x${string}` | undefined;
202
+ to?: `0x${string}` | null | undefined;
203
+ transactionIndex?: `0x${string}` | null | undefined;
204
+ v?: `0x${string}` | undefined;
171
205
  accessList?: import("../../index.js").AccessList | undefined;
206
+ blobVersionedHashes?: undefined;
172
207
  chainId?: `0x${string}` | undefined;
173
- } & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "yParity">, "typeHex"> & {
208
+ } & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "yParity">, "typeHex"> & {
174
209
  feeCurrency: `0x${string}` | null;
175
210
  gatewayFee: `0x${string}` | null;
176
211
  gatewayFeeRecipient: `0x${string}` | null;
177
212
  }) | ({
213
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b" | undefined;
214
+ gas?: `0x${string}` | undefined;
215
+ value?: `0x${string}` | undefined;
216
+ gasPrice?: `0x${string}` | undefined;
217
+ maxFeePerBlobGas?: `0x${string}` | undefined;
218
+ maxFeePerGas?: `0x${string}` | undefined;
219
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
178
220
  yParity?: `0x${string}` | undefined;
179
221
  blockHash?: `0x${string}` | null | undefined;
180
222
  blockNumber?: `0x${string}` | null | undefined;
181
223
  from?: `0x${string}` | undefined;
182
- gas?: `0x${string}` | undefined;
183
224
  hash?: `0x${string}` | undefined;
184
225
  input?: `0x${string}` | undefined;
185
226
  nonce?: `0x${string}` | undefined;
@@ -188,23 +229,53 @@ export declare const celo: {
188
229
  to?: `0x${string}` | null | undefined;
189
230
  transactionIndex?: `0x${string}` | null | undefined;
190
231
  v?: `0x${string}` | undefined;
232
+ accessList?: import("../../index.js").AccessList | undefined;
233
+ blobVersionedHashes?: undefined;
234
+ chainId?: `0x${string}` | undefined;
235
+ } & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "yParity">, "typeHex"> & {
236
+ feeCurrency: `0x${string}` | null;
237
+ gatewayFee: `0x${string}` | null;
238
+ gatewayFeeRecipient: `0x${string}` | null;
239
+ }) | ({
240
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b" | undefined;
241
+ gas?: `0x${string}` | undefined;
191
242
  value?: `0x${string}` | undefined;
192
- type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
193
243
  gasPrice?: `0x${string}` | undefined;
244
+ maxFeePerBlobGas?: `0x${string}` | undefined;
194
245
  maxFeePerGas?: `0x${string}` | undefined;
195
246
  maxPriorityFeePerGas?: `0x${string}` | undefined;
247
+ yParity?: `0x${string}` | undefined;
248
+ blockHash?: `0x${string}` | null | undefined;
249
+ blockNumber?: `0x${string}` | null | undefined;
250
+ from?: `0x${string}` | undefined;
251
+ hash?: `0x${string}` | undefined;
252
+ input?: `0x${string}` | undefined;
253
+ nonce?: `0x${string}` | undefined;
254
+ r?: `0x${string}` | undefined;
255
+ s?: `0x${string}` | undefined;
256
+ to?: `0x${string}` | null | undefined;
257
+ transactionIndex?: `0x${string}` | null | undefined;
258
+ v?: `0x${string}` | undefined;
196
259
  accessList?: import("../../index.js").AccessList | undefined;
260
+ blobVersionedHashes?: undefined;
197
261
  chainId?: `0x${string}` | undefined;
198
- } & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "yParity">, "typeHex"> & {
262
+ } & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
199
263
  feeCurrency: `0x${string}` | null;
200
264
  gatewayFee: `0x${string}` | null;
201
265
  gatewayFeeRecipient: `0x${string}` | null;
266
+ type: "0x7c";
202
267
  }) | ({
268
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b" | undefined;
269
+ gas?: `0x${string}` | undefined;
270
+ value?: `0x${string}` | undefined;
271
+ gasPrice?: `0x${string}` | undefined;
272
+ maxFeePerBlobGas?: `0x${string}` | undefined;
273
+ maxFeePerGas?: `0x${string}` | undefined;
274
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
203
275
  yParity?: `0x${string}` | undefined;
204
276
  blockHash?: `0x${string}` | null | undefined;
205
277
  blockNumber?: `0x${string}` | null | undefined;
206
278
  from?: `0x${string}` | undefined;
207
- gas?: `0x${string}` | undefined;
208
279
  hash?: `0x${string}` | undefined;
209
280
  input?: `0x${string}` | undefined;
210
281
  nonce?: `0x${string}` | undefined;
@@ -213,23 +284,53 @@ export declare const celo: {
213
284
  to?: `0x${string}` | null | undefined;
214
285
  transactionIndex?: `0x${string}` | null | undefined;
215
286
  v?: `0x${string}` | undefined;
287
+ accessList?: import("../../index.js").AccessList | undefined;
288
+ blobVersionedHashes?: undefined;
289
+ chainId?: `0x${string}` | undefined;
290
+ } & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
291
+ feeCurrency: `0x${string}` | null;
292
+ gatewayFee?: undefined;
293
+ gatewayFeeRecipient?: undefined;
294
+ type: "0x7b";
295
+ }) | ({
296
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b" | undefined;
297
+ gas?: `0x${string}` | undefined;
216
298
  value?: `0x${string}` | undefined;
217
- type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
218
299
  gasPrice?: `0x${string}` | undefined;
300
+ maxFeePerBlobGas?: `0x${string}` | undefined;
219
301
  maxFeePerGas?: `0x${string}` | undefined;
220
302
  maxPriorityFeePerGas?: `0x${string}` | undefined;
303
+ yParity?: `0x${string}` | undefined;
304
+ blockHash?: `0x${string}` | null | undefined;
305
+ blockNumber?: `0x${string}` | null | undefined;
306
+ from?: `0x${string}` | undefined;
307
+ hash?: `0x${string}` | undefined;
308
+ input?: `0x${string}` | undefined;
309
+ nonce?: `0x${string}` | undefined;
310
+ r?: `0x${string}` | undefined;
311
+ s?: `0x${string}` | undefined;
312
+ to?: `0x${string}` | null | undefined;
313
+ transactionIndex?: `0x${string}` | null | undefined;
314
+ v?: `0x${string}` | undefined;
221
315
  accessList?: import("../../index.js").AccessList | undefined;
316
+ blobVersionedHashes?: undefined;
222
317
  chainId?: `0x${string}` | undefined;
223
- } & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "yParity">, "typeHex"> & {
318
+ } & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "yParity">, "typeHex"> & {
224
319
  feeCurrency: `0x${string}` | null;
225
320
  gatewayFee: `0x${string}` | null;
226
321
  gatewayFeeRecipient: `0x${string}` | null;
227
322
  }) | ({
323
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b" | undefined;
324
+ gas?: `0x${string}` | undefined;
325
+ value?: `0x${string}` | undefined;
326
+ gasPrice?: `0x${string}` | undefined;
327
+ maxFeePerBlobGas?: `0x${string}` | undefined;
328
+ maxFeePerGas?: `0x${string}` | undefined;
329
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
228
330
  yParity?: `0x${string}` | undefined;
229
331
  blockHash?: `0x${string}` | null | undefined;
230
332
  blockNumber?: `0x${string}` | null | undefined;
231
333
  from?: `0x${string}` | undefined;
232
- gas?: `0x${string}` | undefined;
233
334
  hash?: `0x${string}` | undefined;
234
335
  input?: `0x${string}` | undefined;
235
336
  nonce?: `0x${string}` | undefined;
@@ -238,24 +339,52 @@ export declare const celo: {
238
339
  to?: `0x${string}` | null | undefined;
239
340
  transactionIndex?: `0x${string}` | null | undefined;
240
341
  v?: `0x${string}` | undefined;
342
+ accessList?: import("../../index.js").AccessList | undefined;
343
+ blobVersionedHashes?: undefined;
344
+ chainId?: `0x${string}` | undefined;
345
+ } & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "yParity">, "typeHex"> & {
346
+ feeCurrency: `0x${string}` | null;
347
+ gatewayFee: `0x${string}` | null;
348
+ gatewayFeeRecipient: `0x${string}` | null;
349
+ }) | ({
350
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b" | undefined;
351
+ gas?: `0x${string}` | undefined;
241
352
  value?: `0x${string}` | undefined;
242
- type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
243
353
  gasPrice?: `0x${string}` | undefined;
354
+ maxFeePerBlobGas?: `0x${string}` | undefined;
244
355
  maxFeePerGas?: `0x${string}` | undefined;
245
356
  maxPriorityFeePerGas?: `0x${string}` | undefined;
357
+ yParity?: `0x${string}` | undefined;
358
+ blockHash?: `0x${string}` | null | undefined;
359
+ blockNumber?: `0x${string}` | null | undefined;
360
+ from?: `0x${string}` | undefined;
361
+ hash?: `0x${string}` | undefined;
362
+ input?: `0x${string}` | undefined;
363
+ nonce?: `0x${string}` | undefined;
364
+ r?: `0x${string}` | undefined;
365
+ s?: `0x${string}` | undefined;
366
+ to?: `0x${string}` | null | undefined;
367
+ transactionIndex?: `0x${string}` | null | undefined;
368
+ v?: `0x${string}` | undefined;
246
369
  accessList?: import("../../index.js").AccessList | undefined;
370
+ blobVersionedHashes?: undefined;
247
371
  chainId?: `0x${string}` | undefined;
248
- } & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
372
+ } & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "yParity">, "typeHex"> & {
249
373
  feeCurrency: `0x${string}` | null;
250
374
  gatewayFee: `0x${string}` | null;
251
375
  gatewayFeeRecipient: `0x${string}` | null;
252
- type: "0x7c";
253
376
  }) | ({
377
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b" | undefined;
378
+ gas?: `0x${string}` | undefined;
379
+ value?: `0x${string}` | undefined;
380
+ gasPrice?: `0x${string}` | undefined;
381
+ maxFeePerBlobGas?: `0x${string}` | undefined;
382
+ maxFeePerGas?: `0x${string}` | undefined;
383
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
254
384
  yParity?: `0x${string}` | undefined;
255
385
  blockHash?: `0x${string}` | null | undefined;
256
386
  blockNumber?: `0x${string}` | null | undefined;
257
387
  from?: `0x${string}` | undefined;
258
- gas?: `0x${string}` | undefined;
259
388
  hash?: `0x${string}` | undefined;
260
389
  input?: `0x${string}` | undefined;
261
390
  nonce?: `0x${string}` | undefined;
@@ -264,12 +393,36 @@ export declare const celo: {
264
393
  to?: `0x${string}` | null | undefined;
265
394
  transactionIndex?: `0x${string}` | null | undefined;
266
395
  v?: `0x${string}` | undefined;
396
+ accessList?: import("../../index.js").AccessList | undefined;
397
+ blobVersionedHashes?: undefined;
398
+ chainId?: `0x${string}` | undefined;
399
+ } & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
400
+ feeCurrency: `0x${string}` | null;
401
+ gatewayFee: `0x${string}` | null;
402
+ gatewayFeeRecipient: `0x${string}` | null;
403
+ type: "0x7c";
404
+ }) | ({
405
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b" | undefined;
406
+ gas?: `0x${string}` | undefined;
267
407
  value?: `0x${string}` | undefined;
268
- type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
269
408
  gasPrice?: `0x${string}` | undefined;
409
+ maxFeePerBlobGas?: `0x${string}` | undefined;
270
410
  maxFeePerGas?: `0x${string}` | undefined;
271
411
  maxPriorityFeePerGas?: `0x${string}` | undefined;
412
+ yParity?: `0x${string}` | undefined;
413
+ blockHash?: `0x${string}` | null | undefined;
414
+ blockNumber?: `0x${string}` | null | undefined;
415
+ from?: `0x${string}` | undefined;
416
+ hash?: `0x${string}` | undefined;
417
+ input?: `0x${string}` | undefined;
418
+ nonce?: `0x${string}` | undefined;
419
+ r?: `0x${string}` | undefined;
420
+ s?: `0x${string}` | undefined;
421
+ to?: `0x${string}` | null | undefined;
422
+ transactionIndex?: `0x${string}` | null | undefined;
423
+ v?: `0x${string}` | undefined;
272
424
  accessList?: import("../../index.js").AccessList | undefined;
425
+ blobVersionedHashes?: undefined;
273
426
  chainId?: `0x${string}` | undefined;
274
427
  } & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
275
428
  feeCurrency: `0x${string}` | null;
@@ -277,11 +430,17 @@ export declare const celo: {
277
430
  gatewayFeeRecipient?: undefined;
278
431
  type: "0x7b";
279
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;
280
440
  yParity?: `0x${string}` | undefined;
281
441
  blockHash?: `0x${string}` | null | undefined;
282
442
  blockNumber?: `0x${string}` | null | undefined;
283
443
  from?: `0x${string}` | undefined;
284
- gas?: `0x${string}` | undefined;
285
444
  hash?: `0x${string}` | undefined;
286
445
  input?: `0x${string}` | undefined;
287
446
  nonce?: `0x${string}` | undefined;
@@ -290,23 +449,25 @@ export declare const celo: {
290
449
  to?: `0x${string}` | null | undefined;
291
450
  transactionIndex?: `0x${string}` | null | undefined;
292
451
  v?: `0x${string}` | undefined;
293
- value?: `0x${string}` | undefined;
294
- type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
295
- gasPrice?: `0x${string}` | undefined;
296
- maxFeePerGas?: `0x${string}` | undefined;
297
- maxPriorityFeePerGas?: `0x${string}` | undefined;
298
452
  accessList?: import("../../index.js").AccessList | undefined;
453
+ blobVersionedHashes?: `0x${string}`[] | undefined;
299
454
  chainId?: `0x${string}` | undefined;
300
455
  } & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "yParity">, "typeHex"> & {
301
456
  feeCurrency: `0x${string}` | null;
302
457
  gatewayFee: `0x${string}` | null;
303
458
  gatewayFeeRecipient: `0x${string}` | null;
304
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;
305
467
  yParity?: `0x${string}` | undefined;
306
468
  blockHash?: `0x${string}` | null | undefined;
307
469
  blockNumber?: `0x${string}` | null | undefined;
308
470
  from?: `0x${string}` | undefined;
309
- gas?: `0x${string}` | undefined;
310
471
  hash?: `0x${string}` | undefined;
311
472
  input?: `0x${string}` | undefined;
312
473
  nonce?: `0x${string}` | undefined;
@@ -315,23 +476,25 @@ export declare const celo: {
315
476
  to?: `0x${string}` | null | undefined;
316
477
  transactionIndex?: `0x${string}` | null | undefined;
317
478
  v?: `0x${string}` | undefined;
318
- value?: `0x${string}` | undefined;
319
- type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
320
- gasPrice?: `0x${string}` | undefined;
321
- maxFeePerGas?: `0x${string}` | undefined;
322
- maxPriorityFeePerGas?: `0x${string}` | undefined;
323
479
  accessList?: import("../../index.js").AccessList | undefined;
480
+ blobVersionedHashes?: `0x${string}`[] | undefined;
324
481
  chainId?: `0x${string}` | undefined;
325
482
  } & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "yParity">, "typeHex"> & {
326
483
  feeCurrency: `0x${string}` | null;
327
484
  gatewayFee: `0x${string}` | null;
328
485
  gatewayFeeRecipient: `0x${string}` | null;
329
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;
330
494
  yParity?: `0x${string}` | undefined;
331
495
  blockHash?: `0x${string}` | null | undefined;
332
496
  blockNumber?: `0x${string}` | null | undefined;
333
497
  from?: `0x${string}` | undefined;
334
- gas?: `0x${string}` | undefined;
335
498
  hash?: `0x${string}` | undefined;
336
499
  input?: `0x${string}` | undefined;
337
500
  nonce?: `0x${string}` | undefined;
@@ -340,23 +503,25 @@ export declare const celo: {
340
503
  to?: `0x${string}` | null | undefined;
341
504
  transactionIndex?: `0x${string}` | null | undefined;
342
505
  v?: `0x${string}` | undefined;
343
- value?: `0x${string}` | undefined;
344
- type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
345
- gasPrice?: `0x${string}` | undefined;
346
- maxFeePerGas?: `0x${string}` | undefined;
347
- maxPriorityFeePerGas?: `0x${string}` | undefined;
348
506
  accessList?: import("../../index.js").AccessList | undefined;
507
+ blobVersionedHashes?: `0x${string}`[] | undefined;
349
508
  chainId?: `0x${string}` | undefined;
350
509
  } & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "yParity">, "typeHex"> & {
351
510
  feeCurrency: `0x${string}` | null;
352
511
  gatewayFee: `0x${string}` | null;
353
512
  gatewayFeeRecipient: `0x${string}` | null;
354
513
  }) | ({
514
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b" | undefined;
515
+ gas?: `0x${string}` | undefined;
516
+ value?: `0x${string}` | undefined;
517
+ gasPrice?: `0x${string}` | undefined;
518
+ maxFeePerBlobGas?: `0x${string}` | undefined;
519
+ maxFeePerGas?: `0x${string}` | undefined;
520
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
355
521
  yParity?: `0x${string}` | undefined;
356
522
  blockHash?: `0x${string}` | null | undefined;
357
523
  blockNumber?: `0x${string}` | null | undefined;
358
524
  from?: `0x${string}` | undefined;
359
- gas?: `0x${string}` | undefined;
360
525
  hash?: `0x${string}` | undefined;
361
526
  input?: `0x${string}` | undefined;
362
527
  nonce?: `0x${string}` | undefined;
@@ -365,12 +530,35 @@ export declare const celo: {
365
530
  to?: `0x${string}` | null | undefined;
366
531
  transactionIndex?: `0x${string}` | null | undefined;
367
532
  v?: `0x${string}` | undefined;
533
+ accessList?: import("../../index.js").AccessList | undefined;
534
+ blobVersionedHashes?: `0x${string}`[] | undefined;
535
+ chainId?: `0x${string}` | undefined;
536
+ } & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP4844<`0x${string}`, `0x${string}`, boolean, "0x3">, "yParity">, "typeHex"> & {
537
+ feeCurrency: `0x${string}` | null;
538
+ gatewayFee: `0x${string}` | null;
539
+ gatewayFeeRecipient: `0x${string}` | null;
540
+ }) | ({
541
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b" | undefined;
542
+ gas?: `0x${string}` | undefined;
368
543
  value?: `0x${string}` | undefined;
369
- type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
370
544
  gasPrice?: `0x${string}` | undefined;
545
+ maxFeePerBlobGas?: `0x${string}` | undefined;
371
546
  maxFeePerGas?: `0x${string}` | undefined;
372
547
  maxPriorityFeePerGas?: `0x${string}` | undefined;
548
+ yParity?: `0x${string}` | undefined;
549
+ blockHash?: `0x${string}` | null | undefined;
550
+ blockNumber?: `0x${string}` | null | undefined;
551
+ from?: `0x${string}` | undefined;
552
+ hash?: `0x${string}` | undefined;
553
+ input?: `0x${string}` | undefined;
554
+ nonce?: `0x${string}` | undefined;
555
+ r?: `0x${string}` | undefined;
556
+ s?: `0x${string}` | undefined;
557
+ to?: `0x${string}` | null | undefined;
558
+ transactionIndex?: `0x${string}` | null | undefined;
559
+ v?: `0x${string}` | undefined;
373
560
  accessList?: import("../../index.js").AccessList | undefined;
561
+ blobVersionedHashes?: `0x${string}`[] | undefined;
374
562
  chainId?: `0x${string}` | undefined;
375
563
  } & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
376
564
  feeCurrency: `0x${string}` | null;
@@ -378,11 +566,17 @@ export declare const celo: {
378
566
  gatewayFeeRecipient: `0x${string}` | null;
379
567
  type: "0x7c";
380
568
  }) | ({
569
+ type?: "0x0" | "0x1" | "0x2" | "0x3" | "0x7c" | "0x7b" | undefined;
570
+ gas?: `0x${string}` | undefined;
571
+ value?: `0x${string}` | undefined;
572
+ gasPrice?: `0x${string}` | undefined;
573
+ maxFeePerBlobGas?: `0x${string}` | undefined;
574
+ maxFeePerGas?: `0x${string}` | undefined;
575
+ maxPriorityFeePerGas?: `0x${string}` | undefined;
381
576
  yParity?: `0x${string}` | undefined;
382
577
  blockHash?: `0x${string}` | null | undefined;
383
578
  blockNumber?: `0x${string}` | null | undefined;
384
579
  from?: `0x${string}` | undefined;
385
- gas?: `0x${string}` | undefined;
386
580
  hash?: `0x${string}` | undefined;
387
581
  input?: `0x${string}` | undefined;
388
582
  nonce?: `0x${string}` | undefined;
@@ -391,12 +585,8 @@ export declare const celo: {
391
585
  to?: `0x${string}` | null | undefined;
392
586
  transactionIndex?: `0x${string}` | null | undefined;
393
587
  v?: `0x${string}` | undefined;
394
- value?: `0x${string}` | undefined;
395
- type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
396
- gasPrice?: `0x${string}` | undefined;
397
- maxFeePerGas?: `0x${string}` | undefined;
398
- maxPriorityFeePerGas?: `0x${string}` | undefined;
399
588
  accessList?: import("../../index.js").AccessList | undefined;
589
+ blobVersionedHashes?: `0x${string}`[] | undefined;
400
590
  chainId?: `0x${string}` | undefined;
401
591
  } & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
402
592
  feeCurrency: `0x${string}` | null;
@@ -404,10 +594,11 @@ export declare const celo: {
404
594
  gatewayFeeRecipient?: undefined;
405
595
  type: "0x7b";
406
596
  })) => ({
597
+ gas: bigint;
598
+ value: bigint;
407
599
  blockHash: `0x${string}` | null;
408
600
  blockNumber: bigint | null;
409
601
  from: `0x${string}`;
410
- gas: bigint;
411
602
  hash: `0x${string}`;
412
603
  input: `0x${string}`;
413
604
  nonce: number;
@@ -417,11 +608,12 @@ export declare const celo: {
417
608
  transactionIndex: number | null;
418
609
  typeHex: `0x${string}` | null;
419
610
  v: bigint;
420
- value: bigint;
421
611
  gasPrice: bigint;
612
+ maxFeePerBlobGas?: undefined;
422
613
  maxFeePerGas?: undefined;
423
614
  maxPriorityFeePerGas?: undefined;
424
615
  accessList?: undefined;
616
+ blobVersionedHashes?: undefined;
425
617
  chainId?: number | undefined;
426
618
  yParity?: undefined;
427
619
  type: "legacy";
@@ -429,10 +621,11 @@ export declare const celo: {
429
621
  gatewayFee: bigint | null;
430
622
  gatewayFeeRecipient: `0x${string}` | null;
431
623
  } | {
624
+ gas: bigint;
625
+ value: bigint;
432
626
  blockHash: `0x${string}` | null;
433
627
  blockNumber: bigint | null;
434
628
  from: `0x${string}`;
435
- gas: bigint;
436
629
  hash: `0x${string}`;
437
630
  input: `0x${string}`;
438
631
  nonce: number;
@@ -442,11 +635,12 @@ export declare const celo: {
442
635
  transactionIndex: number | null;
443
636
  typeHex: `0x${string}` | null;
444
637
  v: bigint;
445
- value: bigint;
446
638
  gasPrice: undefined;
639
+ maxFeePerBlobGas?: undefined;
447
640
  maxFeePerGas: bigint;
448
641
  maxPriorityFeePerGas: bigint;
449
642
  accessList?: undefined;
643
+ blobVersionedHashes?: undefined;
450
644
  chainId?: number | undefined;
451
645
  yParity: number;
452
646
  type: "cip42";
@@ -454,10 +648,11 @@ export declare const celo: {
454
648
  gatewayFee: bigint | null;
455
649
  gatewayFeeRecipient: `0x${string}` | null;
456
650
  } | {
651
+ gas: bigint;
652
+ value: bigint;
457
653
  blockHash: `0x${string}` | null;
458
654
  blockNumber: bigint | null;
459
655
  from: `0x${string}`;
460
- gas: bigint;
461
656
  hash: `0x${string}`;
462
657
  input: `0x${string}`;
463
658
  nonce: number;
@@ -467,11 +662,12 @@ export declare const celo: {
467
662
  transactionIndex: number | null;
468
663
  typeHex: `0x${string}` | null;
469
664
  v: bigint;
470
- value: bigint;
471
665
  gasPrice: undefined;
666
+ maxFeePerBlobGas?: undefined;
472
667
  maxFeePerGas: bigint;
473
668
  maxPriorityFeePerGas: bigint;
474
669
  accessList?: undefined;
670
+ blobVersionedHashes?: undefined;
475
671
  chainId?: number | undefined;
476
672
  yParity: number;
477
673
  type: "cip64";
@@ -495,9 +691,11 @@ export declare const celo: {
495
691
  value: bigint;
496
692
  yParity: number;
497
693
  gasPrice: bigint;
694
+ maxFeePerBlobGas?: undefined;
498
695
  maxFeePerGas?: undefined;
499
696
  maxPriorityFeePerGas?: undefined;
500
697
  accessList: import("../../index.js").AccessList;
698
+ blobVersionedHashes?: undefined;
501
699
  chainId: number;
502
700
  type: "eip2930";
503
701
  feeCurrency: `0x${string}` | null;
@@ -520,9 +718,11 @@ export declare const celo: {
520
718
  value: bigint;
521
719
  yParity: number;
522
720
  gasPrice: undefined;
721
+ maxFeePerBlobGas?: undefined;
523
722
  maxFeePerGas: bigint;
524
723
  maxPriorityFeePerGas: bigint;
525
724
  accessList: import("../../index.js").AccessList;
725
+ blobVersionedHashes?: undefined;
526
726
  chainId: number;
527
727
  type: "eip1559";
528
728
  feeCurrency: `0x${string}` | null;
@@ -545,9 +745,11 @@ export declare const celo: {
545
745
  value: bigint;
546
746
  yParity: number;
547
747
  gasPrice: undefined;
748
+ maxFeePerBlobGas?: undefined;
548
749
  maxFeePerGas: bigint;
549
750
  maxPriorityFeePerGas: bigint;
550
751
  accessList: import("../../index.js").AccessList;
752
+ blobVersionedHashes?: undefined;
551
753
  chainId: number;
552
754
  type: "cip42";
553
755
  feeCurrency: `0x${string}` | null;
@@ -570,9 +772,11 @@ export declare const celo: {
570
772
  value: bigint;
571
773
  yParity: number;
572
774
  gasPrice: undefined;
775
+ maxFeePerBlobGas?: undefined;
573
776
  maxFeePerGas: bigint;
574
777
  maxPriorityFeePerGas: bigint;
575
778
  accessList: import("../../index.js").AccessList;
779
+ blobVersionedHashes?: undefined;
576
780
  chainId: number;
577
781
  type: "cip64";
578
782
  feeCurrency: `0x${string}` | null;
@@ -595,9 +799,11 @@ export declare const celo: {
595
799
  value: bigint;
596
800
  yParity: number;
597
801
  gasPrice: bigint;
802
+ maxFeePerBlobGas?: undefined;
598
803
  maxFeePerGas: undefined;
599
804
  maxPriorityFeePerGas: undefined;
600
805
  accessList: import("../../index.js").AccessList;
806
+ blobVersionedHashes?: undefined;
601
807
  chainId: number;
602
808
  type: "eip2930";
603
809
  feeCurrency: `0x${string}` | null;
@@ -620,9 +826,11 @@ export declare const celo: {
620
826
  value: bigint;
621
827
  yParity: number;
622
828
  gasPrice?: undefined;
829
+ maxFeePerBlobGas?: undefined;
623
830
  maxFeePerGas: bigint;
624
831
  maxPriorityFeePerGas: bigint;
625
832
  accessList: import("../../index.js").AccessList;
833
+ blobVersionedHashes?: undefined;
626
834
  chainId: number;
627
835
  type: "eip1559";
628
836
  feeCurrency: `0x${string}` | null;
@@ -645,9 +853,92 @@ export declare const celo: {
645
853
  value: bigint;
646
854
  yParity: number;
647
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: "cip42";
863
+ feeCurrency: `0x${string}` | null;
864
+ gatewayFee: bigint | null;
865
+ gatewayFeeRecipient: `0x${string}` | null;
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?: undefined;
884
+ maxFeePerGas: bigint;
885
+ maxPriorityFeePerGas: bigint;
886
+ accessList: import("../../index.js").AccessList;
887
+ blobVersionedHashes?: undefined;
888
+ chainId: number;
889
+ type: "cip64";
890
+ feeCurrency: `0x${string}` | null;
891
+ gatewayFee?: undefined;
892
+ gatewayFeeRecipient?: undefined;
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: bigint;
911
+ maxFeePerGas: bigint;
912
+ maxPriorityFeePerGas: bigint;
913
+ accessList: import("../../index.js").AccessList;
914
+ blobVersionedHashes: `0x${string}`[];
915
+ chainId: number;
916
+ type: "eip4844";
917
+ feeCurrency: `0x${string}` | null;
918
+ gatewayFee: bigint | null;
919
+ gatewayFeeRecipient: `0x${string}` | null;
920
+ } | {
921
+ blockHash: `0x${string}` | null;
922
+ blockNumber: bigint | null;
923
+ from: `0x${string}`;
924
+ gas: bigint;
925
+ hash: `0x${string}`;
926
+ input: `0x${string}`;
927
+ nonce: number;
928
+ r: `0x${string}`;
929
+ s: `0x${string}`;
930
+ to: `0x${string}` | null;
931
+ transactionIndex: number | null;
932
+ typeHex: `0x${string}` | null;
933
+ v: bigint;
934
+ value: bigint;
935
+ yParity: number;
936
+ gasPrice?: undefined;
937
+ maxFeePerBlobGas: undefined;
648
938
  maxFeePerGas: bigint;
649
939
  maxPriorityFeePerGas: bigint;
650
940
  accessList: import("../../index.js").AccessList;
941
+ blobVersionedHashes: `0x${string}`[];
651
942
  chainId: number;
652
943
  type: "cip42";
653
944
  feeCurrency: `0x${string}` | null;
@@ -670,9 +961,11 @@ export declare const celo: {
670
961
  value: bigint;
671
962
  yParity: number;
672
963
  gasPrice?: undefined;
964
+ maxFeePerBlobGas: undefined;
673
965
  maxFeePerGas: bigint;
674
966
  maxPriorityFeePerGas: bigint;
675
967
  accessList: import("../../index.js").AccessList;
968
+ blobVersionedHashes: `0x${string}`[];
676
969
  chainId: number;
677
970
  type: "cip64";
678
971
  feeCurrency: `0x${string}` | null;
@@ -695,6 +988,7 @@ export declare const celo: {
695
988
  maxPriorityFeePerGas?: undefined;
696
989
  accessList?: undefined;
697
990
  type?: "0x0" | undefined;
991
+ maxFeePerBlobGas?: undefined;
698
992
  feeCurrency?: `0x${string}` | undefined;
699
993
  gatewayFee?: `0x${string}` | undefined;
700
994
  gatewayFeeRecipient?: `0x${string}` | undefined;
@@ -710,6 +1004,7 @@ export declare const celo: {
710
1004
  maxPriorityFeePerGas?: undefined;
711
1005
  accessList?: import("../../index.js").AccessList | undefined;
712
1006
  type?: "0x1" | undefined;
1007
+ maxFeePerBlobGas?: undefined;
713
1008
  feeCurrency?: `0x${string}` | undefined;
714
1009
  gatewayFee?: `0x${string}` | undefined;
715
1010
  gatewayFeeRecipient?: `0x${string}` | undefined;
@@ -725,6 +1020,7 @@ export declare const celo: {
725
1020
  maxPriorityFeePerGas?: `0x${string}` | undefined;
726
1021
  accessList?: import("../../index.js").AccessList | undefined;
727
1022
  type?: "0x2" | undefined;
1023
+ maxFeePerBlobGas?: undefined;
728
1024
  feeCurrency?: `0x${string}` | undefined;
729
1025
  gatewayFee?: `0x${string}` | undefined;
730
1026
  gatewayFeeRecipient?: `0x${string}` | undefined;
@@ -740,6 +1036,7 @@ export declare const celo: {
740
1036
  maxPriorityFeePerGas?: `0x${string}` | undefined;
741
1037
  accessList?: import("../../index.js").AccessList | undefined;
742
1038
  type?: "0x7c" | undefined;
1039
+ maxFeePerBlobGas?: undefined;
743
1040
  feeCurrency?: `0x${string}` | undefined;
744
1041
  gatewayFee?: `0x${string}` | undefined;
745
1042
  gatewayFeeRecipient?: `0x${string}` | undefined;
@@ -755,6 +1052,7 @@ export declare const celo: {
755
1052
  maxPriorityFeePerGas?: `0x${string}` | undefined;
756
1053
  accessList?: import("../../index.js").AccessList | undefined;
757
1054
  type?: "0x7b" | undefined;
1055
+ maxFeePerBlobGas?: undefined;
758
1056
  feeCurrency?: `0x${string}` | undefined;
759
1057
  gatewayFee?: undefined;
760
1058
  gatewayFeeRecipient?: undefined;
@@ -770,6 +1068,7 @@ export declare const celo: {
770
1068
  maxPriorityFeePerGas?: undefined;
771
1069
  accessList?: undefined;
772
1070
  type?: "0x0" | undefined;
1071
+ maxFeePerBlobGas?: undefined;
773
1072
  feeCurrency?: `0x${string}` | undefined;
774
1073
  gatewayFee?: `0x${string}` | undefined;
775
1074
  gatewayFeeRecipient?: `0x${string}` | undefined;
@@ -785,6 +1084,7 @@ export declare const celo: {
785
1084
  maxPriorityFeePerGas?: undefined;
786
1085
  accessList?: import("../../index.js").AccessList | undefined;
787
1086
  type?: "0x1" | undefined;
1087
+ maxFeePerBlobGas?: undefined;
788
1088
  feeCurrency?: `0x${string}` | undefined;
789
1089
  gatewayFee?: `0x${string}` | undefined;
790
1090
  gatewayFeeRecipient?: `0x${string}` | undefined;
@@ -800,6 +1100,7 @@ export declare const celo: {
800
1100
  maxPriorityFeePerGas?: `0x${string}` | undefined;
801
1101
  accessList?: import("../../index.js").AccessList | undefined;
802
1102
  type?: "0x2" | undefined;
1103
+ maxFeePerBlobGas?: undefined;
803
1104
  feeCurrency?: `0x${string}` | undefined;
804
1105
  gatewayFee?: `0x${string}` | undefined;
805
1106
  gatewayFeeRecipient?: `0x${string}` | undefined;
@@ -815,6 +1116,7 @@ export declare const celo: {
815
1116
  maxPriorityFeePerGas?: `0x${string}` | undefined;
816
1117
  accessList?: import("../../index.js").AccessList | undefined;
817
1118
  type?: "0x7c" | undefined;
1119
+ maxFeePerBlobGas?: undefined;
818
1120
  feeCurrency?: `0x${string}` | undefined;
819
1121
  gatewayFee?: `0x${string}` | undefined;
820
1122
  gatewayFeeRecipient?: `0x${string}` | undefined;
@@ -830,6 +1132,7 @@ export declare const celo: {
830
1132
  maxPriorityFeePerGas?: `0x${string}` | undefined;
831
1133
  accessList?: import("../../index.js").AccessList | undefined;
832
1134
  type?: "0x7b" | undefined;
1135
+ maxFeePerBlobGas?: undefined;
833
1136
  feeCurrency?: `0x${string}` | undefined;
834
1137
  gatewayFee?: undefined;
835
1138
  gatewayFeeRecipient?: undefined;
@@ -845,6 +1148,7 @@ export declare const celo: {
845
1148
  maxPriorityFeePerGas?: undefined;
846
1149
  accessList?: undefined;
847
1150
  type?: "0x0" | undefined;
1151
+ maxFeePerBlobGas?: undefined;
848
1152
  feeCurrency?: `0x${string}` | undefined;
849
1153
  gatewayFee?: `0x${string}` | undefined;
850
1154
  gatewayFeeRecipient?: `0x${string}` | undefined;
@@ -860,6 +1164,7 @@ export declare const celo: {
860
1164
  maxPriorityFeePerGas?: undefined;
861
1165
  accessList?: import("../../index.js").AccessList | undefined;
862
1166
  type?: "0x1" | undefined;
1167
+ maxFeePerBlobGas?: undefined;
863
1168
  feeCurrency?: `0x${string}` | undefined;
864
1169
  gatewayFee?: `0x${string}` | undefined;
865
1170
  gatewayFeeRecipient?: `0x${string}` | undefined;
@@ -875,6 +1180,7 @@ export declare const celo: {
875
1180
  maxPriorityFeePerGas?: `0x${string}` | undefined;
876
1181
  accessList?: import("../../index.js").AccessList | undefined;
877
1182
  type?: "0x2" | undefined;
1183
+ maxFeePerBlobGas?: undefined;
878
1184
  feeCurrency?: `0x${string}` | undefined;
879
1185
  gatewayFee?: `0x${string}` | undefined;
880
1186
  gatewayFeeRecipient?: `0x${string}` | undefined;
@@ -890,6 +1196,7 @@ export declare const celo: {
890
1196
  maxPriorityFeePerGas?: `0x${string}` | undefined;
891
1197
  accessList?: import("../../index.js").AccessList | undefined;
892
1198
  type?: "0x7c" | undefined;
1199
+ maxFeePerBlobGas?: undefined;
893
1200
  feeCurrency?: `0x${string}` | undefined;
894
1201
  gatewayFee?: `0x${string}` | undefined;
895
1202
  gatewayFeeRecipient?: `0x${string}` | undefined;
@@ -905,6 +1212,7 @@ export declare const celo: {
905
1212
  maxPriorityFeePerGas?: `0x${string}` | undefined;
906
1213
  accessList?: import("../../index.js").AccessList | undefined;
907
1214
  type?: "0x7b" | undefined;
1215
+ maxFeePerBlobGas?: undefined;
908
1216
  feeCurrency?: `0x${string}` | undefined;
909
1217
  gatewayFee?: undefined;
910
1218
  gatewayFeeRecipient?: undefined;