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