viem 2.0.0-beta.8 → 2.0.0-beta.9

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 (46) hide show
  1. package/_cjs/errors/version.js +1 -1
  2. package/_esm/errors/version.js +1 -1
  3. package/_types/actions/public/getBlock.d.ts +1 -1
  4. package/_types/actions/public/getBlock.d.ts.map +1 -1
  5. package/_types/actions/public/getTransaction.d.ts +1 -1
  6. package/_types/actions/public/getTransaction.d.ts.map +1 -1
  7. package/_types/actions/public/getTransactionReceipt.d.ts +1 -1
  8. package/_types/actions/public/getTransactionReceipt.d.ts.map +1 -1
  9. package/_types/chains/celo/chainConfig.d.ts +45 -45
  10. package/_types/chains/celo/formatters.d.ts +45 -45
  11. package/_types/chains/definitions/base.d.ts +34 -34
  12. package/_types/chains/definitions/baseGoerli.d.ts +34 -34
  13. package/_types/chains/definitions/baseSepolia.d.ts +34 -34
  14. package/_types/chains/definitions/celo.d.ts +45 -45
  15. package/_types/chains/definitions/celoAlfajores.d.ts +45 -45
  16. package/_types/chains/definitions/celoCannoli.d.ts +45 -45
  17. package/_types/chains/definitions/optimism.d.ts +34 -34
  18. package/_types/chains/definitions/optimismGoerli.d.ts +34 -34
  19. package/_types/chains/definitions/optimismSepolia.d.ts +34 -34
  20. package/_types/chains/definitions/pgn.d.ts +34 -34
  21. package/_types/chains/definitions/pgnTestnet.d.ts +34 -34
  22. package/_types/chains/definitions/zkSync.d.ts +6 -6
  23. package/_types/chains/definitions/zkSyncTestnet.d.ts +6 -6
  24. package/_types/chains/definitions/zora.d.ts +34 -34
  25. package/_types/chains/definitions/zoraSepolia.d.ts +34 -34
  26. package/_types/chains/definitions/zoraTestnet.d.ts +34 -34
  27. package/_types/chains/opStack/chainConfig.d.ts +34 -34
  28. package/_types/chains/opStack/formatters.d.ts +34 -34
  29. package/_types/chains/zksync/chainConfig.d.ts +6 -6
  30. package/_types/chains/zksync/formatters.d.ts +6 -6
  31. package/_types/errors/version.d.ts +1 -1
  32. package/_types/utils/formatters/block.d.ts +1 -1
  33. package/_types/utils/formatters/block.d.ts.map +1 -1
  34. package/_types/utils/formatters/transaction.d.ts +2 -2
  35. package/_types/utils/formatters/transaction.d.ts.map +1 -1
  36. package/_types/utils/formatters/transactionReceipt.d.ts +1 -1
  37. package/_types/utils/formatters/transactionReceipt.d.ts.map +1 -1
  38. package/_types/utils/formatters/transactionRequest.d.ts +1 -1
  39. package/actions/public/getBlock.ts +1 -1
  40. package/actions/public/getTransaction.ts +1 -1
  41. package/actions/public/getTransactionReceipt.ts +1 -1
  42. package/errors/version.ts +1 -1
  43. package/package.json +1 -1
  44. package/utils/formatters/block.ts +1 -1
  45. package/utils/formatters/transaction.ts +1 -1
  46. package/utils/formatters/transactionReceipt.ts +1 -1
