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
@@ -84,24 +84,24 @@ export declare const optimism: {
84
84
  readonly transaction: {
85
85
  exclude: [] | undefined;
86
86
  format: (args: ({
87
+ hash?: `0x${string}` | undefined;
88
+ nonce?: `0x${string}` | undefined;
87
89
  yParity?: `0x${string}` | undefined;
88
90
  blockHash?: `0x${string}` | null | undefined;
89
91
  blockNumber?: `0x${string}` | null | undefined;
90
92
  from?: `0x${string}` | undefined;
91
93
  gas?: `0x${string}` | undefined;
92
- hash?: `0x${string}` | undefined;
93
94
  input?: `0x${string}` | undefined;
94
- nonce?: `0x${string}` | undefined;
95
95
  r?: `0x${string}` | undefined;
96
96
  s?: `0x${string}` | undefined;
97
97
  to?: `0x${string}` | null | undefined;
98
98
  transactionIndex?: `0x${string}` | null | undefined;
99
99
  v?: `0x${string}` | undefined;
100
100
  value?: `0x${string}` | undefined;
101
- type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
102
101
  gasPrice?: `0x${string}` | undefined;
103
102
  maxFeePerGas?: `0x${string}` | undefined;
104
103
  maxPriorityFeePerGas?: `0x${string}` | undefined;
104
+ type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
105
105
  accessList?: undefined;
106
106
  chainId?: `0x${string}` | undefined;
107
107
  } & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "yParity">, "typeHex"> & {
@@ -109,24 +109,24 @@ export declare const optimism: {
109
109
  mint?: undefined;
110
110
  sourceHash?: undefined;
111
111
  }) | ({
112
+ hash?: `0x${string}` | undefined;
113
+ nonce?: `0x${string}` | undefined;
112
114
  yParity?: `0x${string}` | undefined;
113
115
  blockHash?: `0x${string}` | null | undefined;
114
116
  blockNumber?: `0x${string}` | null | undefined;
115
117
  from?: `0x${string}` | undefined;
116
118
  gas?: `0x${string}` | undefined;
117
- hash?: `0x${string}` | undefined;
118
119
  input?: `0x${string}` | undefined;
119
- nonce?: `0x${string}` | undefined;
120
120
  r?: `0x${string}` | undefined;
121
121
  s?: `0x${string}` | undefined;
122
122
  to?: `0x${string}` | null | undefined;
123
123
  transactionIndex?: `0x${string}` | null | undefined;
124
124
  v?: `0x${string}` | undefined;
125
125
  value?: `0x${string}` | undefined;
126
- type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
127
126
  gasPrice?: `0x${string}` | undefined;
128
127
  maxFeePerGas?: `0x${string}` | undefined;
129
128
  maxPriorityFeePerGas?: `0x${string}` | undefined;
129
+ type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
130
130
  accessList?: undefined;
131
131
  chainId?: `0x${string}` | undefined;
132
132
  } & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
@@ -135,24 +135,24 @@ export declare const optimism: {
135
135
  sourceHash: `0x${string}`;
136
136
  type: "0x7e";
137
137
  }) | ({
138
+ hash?: `0x${string}` | undefined;
139
+ nonce?: `0x${string}` | undefined;
138
140
  yParity?: `0x${string}` | undefined;
139
141
  blockHash?: `0x${string}` | null | undefined;
140
142
  blockNumber?: `0x${string}` | null | undefined;
141
143
  from?: `0x${string}` | undefined;
142
144
  gas?: `0x${string}` | undefined;
143
- hash?: `0x${string}` | undefined;
144
145
  input?: `0x${string}` | undefined;
145
- nonce?: `0x${string}` | undefined;
146
146
  r?: `0x${string}` | undefined;
147
147
  s?: `0x${string}` | undefined;
148
148
  to?: `0x${string}` | null | undefined;
149
149
  transactionIndex?: `0x${string}` | null | undefined;
150
150
  v?: `0x${string}` | undefined;
151
151
  value?: `0x${string}` | undefined;
152
- type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
153
152
  gasPrice?: `0x${string}` | undefined;
154
153
  maxFeePerGas?: `0x${string}` | undefined;
155
154
  maxPriorityFeePerGas?: `0x${string}` | undefined;
155
+ type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
156
156
  accessList?: import("../../index.js").AccessList | undefined;
157
157
  chainId?: `0x${string}` | undefined;
158
158
  } & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "yParity">, "typeHex"> & {
@@ -160,24 +160,24 @@ export declare const optimism: {
160
160
  mint?: undefined;
161
161
  sourceHash?: undefined;
162
162
  }) | ({
163
+ hash?: `0x${string}` | undefined;
164
+ nonce?: `0x${string}` | undefined;
163
165
  yParity?: `0x${string}` | undefined;
164
166
  blockHash?: `0x${string}` | null | undefined;
165
167
  blockNumber?: `0x${string}` | null | undefined;
166
168
  from?: `0x${string}` | undefined;
167
169
  gas?: `0x${string}` | undefined;
168
- hash?: `0x${string}` | undefined;
169
170
  input?: `0x${string}` | undefined;
170
- nonce?: `0x${string}` | undefined;
171
171
  r?: `0x${string}` | undefined;
172
172
  s?: `0x${string}` | undefined;
173
173
  to?: `0x${string}` | null | undefined;
174
174
  transactionIndex?: `0x${string}` | null | undefined;
175
175
  v?: `0x${string}` | undefined;
176
176
  value?: `0x${string}` | undefined;
177
- type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
178
177
  gasPrice?: `0x${string}` | undefined;
179
178
  maxFeePerGas?: `0x${string}` | undefined;
180
179
  maxPriorityFeePerGas?: `0x${string}` | undefined;
180
+ type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
181
181
  accessList?: import("../../index.js").AccessList | undefined;
182
182
  chainId?: `0x${string}` | undefined;
183
183
  } & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "yParity">, "typeHex"> & {
@@ -185,24 +185,24 @@ export declare const optimism: {
185
185
  mint?: undefined;
186
186
  sourceHash?: undefined;
187
187
  }) | ({
188
+ hash?: `0x${string}` | undefined;
189
+ nonce?: `0x${string}` | undefined;
188
190
  yParity?: `0x${string}` | undefined;
189
191
  blockHash?: `0x${string}` | null | undefined;
190
192
  blockNumber?: `0x${string}` | null | undefined;
191
193
  from?: `0x${string}` | undefined;
192
194
  gas?: `0x${string}` | undefined;
193
- hash?: `0x${string}` | undefined;
194
195
  input?: `0x${string}` | undefined;
195
- nonce?: `0x${string}` | undefined;
196
196
  r?: `0x${string}` | undefined;
197
197
  s?: `0x${string}` | undefined;
198
198
  to?: `0x${string}` | null | undefined;
199
199
  transactionIndex?: `0x${string}` | null | undefined;
200
200
  v?: `0x${string}` | undefined;
201
201
  value?: `0x${string}` | undefined;
202
- type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
203
202
  gasPrice?: `0x${string}` | undefined;
204
203
  maxFeePerGas?: `0x${string}` | undefined;
205
204
  maxPriorityFeePerGas?: `0x${string}` | undefined;
205
+ type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
206
206
  accessList?: import("../../index.js").AccessList | undefined;
207
207
  chainId?: `0x${string}` | undefined;
208
208
  } & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "yParity">, "typeHex"> & {
@@ -210,24 +210,24 @@ export declare const optimism: {
210
210
  mint?: undefined;
211
211
  sourceHash?: undefined;
212
212
  }) | ({
213
+ hash?: `0x${string}` | undefined;
214
+ nonce?: `0x${string}` | undefined;
213
215
  yParity?: `0x${string}` | undefined;
214
216
  blockHash?: `0x${string}` | null | undefined;
215
217
  blockNumber?: `0x${string}` | null | undefined;
216
218
  from?: `0x${string}` | undefined;
217
219
  gas?: `0x${string}` | undefined;
218
- hash?: `0x${string}` | undefined;
219
220
  input?: `0x${string}` | undefined;
220
- nonce?: `0x${string}` | undefined;
221
221
  r?: `0x${string}` | undefined;
222
222
  s?: `0x${string}` | undefined;
223
223
  to?: `0x${string}` | null | undefined;
224
224
  transactionIndex?: `0x${string}` | null | undefined;
225
225
  v?: `0x${string}` | undefined;
226
226
  value?: `0x${string}` | undefined;
227
- type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
228
227
  gasPrice?: `0x${string}` | undefined;
229
228
  maxFeePerGas?: `0x${string}` | undefined;
230
229
  maxPriorityFeePerGas?: `0x${string}` | undefined;
230
+ type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
231
231
  accessList?: import("../../index.js").AccessList | undefined;
232
232
  chainId?: `0x${string}` | undefined;
233
233
  } & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
@@ -236,24 +236,24 @@ export declare const optimism: {
236
236
  sourceHash: `0x${string}`;
237
237
  type: "0x7e";
238
238
  }) | ({
239
+ hash?: `0x${string}` | undefined;
240
+ nonce?: `0x${string}` | undefined;
239
241
  yParity?: `0x${string}` | undefined;
240
242
  blockHash?: `0x${string}` | null | undefined;
241
243
  blockNumber?: `0x${string}` | null | undefined;
242
244
  from?: `0x${string}` | undefined;
243
245
  gas?: `0x${string}` | undefined;
244
- hash?: `0x${string}` | undefined;
245
246
  input?: `0x${string}` | undefined;
246
- nonce?: `0x${string}` | undefined;
247
247
  r?: `0x${string}` | undefined;
248
248
  s?: `0x${string}` | undefined;
249
249
  to?: `0x${string}` | null | undefined;
250
250
  transactionIndex?: `0x${string}` | null | undefined;
251
251
  v?: `0x${string}` | undefined;
252
252
  value?: `0x${string}` | undefined;
253
- type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
254
253
  gasPrice?: `0x${string}` | undefined;
255
254
  maxFeePerGas?: `0x${string}` | undefined;
256
255
  maxPriorityFeePerGas?: `0x${string}` | undefined;
256
+ type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
257
257
  accessList?: import("../../index.js").AccessList | undefined;
258
258
  chainId?: `0x${string}` | undefined;
259
259
  } & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "yParity">, "typeHex"> & {
@@ -261,24 +261,24 @@ export declare const optimism: {
261
261
  mint?: undefined;
262
262
  sourceHash?: undefined;
263
263
  }) | ({
264
+ hash?: `0x${string}` | undefined;
265
+ nonce?: `0x${string}` | undefined;
264
266
  yParity?: `0x${string}` | undefined;
265
267
  blockHash?: `0x${string}` | null | undefined;
266
268
  blockNumber?: `0x${string}` | null | undefined;
267
269
  from?: `0x${string}` | undefined;
268
270
  gas?: `0x${string}` | undefined;
269
- hash?: `0x${string}` | undefined;
270
271
  input?: `0x${string}` | undefined;
271
- nonce?: `0x${string}` | undefined;
272
272
  r?: `0x${string}` | undefined;
273
273
  s?: `0x${string}` | undefined;
274
274
  to?: `0x${string}` | null | undefined;
275
275
  transactionIndex?: `0x${string}` | null | undefined;
276
276
  v?: `0x${string}` | undefined;
277
277
  value?: `0x${string}` | undefined;
278
- type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
279
278
  gasPrice?: `0x${string}` | undefined;
280
279
  maxFeePerGas?: `0x${string}` | undefined;
281
280
  maxPriorityFeePerGas?: `0x${string}` | undefined;
281
+ type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
282
282
  accessList?: import("../../index.js").AccessList | undefined;
283
283
  chainId?: `0x${string}` | undefined;
284
284
  } & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "yParity">, "typeHex"> & {
@@ -286,24 +286,24 @@ export declare const optimism: {
286
286
  mint?: undefined;
287
287
  sourceHash?: undefined;
288
288
  }) | ({
289
+ hash?: `0x${string}` | undefined;
290
+ nonce?: `0x${string}` | undefined;
289
291
  yParity?: `0x${string}` | undefined;
290
292
  blockHash?: `0x${string}` | null | undefined;
291
293
  blockNumber?: `0x${string}` | null | undefined;
292
294
  from?: `0x${string}` | undefined;
293
295
  gas?: `0x${string}` | undefined;
294
- hash?: `0x${string}` | undefined;
295
296
  input?: `0x${string}` | undefined;
296
- nonce?: `0x${string}` | undefined;
297
297
  r?: `0x${string}` | undefined;
298
298
  s?: `0x${string}` | undefined;
299
299
  to?: `0x${string}` | null | undefined;
300
300
  transactionIndex?: `0x${string}` | null | undefined;
301
301
  v?: `0x${string}` | undefined;
302
302
  value?: `0x${string}` | undefined;
303
- type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
304
303
  gasPrice?: `0x${string}` | undefined;
305
304
  maxFeePerGas?: `0x${string}` | undefined;
306
305
  maxPriorityFeePerGas?: `0x${string}` | undefined;
306
+ type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
307
307
  accessList?: import("../../index.js").AccessList | undefined;
308
308
  chainId?: `0x${string}` | undefined;
309
309
  } & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "yParity">, "typeHex"> & {
@@ -311,24 +311,24 @@ export declare const optimism: {
311
311
  mint?: undefined;
312
312
  sourceHash?: undefined;
313
313
  }) | ({
314
+ hash?: `0x${string}` | undefined;
315
+ nonce?: `0x${string}` | undefined;
314
316
  yParity?: `0x${string}` | undefined;
315
317
  blockHash?: `0x${string}` | null | undefined;
316
318
  blockNumber?: `0x${string}` | null | undefined;
317
319
  from?: `0x${string}` | undefined;
318
320
  gas?: `0x${string}` | undefined;
319
- hash?: `0x${string}` | undefined;
320
321
  input?: `0x${string}` | undefined;
321
- nonce?: `0x${string}` | undefined;
322
322
  r?: `0x${string}` | undefined;
323
323
  s?: `0x${string}` | undefined;
324
324
  to?: `0x${string}` | null | undefined;
325
325
  transactionIndex?: `0x${string}` | null | undefined;
326
326
  v?: `0x${string}` | undefined;
327
327
  value?: `0x${string}` | undefined;
328
- type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
329
328
  gasPrice?: `0x${string}` | undefined;
330
329
  maxFeePerGas?: `0x${string}` | undefined;
331
330
  maxPriorityFeePerGas?: `0x${string}` | undefined;
331
+ type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
332
332
  accessList?: import("../../index.js").AccessList | undefined;
333
333
  chainId?: `0x${string}` | undefined;
334
334
  } & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
@@ -337,13 +337,13 @@ export declare const optimism: {
337
337
  sourceHash: `0x${string}`;
338
338
  type: "0x7e";
339
339
  })) => ({
340
+ hash: `0x${string}`;
341
+ nonce: number;
340
342
  blockHash: `0x${string}` | null;
341
343
  blockNumber: bigint | null;
342
344
  from: `0x${string}`;
343
345
  gas: bigint;
344
- hash: `0x${string}`;
345
346
  input: `0x${string}`;
346
- nonce: number;
347
347
  r: `0x${string}`;
348
348
  s: `0x${string}`;
349
349
  to: `0x${string}` | null;
@@ -362,13 +362,13 @@ export declare const optimism: {
362
362
  mint?: undefined;
363
363
  sourceHash?: undefined;
364
364
  } | {
365
+ hash: `0x${string}`;
366
+ nonce: number;
365
367
  blockHash: `0x${string}` | null;
366
368
  blockNumber: bigint | null;
367
369
  from: `0x${string}`;
368
370
  gas: bigint;
369
- hash: `0x${string}`;
370
371
  input: `0x${string}`;
371
- nonce: number;
372
372
  r: `0x${string}`;
373
373
  s: `0x${string}`;
374
374
  to: `0x${string}` | null;
@@ -84,24 +84,24 @@ export declare const optimismGoerli: {
84
84
  readonly transaction: {
85
85
  exclude: [] | undefined;
86
86
  format: (args: ({
87
+ hash?: `0x${string}` | undefined;
88
+ nonce?: `0x${string}` | undefined;
87
89
  yParity?: `0x${string}` | undefined;
88
90
  blockHash?: `0x${string}` | null | undefined;
89
91
  blockNumber?: `0x${string}` | null | undefined;
90
92
  from?: `0x${string}` | undefined;
91
93
  gas?: `0x${string}` | undefined;
92
- hash?: `0x${string}` | undefined;
93
94
  input?: `0x${string}` | undefined;
94
- nonce?: `0x${string}` | undefined;
95
95
  r?: `0x${string}` | undefined;
96
96
  s?: `0x${string}` | undefined;
97
97
  to?: `0x${string}` | null | undefined;
98
98
  transactionIndex?: `0x${string}` | null | undefined;
99
99
  v?: `0x${string}` | undefined;
100
100
  value?: `0x${string}` | undefined;
101
- type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
102
101
  gasPrice?: `0x${string}` | undefined;
103
102
  maxFeePerGas?: `0x${string}` | undefined;
104
103
  maxPriorityFeePerGas?: `0x${string}` | undefined;
104
+ type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
105
105
  accessList?: undefined;
106
106
  chainId?: `0x${string}` | undefined;
107
107
  } & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "yParity">, "typeHex"> & {
@@ -109,24 +109,24 @@ export declare const optimismGoerli: {
109
109
  mint?: undefined;
110
110
  sourceHash?: undefined;
111
111
  }) | ({
112
+ hash?: `0x${string}` | undefined;
113
+ nonce?: `0x${string}` | undefined;
112
114
  yParity?: `0x${string}` | undefined;
113
115
  blockHash?: `0x${string}` | null | undefined;
114
116
  blockNumber?: `0x${string}` | null | undefined;
115
117
  from?: `0x${string}` | undefined;
116
118
  gas?: `0x${string}` | undefined;
117
- hash?: `0x${string}` | undefined;
118
119
  input?: `0x${string}` | undefined;
119
- nonce?: `0x${string}` | undefined;
120
120
  r?: `0x${string}` | undefined;
121
121
  s?: `0x${string}` | undefined;
122
122
  to?: `0x${string}` | null | undefined;
123
123
  transactionIndex?: `0x${string}` | null | undefined;
124
124
  v?: `0x${string}` | undefined;
125
125
  value?: `0x${string}` | undefined;
126
- type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
127
126
  gasPrice?: `0x${string}` | undefined;
128
127
  maxFeePerGas?: `0x${string}` | undefined;
129
128
  maxPriorityFeePerGas?: `0x${string}` | undefined;
129
+ type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
130
130
  accessList?: undefined;
131
131
  chainId?: `0x${string}` | undefined;
132
132
  } & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
@@ -135,24 +135,24 @@ export declare const optimismGoerli: {
135
135
  sourceHash: `0x${string}`;
136
136
  type: "0x7e";
137
137
  }) | ({
138
+ hash?: `0x${string}` | undefined;
139
+ nonce?: `0x${string}` | undefined;
138
140
  yParity?: `0x${string}` | undefined;
139
141
  blockHash?: `0x${string}` | null | undefined;
140
142
  blockNumber?: `0x${string}` | null | undefined;
141
143
  from?: `0x${string}` | undefined;
142
144
  gas?: `0x${string}` | undefined;
143
- hash?: `0x${string}` | undefined;
144
145
  input?: `0x${string}` | undefined;
145
- nonce?: `0x${string}` | undefined;
146
146
  r?: `0x${string}` | undefined;
147
147
  s?: `0x${string}` | undefined;
148
148
  to?: `0x${string}` | null | undefined;
149
149
  transactionIndex?: `0x${string}` | null | undefined;
150
150
  v?: `0x${string}` | undefined;
151
151
  value?: `0x${string}` | undefined;
152
- type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
153
152
  gasPrice?: `0x${string}` | undefined;
154
153
  maxFeePerGas?: `0x${string}` | undefined;
155
154
  maxPriorityFeePerGas?: `0x${string}` | undefined;
155
+ type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
156
156
  accessList?: import("../../index.js").AccessList | undefined;
157
157
  chainId?: `0x${string}` | undefined;
158
158
  } & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "yParity">, "typeHex"> & {
@@ -160,24 +160,24 @@ export declare const optimismGoerli: {
160
160
  mint?: undefined;
161
161
  sourceHash?: undefined;
162
162
  }) | ({
163
+ hash?: `0x${string}` | undefined;
164
+ nonce?: `0x${string}` | undefined;
163
165
  yParity?: `0x${string}` | undefined;
164
166
  blockHash?: `0x${string}` | null | undefined;
165
167
  blockNumber?: `0x${string}` | null | undefined;
166
168
  from?: `0x${string}` | undefined;
167
169
  gas?: `0x${string}` | undefined;
168
- hash?: `0x${string}` | undefined;
169
170
  input?: `0x${string}` | undefined;
170
- nonce?: `0x${string}` | undefined;
171
171
  r?: `0x${string}` | undefined;
172
172
  s?: `0x${string}` | undefined;
173
173
  to?: `0x${string}` | null | undefined;
174
174
  transactionIndex?: `0x${string}` | null | undefined;
175
175
  v?: `0x${string}` | undefined;
176
176
  value?: `0x${string}` | undefined;
177
- type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
178
177
  gasPrice?: `0x${string}` | undefined;
179
178
  maxFeePerGas?: `0x${string}` | undefined;
180
179
  maxPriorityFeePerGas?: `0x${string}` | undefined;
180
+ type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
181
181
  accessList?: import("../../index.js").AccessList | undefined;
182
182
  chainId?: `0x${string}` | undefined;
183
183
  } & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "yParity">, "typeHex"> & {
@@ -185,24 +185,24 @@ export declare const optimismGoerli: {
185
185
  mint?: undefined;
186
186
  sourceHash?: undefined;
187
187
  }) | ({
188
+ hash?: `0x${string}` | undefined;
189
+ nonce?: `0x${string}` | undefined;
188
190
  yParity?: `0x${string}` | undefined;
189
191
  blockHash?: `0x${string}` | null | undefined;
190
192
  blockNumber?: `0x${string}` | null | undefined;
191
193
  from?: `0x${string}` | undefined;
192
194
  gas?: `0x${string}` | undefined;
193
- hash?: `0x${string}` | undefined;
194
195
  input?: `0x${string}` | undefined;
195
- nonce?: `0x${string}` | undefined;
196
196
  r?: `0x${string}` | undefined;
197
197
  s?: `0x${string}` | undefined;
198
198
  to?: `0x${string}` | null | undefined;
199
199
  transactionIndex?: `0x${string}` | null | undefined;
200
200
  v?: `0x${string}` | undefined;
201
201
  value?: `0x${string}` | undefined;
202
- type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
203
202
  gasPrice?: `0x${string}` | undefined;
204
203
  maxFeePerGas?: `0x${string}` | undefined;
205
204
  maxPriorityFeePerGas?: `0x${string}` | undefined;
205
+ type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
206
206
  accessList?: import("../../index.js").AccessList | undefined;
207
207
  chainId?: `0x${string}` | undefined;
208
208
  } & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "yParity">, "typeHex"> & {
@@ -210,24 +210,24 @@ export declare const optimismGoerli: {
210
210
  mint?: undefined;
211
211
  sourceHash?: undefined;
212
212
  }) | ({
213
+ hash?: `0x${string}` | undefined;
214
+ nonce?: `0x${string}` | undefined;
213
215
  yParity?: `0x${string}` | undefined;
214
216
  blockHash?: `0x${string}` | null | undefined;
215
217
  blockNumber?: `0x${string}` | null | undefined;
216
218
  from?: `0x${string}` | undefined;
217
219
  gas?: `0x${string}` | undefined;
218
- hash?: `0x${string}` | undefined;
219
220
  input?: `0x${string}` | undefined;
220
- nonce?: `0x${string}` | undefined;
221
221
  r?: `0x${string}` | undefined;
222
222
  s?: `0x${string}` | undefined;
223
223
  to?: `0x${string}` | null | undefined;
224
224
  transactionIndex?: `0x${string}` | null | undefined;
225
225
  v?: `0x${string}` | undefined;
226
226
  value?: `0x${string}` | undefined;
227
- type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
228
227
  gasPrice?: `0x${string}` | undefined;
229
228
  maxFeePerGas?: `0x${string}` | undefined;
230
229
  maxPriorityFeePerGas?: `0x${string}` | undefined;
230
+ type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
231
231
  accessList?: import("../../index.js").AccessList | undefined;
232
232
  chainId?: `0x${string}` | undefined;
233
233
  } & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
@@ -236,24 +236,24 @@ export declare const optimismGoerli: {
236
236
  sourceHash: `0x${string}`;
237
237
  type: "0x7e";
238
238
  }) | ({
239
+ hash?: `0x${string}` | undefined;
240
+ nonce?: `0x${string}` | undefined;
239
241
  yParity?: `0x${string}` | undefined;
240
242
  blockHash?: `0x${string}` | null | undefined;
241
243
  blockNumber?: `0x${string}` | null | undefined;
242
244
  from?: `0x${string}` | undefined;
243
245
  gas?: `0x${string}` | undefined;
244
- hash?: `0x${string}` | undefined;
245
246
  input?: `0x${string}` | undefined;
246
- nonce?: `0x${string}` | undefined;
247
247
  r?: `0x${string}` | undefined;
248
248
  s?: `0x${string}` | undefined;
249
249
  to?: `0x${string}` | null | undefined;
250
250
  transactionIndex?: `0x${string}` | null | undefined;
251
251
  v?: `0x${string}` | undefined;
252
252
  value?: `0x${string}` | undefined;
253
- type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
254
253
  gasPrice?: `0x${string}` | undefined;
255
254
  maxFeePerGas?: `0x${string}` | undefined;
256
255
  maxPriorityFeePerGas?: `0x${string}` | undefined;
256
+ type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
257
257
  accessList?: import("../../index.js").AccessList | undefined;
258
258
  chainId?: `0x${string}` | undefined;
259
259
  } & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "yParity">, "typeHex"> & {
@@ -261,24 +261,24 @@ export declare const optimismGoerli: {
261
261
  mint?: undefined;
262
262
  sourceHash?: undefined;
263
263
  }) | ({
264
+ hash?: `0x${string}` | undefined;
265
+ nonce?: `0x${string}` | undefined;
264
266
  yParity?: `0x${string}` | undefined;
265
267
  blockHash?: `0x${string}` | null | undefined;
266
268
  blockNumber?: `0x${string}` | null | undefined;
267
269
  from?: `0x${string}` | undefined;
268
270
  gas?: `0x${string}` | undefined;
269
- hash?: `0x${string}` | undefined;
270
271
  input?: `0x${string}` | undefined;
271
- nonce?: `0x${string}` | undefined;
272
272
  r?: `0x${string}` | undefined;
273
273
  s?: `0x${string}` | undefined;
274
274
  to?: `0x${string}` | null | undefined;
275
275
  transactionIndex?: `0x${string}` | null | undefined;
276
276
  v?: `0x${string}` | undefined;
277
277
  value?: `0x${string}` | undefined;
278
- type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
279
278
  gasPrice?: `0x${string}` | undefined;
280
279
  maxFeePerGas?: `0x${string}` | undefined;
281
280
  maxPriorityFeePerGas?: `0x${string}` | undefined;
281
+ type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
282
282
  accessList?: import("../../index.js").AccessList | undefined;
283
283
  chainId?: `0x${string}` | undefined;
284
284
  } & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "yParity">, "typeHex"> & {
@@ -286,24 +286,24 @@ export declare const optimismGoerli: {
286
286
  mint?: undefined;
287
287
  sourceHash?: undefined;
288
288
  }) | ({
289
+ hash?: `0x${string}` | undefined;
290
+ nonce?: `0x${string}` | undefined;
289
291
  yParity?: `0x${string}` | undefined;
290
292
  blockHash?: `0x${string}` | null | undefined;
291
293
  blockNumber?: `0x${string}` | null | undefined;
292
294
  from?: `0x${string}` | undefined;
293
295
  gas?: `0x${string}` | undefined;
294
- hash?: `0x${string}` | undefined;
295
296
  input?: `0x${string}` | undefined;
296
- nonce?: `0x${string}` | undefined;
297
297
  r?: `0x${string}` | undefined;
298
298
  s?: `0x${string}` | undefined;
299
299
  to?: `0x${string}` | null | undefined;
300
300
  transactionIndex?: `0x${string}` | null | undefined;
301
301
  v?: `0x${string}` | undefined;
302
302
  value?: `0x${string}` | undefined;
303
- type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
304
303
  gasPrice?: `0x${string}` | undefined;
305
304
  maxFeePerGas?: `0x${string}` | undefined;
306
305
  maxPriorityFeePerGas?: `0x${string}` | undefined;
306
+ type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
307
307
  accessList?: import("../../index.js").AccessList | undefined;
308
308
  chainId?: `0x${string}` | undefined;
309
309
  } & import("../index.js").Omit<import("../index.js").PartialBy<import("../../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "yParity">, "typeHex"> & {
@@ -311,24 +311,24 @@ export declare const optimismGoerli: {
311
311
  mint?: undefined;
312
312
  sourceHash?: undefined;
313
313
  }) | ({
314
+ hash?: `0x${string}` | undefined;
315
+ nonce?: `0x${string}` | undefined;
314
316
  yParity?: `0x${string}` | undefined;
315
317
  blockHash?: `0x${string}` | null | undefined;
316
318
  blockNumber?: `0x${string}` | null | undefined;
317
319
  from?: `0x${string}` | undefined;
318
320
  gas?: `0x${string}` | undefined;
319
- hash?: `0x${string}` | undefined;
320
321
  input?: `0x${string}` | undefined;
321
- nonce?: `0x${string}` | undefined;
322
322
  r?: `0x${string}` | undefined;
323
323
  s?: `0x${string}` | undefined;
324
324
  to?: `0x${string}` | null | undefined;
325
325
  transactionIndex?: `0x${string}` | null | undefined;
326
326
  v?: `0x${string}` | undefined;
327
327
  value?: `0x${string}` | undefined;
328
- type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
329
328
  gasPrice?: `0x${string}` | undefined;
330
329
  maxFeePerGas?: `0x${string}` | undefined;
331
330
  maxPriorityFeePerGas?: `0x${string}` | undefined;
331
+ type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
332
332
  accessList?: import("../../index.js").AccessList | undefined;
333
333
  chainId?: `0x${string}` | undefined;
334
334
  } & Omit<import("../../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../../index.js").FeeValuesEIP1559<`0x${string}`> & {
@@ -337,13 +337,13 @@ export declare const optimismGoerli: {
337
337
  sourceHash: `0x${string}`;
338
338
  type: "0x7e";
339
339
  })) => ({
340
+ hash: `0x${string}`;
341
+ nonce: number;
340
342
  blockHash: `0x${string}` | null;
341
343
  blockNumber: bigint | null;
342
344
  from: `0x${string}`;
343
345
  gas: bigint;
344
- hash: `0x${string}`;
345
346
  input: `0x${string}`;
346
- nonce: number;
347
347
  r: `0x${string}`;
348
348
  s: `0x${string}`;
349
349
  to: `0x${string}` | null;
@@ -362,13 +362,13 @@ export declare const optimismGoerli: {
362
362
  mint?: undefined;
363
363
  sourceHash?: undefined;
364
364
  } | {
365
+ hash: `0x${string}`;
366
+ nonce: number;
365
367
  blockHash: `0x${string}` | null;
366
368
  blockNumber: bigint | null;
367
369
  from: `0x${string}`;
368
370
  gas: bigint;
369
- hash: `0x${string}`;
370
371
  input: `0x${string}`;
371
- nonce: number;
372
372
  r: `0x${string}`;
373
373
  s: `0x${string}`;
374
374
  to: `0x${string}` | null;