viem 0.0.0-w-20230818192605 → 0.0.0-w-20230818230619
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.
- package/dist/types/chains/celo/formatters.d.ts +4 -4
- package/dist/types/chains/index.d.ts +1261 -60
- package/dist/types/chains/index.d.ts.map +1 -1
- package/dist/types/chains/optimism/formatters.d.ts +212 -12
- package/dist/types/chains/optimism/formatters.d.ts.map +1 -1
- package/dist/types/types/utils.d.ts +3 -69
- package/dist/types/types/utils.d.ts.map +1 -1
- package/dist/types/utils/formatters/transaction.d.ts +1 -1
- package/dist/types/utils/formatters/transactionRequest.d.ts +1 -1
- package/package.json +1 -1
- package/src/chains/index.ts +3 -0
- package/src/types/utils.ts +6 -93
@@ -286,45 +286,245 @@ export declare const base: import("../types/utils.js").Assign<{
|
|
286
286
|
};
|
287
287
|
readonly transaction: {
|
288
288
|
exclude: [] | undefined;
|
289
|
-
format: (args: (
|
289
|
+
format: (args: ({
|
290
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
291
|
+
blockHash?: `0x${string}` | null | undefined;
|
292
|
+
blockNumber?: `0x${string}` | null | undefined;
|
293
|
+
from?: `0x${string}` | undefined;
|
294
|
+
gas?: `0x${string}` | undefined;
|
295
|
+
hash?: `0x${string}` | undefined;
|
296
|
+
input?: `0x${string}` | undefined;
|
297
|
+
nonce?: `0x${string}` | undefined;
|
298
|
+
r?: `0x${string}` | undefined;
|
299
|
+
s?: `0x${string}` | undefined;
|
300
|
+
to?: `0x${string}` | null | undefined;
|
301
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
302
|
+
v?: `0x${string}` | undefined;
|
303
|
+
value?: `0x${string}` | undefined;
|
304
|
+
gasPrice?: `0x${string}` | undefined;
|
305
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
306
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
307
|
+
accessList?: undefined;
|
308
|
+
chainId?: `0x${string}` | undefined;
|
309
|
+
} & Omit<import("../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
|
290
310
|
isSystemTx?: undefined;
|
291
311
|
mint?: undefined;
|
292
312
|
sourceHash?: undefined;
|
293
|
-
}) | (
|
313
|
+
}) | ({
|
314
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
315
|
+
blockHash?: `0x${string}` | null | undefined;
|
316
|
+
blockNumber?: `0x${string}` | null | undefined;
|
317
|
+
from?: `0x${string}` | undefined;
|
318
|
+
gas?: `0x${string}` | undefined;
|
319
|
+
hash?: `0x${string}` | undefined;
|
320
|
+
input?: `0x${string}` | undefined;
|
321
|
+
nonce?: `0x${string}` | undefined;
|
322
|
+
r?: `0x${string}` | undefined;
|
323
|
+
s?: `0x${string}` | undefined;
|
324
|
+
to?: `0x${string}` | null | undefined;
|
325
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
326
|
+
v?: `0x${string}` | undefined;
|
327
|
+
value?: `0x${string}` | undefined;
|
328
|
+
gasPrice?: `0x${string}` | undefined;
|
329
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
330
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
331
|
+
accessList?: undefined;
|
332
|
+
chainId?: `0x${string}` | undefined;
|
333
|
+
} & Omit<import("../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
294
334
|
isSystemTx?: boolean | undefined;
|
295
335
|
mint?: `0x${string}` | undefined;
|
296
336
|
sourceHash: `0x${string}`;
|
297
337
|
type: "0x7e";
|
298
|
-
}) | (
|
338
|
+
}) | ({
|
339
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
340
|
+
blockHash?: `0x${string}` | null | undefined;
|
341
|
+
blockNumber?: `0x${string}` | null | undefined;
|
342
|
+
from?: `0x${string}` | undefined;
|
343
|
+
gas?: `0x${string}` | undefined;
|
344
|
+
hash?: `0x${string}` | undefined;
|
345
|
+
input?: `0x${string}` | undefined;
|
346
|
+
nonce?: `0x${string}` | undefined;
|
347
|
+
r?: `0x${string}` | undefined;
|
348
|
+
s?: `0x${string}` | undefined;
|
349
|
+
to?: `0x${string}` | null | undefined;
|
350
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
351
|
+
v?: `0x${string}` | undefined;
|
352
|
+
value?: `0x${string}` | undefined;
|
353
|
+
gasPrice?: `0x${string}` | undefined;
|
354
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
355
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
356
|
+
accessList?: import("../index.js").AccessList | undefined;
|
357
|
+
chainId?: `0x${string}` | undefined;
|
358
|
+
} & Omit<import("../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
|
299
359
|
isSystemTx?: undefined;
|
300
360
|
mint?: undefined;
|
301
361
|
sourceHash?: undefined;
|
302
|
-
}) | (
|
362
|
+
}) | ({
|
363
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
364
|
+
blockHash?: `0x${string}` | null | undefined;
|
365
|
+
blockNumber?: `0x${string}` | null | undefined;
|
366
|
+
from?: `0x${string}` | undefined;
|
367
|
+
gas?: `0x${string}` | undefined;
|
368
|
+
hash?: `0x${string}` | undefined;
|
369
|
+
input?: `0x${string}` | undefined;
|
370
|
+
nonce?: `0x${string}` | undefined;
|
371
|
+
r?: `0x${string}` | undefined;
|
372
|
+
s?: `0x${string}` | undefined;
|
373
|
+
to?: `0x${string}` | null | undefined;
|
374
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
375
|
+
v?: `0x${string}` | undefined;
|
376
|
+
value?: `0x${string}` | undefined;
|
377
|
+
gasPrice?: `0x${string}` | undefined;
|
378
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
379
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
380
|
+
accessList?: import("../index.js").AccessList | undefined;
|
381
|
+
chainId?: `0x${string}` | undefined;
|
382
|
+
} & Omit<import("../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "typeHex"> & {
|
303
383
|
isSystemTx?: undefined;
|
304
384
|
mint?: undefined;
|
305
385
|
sourceHash?: undefined;
|
306
|
-
}) | (
|
386
|
+
}) | ({
|
387
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
388
|
+
blockHash?: `0x${string}` | null | undefined;
|
389
|
+
blockNumber?: `0x${string}` | null | undefined;
|
390
|
+
from?: `0x${string}` | undefined;
|
391
|
+
gas?: `0x${string}` | undefined;
|
392
|
+
hash?: `0x${string}` | undefined;
|
393
|
+
input?: `0x${string}` | undefined;
|
394
|
+
nonce?: `0x${string}` | undefined;
|
395
|
+
r?: `0x${string}` | undefined;
|
396
|
+
s?: `0x${string}` | undefined;
|
397
|
+
to?: `0x${string}` | null | undefined;
|
398
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
399
|
+
v?: `0x${string}` | undefined;
|
400
|
+
value?: `0x${string}` | undefined;
|
401
|
+
gasPrice?: `0x${string}` | undefined;
|
402
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
403
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
404
|
+
accessList?: import("../index.js").AccessList | undefined;
|
405
|
+
chainId?: `0x${string}` | undefined;
|
406
|
+
} & Omit<import("../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "typeHex"> & {
|
307
407
|
isSystemTx?: undefined;
|
308
408
|
mint?: undefined;
|
309
409
|
sourceHash?: undefined;
|
310
|
-
}) | (
|
410
|
+
}) | ({
|
411
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
412
|
+
blockHash?: `0x${string}` | null | undefined;
|
413
|
+
blockNumber?: `0x${string}` | null | undefined;
|
414
|
+
from?: `0x${string}` | undefined;
|
415
|
+
gas?: `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;
|
424
|
+
value?: `0x${string}` | undefined;
|
425
|
+
gasPrice?: `0x${string}` | undefined;
|
426
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
427
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
428
|
+
accessList?: import("../index.js").AccessList | undefined;
|
429
|
+
chainId?: `0x${string}` | undefined;
|
430
|
+
} & Omit<import("../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
311
431
|
isSystemTx?: boolean | undefined;
|
312
432
|
mint?: `0x${string}` | undefined;
|
313
433
|
sourceHash: `0x${string}`;
|
314
434
|
type: "0x7e";
|
315
|
-
}) | (
|
435
|
+
}) | ({
|
436
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
437
|
+
blockHash?: `0x${string}` | null | undefined;
|
438
|
+
blockNumber?: `0x${string}` | null | undefined;
|
439
|
+
from?: `0x${string}` | undefined;
|
440
|
+
gas?: `0x${string}` | undefined;
|
441
|
+
hash?: `0x${string}` | undefined;
|
442
|
+
input?: `0x${string}` | undefined;
|
443
|
+
nonce?: `0x${string}` | undefined;
|
444
|
+
r?: `0x${string}` | undefined;
|
445
|
+
s?: `0x${string}` | undefined;
|
446
|
+
to?: `0x${string}` | null | undefined;
|
447
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
448
|
+
v?: `0x${string}` | undefined;
|
449
|
+
value?: `0x${string}` | undefined;
|
450
|
+
gasPrice?: `0x${string}` | undefined;
|
451
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
452
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
453
|
+
accessList?: import("../index.js").AccessList | undefined;
|
454
|
+
chainId?: `0x${string}` | undefined;
|
455
|
+
} & Omit<import("../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
|
316
456
|
isSystemTx?: undefined;
|
317
457
|
mint?: undefined;
|
318
458
|
sourceHash?: undefined;
|
319
|
-
}) | (
|
459
|
+
}) | ({
|
460
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
461
|
+
blockHash?: `0x${string}` | null | undefined;
|
462
|
+
blockNumber?: `0x${string}` | null | undefined;
|
463
|
+
from?: `0x${string}` | undefined;
|
464
|
+
gas?: `0x${string}` | undefined;
|
465
|
+
hash?: `0x${string}` | undefined;
|
466
|
+
input?: `0x${string}` | undefined;
|
467
|
+
nonce?: `0x${string}` | undefined;
|
468
|
+
r?: `0x${string}` | undefined;
|
469
|
+
s?: `0x${string}` | undefined;
|
470
|
+
to?: `0x${string}` | null | undefined;
|
471
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
472
|
+
v?: `0x${string}` | undefined;
|
473
|
+
value?: `0x${string}` | undefined;
|
474
|
+
gasPrice?: `0x${string}` | undefined;
|
475
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
476
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
477
|
+
accessList?: import("../index.js").AccessList | undefined;
|
478
|
+
chainId?: `0x${string}` | undefined;
|
479
|
+
} & Omit<import("../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "typeHex"> & {
|
320
480
|
isSystemTx?: undefined;
|
321
481
|
mint?: undefined;
|
322
482
|
sourceHash?: undefined;
|
323
|
-
}) | (
|
483
|
+
}) | ({
|
484
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
485
|
+
blockHash?: `0x${string}` | null | undefined;
|
486
|
+
blockNumber?: `0x${string}` | null | undefined;
|
487
|
+
from?: `0x${string}` | undefined;
|
488
|
+
gas?: `0x${string}` | undefined;
|
489
|
+
hash?: `0x${string}` | undefined;
|
490
|
+
input?: `0x${string}` | undefined;
|
491
|
+
nonce?: `0x${string}` | undefined;
|
492
|
+
r?: `0x${string}` | undefined;
|
493
|
+
s?: `0x${string}` | undefined;
|
494
|
+
to?: `0x${string}` | null | undefined;
|
495
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
496
|
+
v?: `0x${string}` | undefined;
|
497
|
+
value?: `0x${string}` | undefined;
|
498
|
+
gasPrice?: `0x${string}` | undefined;
|
499
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
500
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
501
|
+
accessList?: import("../index.js").AccessList | undefined;
|
502
|
+
chainId?: `0x${string}` | undefined;
|
503
|
+
} & Omit<import("../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "typeHex"> & {
|
324
504
|
isSystemTx?: undefined;
|
325
505
|
mint?: undefined;
|
326
506
|
sourceHash?: undefined;
|
327
|
-
}) | (
|
507
|
+
}) | ({
|
508
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
509
|
+
blockHash?: `0x${string}` | null | undefined;
|
510
|
+
blockNumber?: `0x${string}` | null | undefined;
|
511
|
+
from?: `0x${string}` | undefined;
|
512
|
+
gas?: `0x${string}` | undefined;
|
513
|
+
hash?: `0x${string}` | undefined;
|
514
|
+
input?: `0x${string}` | undefined;
|
515
|
+
nonce?: `0x${string}` | undefined;
|
516
|
+
r?: `0x${string}` | undefined;
|
517
|
+
s?: `0x${string}` | undefined;
|
518
|
+
to?: `0x${string}` | null | undefined;
|
519
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
520
|
+
v?: `0x${string}` | undefined;
|
521
|
+
value?: `0x${string}` | undefined;
|
522
|
+
gasPrice?: `0x${string}` | undefined;
|
523
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
524
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
525
|
+
accessList?: import("../index.js").AccessList | undefined;
|
526
|
+
chainId?: `0x${string}` | undefined;
|
527
|
+
} & Omit<import("../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
328
528
|
isSystemTx?: boolean | undefined;
|
329
529
|
mint?: `0x${string}` | undefined;
|
330
530
|
sourceHash: `0x${string}`;
|
@@ -616,45 +816,245 @@ export declare const baseGoerli: import("../types/utils.js").Assign<{
|
|
616
816
|
};
|
617
817
|
readonly transaction: {
|
618
818
|
exclude: [] | undefined;
|
619
|
-
format: (args: (
|
819
|
+
format: (args: ({
|
820
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
821
|
+
blockHash?: `0x${string}` | null | undefined;
|
822
|
+
blockNumber?: `0x${string}` | null | undefined;
|
823
|
+
from?: `0x${string}` | undefined;
|
824
|
+
gas?: `0x${string}` | undefined;
|
825
|
+
hash?: `0x${string}` | undefined;
|
826
|
+
input?: `0x${string}` | undefined;
|
827
|
+
nonce?: `0x${string}` | undefined;
|
828
|
+
r?: `0x${string}` | undefined;
|
829
|
+
s?: `0x${string}` | undefined;
|
830
|
+
to?: `0x${string}` | null | undefined;
|
831
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
832
|
+
v?: `0x${string}` | undefined;
|
833
|
+
value?: `0x${string}` | undefined;
|
834
|
+
gasPrice?: `0x${string}` | undefined;
|
835
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
836
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
837
|
+
accessList?: undefined;
|
838
|
+
chainId?: `0x${string}` | undefined;
|
839
|
+
} & Omit<import("../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
|
620
840
|
isSystemTx?: undefined;
|
621
841
|
mint?: undefined;
|
622
842
|
sourceHash?: undefined;
|
623
|
-
}) | (
|
843
|
+
}) | ({
|
844
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
845
|
+
blockHash?: `0x${string}` | null | undefined;
|
846
|
+
blockNumber?: `0x${string}` | null | undefined;
|
847
|
+
from?: `0x${string}` | undefined;
|
848
|
+
gas?: `0x${string}` | undefined;
|
849
|
+
hash?: `0x${string}` | undefined;
|
850
|
+
input?: `0x${string}` | undefined;
|
851
|
+
nonce?: `0x${string}` | undefined;
|
852
|
+
r?: `0x${string}` | undefined;
|
853
|
+
s?: `0x${string}` | undefined;
|
854
|
+
to?: `0x${string}` | null | undefined;
|
855
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
856
|
+
v?: `0x${string}` | undefined;
|
857
|
+
value?: `0x${string}` | undefined;
|
858
|
+
gasPrice?: `0x${string}` | undefined;
|
859
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
860
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
861
|
+
accessList?: undefined;
|
862
|
+
chainId?: `0x${string}` | undefined;
|
863
|
+
} & Omit<import("../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
624
864
|
isSystemTx?: boolean | undefined;
|
625
865
|
mint?: `0x${string}` | undefined;
|
626
866
|
sourceHash: `0x${string}`;
|
627
867
|
type: "0x7e";
|
628
|
-
}) | (
|
868
|
+
}) | ({
|
869
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
870
|
+
blockHash?: `0x${string}` | null | undefined;
|
871
|
+
blockNumber?: `0x${string}` | null | undefined;
|
872
|
+
from?: `0x${string}` | undefined;
|
873
|
+
gas?: `0x${string}` | undefined;
|
874
|
+
hash?: `0x${string}` | undefined;
|
875
|
+
input?: `0x${string}` | undefined;
|
876
|
+
nonce?: `0x${string}` | undefined;
|
877
|
+
r?: `0x${string}` | undefined;
|
878
|
+
s?: `0x${string}` | undefined;
|
879
|
+
to?: `0x${string}` | null | undefined;
|
880
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
881
|
+
v?: `0x${string}` | undefined;
|
882
|
+
value?: `0x${string}` | undefined;
|
883
|
+
gasPrice?: `0x${string}` | undefined;
|
884
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
885
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
886
|
+
accessList?: import("../index.js").AccessList | undefined;
|
887
|
+
chainId?: `0x${string}` | undefined;
|
888
|
+
} & Omit<import("../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
|
629
889
|
isSystemTx?: undefined;
|
630
890
|
mint?: undefined;
|
631
891
|
sourceHash?: undefined;
|
632
|
-
}) | (
|
892
|
+
}) | ({
|
893
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
894
|
+
blockHash?: `0x${string}` | null | undefined;
|
895
|
+
blockNumber?: `0x${string}` | null | undefined;
|
896
|
+
from?: `0x${string}` | undefined;
|
897
|
+
gas?: `0x${string}` | undefined;
|
898
|
+
hash?: `0x${string}` | undefined;
|
899
|
+
input?: `0x${string}` | undefined;
|
900
|
+
nonce?: `0x${string}` | undefined;
|
901
|
+
r?: `0x${string}` | undefined;
|
902
|
+
s?: `0x${string}` | undefined;
|
903
|
+
to?: `0x${string}` | null | undefined;
|
904
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
905
|
+
v?: `0x${string}` | undefined;
|
906
|
+
value?: `0x${string}` | undefined;
|
907
|
+
gasPrice?: `0x${string}` | undefined;
|
908
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
909
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
910
|
+
accessList?: import("../index.js").AccessList | undefined;
|
911
|
+
chainId?: `0x${string}` | undefined;
|
912
|
+
} & Omit<import("../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "typeHex"> & {
|
633
913
|
isSystemTx?: undefined;
|
634
914
|
mint?: undefined;
|
635
915
|
sourceHash?: undefined;
|
636
|
-
}) | (
|
916
|
+
}) | ({
|
917
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
918
|
+
blockHash?: `0x${string}` | null | undefined;
|
919
|
+
blockNumber?: `0x${string}` | null | undefined;
|
920
|
+
from?: `0x${string}` | undefined;
|
921
|
+
gas?: `0x${string}` | undefined;
|
922
|
+
hash?: `0x${string}` | undefined;
|
923
|
+
input?: `0x${string}` | undefined;
|
924
|
+
nonce?: `0x${string}` | undefined;
|
925
|
+
r?: `0x${string}` | undefined;
|
926
|
+
s?: `0x${string}` | undefined;
|
927
|
+
to?: `0x${string}` | null | undefined;
|
928
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
929
|
+
v?: `0x${string}` | undefined;
|
930
|
+
value?: `0x${string}` | undefined;
|
931
|
+
gasPrice?: `0x${string}` | undefined;
|
932
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
933
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
934
|
+
accessList?: import("../index.js").AccessList | undefined;
|
935
|
+
chainId?: `0x${string}` | undefined;
|
936
|
+
} & Omit<import("../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "typeHex"> & {
|
637
937
|
isSystemTx?: undefined;
|
638
938
|
mint?: undefined;
|
639
939
|
sourceHash?: undefined;
|
640
|
-
}) | (
|
940
|
+
}) | ({
|
941
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
942
|
+
blockHash?: `0x${string}` | null | undefined;
|
943
|
+
blockNumber?: `0x${string}` | null | undefined;
|
944
|
+
from?: `0x${string}` | undefined;
|
945
|
+
gas?: `0x${string}` | undefined;
|
946
|
+
hash?: `0x${string}` | undefined;
|
947
|
+
input?: `0x${string}` | undefined;
|
948
|
+
nonce?: `0x${string}` | undefined;
|
949
|
+
r?: `0x${string}` | undefined;
|
950
|
+
s?: `0x${string}` | undefined;
|
951
|
+
to?: `0x${string}` | null | undefined;
|
952
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
953
|
+
v?: `0x${string}` | undefined;
|
954
|
+
value?: `0x${string}` | undefined;
|
955
|
+
gasPrice?: `0x${string}` | undefined;
|
956
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
957
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
958
|
+
accessList?: import("../index.js").AccessList | undefined;
|
959
|
+
chainId?: `0x${string}` | undefined;
|
960
|
+
} & Omit<import("../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
641
961
|
isSystemTx?: boolean | undefined;
|
642
962
|
mint?: `0x${string}` | undefined;
|
643
963
|
sourceHash: `0x${string}`;
|
644
964
|
type: "0x7e";
|
645
|
-
}) | (
|
965
|
+
}) | ({
|
966
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
967
|
+
blockHash?: `0x${string}` | null | undefined;
|
968
|
+
blockNumber?: `0x${string}` | null | undefined;
|
969
|
+
from?: `0x${string}` | undefined;
|
970
|
+
gas?: `0x${string}` | undefined;
|
971
|
+
hash?: `0x${string}` | undefined;
|
972
|
+
input?: `0x${string}` | undefined;
|
973
|
+
nonce?: `0x${string}` | undefined;
|
974
|
+
r?: `0x${string}` | undefined;
|
975
|
+
s?: `0x${string}` | undefined;
|
976
|
+
to?: `0x${string}` | null | undefined;
|
977
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
978
|
+
v?: `0x${string}` | undefined;
|
979
|
+
value?: `0x${string}` | undefined;
|
980
|
+
gasPrice?: `0x${string}` | undefined;
|
981
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
982
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
983
|
+
accessList?: import("../index.js").AccessList | undefined;
|
984
|
+
chainId?: `0x${string}` | undefined;
|
985
|
+
} & Omit<import("../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
|
646
986
|
isSystemTx?: undefined;
|
647
987
|
mint?: undefined;
|
648
988
|
sourceHash?: undefined;
|
649
|
-
}) | (
|
989
|
+
}) | ({
|
990
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
991
|
+
blockHash?: `0x${string}` | null | undefined;
|
992
|
+
blockNumber?: `0x${string}` | null | undefined;
|
993
|
+
from?: `0x${string}` | undefined;
|
994
|
+
gas?: `0x${string}` | undefined;
|
995
|
+
hash?: `0x${string}` | undefined;
|
996
|
+
input?: `0x${string}` | undefined;
|
997
|
+
nonce?: `0x${string}` | undefined;
|
998
|
+
r?: `0x${string}` | undefined;
|
999
|
+
s?: `0x${string}` | undefined;
|
1000
|
+
to?: `0x${string}` | null | undefined;
|
1001
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
1002
|
+
v?: `0x${string}` | undefined;
|
1003
|
+
value?: `0x${string}` | undefined;
|
1004
|
+
gasPrice?: `0x${string}` | undefined;
|
1005
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
1006
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
1007
|
+
accessList?: import("../index.js").AccessList | undefined;
|
1008
|
+
chainId?: `0x${string}` | undefined;
|
1009
|
+
} & Omit<import("../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "typeHex"> & {
|
650
1010
|
isSystemTx?: undefined;
|
651
1011
|
mint?: undefined;
|
652
1012
|
sourceHash?: undefined;
|
653
|
-
}) | (
|
1013
|
+
}) | ({
|
1014
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
1015
|
+
blockHash?: `0x${string}` | null | undefined;
|
1016
|
+
blockNumber?: `0x${string}` | null | undefined;
|
1017
|
+
from?: `0x${string}` | undefined;
|
1018
|
+
gas?: `0x${string}` | undefined;
|
1019
|
+
hash?: `0x${string}` | undefined;
|
1020
|
+
input?: `0x${string}` | undefined;
|
1021
|
+
nonce?: `0x${string}` | undefined;
|
1022
|
+
r?: `0x${string}` | undefined;
|
1023
|
+
s?: `0x${string}` | undefined;
|
1024
|
+
to?: `0x${string}` | null | undefined;
|
1025
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
1026
|
+
v?: `0x${string}` | undefined;
|
1027
|
+
value?: `0x${string}` | undefined;
|
1028
|
+
gasPrice?: `0x${string}` | undefined;
|
1029
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
1030
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
1031
|
+
accessList?: import("../index.js").AccessList | undefined;
|
1032
|
+
chainId?: `0x${string}` | undefined;
|
1033
|
+
} & Omit<import("../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "typeHex"> & {
|
654
1034
|
isSystemTx?: undefined;
|
655
1035
|
mint?: undefined;
|
656
1036
|
sourceHash?: undefined;
|
657
|
-
}) | (
|
1037
|
+
}) | ({
|
1038
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
1039
|
+
blockHash?: `0x${string}` | null | undefined;
|
1040
|
+
blockNumber?: `0x${string}` | null | undefined;
|
1041
|
+
from?: `0x${string}` | undefined;
|
1042
|
+
gas?: `0x${string}` | undefined;
|
1043
|
+
hash?: `0x${string}` | undefined;
|
1044
|
+
input?: `0x${string}` | undefined;
|
1045
|
+
nonce?: `0x${string}` | undefined;
|
1046
|
+
r?: `0x${string}` | undefined;
|
1047
|
+
s?: `0x${string}` | undefined;
|
1048
|
+
to?: `0x${string}` | null | undefined;
|
1049
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
1050
|
+
v?: `0x${string}` | undefined;
|
1051
|
+
value?: `0x${string}` | undefined;
|
1052
|
+
gasPrice?: `0x${string}` | undefined;
|
1053
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
1054
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
1055
|
+
accessList?: import("../index.js").AccessList | undefined;
|
1056
|
+
chainId?: `0x${string}` | undefined;
|
1057
|
+
} & Omit<import("../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
658
1058
|
isSystemTx?: boolean | undefined;
|
659
1059
|
mint?: `0x${string}` | undefined;
|
660
1060
|
sourceHash: `0x${string}`;
|
@@ -2826,45 +3226,245 @@ export declare const optimism: import("../types/utils.js").Assign<{
|
|
2826
3226
|
};
|
2827
3227
|
readonly transaction: {
|
2828
3228
|
exclude: [] | undefined;
|
2829
|
-
format: (args: (
|
3229
|
+
format: (args: ({
|
3230
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
3231
|
+
blockHash?: `0x${string}` | null | undefined;
|
3232
|
+
blockNumber?: `0x${string}` | null | undefined;
|
3233
|
+
from?: `0x${string}` | undefined;
|
3234
|
+
gas?: `0x${string}` | undefined;
|
3235
|
+
hash?: `0x${string}` | undefined;
|
3236
|
+
input?: `0x${string}` | undefined;
|
3237
|
+
nonce?: `0x${string}` | undefined;
|
3238
|
+
r?: `0x${string}` | undefined;
|
3239
|
+
s?: `0x${string}` | undefined;
|
3240
|
+
to?: `0x${string}` | null | undefined;
|
3241
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
3242
|
+
v?: `0x${string}` | undefined;
|
3243
|
+
value?: `0x${string}` | undefined;
|
3244
|
+
gasPrice?: `0x${string}` | undefined;
|
3245
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
3246
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
3247
|
+
accessList?: undefined;
|
3248
|
+
chainId?: `0x${string}` | undefined;
|
3249
|
+
} & Omit<import("../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
|
2830
3250
|
isSystemTx?: undefined;
|
2831
3251
|
mint?: undefined;
|
2832
3252
|
sourceHash?: undefined;
|
2833
|
-
}) | (
|
3253
|
+
}) | ({
|
3254
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
3255
|
+
blockHash?: `0x${string}` | null | undefined;
|
3256
|
+
blockNumber?: `0x${string}` | null | undefined;
|
3257
|
+
from?: `0x${string}` | undefined;
|
3258
|
+
gas?: `0x${string}` | undefined;
|
3259
|
+
hash?: `0x${string}` | undefined;
|
3260
|
+
input?: `0x${string}` | undefined;
|
3261
|
+
nonce?: `0x${string}` | undefined;
|
3262
|
+
r?: `0x${string}` | undefined;
|
3263
|
+
s?: `0x${string}` | undefined;
|
3264
|
+
to?: `0x${string}` | null | undefined;
|
3265
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
3266
|
+
v?: `0x${string}` | undefined;
|
3267
|
+
value?: `0x${string}` | undefined;
|
3268
|
+
gasPrice?: `0x${string}` | undefined;
|
3269
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
3270
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
3271
|
+
accessList?: undefined;
|
3272
|
+
chainId?: `0x${string}` | undefined;
|
3273
|
+
} & Omit<import("../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
2834
3274
|
isSystemTx?: boolean | undefined;
|
2835
3275
|
mint?: `0x${string}` | undefined;
|
2836
3276
|
sourceHash: `0x${string}`;
|
2837
3277
|
type: "0x7e";
|
2838
|
-
}) | (
|
3278
|
+
}) | ({
|
3279
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
3280
|
+
blockHash?: `0x${string}` | null | undefined;
|
3281
|
+
blockNumber?: `0x${string}` | null | undefined;
|
3282
|
+
from?: `0x${string}` | undefined;
|
3283
|
+
gas?: `0x${string}` | undefined;
|
3284
|
+
hash?: `0x${string}` | undefined;
|
3285
|
+
input?: `0x${string}` | undefined;
|
3286
|
+
nonce?: `0x${string}` | undefined;
|
3287
|
+
r?: `0x${string}` | undefined;
|
3288
|
+
s?: `0x${string}` | undefined;
|
3289
|
+
to?: `0x${string}` | null | undefined;
|
3290
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
3291
|
+
v?: `0x${string}` | undefined;
|
3292
|
+
value?: `0x${string}` | undefined;
|
3293
|
+
gasPrice?: `0x${string}` | undefined;
|
3294
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
3295
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
3296
|
+
accessList?: import("../index.js").AccessList | undefined;
|
3297
|
+
chainId?: `0x${string}` | undefined;
|
3298
|
+
} & Omit<import("../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
|
2839
3299
|
isSystemTx?: undefined;
|
2840
3300
|
mint?: undefined;
|
2841
3301
|
sourceHash?: undefined;
|
2842
|
-
}) | (
|
3302
|
+
}) | ({
|
3303
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
3304
|
+
blockHash?: `0x${string}` | null | undefined;
|
3305
|
+
blockNumber?: `0x${string}` | null | undefined;
|
3306
|
+
from?: `0x${string}` | undefined;
|
3307
|
+
gas?: `0x${string}` | undefined;
|
3308
|
+
hash?: `0x${string}` | undefined;
|
3309
|
+
input?: `0x${string}` | undefined;
|
3310
|
+
nonce?: `0x${string}` | undefined;
|
3311
|
+
r?: `0x${string}` | undefined;
|
3312
|
+
s?: `0x${string}` | undefined;
|
3313
|
+
to?: `0x${string}` | null | undefined;
|
3314
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
3315
|
+
v?: `0x${string}` | undefined;
|
3316
|
+
value?: `0x${string}` | undefined;
|
3317
|
+
gasPrice?: `0x${string}` | undefined;
|
3318
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
3319
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
3320
|
+
accessList?: import("../index.js").AccessList | undefined;
|
3321
|
+
chainId?: `0x${string}` | undefined;
|
3322
|
+
} & Omit<import("../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "typeHex"> & {
|
2843
3323
|
isSystemTx?: undefined;
|
2844
3324
|
mint?: undefined;
|
2845
3325
|
sourceHash?: undefined;
|
2846
|
-
}) | (
|
3326
|
+
}) | ({
|
3327
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
3328
|
+
blockHash?: `0x${string}` | null | undefined;
|
3329
|
+
blockNumber?: `0x${string}` | null | undefined;
|
3330
|
+
from?: `0x${string}` | undefined;
|
3331
|
+
gas?: `0x${string}` | undefined;
|
3332
|
+
hash?: `0x${string}` | undefined;
|
3333
|
+
input?: `0x${string}` | undefined;
|
3334
|
+
nonce?: `0x${string}` | undefined;
|
3335
|
+
r?: `0x${string}` | undefined;
|
3336
|
+
s?: `0x${string}` | undefined;
|
3337
|
+
to?: `0x${string}` | null | undefined;
|
3338
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
3339
|
+
v?: `0x${string}` | undefined;
|
3340
|
+
value?: `0x${string}` | undefined;
|
3341
|
+
gasPrice?: `0x${string}` | undefined;
|
3342
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
3343
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
3344
|
+
accessList?: import("../index.js").AccessList | undefined;
|
3345
|
+
chainId?: `0x${string}` | undefined;
|
3346
|
+
} & Omit<import("../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "typeHex"> & {
|
2847
3347
|
isSystemTx?: undefined;
|
2848
3348
|
mint?: undefined;
|
2849
3349
|
sourceHash?: undefined;
|
2850
|
-
}) | (
|
3350
|
+
}) | ({
|
3351
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
3352
|
+
blockHash?: `0x${string}` | null | undefined;
|
3353
|
+
blockNumber?: `0x${string}` | null | undefined;
|
3354
|
+
from?: `0x${string}` | undefined;
|
3355
|
+
gas?: `0x${string}` | undefined;
|
3356
|
+
hash?: `0x${string}` | undefined;
|
3357
|
+
input?: `0x${string}` | undefined;
|
3358
|
+
nonce?: `0x${string}` | undefined;
|
3359
|
+
r?: `0x${string}` | undefined;
|
3360
|
+
s?: `0x${string}` | undefined;
|
3361
|
+
to?: `0x${string}` | null | undefined;
|
3362
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
3363
|
+
v?: `0x${string}` | undefined;
|
3364
|
+
value?: `0x${string}` | undefined;
|
3365
|
+
gasPrice?: `0x${string}` | undefined;
|
3366
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
3367
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
3368
|
+
accessList?: import("../index.js").AccessList | undefined;
|
3369
|
+
chainId?: `0x${string}` | undefined;
|
3370
|
+
} & Omit<import("../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
2851
3371
|
isSystemTx?: boolean | undefined;
|
2852
3372
|
mint?: `0x${string}` | undefined;
|
2853
3373
|
sourceHash: `0x${string}`;
|
2854
3374
|
type: "0x7e";
|
2855
|
-
}) | (
|
3375
|
+
}) | ({
|
3376
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
3377
|
+
blockHash?: `0x${string}` | null | undefined;
|
3378
|
+
blockNumber?: `0x${string}` | null | undefined;
|
3379
|
+
from?: `0x${string}` | undefined;
|
3380
|
+
gas?: `0x${string}` | undefined;
|
3381
|
+
hash?: `0x${string}` | undefined;
|
3382
|
+
input?: `0x${string}` | undefined;
|
3383
|
+
nonce?: `0x${string}` | undefined;
|
3384
|
+
r?: `0x${string}` | undefined;
|
3385
|
+
s?: `0x${string}` | undefined;
|
3386
|
+
to?: `0x${string}` | null | undefined;
|
3387
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
3388
|
+
v?: `0x${string}` | undefined;
|
3389
|
+
value?: `0x${string}` | undefined;
|
3390
|
+
gasPrice?: `0x${string}` | undefined;
|
3391
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
3392
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
3393
|
+
accessList?: import("../index.js").AccessList | undefined;
|
3394
|
+
chainId?: `0x${string}` | undefined;
|
3395
|
+
} & Omit<import("../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
|
2856
3396
|
isSystemTx?: undefined;
|
2857
3397
|
mint?: undefined;
|
2858
3398
|
sourceHash?: undefined;
|
2859
|
-
}) | (
|
3399
|
+
}) | ({
|
3400
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
3401
|
+
blockHash?: `0x${string}` | null | undefined;
|
3402
|
+
blockNumber?: `0x${string}` | null | undefined;
|
3403
|
+
from?: `0x${string}` | undefined;
|
3404
|
+
gas?: `0x${string}` | undefined;
|
3405
|
+
hash?: `0x${string}` | undefined;
|
3406
|
+
input?: `0x${string}` | undefined;
|
3407
|
+
nonce?: `0x${string}` | undefined;
|
3408
|
+
r?: `0x${string}` | undefined;
|
3409
|
+
s?: `0x${string}` | undefined;
|
3410
|
+
to?: `0x${string}` | null | undefined;
|
3411
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
3412
|
+
v?: `0x${string}` | undefined;
|
3413
|
+
value?: `0x${string}` | undefined;
|
3414
|
+
gasPrice?: `0x${string}` | undefined;
|
3415
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
3416
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
3417
|
+
accessList?: import("../index.js").AccessList | undefined;
|
3418
|
+
chainId?: `0x${string}` | undefined;
|
3419
|
+
} & Omit<import("../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "typeHex"> & {
|
2860
3420
|
isSystemTx?: undefined;
|
2861
3421
|
mint?: undefined;
|
2862
3422
|
sourceHash?: undefined;
|
2863
|
-
}) | (
|
3423
|
+
}) | ({
|
3424
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
3425
|
+
blockHash?: `0x${string}` | null | undefined;
|
3426
|
+
blockNumber?: `0x${string}` | null | undefined;
|
3427
|
+
from?: `0x${string}` | undefined;
|
3428
|
+
gas?: `0x${string}` | undefined;
|
3429
|
+
hash?: `0x${string}` | undefined;
|
3430
|
+
input?: `0x${string}` | undefined;
|
3431
|
+
nonce?: `0x${string}` | undefined;
|
3432
|
+
r?: `0x${string}` | undefined;
|
3433
|
+
s?: `0x${string}` | undefined;
|
3434
|
+
to?: `0x${string}` | null | undefined;
|
3435
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
3436
|
+
v?: `0x${string}` | undefined;
|
3437
|
+
value?: `0x${string}` | undefined;
|
3438
|
+
gasPrice?: `0x${string}` | undefined;
|
3439
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
3440
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
3441
|
+
accessList?: import("../index.js").AccessList | undefined;
|
3442
|
+
chainId?: `0x${string}` | undefined;
|
3443
|
+
} & Omit<import("../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "typeHex"> & {
|
2864
3444
|
isSystemTx?: undefined;
|
2865
3445
|
mint?: undefined;
|
2866
3446
|
sourceHash?: undefined;
|
2867
|
-
}) | (
|
3447
|
+
}) | ({
|
3448
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
3449
|
+
blockHash?: `0x${string}` | null | undefined;
|
3450
|
+
blockNumber?: `0x${string}` | null | undefined;
|
3451
|
+
from?: `0x${string}` | undefined;
|
3452
|
+
gas?: `0x${string}` | undefined;
|
3453
|
+
hash?: `0x${string}` | undefined;
|
3454
|
+
input?: `0x${string}` | undefined;
|
3455
|
+
nonce?: `0x${string}` | undefined;
|
3456
|
+
r?: `0x${string}` | undefined;
|
3457
|
+
s?: `0x${string}` | undefined;
|
3458
|
+
to?: `0x${string}` | null | undefined;
|
3459
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
3460
|
+
v?: `0x${string}` | undefined;
|
3461
|
+
value?: `0x${string}` | undefined;
|
3462
|
+
gasPrice?: `0x${string}` | undefined;
|
3463
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
3464
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
3465
|
+
accessList?: import("../index.js").AccessList | undefined;
|
3466
|
+
chainId?: `0x${string}` | undefined;
|
3467
|
+
} & Omit<import("../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
2868
3468
|
isSystemTx?: boolean | undefined;
|
2869
3469
|
mint?: `0x${string}` | undefined;
|
2870
3470
|
sourceHash: `0x${string}`;
|
@@ -3164,45 +3764,245 @@ export declare const optimismGoerli: import("../types/utils.js").Assign<{
|
|
3164
3764
|
};
|
3165
3765
|
readonly transaction: {
|
3166
3766
|
exclude: [] | undefined;
|
3167
|
-
format: (args: (
|
3767
|
+
format: (args: ({
|
3768
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
3769
|
+
blockHash?: `0x${string}` | null | undefined;
|
3770
|
+
blockNumber?: `0x${string}` | null | undefined;
|
3771
|
+
from?: `0x${string}` | undefined;
|
3772
|
+
gas?: `0x${string}` | undefined;
|
3773
|
+
hash?: `0x${string}` | undefined;
|
3774
|
+
input?: `0x${string}` | undefined;
|
3775
|
+
nonce?: `0x${string}` | undefined;
|
3776
|
+
r?: `0x${string}` | undefined;
|
3777
|
+
s?: `0x${string}` | undefined;
|
3778
|
+
to?: `0x${string}` | null | undefined;
|
3779
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
3780
|
+
v?: `0x${string}` | undefined;
|
3781
|
+
value?: `0x${string}` | undefined;
|
3782
|
+
gasPrice?: `0x${string}` | undefined;
|
3783
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
3784
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
3785
|
+
accessList?: undefined;
|
3786
|
+
chainId?: `0x${string}` | undefined;
|
3787
|
+
} & Omit<import("../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
|
3168
3788
|
isSystemTx?: undefined;
|
3169
3789
|
mint?: undefined;
|
3170
3790
|
sourceHash?: undefined;
|
3171
|
-
}) | (
|
3791
|
+
}) | ({
|
3792
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
3793
|
+
blockHash?: `0x${string}` | null | undefined;
|
3794
|
+
blockNumber?: `0x${string}` | null | undefined;
|
3795
|
+
from?: `0x${string}` | undefined;
|
3796
|
+
gas?: `0x${string}` | undefined;
|
3797
|
+
hash?: `0x${string}` | undefined;
|
3798
|
+
input?: `0x${string}` | undefined;
|
3799
|
+
nonce?: `0x${string}` | undefined;
|
3800
|
+
r?: `0x${string}` | undefined;
|
3801
|
+
s?: `0x${string}` | undefined;
|
3802
|
+
to?: `0x${string}` | null | undefined;
|
3803
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
3804
|
+
v?: `0x${string}` | undefined;
|
3805
|
+
value?: `0x${string}` | undefined;
|
3806
|
+
gasPrice?: `0x${string}` | undefined;
|
3807
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
3808
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
3809
|
+
accessList?: undefined;
|
3810
|
+
chainId?: `0x${string}` | undefined;
|
3811
|
+
} & Omit<import("../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
3172
3812
|
isSystemTx?: boolean | undefined;
|
3173
3813
|
mint?: `0x${string}` | undefined;
|
3174
3814
|
sourceHash: `0x${string}`;
|
3175
3815
|
type: "0x7e";
|
3176
|
-
}) | (
|
3816
|
+
}) | ({
|
3817
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
3818
|
+
blockHash?: `0x${string}` | null | undefined;
|
3819
|
+
blockNumber?: `0x${string}` | null | undefined;
|
3820
|
+
from?: `0x${string}` | undefined;
|
3821
|
+
gas?: `0x${string}` | undefined;
|
3822
|
+
hash?: `0x${string}` | undefined;
|
3823
|
+
input?: `0x${string}` | undefined;
|
3824
|
+
nonce?: `0x${string}` | undefined;
|
3825
|
+
r?: `0x${string}` | undefined;
|
3826
|
+
s?: `0x${string}` | undefined;
|
3827
|
+
to?: `0x${string}` | null | undefined;
|
3828
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
3829
|
+
v?: `0x${string}` | undefined;
|
3830
|
+
value?: `0x${string}` | undefined;
|
3831
|
+
gasPrice?: `0x${string}` | undefined;
|
3832
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
3833
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
3834
|
+
accessList?: import("../index.js").AccessList | undefined;
|
3835
|
+
chainId?: `0x${string}` | undefined;
|
3836
|
+
} & Omit<import("../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
|
3177
3837
|
isSystemTx?: undefined;
|
3178
3838
|
mint?: undefined;
|
3179
3839
|
sourceHash?: undefined;
|
3180
|
-
}) | (
|
3840
|
+
}) | ({
|
3841
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
3842
|
+
blockHash?: `0x${string}` | null | undefined;
|
3843
|
+
blockNumber?: `0x${string}` | null | undefined;
|
3844
|
+
from?: `0x${string}` | undefined;
|
3845
|
+
gas?: `0x${string}` | undefined;
|
3846
|
+
hash?: `0x${string}` | undefined;
|
3847
|
+
input?: `0x${string}` | undefined;
|
3848
|
+
nonce?: `0x${string}` | undefined;
|
3849
|
+
r?: `0x${string}` | undefined;
|
3850
|
+
s?: `0x${string}` | undefined;
|
3851
|
+
to?: `0x${string}` | null | undefined;
|
3852
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
3853
|
+
v?: `0x${string}` | undefined;
|
3854
|
+
value?: `0x${string}` | undefined;
|
3855
|
+
gasPrice?: `0x${string}` | undefined;
|
3856
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
3857
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
3858
|
+
accessList?: import("../index.js").AccessList | undefined;
|
3859
|
+
chainId?: `0x${string}` | undefined;
|
3860
|
+
} & Omit<import("../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "typeHex"> & {
|
3181
3861
|
isSystemTx?: undefined;
|
3182
3862
|
mint?: undefined;
|
3183
3863
|
sourceHash?: undefined;
|
3184
|
-
}) | (
|
3864
|
+
}) | ({
|
3865
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
3866
|
+
blockHash?: `0x${string}` | null | undefined;
|
3867
|
+
blockNumber?: `0x${string}` | null | undefined;
|
3868
|
+
from?: `0x${string}` | undefined;
|
3869
|
+
gas?: `0x${string}` | undefined;
|
3870
|
+
hash?: `0x${string}` | undefined;
|
3871
|
+
input?: `0x${string}` | undefined;
|
3872
|
+
nonce?: `0x${string}` | undefined;
|
3873
|
+
r?: `0x${string}` | undefined;
|
3874
|
+
s?: `0x${string}` | undefined;
|
3875
|
+
to?: `0x${string}` | null | undefined;
|
3876
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
3877
|
+
v?: `0x${string}` | undefined;
|
3878
|
+
value?: `0x${string}` | undefined;
|
3879
|
+
gasPrice?: `0x${string}` | undefined;
|
3880
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
3881
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
3882
|
+
accessList?: import("../index.js").AccessList | undefined;
|
3883
|
+
chainId?: `0x${string}` | undefined;
|
3884
|
+
} & Omit<import("../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "typeHex"> & {
|
3185
3885
|
isSystemTx?: undefined;
|
3186
3886
|
mint?: undefined;
|
3187
3887
|
sourceHash?: undefined;
|
3188
|
-
}) | (
|
3888
|
+
}) | ({
|
3889
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
3890
|
+
blockHash?: `0x${string}` | null | undefined;
|
3891
|
+
blockNumber?: `0x${string}` | null | undefined;
|
3892
|
+
from?: `0x${string}` | undefined;
|
3893
|
+
gas?: `0x${string}` | undefined;
|
3894
|
+
hash?: `0x${string}` | undefined;
|
3895
|
+
input?: `0x${string}` | undefined;
|
3896
|
+
nonce?: `0x${string}` | undefined;
|
3897
|
+
r?: `0x${string}` | undefined;
|
3898
|
+
s?: `0x${string}` | undefined;
|
3899
|
+
to?: `0x${string}` | null | undefined;
|
3900
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
3901
|
+
v?: `0x${string}` | undefined;
|
3902
|
+
value?: `0x${string}` | undefined;
|
3903
|
+
gasPrice?: `0x${string}` | undefined;
|
3904
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
3905
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
3906
|
+
accessList?: import("../index.js").AccessList | undefined;
|
3907
|
+
chainId?: `0x${string}` | undefined;
|
3908
|
+
} & Omit<import("../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
3189
3909
|
isSystemTx?: boolean | undefined;
|
3190
3910
|
mint?: `0x${string}` | undefined;
|
3191
3911
|
sourceHash: `0x${string}`;
|
3192
3912
|
type: "0x7e";
|
3193
|
-
}) | (
|
3913
|
+
}) | ({
|
3914
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
3915
|
+
blockHash?: `0x${string}` | null | undefined;
|
3916
|
+
blockNumber?: `0x${string}` | null | undefined;
|
3917
|
+
from?: `0x${string}` | undefined;
|
3918
|
+
gas?: `0x${string}` | undefined;
|
3919
|
+
hash?: `0x${string}` | undefined;
|
3920
|
+
input?: `0x${string}` | undefined;
|
3921
|
+
nonce?: `0x${string}` | undefined;
|
3922
|
+
r?: `0x${string}` | undefined;
|
3923
|
+
s?: `0x${string}` | undefined;
|
3924
|
+
to?: `0x${string}` | null | undefined;
|
3925
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
3926
|
+
v?: `0x${string}` | undefined;
|
3927
|
+
value?: `0x${string}` | undefined;
|
3928
|
+
gasPrice?: `0x${string}` | undefined;
|
3929
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
3930
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
3931
|
+
accessList?: import("../index.js").AccessList | undefined;
|
3932
|
+
chainId?: `0x${string}` | undefined;
|
3933
|
+
} & Omit<import("../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
|
3194
3934
|
isSystemTx?: undefined;
|
3195
3935
|
mint?: undefined;
|
3196
3936
|
sourceHash?: undefined;
|
3197
|
-
}) | (
|
3937
|
+
}) | ({
|
3938
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
3939
|
+
blockHash?: `0x${string}` | null | undefined;
|
3940
|
+
blockNumber?: `0x${string}` | null | undefined;
|
3941
|
+
from?: `0x${string}` | undefined;
|
3942
|
+
gas?: `0x${string}` | undefined;
|
3943
|
+
hash?: `0x${string}` | undefined;
|
3944
|
+
input?: `0x${string}` | undefined;
|
3945
|
+
nonce?: `0x${string}` | undefined;
|
3946
|
+
r?: `0x${string}` | undefined;
|
3947
|
+
s?: `0x${string}` | undefined;
|
3948
|
+
to?: `0x${string}` | null | undefined;
|
3949
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
3950
|
+
v?: `0x${string}` | undefined;
|
3951
|
+
value?: `0x${string}` | undefined;
|
3952
|
+
gasPrice?: `0x${string}` | undefined;
|
3953
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
3954
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
3955
|
+
accessList?: import("../index.js").AccessList | undefined;
|
3956
|
+
chainId?: `0x${string}` | undefined;
|
3957
|
+
} & Omit<import("../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "typeHex"> & {
|
3198
3958
|
isSystemTx?: undefined;
|
3199
3959
|
mint?: undefined;
|
3200
3960
|
sourceHash?: undefined;
|
3201
|
-
}) | (
|
3961
|
+
}) | ({
|
3962
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
3963
|
+
blockHash?: `0x${string}` | null | undefined;
|
3964
|
+
blockNumber?: `0x${string}` | null | undefined;
|
3965
|
+
from?: `0x${string}` | undefined;
|
3966
|
+
gas?: `0x${string}` | undefined;
|
3967
|
+
hash?: `0x${string}` | undefined;
|
3968
|
+
input?: `0x${string}` | undefined;
|
3969
|
+
nonce?: `0x${string}` | undefined;
|
3970
|
+
r?: `0x${string}` | undefined;
|
3971
|
+
s?: `0x${string}` | undefined;
|
3972
|
+
to?: `0x${string}` | null | undefined;
|
3973
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
3974
|
+
v?: `0x${string}` | undefined;
|
3975
|
+
value?: `0x${string}` | undefined;
|
3976
|
+
gasPrice?: `0x${string}` | undefined;
|
3977
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
3978
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
3979
|
+
accessList?: import("../index.js").AccessList | undefined;
|
3980
|
+
chainId?: `0x${string}` | undefined;
|
3981
|
+
} & Omit<import("../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "typeHex"> & {
|
3202
3982
|
isSystemTx?: undefined;
|
3203
3983
|
mint?: undefined;
|
3204
3984
|
sourceHash?: undefined;
|
3205
|
-
}) | (
|
3985
|
+
}) | ({
|
3986
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
3987
|
+
blockHash?: `0x${string}` | null | undefined;
|
3988
|
+
blockNumber?: `0x${string}` | null | undefined;
|
3989
|
+
from?: `0x${string}` | undefined;
|
3990
|
+
gas?: `0x${string}` | undefined;
|
3991
|
+
hash?: `0x${string}` | undefined;
|
3992
|
+
input?: `0x${string}` | undefined;
|
3993
|
+
nonce?: `0x${string}` | undefined;
|
3994
|
+
r?: `0x${string}` | undefined;
|
3995
|
+
s?: `0x${string}` | undefined;
|
3996
|
+
to?: `0x${string}` | null | undefined;
|
3997
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
3998
|
+
v?: `0x${string}` | undefined;
|
3999
|
+
value?: `0x${string}` | undefined;
|
4000
|
+
gasPrice?: `0x${string}` | undefined;
|
4001
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
4002
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
4003
|
+
accessList?: import("../index.js").AccessList | undefined;
|
4004
|
+
chainId?: `0x${string}` | undefined;
|
4005
|
+
} & Omit<import("../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
3206
4006
|
isSystemTx?: boolean | undefined;
|
3207
4007
|
mint?: `0x${string}` | undefined;
|
3208
4008
|
sourceHash: `0x${string}`;
|
@@ -4734,45 +5534,245 @@ export declare const zora: import("../types/utils.js").Assign<{
|
|
4734
5534
|
};
|
4735
5535
|
readonly transaction: {
|
4736
5536
|
exclude: [] | undefined;
|
4737
|
-
format: (args: (
|
5537
|
+
format: (args: ({
|
5538
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
5539
|
+
blockHash?: `0x${string}` | null | undefined;
|
5540
|
+
blockNumber?: `0x${string}` | null | undefined;
|
5541
|
+
from?: `0x${string}` | undefined;
|
5542
|
+
gas?: `0x${string}` | undefined;
|
5543
|
+
hash?: `0x${string}` | undefined;
|
5544
|
+
input?: `0x${string}` | undefined;
|
5545
|
+
nonce?: `0x${string}` | undefined;
|
5546
|
+
r?: `0x${string}` | undefined;
|
5547
|
+
s?: `0x${string}` | undefined;
|
5548
|
+
to?: `0x${string}` | null | undefined;
|
5549
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
5550
|
+
v?: `0x${string}` | undefined;
|
5551
|
+
value?: `0x${string}` | undefined;
|
5552
|
+
gasPrice?: `0x${string}` | undefined;
|
5553
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
5554
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
5555
|
+
accessList?: undefined;
|
5556
|
+
chainId?: `0x${string}` | undefined;
|
5557
|
+
} & Omit<import("../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
|
4738
5558
|
isSystemTx?: undefined;
|
4739
5559
|
mint?: undefined;
|
4740
5560
|
sourceHash?: undefined;
|
4741
|
-
}) | (
|
5561
|
+
}) | ({
|
5562
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
5563
|
+
blockHash?: `0x${string}` | null | undefined;
|
5564
|
+
blockNumber?: `0x${string}` | null | undefined;
|
5565
|
+
from?: `0x${string}` | undefined;
|
5566
|
+
gas?: `0x${string}` | undefined;
|
5567
|
+
hash?: `0x${string}` | undefined;
|
5568
|
+
input?: `0x${string}` | undefined;
|
5569
|
+
nonce?: `0x${string}` | undefined;
|
5570
|
+
r?: `0x${string}` | undefined;
|
5571
|
+
s?: `0x${string}` | undefined;
|
5572
|
+
to?: `0x${string}` | null | undefined;
|
5573
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
5574
|
+
v?: `0x${string}` | undefined;
|
5575
|
+
value?: `0x${string}` | undefined;
|
5576
|
+
gasPrice?: `0x${string}` | undefined;
|
5577
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
5578
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
5579
|
+
accessList?: undefined;
|
5580
|
+
chainId?: `0x${string}` | undefined;
|
5581
|
+
} & Omit<import("../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
4742
5582
|
isSystemTx?: boolean | undefined;
|
4743
5583
|
mint?: `0x${string}` | undefined;
|
4744
5584
|
sourceHash: `0x${string}`;
|
4745
5585
|
type: "0x7e";
|
4746
|
-
}) | (
|
5586
|
+
}) | ({
|
5587
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
5588
|
+
blockHash?: `0x${string}` | null | undefined;
|
5589
|
+
blockNumber?: `0x${string}` | null | undefined;
|
5590
|
+
from?: `0x${string}` | undefined;
|
5591
|
+
gas?: `0x${string}` | undefined;
|
5592
|
+
hash?: `0x${string}` | undefined;
|
5593
|
+
input?: `0x${string}` | undefined;
|
5594
|
+
nonce?: `0x${string}` | undefined;
|
5595
|
+
r?: `0x${string}` | undefined;
|
5596
|
+
s?: `0x${string}` | undefined;
|
5597
|
+
to?: `0x${string}` | null | undefined;
|
5598
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
5599
|
+
v?: `0x${string}` | undefined;
|
5600
|
+
value?: `0x${string}` | undefined;
|
5601
|
+
gasPrice?: `0x${string}` | undefined;
|
5602
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
5603
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
5604
|
+
accessList?: import("../index.js").AccessList | undefined;
|
5605
|
+
chainId?: `0x${string}` | undefined;
|
5606
|
+
} & Omit<import("../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
|
4747
5607
|
isSystemTx?: undefined;
|
4748
5608
|
mint?: undefined;
|
4749
5609
|
sourceHash?: undefined;
|
4750
|
-
}) | (
|
5610
|
+
}) | ({
|
5611
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
5612
|
+
blockHash?: `0x${string}` | null | undefined;
|
5613
|
+
blockNumber?: `0x${string}` | null | undefined;
|
5614
|
+
from?: `0x${string}` | undefined;
|
5615
|
+
gas?: `0x${string}` | undefined;
|
5616
|
+
hash?: `0x${string}` | undefined;
|
5617
|
+
input?: `0x${string}` | undefined;
|
5618
|
+
nonce?: `0x${string}` | undefined;
|
5619
|
+
r?: `0x${string}` | undefined;
|
5620
|
+
s?: `0x${string}` | undefined;
|
5621
|
+
to?: `0x${string}` | null | undefined;
|
5622
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
5623
|
+
v?: `0x${string}` | undefined;
|
5624
|
+
value?: `0x${string}` | undefined;
|
5625
|
+
gasPrice?: `0x${string}` | undefined;
|
5626
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
5627
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
5628
|
+
accessList?: import("../index.js").AccessList | undefined;
|
5629
|
+
chainId?: `0x${string}` | undefined;
|
5630
|
+
} & Omit<import("../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "typeHex"> & {
|
4751
5631
|
isSystemTx?: undefined;
|
4752
5632
|
mint?: undefined;
|
4753
5633
|
sourceHash?: undefined;
|
4754
|
-
}) | (
|
5634
|
+
}) | ({
|
5635
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
5636
|
+
blockHash?: `0x${string}` | null | undefined;
|
5637
|
+
blockNumber?: `0x${string}` | null | undefined;
|
5638
|
+
from?: `0x${string}` | undefined;
|
5639
|
+
gas?: `0x${string}` | undefined;
|
5640
|
+
hash?: `0x${string}` | undefined;
|
5641
|
+
input?: `0x${string}` | undefined;
|
5642
|
+
nonce?: `0x${string}` | undefined;
|
5643
|
+
r?: `0x${string}` | undefined;
|
5644
|
+
s?: `0x${string}` | undefined;
|
5645
|
+
to?: `0x${string}` | null | undefined;
|
5646
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
5647
|
+
v?: `0x${string}` | undefined;
|
5648
|
+
value?: `0x${string}` | undefined;
|
5649
|
+
gasPrice?: `0x${string}` | undefined;
|
5650
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
5651
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
5652
|
+
accessList?: import("../index.js").AccessList | undefined;
|
5653
|
+
chainId?: `0x${string}` | undefined;
|
5654
|
+
} & Omit<import("../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "typeHex"> & {
|
4755
5655
|
isSystemTx?: undefined;
|
4756
5656
|
mint?: undefined;
|
4757
5657
|
sourceHash?: undefined;
|
4758
|
-
}) | (
|
5658
|
+
}) | ({
|
5659
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
5660
|
+
blockHash?: `0x${string}` | null | undefined;
|
5661
|
+
blockNumber?: `0x${string}` | null | undefined;
|
5662
|
+
from?: `0x${string}` | undefined;
|
5663
|
+
gas?: `0x${string}` | undefined;
|
5664
|
+
hash?: `0x${string}` | undefined;
|
5665
|
+
input?: `0x${string}` | undefined;
|
5666
|
+
nonce?: `0x${string}` | undefined;
|
5667
|
+
r?: `0x${string}` | undefined;
|
5668
|
+
s?: `0x${string}` | undefined;
|
5669
|
+
to?: `0x${string}` | null | undefined;
|
5670
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
5671
|
+
v?: `0x${string}` | undefined;
|
5672
|
+
value?: `0x${string}` | undefined;
|
5673
|
+
gasPrice?: `0x${string}` | undefined;
|
5674
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
5675
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
5676
|
+
accessList?: import("../index.js").AccessList | undefined;
|
5677
|
+
chainId?: `0x${string}` | undefined;
|
5678
|
+
} & Omit<import("../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
4759
5679
|
isSystemTx?: boolean | undefined;
|
4760
5680
|
mint?: `0x${string}` | undefined;
|
4761
5681
|
sourceHash: `0x${string}`;
|
4762
5682
|
type: "0x7e";
|
4763
|
-
}) | (
|
5683
|
+
}) | ({
|
5684
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
5685
|
+
blockHash?: `0x${string}` | null | undefined;
|
5686
|
+
blockNumber?: `0x${string}` | null | undefined;
|
5687
|
+
from?: `0x${string}` | undefined;
|
5688
|
+
gas?: `0x${string}` | undefined;
|
5689
|
+
hash?: `0x${string}` | undefined;
|
5690
|
+
input?: `0x${string}` | undefined;
|
5691
|
+
nonce?: `0x${string}` | undefined;
|
5692
|
+
r?: `0x${string}` | undefined;
|
5693
|
+
s?: `0x${string}` | undefined;
|
5694
|
+
to?: `0x${string}` | null | undefined;
|
5695
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
5696
|
+
v?: `0x${string}` | undefined;
|
5697
|
+
value?: `0x${string}` | undefined;
|
5698
|
+
gasPrice?: `0x${string}` | undefined;
|
5699
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
5700
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
5701
|
+
accessList?: import("../index.js").AccessList | undefined;
|
5702
|
+
chainId?: `0x${string}` | undefined;
|
5703
|
+
} & Omit<import("../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
|
4764
5704
|
isSystemTx?: undefined;
|
4765
5705
|
mint?: undefined;
|
4766
5706
|
sourceHash?: undefined;
|
4767
|
-
}) | (
|
5707
|
+
}) | ({
|
5708
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
5709
|
+
blockHash?: `0x${string}` | null | undefined;
|
5710
|
+
blockNumber?: `0x${string}` | null | undefined;
|
5711
|
+
from?: `0x${string}` | undefined;
|
5712
|
+
gas?: `0x${string}` | undefined;
|
5713
|
+
hash?: `0x${string}` | undefined;
|
5714
|
+
input?: `0x${string}` | undefined;
|
5715
|
+
nonce?: `0x${string}` | undefined;
|
5716
|
+
r?: `0x${string}` | undefined;
|
5717
|
+
s?: `0x${string}` | undefined;
|
5718
|
+
to?: `0x${string}` | null | undefined;
|
5719
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
5720
|
+
v?: `0x${string}` | undefined;
|
5721
|
+
value?: `0x${string}` | undefined;
|
5722
|
+
gasPrice?: `0x${string}` | undefined;
|
5723
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
5724
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
5725
|
+
accessList?: import("../index.js").AccessList | undefined;
|
5726
|
+
chainId?: `0x${string}` | undefined;
|
5727
|
+
} & Omit<import("../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "typeHex"> & {
|
4768
5728
|
isSystemTx?: undefined;
|
4769
5729
|
mint?: undefined;
|
4770
5730
|
sourceHash?: undefined;
|
4771
|
-
}) | (
|
5731
|
+
}) | ({
|
5732
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
5733
|
+
blockHash?: `0x${string}` | null | undefined;
|
5734
|
+
blockNumber?: `0x${string}` | null | undefined;
|
5735
|
+
from?: `0x${string}` | undefined;
|
5736
|
+
gas?: `0x${string}` | undefined;
|
5737
|
+
hash?: `0x${string}` | undefined;
|
5738
|
+
input?: `0x${string}` | undefined;
|
5739
|
+
nonce?: `0x${string}` | undefined;
|
5740
|
+
r?: `0x${string}` | undefined;
|
5741
|
+
s?: `0x${string}` | undefined;
|
5742
|
+
to?: `0x${string}` | null | undefined;
|
5743
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
5744
|
+
v?: `0x${string}` | undefined;
|
5745
|
+
value?: `0x${string}` | undefined;
|
5746
|
+
gasPrice?: `0x${string}` | undefined;
|
5747
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
5748
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
5749
|
+
accessList?: import("../index.js").AccessList | undefined;
|
5750
|
+
chainId?: `0x${string}` | undefined;
|
5751
|
+
} & Omit<import("../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "typeHex"> & {
|
4772
5752
|
isSystemTx?: undefined;
|
4773
5753
|
mint?: undefined;
|
4774
5754
|
sourceHash?: undefined;
|
4775
|
-
}) | (
|
5755
|
+
}) | ({
|
5756
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
5757
|
+
blockHash?: `0x${string}` | null | undefined;
|
5758
|
+
blockNumber?: `0x${string}` | null | undefined;
|
5759
|
+
from?: `0x${string}` | undefined;
|
5760
|
+
gas?: `0x${string}` | undefined;
|
5761
|
+
hash?: `0x${string}` | undefined;
|
5762
|
+
input?: `0x${string}` | undefined;
|
5763
|
+
nonce?: `0x${string}` | undefined;
|
5764
|
+
r?: `0x${string}` | undefined;
|
5765
|
+
s?: `0x${string}` | undefined;
|
5766
|
+
to?: `0x${string}` | null | undefined;
|
5767
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
5768
|
+
v?: `0x${string}` | undefined;
|
5769
|
+
value?: `0x${string}` | undefined;
|
5770
|
+
gasPrice?: `0x${string}` | undefined;
|
5771
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
5772
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
5773
|
+
accessList?: import("../index.js").AccessList | undefined;
|
5774
|
+
chainId?: `0x${string}` | undefined;
|
5775
|
+
} & Omit<import("../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
4776
5776
|
isSystemTx?: boolean | undefined;
|
4777
5777
|
mint?: `0x${string}` | undefined;
|
4778
5778
|
sourceHash: `0x${string}`;
|
@@ -5062,45 +6062,245 @@ export declare const zoraTestnet: import("../types/utils.js").Assign<{
|
|
5062
6062
|
};
|
5063
6063
|
readonly transaction: {
|
5064
6064
|
exclude: [] | undefined;
|
5065
|
-
format: (args: (
|
6065
|
+
format: (args: ({
|
6066
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
6067
|
+
blockHash?: `0x${string}` | null | undefined;
|
6068
|
+
blockNumber?: `0x${string}` | null | undefined;
|
6069
|
+
from?: `0x${string}` | undefined;
|
6070
|
+
gas?: `0x${string}` | undefined;
|
6071
|
+
hash?: `0x${string}` | undefined;
|
6072
|
+
input?: `0x${string}` | undefined;
|
6073
|
+
nonce?: `0x${string}` | undefined;
|
6074
|
+
r?: `0x${string}` | undefined;
|
6075
|
+
s?: `0x${string}` | undefined;
|
6076
|
+
to?: `0x${string}` | null | undefined;
|
6077
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
6078
|
+
v?: `0x${string}` | undefined;
|
6079
|
+
value?: `0x${string}` | undefined;
|
6080
|
+
gasPrice?: `0x${string}` | undefined;
|
6081
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
6082
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
6083
|
+
accessList?: undefined;
|
6084
|
+
chainId?: `0x${string}` | undefined;
|
6085
|
+
} & Omit<import("../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
|
5066
6086
|
isSystemTx?: undefined;
|
5067
6087
|
mint?: undefined;
|
5068
6088
|
sourceHash?: undefined;
|
5069
|
-
}) | (
|
6089
|
+
}) | ({
|
6090
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
6091
|
+
blockHash?: `0x${string}` | null | undefined;
|
6092
|
+
blockNumber?: `0x${string}` | null | undefined;
|
6093
|
+
from?: `0x${string}` | undefined;
|
6094
|
+
gas?: `0x${string}` | undefined;
|
6095
|
+
hash?: `0x${string}` | undefined;
|
6096
|
+
input?: `0x${string}` | undefined;
|
6097
|
+
nonce?: `0x${string}` | undefined;
|
6098
|
+
r?: `0x${string}` | undefined;
|
6099
|
+
s?: `0x${string}` | undefined;
|
6100
|
+
to?: `0x${string}` | null | undefined;
|
6101
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
6102
|
+
v?: `0x${string}` | undefined;
|
6103
|
+
value?: `0x${string}` | undefined;
|
6104
|
+
gasPrice?: `0x${string}` | undefined;
|
6105
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
6106
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
6107
|
+
accessList?: undefined;
|
6108
|
+
chainId?: `0x${string}` | undefined;
|
6109
|
+
} & Omit<import("../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
5070
6110
|
isSystemTx?: boolean | undefined;
|
5071
6111
|
mint?: `0x${string}` | undefined;
|
5072
6112
|
sourceHash: `0x${string}`;
|
5073
6113
|
type: "0x7e";
|
5074
|
-
}) | (
|
6114
|
+
}) | ({
|
6115
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
6116
|
+
blockHash?: `0x${string}` | null | undefined;
|
6117
|
+
blockNumber?: `0x${string}` | null | undefined;
|
6118
|
+
from?: `0x${string}` | undefined;
|
6119
|
+
gas?: `0x${string}` | undefined;
|
6120
|
+
hash?: `0x${string}` | undefined;
|
6121
|
+
input?: `0x${string}` | undefined;
|
6122
|
+
nonce?: `0x${string}` | undefined;
|
6123
|
+
r?: `0x${string}` | undefined;
|
6124
|
+
s?: `0x${string}` | undefined;
|
6125
|
+
to?: `0x${string}` | null | undefined;
|
6126
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
6127
|
+
v?: `0x${string}` | undefined;
|
6128
|
+
value?: `0x${string}` | undefined;
|
6129
|
+
gasPrice?: `0x${string}` | undefined;
|
6130
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
6131
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
6132
|
+
accessList?: import("../index.js").AccessList | undefined;
|
6133
|
+
chainId?: `0x${string}` | undefined;
|
6134
|
+
} & Omit<import("../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
|
5075
6135
|
isSystemTx?: undefined;
|
5076
6136
|
mint?: undefined;
|
5077
6137
|
sourceHash?: undefined;
|
5078
|
-
}) | (
|
6138
|
+
}) | ({
|
6139
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
6140
|
+
blockHash?: `0x${string}` | null | undefined;
|
6141
|
+
blockNumber?: `0x${string}` | null | undefined;
|
6142
|
+
from?: `0x${string}` | undefined;
|
6143
|
+
gas?: `0x${string}` | undefined;
|
6144
|
+
hash?: `0x${string}` | undefined;
|
6145
|
+
input?: `0x${string}` | undefined;
|
6146
|
+
nonce?: `0x${string}` | undefined;
|
6147
|
+
r?: `0x${string}` | undefined;
|
6148
|
+
s?: `0x${string}` | undefined;
|
6149
|
+
to?: `0x${string}` | null | undefined;
|
6150
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
6151
|
+
v?: `0x${string}` | undefined;
|
6152
|
+
value?: `0x${string}` | undefined;
|
6153
|
+
gasPrice?: `0x${string}` | undefined;
|
6154
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
6155
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
6156
|
+
accessList?: import("../index.js").AccessList | undefined;
|
6157
|
+
chainId?: `0x${string}` | undefined;
|
6158
|
+
} & Omit<import("../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "typeHex"> & {
|
5079
6159
|
isSystemTx?: undefined;
|
5080
6160
|
mint?: undefined;
|
5081
6161
|
sourceHash?: undefined;
|
5082
|
-
}) | (
|
6162
|
+
}) | ({
|
6163
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
6164
|
+
blockHash?: `0x${string}` | null | undefined;
|
6165
|
+
blockNumber?: `0x${string}` | null | undefined;
|
6166
|
+
from?: `0x${string}` | undefined;
|
6167
|
+
gas?: `0x${string}` | undefined;
|
6168
|
+
hash?: `0x${string}` | undefined;
|
6169
|
+
input?: `0x${string}` | undefined;
|
6170
|
+
nonce?: `0x${string}` | undefined;
|
6171
|
+
r?: `0x${string}` | undefined;
|
6172
|
+
s?: `0x${string}` | undefined;
|
6173
|
+
to?: `0x${string}` | null | undefined;
|
6174
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
6175
|
+
v?: `0x${string}` | undefined;
|
6176
|
+
value?: `0x${string}` | undefined;
|
6177
|
+
gasPrice?: `0x${string}` | undefined;
|
6178
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
6179
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
6180
|
+
accessList?: import("../index.js").AccessList | undefined;
|
6181
|
+
chainId?: `0x${string}` | undefined;
|
6182
|
+
} & Omit<import("../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "typeHex"> & {
|
5083
6183
|
isSystemTx?: undefined;
|
5084
6184
|
mint?: undefined;
|
5085
6185
|
sourceHash?: undefined;
|
5086
|
-
}) | (
|
6186
|
+
}) | ({
|
6187
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
6188
|
+
blockHash?: `0x${string}` | null | undefined;
|
6189
|
+
blockNumber?: `0x${string}` | null | undefined;
|
6190
|
+
from?: `0x${string}` | undefined;
|
6191
|
+
gas?: `0x${string}` | undefined;
|
6192
|
+
hash?: `0x${string}` | undefined;
|
6193
|
+
input?: `0x${string}` | undefined;
|
6194
|
+
nonce?: `0x${string}` | undefined;
|
6195
|
+
r?: `0x${string}` | undefined;
|
6196
|
+
s?: `0x${string}` | undefined;
|
6197
|
+
to?: `0x${string}` | null | undefined;
|
6198
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
6199
|
+
v?: `0x${string}` | undefined;
|
6200
|
+
value?: `0x${string}` | undefined;
|
6201
|
+
gasPrice?: `0x${string}` | undefined;
|
6202
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
6203
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
6204
|
+
accessList?: import("../index.js").AccessList | undefined;
|
6205
|
+
chainId?: `0x${string}` | undefined;
|
6206
|
+
} & Omit<import("../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
5087
6207
|
isSystemTx?: boolean | undefined;
|
5088
6208
|
mint?: `0x${string}` | undefined;
|
5089
6209
|
sourceHash: `0x${string}`;
|
5090
6210
|
type: "0x7e";
|
5091
|
-
}) | (
|
6211
|
+
}) | ({
|
6212
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
6213
|
+
blockHash?: `0x${string}` | null | undefined;
|
6214
|
+
blockNumber?: `0x${string}` | null | undefined;
|
6215
|
+
from?: `0x${string}` | undefined;
|
6216
|
+
gas?: `0x${string}` | undefined;
|
6217
|
+
hash?: `0x${string}` | undefined;
|
6218
|
+
input?: `0x${string}` | undefined;
|
6219
|
+
nonce?: `0x${string}` | undefined;
|
6220
|
+
r?: `0x${string}` | undefined;
|
6221
|
+
s?: `0x${string}` | undefined;
|
6222
|
+
to?: `0x${string}` | null | undefined;
|
6223
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
6224
|
+
v?: `0x${string}` | undefined;
|
6225
|
+
value?: `0x${string}` | undefined;
|
6226
|
+
gasPrice?: `0x${string}` | undefined;
|
6227
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
6228
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
6229
|
+
accessList?: import("../index.js").AccessList | undefined;
|
6230
|
+
chainId?: `0x${string}` | undefined;
|
6231
|
+
} & Omit<import("../index.js").TransactionLegacy<`0x${string}`, `0x${string}`, boolean, "0x0">, "typeHex"> & {
|
5092
6232
|
isSystemTx?: undefined;
|
5093
6233
|
mint?: undefined;
|
5094
6234
|
sourceHash?: undefined;
|
5095
|
-
}) | (
|
6235
|
+
}) | ({
|
6236
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
6237
|
+
blockHash?: `0x${string}` | null | undefined;
|
6238
|
+
blockNumber?: `0x${string}` | null | undefined;
|
6239
|
+
from?: `0x${string}` | undefined;
|
6240
|
+
gas?: `0x${string}` | undefined;
|
6241
|
+
hash?: `0x${string}` | undefined;
|
6242
|
+
input?: `0x${string}` | undefined;
|
6243
|
+
nonce?: `0x${string}` | undefined;
|
6244
|
+
r?: `0x${string}` | undefined;
|
6245
|
+
s?: `0x${string}` | undefined;
|
6246
|
+
to?: `0x${string}` | null | undefined;
|
6247
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
6248
|
+
v?: `0x${string}` | undefined;
|
6249
|
+
value?: `0x${string}` | undefined;
|
6250
|
+
gasPrice?: `0x${string}` | undefined;
|
6251
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
6252
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
6253
|
+
accessList?: import("../index.js").AccessList | undefined;
|
6254
|
+
chainId?: `0x${string}` | undefined;
|
6255
|
+
} & Omit<import("../index.js").TransactionEIP2930<`0x${string}`, `0x${string}`, boolean, "0x1">, "typeHex"> & {
|
5096
6256
|
isSystemTx?: undefined;
|
5097
6257
|
mint?: undefined;
|
5098
6258
|
sourceHash?: undefined;
|
5099
|
-
}) | (
|
6259
|
+
}) | ({
|
6260
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
6261
|
+
blockHash?: `0x${string}` | null | undefined;
|
6262
|
+
blockNumber?: `0x${string}` | null | undefined;
|
6263
|
+
from?: `0x${string}` | undefined;
|
6264
|
+
gas?: `0x${string}` | undefined;
|
6265
|
+
hash?: `0x${string}` | undefined;
|
6266
|
+
input?: `0x${string}` | undefined;
|
6267
|
+
nonce?: `0x${string}` | undefined;
|
6268
|
+
r?: `0x${string}` | undefined;
|
6269
|
+
s?: `0x${string}` | undefined;
|
6270
|
+
to?: `0x${string}` | null | undefined;
|
6271
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
6272
|
+
v?: `0x${string}` | undefined;
|
6273
|
+
value?: `0x${string}` | undefined;
|
6274
|
+
gasPrice?: `0x${string}` | undefined;
|
6275
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
6276
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
6277
|
+
accessList?: import("../index.js").AccessList | undefined;
|
6278
|
+
chainId?: `0x${string}` | undefined;
|
6279
|
+
} & Omit<import("../index.js").TransactionEIP1559<`0x${string}`, `0x${string}`, boolean, "0x2">, "typeHex"> & {
|
5100
6280
|
isSystemTx?: undefined;
|
5101
6281
|
mint?: undefined;
|
5102
6282
|
sourceHash?: undefined;
|
5103
|
-
}) | (
|
6283
|
+
}) | ({
|
6284
|
+
type?: "0x0" | "0x1" | "0x2" | "0x7e" | undefined;
|
6285
|
+
blockHash?: `0x${string}` | null | undefined;
|
6286
|
+
blockNumber?: `0x${string}` | null | undefined;
|
6287
|
+
from?: `0x${string}` | undefined;
|
6288
|
+
gas?: `0x${string}` | undefined;
|
6289
|
+
hash?: `0x${string}` | undefined;
|
6290
|
+
input?: `0x${string}` | undefined;
|
6291
|
+
nonce?: `0x${string}` | undefined;
|
6292
|
+
r?: `0x${string}` | undefined;
|
6293
|
+
s?: `0x${string}` | undefined;
|
6294
|
+
to?: `0x${string}` | null | undefined;
|
6295
|
+
transactionIndex?: `0x${string}` | null | undefined;
|
6296
|
+
v?: `0x${string}` | undefined;
|
6297
|
+
value?: `0x${string}` | undefined;
|
6298
|
+
gasPrice?: `0x${string}` | undefined;
|
6299
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
6300
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
6301
|
+
accessList?: import("../index.js").AccessList | undefined;
|
6302
|
+
chainId?: `0x${string}` | undefined;
|
6303
|
+
} & Omit<import("../index.js").TransactionBase<`0x${string}`, `0x${string}`, boolean>, "typeHex"> & import("../index.js").FeeValuesEIP1559<`0x${string}`> & {
|
5104
6304
|
isSystemTx?: boolean | undefined;
|
5105
6305
|
mint?: `0x${string}` | undefined;
|
5106
6306
|
sourceHash: `0x${string}`;
|
@@ -5326,4 +6526,5 @@ export declare const zoraTestnet: import("../types/utils.js").Assign<{
|
|
5326
6526
|
};
|
5327
6527
|
}>>;
|
5328
6528
|
export type { Chain } from '../types/chain.js';
|
6529
|
+
export type { Assign } from '../types/utils.js';
|
5329
6530
|
//# sourceMappingURL=index.d.ts.map
|