@@ -71,24 +71,24 @@ export declare const celoCannoli: {
71
71
  readonly transaction: {
72
72
  exclude: [] | undefined;
73
73
  format: (args: ({
74
+ hash?: `0x${string}` | undefined;
75
+ nonce?: `0x${string}` | undefined;
74
76
  yParity?: `0x${string}` | undefined;
75
77
  blockHash?: `0x${string}` | null | undefined;
76
78
  blockNumber?: `0x${string}` | null | undefined;
77
79
  from?: `0x${string}` | undefined;
78
80
  gas?: `0x${string}` | undefined;
79
- hash?: `0x${string}` | undefined;
80
81
  input?: `0x${string}` | undefined;
81
- nonce?: `0x${string}` | undefined;
82
82
  r?: `0x${string}` | undefined;
83
83
  s?: `0x${string}` | undefined;
84
84
  to?: `0x${string}` | null | undefined;
85
85
  transactionIndex?: `0x${string}` | null | undefined;
86
86
  v?: `0x${string}` | undefined;
87
87
  value?: `0x${string}` | undefined;
88
- type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
89
88
  gasPrice?: `0x${string}` | undefined;
90
89
  maxFeePerGas?: `0x${string}` | undefined;
91
90
  maxPriorityFeePerGas?: `0x${string}` | undefined;
91
+ type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
92
92
  accessList?: undefined;
93
93
  chainId?: `0x${string}` | undefined;
94
94
  } & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "yParity">, "typeHex"> & {
@@ -96,24 +96,24 @@ export declare const celoCannoli: {
96
96
  gatewayFee: `0x${string}` | null;
97
97
  gatewayFeeRecipient: `0x${string}` | null;
98
98
  }) | ({
99
+ hash?: `0x${string}` | undefined;
100
+ nonce?: `0x${string}` | undefined;
99
101
  yParity?: `0x${string}` | undefined;
100
102
  blockHash?: `0x${string}` | null | undefined;
101
103
  blockNumber?: `0x${string}` | null | undefined;
102
104
  from?: `0x${string}` | undefined;
103
105
  gas?: `0x${string}` | undefined;
104
- hash?: `0x${string}` | undefined;
105
106
  input?: `0x${string}` | undefined;
106
- nonce?: `0x${string}` | undefined;
107
107
  r?: `0x${string}` | undefined;
108
108
  s?: `0x${string}` | undefined;
109
109
  to?: `0x${string}` | null | undefined;
110
110
  transactionIndex?: `0x${string}` | null | undefined;
111
111
  v?: `0x${string}` | undefined;
112
112
  value?: `0x${string}` | undefined;
113
- type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
114
113
  gasPrice?: `0x${string}` | undefined;
115
114
  maxFeePerGas?: `0x${string}` | undefined;
116
115
  maxPriorityFeePerGas?: `0x${string}` | undefined;
116
+ type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
117
117
  accessList?: undefined;
118
118
  chainId?: `0x${string}` | undefined;
119
119
  } & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
@@ -122,24 +122,24 @@ export declare const celoCannoli: {
122
122
  gatewayFeeRecipient: `0x${string}` | null;
123
123
  type: "0x7c";
124
124
  }) | ({
125
+ hash?: `0x${string}` | undefined;
126
+ nonce?: `0x${string}` | undefined;
125
127
  yParity?: `0x${string}` | undefined;
126
128
  blockHash?: `0x${string}` | null | undefined;
127
129
  blockNumber?: `0x${string}` | null | undefined;
128
130
  from?: `0x${string}` | undefined;
129
131
  gas?: `0x${string}` | undefined;
130
- hash?: `0x${string}` | undefined;
131
132
  input?: `0x${string}` | undefined;
132
- nonce?: `0x${string}` | undefined;
133
133
  r?: `0x${string}` | undefined;
134
134
  s?: `0x${string}` | undefined;
135
135
  to?: `0x${string}` | null | undefined;
136
136
  transactionIndex?: `0x${string}` | null | undefined;
137
137
  v?: `0x${string}` | undefined;
138
138
  value?: `0x${string}` | undefined;
139
- type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
140
139
  gasPrice?: `0x${string}` | undefined;
141
140
  maxFeePerGas?: `0x${string}` | undefined;
142
141
  maxPriorityFeePerGas?: `0x${string}` | undefined;
142
+ type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
143
143
  accessList?: undefined;
144
144
  chainId?: `0x${string}` | undefined;
145
145
  } & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
@@ -148,24 +148,24 @@ export declare const celoCannoli: {
148
148
  gatewayFeeRecipient?: undefined;
149
149
  type: "0x7b";
150
150
  }) | ({
151
+ hash?: `0x${string}` | undefined;
152
+ nonce?: `0x${string}` | undefined;
151
153
  yParity?: `0x${string}` | undefined;
152
154
  blockHash?: `0x${string}` | null | undefined;
153
155
  blockNumber?: `0x${string}` | null | undefined;
154
156
  from?: `0x${string}` | undefined;
155
157
  gas?: `0x${string}` | undefined;
156
- hash?: `0x${string}` | undefined;
157
158
  input?: `0x${string}` | undefined;
158
- nonce?: `0x${string}` | undefined;
159
159
  r?: `0x${string}` | undefined;
160
160
  s?: `0x${string}` | undefined;
161
161
  to?: `0x${string}` | null | undefined;
162
162
  transactionIndex?: `0x${string}` | null | undefined;
163
163
  v?: `0x${string}` | undefined;
164
164
  value?: `0x${string}` | undefined;
165
- type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
166
165
  gasPrice?: `0x${string}` | undefined;
167
166
  maxFeePerGas?: `0x${string}` | undefined;
168
167
  maxPriorityFeePerGas?: `0x${string}` | undefined;
168
+ type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
169
169
  accessList?: import("../../index.js").AccessList | undefined;
170
170
  chainId?: `0x${string}` | undefined;
171
171
  } & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "yParity">, "typeHex"> & {
@@ -173,24 +173,24 @@ export declare const celoCannoli: {
173
173
  gatewayFee: `0x${string}` | null;
174
174
  gatewayFeeRecipient: `0x${string}` | null;
175
175
  }) | ({
176
+ hash?: `0x${string}` | undefined;
177
+ nonce?: `0x${string}` | undefined;
176
178
  yParity?: `0x${string}` | undefined;
177
179
  blockHash?: `0x${string}` | null | undefined;
178
180
  blockNumber?: `0x${string}` | null | undefined;
179
181
  from?: `0x${string}` | undefined;
180
182
  gas?: `0x${string}` | undefined;
181
- hash?: `0x${string}` | undefined;
182
183
  input?: `0x${string}` | undefined;
183
- nonce?: `0x${string}` | undefined;
184
184
  r?: `0x${string}` | undefined;
185
185
  s?: `0x${string}` | undefined;
186
186
  to?: `0x${string}` | null | undefined;
187
187
  transactionIndex?: `0x${string}` | null | undefined;
188
188
  v?: `0x${string}` | undefined;
189
189
  value?: `0x${string}` | undefined;
190
- type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
191
190
  gasPrice?: `0x${string}` | undefined;
192
191
  maxFeePerGas?: `0x${string}` | undefined;
193
192
  maxPriorityFeePerGas?: `0x${string}` | undefined;
193
+ type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
194
194
  accessList?: import("../../index.js").AccessList | undefined;
195
195
  chainId?: `0x${string}` | undefined;
196
196
  } & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "yParity">, "typeHex"> & {
@@ -198,24 +198,24 @@ export declare const celoCannoli: {
198
198
  gatewayFee: `0x${string}` | null;
199
199
  gatewayFeeRecipient: `0x${string}` | null;
200
200
  }) | ({
201
+ hash?: `0x${string}` | undefined;
202
+ nonce?: `0x${string}` | undefined;
201
203
  yParity?: `0x${string}` | undefined;
202
204
  blockHash?: `0x${string}` | null | undefined;
203
205
  blockNumber?: `0x${string}` | null | undefined;
204
206
  from?: `0x${string}` | undefined;
205
207
  gas?: `0x${string}` | undefined;
206
- hash?: `0x${string}` | undefined;
207
208
  input?: `0x${string}` | undefined;
208
- nonce?: `0x${string}` | undefined;
209
209
  r?: `0x${string}` | undefined;
210
210
  s?: `0x${string}` | undefined;
211
211
  to?: `0x${string}` | null | undefined;
212
212
  transactionIndex?: `0x${string}` | null | undefined;
213
213
  v?: `0x${string}` | undefined;
214
214
  value?: `0x${string}` | undefined;
215
- type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
216
215
  gasPrice?: `0x${string}` | undefined;
217
216
  maxFeePerGas?: `0x${string}` | undefined;
218
217
  maxPriorityFeePerGas?: `0x${string}` | undefined;
218
+ type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
219
219
  accessList?: import("../../index.js").AccessList | undefined;
220
220
  chainId?: `0x${string}` | undefined;
221
221
  } & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "yParity">, "typeHex"> & {
@@ -223,24 +223,24 @@ export declare const celoCannoli: {
223
223
  gatewayFee: `0x${string}` | null;
224
224
  gatewayFeeRecipient: `0x${string}` | null;
225
225
  }) | ({
226
+ hash?: `0x${string}` | undefined;
227
+ nonce?: `0x${string}` | undefined;
226
228
  yParity?: `0x${string}` | undefined;
227
229
  blockHash?: `0x${string}` | null | undefined;
228
230
  blockNumber?: `0x${string}` | null | undefined;
229
231
  from?: `0x${string}` | undefined;
230
232
  gas?: `0x${string}` | undefined;
231
- hash?: `0x${string}` | undefined;
232
233
  input?: `0x${string}` | undefined;
233
- nonce?: `0x${string}` | undefined;
234
234
  r?: `0x${string}` | undefined;
235
235
  s?: `0x${string}` | undefined;
236
236
  to?: `0x${string}` | null | undefined;
237
237
  transactionIndex?: `0x${string}` | null | undefined;
238
238
  v?: `0x${string}` | undefined;
239
239
  value?: `0x${string}` | undefined;
240
- type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
241
240
  gasPrice?: `0x${string}` | undefined;
242
241
  maxFeePerGas?: `0x${string}` | undefined;
243
242
  maxPriorityFeePerGas?: `0x${string}` | undefined;
243
+ type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
244
244
  accessList?: import("../../index.js").AccessList | undefined;
245
245
  chainId?: `0x${string}` | undefined;
246
246
  } & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
@@ -249,24 +249,24 @@ export declare const celoCannoli: {
249
249
  gatewayFeeRecipient: `0x${string}` | null;
250
250
  type: "0x7c";
251
251
  }) | ({
252
+ hash?: `0x${string}` | undefined;
253
+ nonce?: `0x${string}` | undefined;
252
254
  yParity?: `0x${string}` | undefined;
253
255
  blockHash?: `0x${string}` | null | undefined;
254
256
  blockNumber?: `0x${string}` | null | undefined;
255
257
  from?: `0x${string}` | undefined;
256
258
  gas?: `0x${string}` | undefined;
257
- hash?: `0x${string}` | undefined;
258
259
  input?: `0x${string}` | undefined;
259
- nonce?: `0x${string}` | undefined;
260
260
  r?: `0x${string}` | undefined;
261
261
  s?: `0x${string}` | undefined;
262
262
  to?: `0x${string}` | null | undefined;
263
263
  transactionIndex?: `0x${string}` | null | undefined;
264
264
  v?: `0x${string}` | undefined;
265
265
  value?: `0x${string}` | undefined;
266
- type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
267
266
  gasPrice?: `0x${string}` | undefined;
268
267
  maxFeePerGas?: `0x${string}` | undefined;
269
268
  maxPriorityFeePerGas?: `0x${string}` | undefined;
269
+ type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
270
270
  accessList?: import("../../index.js").AccessList | undefined;
271
271
  chainId?: `0x${string}` | undefined;
272
272
  } & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
@@ -275,24 +275,24 @@ export declare const celoCannoli: {
275
275
  gatewayFeeRecipient?: undefined;
276
276
  type: "0x7b";
277
277
  }) | ({
278
+ hash?: `0x${string}` | undefined;
279
+ nonce?: `0x${string}` | undefined;
278
280
  yParity?: `0x${string}` | undefined;
279
281
  blockHash?: `0x${string}` | null | undefined;
280
282
  blockNumber?: `0x${string}` | null | undefined;
281
283
  from?: `0x${string}` | undefined;
282
284
  gas?: `0x${string}` | undefined;
283
- hash?: `0x${string}` | undefined;
284
285
  input?: `0x${string}` | undefined;
285
- nonce?: `0x${string}` | undefined;
286
286
  r?: `0x${string}` | undefined;
287
287
  s?: `0x${string}` | undefined;
288
288
  to?: `0x${string}` | null | undefined;
289
289
  transactionIndex?: `0x${string}` | null | undefined;
290
290
  v?: `0x${string}` | undefined;
291
291
  value?: `0x${string}` | undefined;
292
- type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
293
292
  gasPrice?: `0x${string}` | undefined;
294
293
  maxFeePerGas?: `0x${string}` | undefined;
295
294
  maxPriorityFeePerGas?: `0x${string}` | undefined;
295
+ type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
296
296
  accessList?: import("../../index.js").AccessList | undefined;
297
297
  chainId?: `0x${string}` | undefined;
298
298
  } & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "yParity">, "typeHex"> & {
@@ -300,24 +300,24 @@ export declare const celoCannoli: {
300
300
  gatewayFee: `0x${string}` | null;
301
301
  gatewayFeeRecipient: `0x${string}` | null;
302
302
  }) | ({
303
+ hash?: `0x${string}` | undefined;
304
+ nonce?: `0x${string}` | undefined;
303
305
  yParity?: `0x${string}` | undefined;
304
306
  blockHash?: `0x${string}` | null | undefined;
305
307
  blockNumber?: `0x${string}` | null | undefined;
306
308
  from?: `0x${string}` | undefined;
307
309
  gas?: `0x${string}` | undefined;
308
- hash?: `0x${string}` | undefined;
309
310
  input?: `0x${string}` | undefined;
310
- nonce?: `0x${string}` | undefined;
311
311
  r?: `0x${string}` | undefined;
312
312
  s?: `0x${string}` | undefined;
313
313
  to?: `0x${string}` | null | undefined;
314
314
  transactionIndex?: `0x${string}` | null | undefined;
315
315
  v?: `0x${string}` | undefined;
316
316
  value?: `0x${string}` | undefined;
317
- type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
318
317
  gasPrice?: `0x${string}` | undefined;
319
318
  maxFeePerGas?: `0x${string}` | undefined;
320
319
  maxPriorityFeePerGas?: `0x${string}` | undefined;
320
+ type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
321
321
  accessList?: import("../../index.js").AccessList | undefined;
322
322
  chainId?: `0x${string}` | undefined;
323
323
  } & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "yParity">, "typeHex"> & {
@@ -325,24 +325,24 @@ export declare const celoCannoli: {
325
325
  gatewayFee: `0x${string}` | null;
326
326
  gatewayFeeRecipient: `0x${string}` | null;
327
327
  }) | ({
328
+ hash?: `0x${string}` | undefined;
329
+ nonce?: `0x${string}` | undefined;
328
330
  yParity?: `0x${string}` | undefined;
329
331
  blockHash?: `0x${string}` | null | undefined;
330
332
  blockNumber?: `0x${string}` | null | undefined;
331
333
  from?: `0x${string}` | undefined;
332
334
  gas?: `0x${string}` | undefined;
333
- hash?: `0x${string}` | undefined;
334
335
  input?: `0x${string}` | undefined;
335
- nonce?: `0x${string}` | undefined;
336
336
  r?: `0x${string}` | undefined;
337
337
  s?: `0x${string}` | undefined;
338
338
  to?: `0x${string}` | null | undefined;
339
339
  transactionIndex?: `0x${string}` | null | undefined;
340
340
  v?: `0x${string}` | undefined;
341
341
  value?: `0x${string}` | undefined;
342
- type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
343
342
  gasPrice?: `0x${string}` | undefined;
344
343
  maxFeePerGas?: `0x${string}` | undefined;
345
344
  maxPriorityFeePerGas?: `0x${string}` | undefined;
345
+ type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
346
346
  accessList?: import("../../index.js").AccessList | undefined;
347
347
  chainId?: `0x${string}` | undefined;
348
348
  } & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "yParity">, "typeHex"> & {
@@ -350,24 +350,24 @@ export declare const celoCannoli: {
350
350
  gatewayFee: `0x${string}` | null;
351
351
  gatewayFeeRecipient: `0x${string}` | null;
352
352
  }) | ({
353
+ hash?: `0x${string}` | undefined;
354
+ nonce?: `0x${string}` | undefined;
353
355
  yParity?: `0x${string}` | undefined;
354
356
  blockHash?: `0x${string}` | null | undefined;
355
357
  blockNumber?: `0x${string}` | null | undefined;
356
358
  from?: `0x${string}` | undefined;
357
359
  gas?: `0x${string}` | undefined;
358
- hash?: `0x${string}` | undefined;
359
360
  input?: `0x${string}` | undefined;
360
- nonce?: `0x${string}` | undefined;
361
361
  r?: `0x${string}` | undefined;
362
362
  s?: `0x${string}` | undefined;
363
363
  to?: `0x${string}` | null | undefined;
364
364
  transactionIndex?: `0x${string}` | null | undefined;
365
365
  v?: `0x${string}` | undefined;
366
366
  value?: `0x${string}` | undefined;
367
- type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
368
367
  gasPrice?: `0x${string}` | undefined;
369
368
  maxFeePerGas?: `0x${string}` | undefined;
370
369
  maxPriorityFeePerGas?: `0x${string}` | undefined;
370
+ type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
371
371
  accessList?: import("../../index.js").AccessList | undefined;
372
372
  chainId?: `0x${string}` | undefined;
373
373
  } & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
@@ -376,24 +376,24 @@ export declare const celoCannoli: {
376
376
  gatewayFeeRecipient: `0x${string}` | null;
377
377
  type: "0x7c";
378
378
  }) | ({
379
+ hash?: `0x${string}` | undefined;
380
+ nonce?: `0x${string}` | undefined;
379
381
  yParity?: `0x${string}` | undefined;
380
382
  blockHash?: `0x${string}` | null | undefined;
381
383
  blockNumber?: `0x${string}` | null | undefined;
382
384
  from?: `0x${string}` | undefined;
383
385
  gas?: `0x${string}` | undefined;
384
- hash?: `0x${string}` | undefined;
385
386
  input?: `0x${string}` | undefined;
386
- nonce?: `0x${string}` | undefined;
387
387
  r?: `0x${string}` | undefined;
388
388
  s?: `0x${string}` | undefined;
389
389
  to?: `0x${string}` | null | undefined;
390
390
  transactionIndex?: `0x${string}` | null | undefined;
391
391
  v?: `0x${string}` | undefined;
392
392
  value?: `0x${string}` | undefined;
393
- type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
394
393
  gasPrice?: `0x${string}` | undefined;
395
394
  maxFeePerGas?: `0x${string}` | undefined;
396
395
  maxPriorityFeePerGas?: `0x${string}` | undefined;
396
+ type?: "0x0" | "0x1" | "0x2" | "0x7c" | "0x7b" | undefined;
397
397
  accessList?: import("../../index.js").AccessList | undefined;
398
398
  chainId?: `0x${string}` | undefined;
399
399
  } & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
@@ -402,13 +402,13 @@ export declare const celoCannoli: {
402
402
  gatewayFeeRecipient?: undefined;
403
403
  type: "0x7b";
404
404
  })) => ({
405
+ hash: `0x${string}`;
406
+ nonce: number;
405
407
  blockHash: `0x${string}` | null;
406
408
  blockNumber: bigint | null;
407
409
  from: `0x${string}`;
408
410
  gas: bigint;
409
- hash: `0x${string}`;
410
411
  input: `0x${string}`;
411
- nonce: number;
412
412
  r: `0x${string}`;
413
413
  s: `0x${string}`;
414
414
  to: `0x${string}` | null;
@@ -427,13 +427,13 @@ export declare const celoCannoli: {
427
427
  gatewayFee: bigint | null;
428
428
  gatewayFeeRecipient: `0x${string}` | null;
429
429
  } | {
430
+ hash: `0x${string}`;
431
+ nonce: number;
430
432
  blockHash: `0x${string}` | null;
431
433
  blockNumber: bigint | null;
432
434
  from: `0x${string}`;
433
435
  gas: bigint;
434
- hash: `0x${string}`;
435
436
  input: `0x${string}`;
436
- nonce: number;
437
437
  r: `0x${string}`;
438
438
  s: `0x${string}`;
439
439
  to: `0x${string}` | null;
@@ -452,13 +452,13 @@ export declare const celoCannoli: {
452
452
  gatewayFee: bigint | null;
453
453
  gatewayFeeRecipient: `0x${string}` | null;
454
454
  } | {
455
+ hash: `0x${string}`;
456
+ nonce: number;
455
457
  blockHash: `0x${string}` | null;
456
458
  blockNumber: bigint | null;
457
459
  from: `0x${string}`;
458
460
  gas: bigint;
459
- hash: `0x${string}`;
460
461
  input: `0x${string}`;
461
- nonce: number;
462
462
  r: `0x${string}`;
463
463
  s: `0x${string}`;
464
464
  to: `0x${string}` | null;