@pear-protocol/symmio-client 0.2.2 → 0.2.4

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/index.d.mts CHANGED
@@ -1,3 +1,5 @@
1
+ import * as node_modules_viem__types_utils_ccip from 'node_modules/viem/_types/utils/ccip';
2
+ import * as viem from 'viem';
1
3
  import { Address, Hex, Hash, WalletClient, PublicClient, Abi } from 'viem';
2
4
 
3
5
  type ChainId = number;
@@ -418,7 +420,7 @@ declare class SymmioSDK {
418
420
  readonly chainId: number;
419
421
  readonly muon: MuonClient;
420
422
  private _publicClient;
421
- private _walletClient;
423
+ private _walletClient?;
422
424
  private _multiAccount;
423
425
  private _symmioDiamond;
424
426
  private _collateral;
@@ -427,9 +429,4444 @@ declare class SymmioSDK {
427
429
  constructor(options: {
428
430
  chainId: number;
429
431
  publicClient: PublicClient;
430
- walletClient: WalletClient;
432
+ walletClient?: WalletClient;
431
433
  config?: Partial<SymmioSDKConfig>;
432
434
  });
435
+ get walletClient(): {
436
+ account: viem.Account | undefined;
437
+ batch?: {
438
+ multicall?: boolean | viem.Prettify<viem.MulticallBatchOptions> | undefined;
439
+ } | undefined;
440
+ cacheTime: number;
441
+ ccipRead?: false | {
442
+ request?: (parameters: viem.CcipRequestParameters) => Promise<node_modules_viem__types_utils_ccip.CcipRequestReturnType>;
443
+ } | undefined;
444
+ chain: viem.Chain | undefined;
445
+ dataSuffix?: viem.DataSuffix | undefined;
446
+ experimental_blockTag?: viem.BlockTag | undefined;
447
+ key: string;
448
+ name: string;
449
+ pollingInterval: number;
450
+ request: viem.EIP1193RequestFn<viem.WalletRpcSchema>;
451
+ transport: viem.TransportConfig<string, viem.EIP1193RequestFn> & Record<string, any>;
452
+ type: string;
453
+ uid: string;
454
+ addChain: (args: viem.AddChainParameters) => Promise<void>;
455
+ deployContract: <const abi extends viem.Abi | readonly unknown[], chainOverride extends viem.Chain | undefined>(args: viem.DeployContractParameters<abi, viem.Chain | undefined, viem.Account | undefined, chainOverride>) => Promise<viem.DeployContractReturnType>;
456
+ fillTransaction: <chainOverride extends viem.Chain | undefined = undefined, accountOverride extends viem.Account | Address | undefined = undefined>(args: viem.FillTransactionParameters<viem.Chain | undefined, viem.Account | undefined, chainOverride, accountOverride>) => Promise<viem.FillTransactionReturnType<viem.Chain | undefined, chainOverride>>;
457
+ getAddresses: () => Promise<viem.GetAddressesReturnType>;
458
+ getCallsStatus: (parameters: viem.GetCallsStatusParameters) => Promise<viem.GetCallsStatusReturnType>;
459
+ getCapabilities: <chainId extends number | undefined>(parameters?: viem.GetCapabilitiesParameters<chainId>) => Promise<viem.GetCapabilitiesReturnType<chainId>>;
460
+ getChainId: () => Promise<viem.GetChainIdReturnType>;
461
+ getPermissions: () => Promise<viem.GetPermissionsReturnType>;
462
+ prepareAuthorization: (parameters: viem.PrepareAuthorizationParameters<viem.Account | undefined>) => Promise<viem.PrepareAuthorizationReturnType>;
463
+ prepareTransactionRequest: <const request extends viem.PrepareTransactionRequestRequest<viem.Chain | undefined, chainOverride>, chainOverride extends viem.Chain | undefined = undefined, accountOverride extends viem.Account | Address | undefined = undefined>(args: viem.PrepareTransactionRequestParameters<viem.Chain | undefined, viem.Account | undefined, chainOverride, accountOverride, request>) => Promise<viem.UnionRequiredBy<Extract<viem.UnionOmit<viem.ExtractChainFormatterParameters<viem.DeriveChain<viem.Chain | undefined, chainOverride>, "transactionRequest", viem.TransactionRequest>, "from"> & (viem.DeriveChain<viem.Chain | undefined, chainOverride> extends infer T_1 ? T_1 extends viem.DeriveChain<viem.Chain | undefined, chainOverride> ? T_1 extends viem.Chain ? {
464
+ chain: T_1;
465
+ } : {
466
+ chain?: undefined;
467
+ } : never : never) & (viem.DeriveAccount<viem.Account | undefined, accountOverride> extends infer T_2 ? T_2 extends viem.DeriveAccount<viem.Account | undefined, accountOverride> ? T_2 extends viem.Account ? {
468
+ account: T_2;
469
+ from: Address;
470
+ } : {
471
+ account?: undefined;
472
+ from?: undefined;
473
+ } : never : never), viem.IsNever<((request["type"] extends string | undefined ? request["type"] : viem.GetTransactionType<request, (request extends {
474
+ accessList?: undefined | undefined;
475
+ authorizationList?: undefined | undefined;
476
+ blobs?: undefined | undefined;
477
+ blobVersionedHashes?: undefined | undefined;
478
+ gasPrice?: bigint | undefined;
479
+ sidecars?: undefined | undefined;
480
+ } & viem.FeeValuesLegacy ? "legacy" : never) | (request extends {
481
+ accessList?: viem.AccessList | undefined;
482
+ authorizationList?: undefined | undefined;
483
+ blobs?: undefined | undefined;
484
+ blobVersionedHashes?: undefined | undefined;
485
+ gasPrice?: undefined | undefined;
486
+ maxFeePerBlobGas?: undefined | undefined;
487
+ maxFeePerGas?: bigint | undefined;
488
+ maxPriorityFeePerGas?: bigint | undefined;
489
+ sidecars?: undefined | undefined;
490
+ } & (viem.OneOf<{
491
+ maxFeePerGas: viem.FeeValuesEIP1559["maxFeePerGas"];
492
+ } | {
493
+ maxPriorityFeePerGas: viem.FeeValuesEIP1559["maxPriorityFeePerGas"];
494
+ }, viem.FeeValuesEIP1559> & {
495
+ accessList?: viem.TransactionSerializableEIP2930["accessList"] | undefined;
496
+ }) ? "eip1559" : never) | (request extends {
497
+ accessList?: viem.AccessList | undefined;
498
+ authorizationList?: undefined | undefined;
499
+ blobs?: undefined | undefined;
500
+ blobVersionedHashes?: undefined | undefined;
501
+ gasPrice?: bigint | undefined;
502
+ sidecars?: undefined | undefined;
503
+ maxFeePerBlobGas?: undefined | undefined;
504
+ maxFeePerGas?: undefined | undefined;
505
+ maxPriorityFeePerGas?: undefined | undefined;
506
+ } & {
507
+ accessList: viem.TransactionSerializableEIP2930["accessList"];
508
+ } ? "eip2930" : never) | (request extends ({
509
+ accessList?: viem.AccessList | undefined;
510
+ authorizationList?: undefined | undefined;
511
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
512
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
513
+ maxFeePerBlobGas?: bigint | undefined;
514
+ maxFeePerGas?: bigint | undefined;
515
+ maxPriorityFeePerGas?: bigint | undefined;
516
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
517
+ } | {
518
+ accessList?: viem.AccessList | undefined;
519
+ authorizationList?: undefined | undefined;
520
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
521
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
522
+ maxFeePerBlobGas?: bigint | undefined;
523
+ maxFeePerGas?: bigint | undefined;
524
+ maxPriorityFeePerGas?: bigint | undefined;
525
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
526
+ }) & (viem.ExactPartial<viem.FeeValuesEIP4844> & viem.OneOf<{
527
+ blobs: viem.TransactionSerializableEIP4844["blobs"];
528
+ } | {
529
+ blobVersionedHashes: viem.TransactionSerializableEIP4844["blobVersionedHashes"];
530
+ } | {
531
+ sidecars: viem.TransactionSerializableEIP4844["sidecars"];
532
+ }, viem.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
533
+ accessList?: viem.AccessList | undefined;
534
+ authorizationList?: viem.SignedAuthorizationList | undefined;
535
+ blobs?: undefined | undefined;
536
+ blobVersionedHashes?: undefined | undefined;
537
+ gasPrice?: undefined | undefined;
538
+ maxFeePerBlobGas?: undefined | undefined;
539
+ maxFeePerGas?: bigint | undefined;
540
+ maxPriorityFeePerGas?: bigint | undefined;
541
+ sidecars?: undefined | undefined;
542
+ } | {
543
+ accessList?: viem.AccessList | undefined;
544
+ authorizationList?: viem.SignedAuthorizationList | undefined;
545
+ blobs?: undefined | undefined;
546
+ blobVersionedHashes?: undefined | undefined;
547
+ gasPrice?: undefined | undefined;
548
+ maxFeePerBlobGas?: undefined | undefined;
549
+ maxFeePerGas?: bigint | undefined;
550
+ maxPriorityFeePerGas?: bigint | undefined;
551
+ sidecars?: undefined | undefined;
552
+ }) & {
553
+ authorizationList: viem.TransactionSerializableEIP7702["authorizationList"];
554
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : viem.GetTransactionType<request, (request extends {
555
+ accessList?: undefined | undefined;
556
+ authorizationList?: undefined | undefined;
557
+ blobs?: undefined | undefined;
558
+ blobVersionedHashes?: undefined | undefined;
559
+ gasPrice?: bigint | undefined;
560
+ sidecars?: undefined | undefined;
561
+ } & viem.FeeValuesLegacy ? "legacy" : never) | (request extends {
562
+ accessList?: viem.AccessList | undefined;
563
+ authorizationList?: undefined | undefined;
564
+ blobs?: undefined | undefined;
565
+ blobVersionedHashes?: undefined | undefined;
566
+ gasPrice?: undefined | undefined;
567
+ maxFeePerBlobGas?: undefined | undefined;
568
+ maxFeePerGas?: bigint | undefined;
569
+ maxPriorityFeePerGas?: bigint | undefined;
570
+ sidecars?: undefined | undefined;
571
+ } & (viem.OneOf<{
572
+ maxFeePerGas: viem.FeeValuesEIP1559["maxFeePerGas"];
573
+ } | {
574
+ maxPriorityFeePerGas: viem.FeeValuesEIP1559["maxPriorityFeePerGas"];
575
+ }, viem.FeeValuesEIP1559> & {
576
+ accessList?: viem.TransactionSerializableEIP2930["accessList"] | undefined;
577
+ }) ? "eip1559" : never) | (request extends {
578
+ accessList?: viem.AccessList | undefined;
579
+ authorizationList?: undefined | undefined;
580
+ blobs?: undefined | undefined;
581
+ blobVersionedHashes?: undefined | undefined;
582
+ gasPrice?: bigint | undefined;
583
+ sidecars?: undefined | undefined;
584
+ maxFeePerBlobGas?: undefined | undefined;
585
+ maxFeePerGas?: undefined | undefined;
586
+ maxPriorityFeePerGas?: undefined | undefined;
587
+ } & {
588
+ accessList: viem.TransactionSerializableEIP2930["accessList"];
589
+ } ? "eip2930" : never) | (request extends ({
590
+ accessList?: viem.AccessList | undefined;
591
+ authorizationList?: undefined | undefined;
592
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
593
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
594
+ maxFeePerBlobGas?: bigint | undefined;
595
+ maxFeePerGas?: bigint | undefined;
596
+ maxPriorityFeePerGas?: bigint | undefined;
597
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
598
+ } | {
599
+ accessList?: viem.AccessList | undefined;
600
+ authorizationList?: undefined | undefined;
601
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
602
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
603
+ maxFeePerBlobGas?: bigint | undefined;
604
+ maxFeePerGas?: bigint | undefined;
605
+ maxPriorityFeePerGas?: bigint | undefined;
606
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
607
+ }) & (viem.ExactPartial<viem.FeeValuesEIP4844> & viem.OneOf<{
608
+ blobs: viem.TransactionSerializableEIP4844["blobs"];
609
+ } | {
610
+ blobVersionedHashes: viem.TransactionSerializableEIP4844["blobVersionedHashes"];
611
+ } | {
612
+ sidecars: viem.TransactionSerializableEIP4844["sidecars"];
613
+ }, viem.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
614
+ accessList?: viem.AccessList | undefined;
615
+ authorizationList?: viem.SignedAuthorizationList | undefined;
616
+ blobs?: undefined | undefined;
617
+ blobVersionedHashes?: undefined | undefined;
618
+ gasPrice?: undefined | undefined;
619
+ maxFeePerBlobGas?: undefined | undefined;
620
+ maxFeePerGas?: bigint | undefined;
621
+ maxPriorityFeePerGas?: bigint | undefined;
622
+ sidecars?: undefined | undefined;
623
+ } | {
624
+ accessList?: viem.AccessList | undefined;
625
+ authorizationList?: viem.SignedAuthorizationList | undefined;
626
+ blobs?: undefined | undefined;
627
+ blobVersionedHashes?: undefined | undefined;
628
+ gasPrice?: undefined | undefined;
629
+ maxFeePerBlobGas?: undefined | undefined;
630
+ maxFeePerGas?: bigint | undefined;
631
+ maxPriorityFeePerGas?: bigint | undefined;
632
+ sidecars?: undefined | undefined;
633
+ }) & {
634
+ authorizationList: viem.TransactionSerializableEIP7702["authorizationList"];
635
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) extends infer T_3 ? T_3 extends (request["type"] extends string | undefined ? request["type"] : viem.GetTransactionType<request, (request extends {
636
+ accessList?: undefined | undefined;
637
+ authorizationList?: undefined | undefined;
638
+ blobs?: undefined | undefined;
639
+ blobVersionedHashes?: undefined | undefined;
640
+ gasPrice?: bigint | undefined;
641
+ sidecars?: undefined | undefined;
642
+ } & viem.FeeValuesLegacy ? "legacy" : never) | (request extends {
643
+ accessList?: viem.AccessList | undefined;
644
+ authorizationList?: undefined | undefined;
645
+ blobs?: undefined | undefined;
646
+ blobVersionedHashes?: undefined | undefined;
647
+ gasPrice?: undefined | undefined;
648
+ maxFeePerBlobGas?: undefined | undefined;
649
+ maxFeePerGas?: bigint | undefined;
650
+ maxPriorityFeePerGas?: bigint | undefined;
651
+ sidecars?: undefined | undefined;
652
+ } & (viem.OneOf<{
653
+ maxFeePerGas: viem.FeeValuesEIP1559["maxFeePerGas"];
654
+ } | {
655
+ maxPriorityFeePerGas: viem.FeeValuesEIP1559["maxPriorityFeePerGas"];
656
+ }, viem.FeeValuesEIP1559> & {
657
+ accessList?: viem.TransactionSerializableEIP2930["accessList"] | undefined;
658
+ }) ? "eip1559" : never) | (request extends {
659
+ accessList?: viem.AccessList | undefined;
660
+ authorizationList?: undefined | undefined;
661
+ blobs?: undefined | undefined;
662
+ blobVersionedHashes?: undefined | undefined;
663
+ gasPrice?: bigint | undefined;
664
+ sidecars?: undefined | undefined;
665
+ maxFeePerBlobGas?: undefined | undefined;
666
+ maxFeePerGas?: undefined | undefined;
667
+ maxPriorityFeePerGas?: undefined | undefined;
668
+ } & {
669
+ accessList: viem.TransactionSerializableEIP2930["accessList"];
670
+ } ? "eip2930" : never) | (request extends ({
671
+ accessList?: viem.AccessList | undefined;
672
+ authorizationList?: undefined | undefined;
673
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
674
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
675
+ maxFeePerBlobGas?: bigint | undefined;
676
+ maxFeePerGas?: bigint | undefined;
677
+ maxPriorityFeePerGas?: bigint | undefined;
678
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
679
+ } | {
680
+ accessList?: viem.AccessList | undefined;
681
+ authorizationList?: undefined | undefined;
682
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
683
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
684
+ maxFeePerBlobGas?: bigint | undefined;
685
+ maxFeePerGas?: bigint | undefined;
686
+ maxPriorityFeePerGas?: bigint | undefined;
687
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
688
+ }) & (viem.ExactPartial<viem.FeeValuesEIP4844> & viem.OneOf<{
689
+ blobs: viem.TransactionSerializableEIP4844["blobs"];
690
+ } | {
691
+ blobVersionedHashes: viem.TransactionSerializableEIP4844["blobVersionedHashes"];
692
+ } | {
693
+ sidecars: viem.TransactionSerializableEIP4844["sidecars"];
694
+ }, viem.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
695
+ accessList?: viem.AccessList | undefined;
696
+ authorizationList?: viem.SignedAuthorizationList | undefined;
697
+ blobs?: undefined | undefined;
698
+ blobVersionedHashes?: undefined | undefined;
699
+ gasPrice?: undefined | undefined;
700
+ maxFeePerBlobGas?: undefined | undefined;
701
+ maxFeePerGas?: bigint | undefined;
702
+ maxPriorityFeePerGas?: bigint | undefined;
703
+ sidecars?: undefined | undefined;
704
+ } | {
705
+ accessList?: viem.AccessList | undefined;
706
+ authorizationList?: viem.SignedAuthorizationList | undefined;
707
+ blobs?: undefined | undefined;
708
+ blobVersionedHashes?: undefined | undefined;
709
+ gasPrice?: undefined | undefined;
710
+ maxFeePerBlobGas?: undefined | undefined;
711
+ maxFeePerGas?: bigint | undefined;
712
+ maxPriorityFeePerGas?: bigint | undefined;
713
+ sidecars?: undefined | undefined;
714
+ }) & {
715
+ authorizationList: viem.TransactionSerializableEIP7702["authorizationList"];
716
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : viem.GetTransactionType<request, (request extends {
717
+ accessList?: undefined | undefined;
718
+ authorizationList?: undefined | undefined;
719
+ blobs?: undefined | undefined;
720
+ blobVersionedHashes?: undefined | undefined;
721
+ gasPrice?: bigint | undefined;
722
+ sidecars?: undefined | undefined;
723
+ } & viem.FeeValuesLegacy ? "legacy" : never) | (request extends {
724
+ accessList?: viem.AccessList | undefined;
725
+ authorizationList?: undefined | undefined;
726
+ blobs?: undefined | undefined;
727
+ blobVersionedHashes?: undefined | undefined;
728
+ gasPrice?: undefined | undefined;
729
+ maxFeePerBlobGas?: undefined | undefined;
730
+ maxFeePerGas?: bigint | undefined;
731
+ maxPriorityFeePerGas?: bigint | undefined;
732
+ sidecars?: undefined | undefined;
733
+ } & (viem.OneOf<{
734
+ maxFeePerGas: viem.FeeValuesEIP1559["maxFeePerGas"];
735
+ } | {
736
+ maxPriorityFeePerGas: viem.FeeValuesEIP1559["maxPriorityFeePerGas"];
737
+ }, viem.FeeValuesEIP1559> & {
738
+ accessList?: viem.TransactionSerializableEIP2930["accessList"] | undefined;
739
+ }) ? "eip1559" : never) | (request extends {
740
+ accessList?: viem.AccessList | undefined;
741
+ authorizationList?: undefined | undefined;
742
+ blobs?: undefined | undefined;
743
+ blobVersionedHashes?: undefined | undefined;
744
+ gasPrice?: bigint | undefined;
745
+ sidecars?: undefined | undefined;
746
+ maxFeePerBlobGas?: undefined | undefined;
747
+ maxFeePerGas?: undefined | undefined;
748
+ maxPriorityFeePerGas?: undefined | undefined;
749
+ } & {
750
+ accessList: viem.TransactionSerializableEIP2930["accessList"];
751
+ } ? "eip2930" : never) | (request extends ({
752
+ accessList?: viem.AccessList | undefined;
753
+ authorizationList?: undefined | undefined;
754
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
755
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
756
+ maxFeePerBlobGas?: bigint | undefined;
757
+ maxFeePerGas?: bigint | undefined;
758
+ maxPriorityFeePerGas?: bigint | undefined;
759
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
760
+ } | {
761
+ accessList?: viem.AccessList | undefined;
762
+ authorizationList?: undefined | undefined;
763
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
764
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
765
+ maxFeePerBlobGas?: bigint | undefined;
766
+ maxFeePerGas?: bigint | undefined;
767
+ maxPriorityFeePerGas?: bigint | undefined;
768
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
769
+ }) & (viem.ExactPartial<viem.FeeValuesEIP4844> & viem.OneOf<{
770
+ blobs: viem.TransactionSerializableEIP4844["blobs"];
771
+ } | {
772
+ blobVersionedHashes: viem.TransactionSerializableEIP4844["blobVersionedHashes"];
773
+ } | {
774
+ sidecars: viem.TransactionSerializableEIP4844["sidecars"];
775
+ }, viem.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
776
+ accessList?: viem.AccessList | undefined;
777
+ authorizationList?: viem.SignedAuthorizationList | undefined;
778
+ blobs?: undefined | undefined;
779
+ blobVersionedHashes?: undefined | undefined;
780
+ gasPrice?: undefined | undefined;
781
+ maxFeePerBlobGas?: undefined | undefined;
782
+ maxFeePerGas?: bigint | undefined;
783
+ maxPriorityFeePerGas?: bigint | undefined;
784
+ sidecars?: undefined | undefined;
785
+ } | {
786
+ accessList?: viem.AccessList | undefined;
787
+ authorizationList?: viem.SignedAuthorizationList | undefined;
788
+ blobs?: undefined | undefined;
789
+ blobVersionedHashes?: undefined | undefined;
790
+ gasPrice?: undefined | undefined;
791
+ maxFeePerBlobGas?: undefined | undefined;
792
+ maxFeePerGas?: bigint | undefined;
793
+ maxPriorityFeePerGas?: bigint | undefined;
794
+ sidecars?: undefined | undefined;
795
+ }) & {
796
+ authorizationList: viem.TransactionSerializableEIP7702["authorizationList"];
797
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_3 extends "legacy" ? viem.TransactionRequestLegacy : never : never : never) | ((request["type"] extends string | undefined ? request["type"] : viem.GetTransactionType<request, (request extends {
798
+ accessList?: undefined | undefined;
799
+ authorizationList?: undefined | undefined;
800
+ blobs?: undefined | undefined;
801
+ blobVersionedHashes?: undefined | undefined;
802
+ gasPrice?: bigint | undefined;
803
+ sidecars?: undefined | undefined;
804
+ } & viem.FeeValuesLegacy ? "legacy" : never) | (request extends {
805
+ accessList?: viem.AccessList | undefined;
806
+ authorizationList?: undefined | undefined;
807
+ blobs?: undefined | undefined;
808
+ blobVersionedHashes?: undefined | undefined;
809
+ gasPrice?: undefined | undefined;
810
+ maxFeePerBlobGas?: undefined | undefined;
811
+ maxFeePerGas?: bigint | undefined;
812
+ maxPriorityFeePerGas?: bigint | undefined;
813
+ sidecars?: undefined | undefined;
814
+ } & (viem.OneOf<{
815
+ maxFeePerGas: viem.FeeValuesEIP1559["maxFeePerGas"];
816
+ } | {
817
+ maxPriorityFeePerGas: viem.FeeValuesEIP1559["maxPriorityFeePerGas"];
818
+ }, viem.FeeValuesEIP1559> & {
819
+ accessList?: viem.TransactionSerializableEIP2930["accessList"] | undefined;
820
+ }) ? "eip1559" : never) | (request extends {
821
+ accessList?: viem.AccessList | undefined;
822
+ authorizationList?: undefined | undefined;
823
+ blobs?: undefined | undefined;
824
+ blobVersionedHashes?: undefined | undefined;
825
+ gasPrice?: bigint | undefined;
826
+ sidecars?: undefined | undefined;
827
+ maxFeePerBlobGas?: undefined | undefined;
828
+ maxFeePerGas?: undefined | undefined;
829
+ maxPriorityFeePerGas?: undefined | undefined;
830
+ } & {
831
+ accessList: viem.TransactionSerializableEIP2930["accessList"];
832
+ } ? "eip2930" : never) | (request extends ({
833
+ accessList?: viem.AccessList | undefined;
834
+ authorizationList?: undefined | undefined;
835
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
836
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
837
+ maxFeePerBlobGas?: bigint | undefined;
838
+ maxFeePerGas?: bigint | undefined;
839
+ maxPriorityFeePerGas?: bigint | undefined;
840
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
841
+ } | {
842
+ accessList?: viem.AccessList | undefined;
843
+ authorizationList?: undefined | undefined;
844
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
845
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
846
+ maxFeePerBlobGas?: bigint | undefined;
847
+ maxFeePerGas?: bigint | undefined;
848
+ maxPriorityFeePerGas?: bigint | undefined;
849
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
850
+ }) & (viem.ExactPartial<viem.FeeValuesEIP4844> & viem.OneOf<{
851
+ blobs: viem.TransactionSerializableEIP4844["blobs"];
852
+ } | {
853
+ blobVersionedHashes: viem.TransactionSerializableEIP4844["blobVersionedHashes"];
854
+ } | {
855
+ sidecars: viem.TransactionSerializableEIP4844["sidecars"];
856
+ }, viem.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
857
+ accessList?: viem.AccessList | undefined;
858
+ authorizationList?: viem.SignedAuthorizationList | undefined;
859
+ blobs?: undefined | undefined;
860
+ blobVersionedHashes?: undefined | undefined;
861
+ gasPrice?: undefined | undefined;
862
+ maxFeePerBlobGas?: undefined | undefined;
863
+ maxFeePerGas?: bigint | undefined;
864
+ maxPriorityFeePerGas?: bigint | undefined;
865
+ sidecars?: undefined | undefined;
866
+ } | {
867
+ accessList?: viem.AccessList | undefined;
868
+ authorizationList?: viem.SignedAuthorizationList | undefined;
869
+ blobs?: undefined | undefined;
870
+ blobVersionedHashes?: undefined | undefined;
871
+ gasPrice?: undefined | undefined;
872
+ maxFeePerBlobGas?: undefined | undefined;
873
+ maxFeePerGas?: bigint | undefined;
874
+ maxPriorityFeePerGas?: bigint | undefined;
875
+ sidecars?: undefined | undefined;
876
+ }) & {
877
+ authorizationList: viem.TransactionSerializableEIP7702["authorizationList"];
878
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : viem.GetTransactionType<request, (request extends {
879
+ accessList?: undefined | undefined;
880
+ authorizationList?: undefined | undefined;
881
+ blobs?: undefined | undefined;
882
+ blobVersionedHashes?: undefined | undefined;
883
+ gasPrice?: bigint | undefined;
884
+ sidecars?: undefined | undefined;
885
+ } & viem.FeeValuesLegacy ? "legacy" : never) | (request extends {
886
+ accessList?: viem.AccessList | undefined;
887
+ authorizationList?: undefined | undefined;
888
+ blobs?: undefined | undefined;
889
+ blobVersionedHashes?: undefined | undefined;
890
+ gasPrice?: undefined | undefined;
891
+ maxFeePerBlobGas?: undefined | undefined;
892
+ maxFeePerGas?: bigint | undefined;
893
+ maxPriorityFeePerGas?: bigint | undefined;
894
+ sidecars?: undefined | undefined;
895
+ } & (viem.OneOf<{
896
+ maxFeePerGas: viem.FeeValuesEIP1559["maxFeePerGas"];
897
+ } | {
898
+ maxPriorityFeePerGas: viem.FeeValuesEIP1559["maxPriorityFeePerGas"];
899
+ }, viem.FeeValuesEIP1559> & {
900
+ accessList?: viem.TransactionSerializableEIP2930["accessList"] | undefined;
901
+ }) ? "eip1559" : never) | (request extends {
902
+ accessList?: viem.AccessList | undefined;
903
+ authorizationList?: undefined | undefined;
904
+ blobs?: undefined | undefined;
905
+ blobVersionedHashes?: undefined | undefined;
906
+ gasPrice?: bigint | undefined;
907
+ sidecars?: undefined | undefined;
908
+ maxFeePerBlobGas?: undefined | undefined;
909
+ maxFeePerGas?: undefined | undefined;
910
+ maxPriorityFeePerGas?: undefined | undefined;
911
+ } & {
912
+ accessList: viem.TransactionSerializableEIP2930["accessList"];
913
+ } ? "eip2930" : never) | (request extends ({
914
+ accessList?: viem.AccessList | undefined;
915
+ authorizationList?: undefined | undefined;
916
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
917
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
918
+ maxFeePerBlobGas?: bigint | undefined;
919
+ maxFeePerGas?: bigint | undefined;
920
+ maxPriorityFeePerGas?: bigint | undefined;
921
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
922
+ } | {
923
+ accessList?: viem.AccessList | undefined;
924
+ authorizationList?: undefined | undefined;
925
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
926
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
927
+ maxFeePerBlobGas?: bigint | undefined;
928
+ maxFeePerGas?: bigint | undefined;
929
+ maxPriorityFeePerGas?: bigint | undefined;
930
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
931
+ }) & (viem.ExactPartial<viem.FeeValuesEIP4844> & viem.OneOf<{
932
+ blobs: viem.TransactionSerializableEIP4844["blobs"];
933
+ } | {
934
+ blobVersionedHashes: viem.TransactionSerializableEIP4844["blobVersionedHashes"];
935
+ } | {
936
+ sidecars: viem.TransactionSerializableEIP4844["sidecars"];
937
+ }, viem.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
938
+ accessList?: viem.AccessList | undefined;
939
+ authorizationList?: viem.SignedAuthorizationList | undefined;
940
+ blobs?: undefined | undefined;
941
+ blobVersionedHashes?: undefined | undefined;
942
+ gasPrice?: undefined | undefined;
943
+ maxFeePerBlobGas?: undefined | undefined;
944
+ maxFeePerGas?: bigint | undefined;
945
+ maxPriorityFeePerGas?: bigint | undefined;
946
+ sidecars?: undefined | undefined;
947
+ } | {
948
+ accessList?: viem.AccessList | undefined;
949
+ authorizationList?: viem.SignedAuthorizationList | undefined;
950
+ blobs?: undefined | undefined;
951
+ blobVersionedHashes?: undefined | undefined;
952
+ gasPrice?: undefined | undefined;
953
+ maxFeePerBlobGas?: undefined | undefined;
954
+ maxFeePerGas?: bigint | undefined;
955
+ maxPriorityFeePerGas?: bigint | undefined;
956
+ sidecars?: undefined | undefined;
957
+ }) & {
958
+ authorizationList: viem.TransactionSerializableEIP7702["authorizationList"];
959
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) extends infer T_4 ? T_4 extends (request["type"] extends string | undefined ? request["type"] : viem.GetTransactionType<request, (request extends {
960
+ accessList?: undefined | undefined;
961
+ authorizationList?: undefined | undefined;
962
+ blobs?: undefined | undefined;
963
+ blobVersionedHashes?: undefined | undefined;
964
+ gasPrice?: bigint | undefined;
965
+ sidecars?: undefined | undefined;
966
+ } & viem.FeeValuesLegacy ? "legacy" : never) | (request extends {
967
+ accessList?: viem.AccessList | undefined;
968
+ authorizationList?: undefined | undefined;
969
+ blobs?: undefined | undefined;
970
+ blobVersionedHashes?: undefined | undefined;
971
+ gasPrice?: undefined | undefined;
972
+ maxFeePerBlobGas?: undefined | undefined;
973
+ maxFeePerGas?: bigint | undefined;
974
+ maxPriorityFeePerGas?: bigint | undefined;
975
+ sidecars?: undefined | undefined;
976
+ } & (viem.OneOf<{
977
+ maxFeePerGas: viem.FeeValuesEIP1559["maxFeePerGas"];
978
+ } | {
979
+ maxPriorityFeePerGas: viem.FeeValuesEIP1559["maxPriorityFeePerGas"];
980
+ }, viem.FeeValuesEIP1559> & {
981
+ accessList?: viem.TransactionSerializableEIP2930["accessList"] | undefined;
982
+ }) ? "eip1559" : never) | (request extends {
983
+ accessList?: viem.AccessList | undefined;
984
+ authorizationList?: undefined | undefined;
985
+ blobs?: undefined | undefined;
986
+ blobVersionedHashes?: undefined | undefined;
987
+ gasPrice?: bigint | undefined;
988
+ sidecars?: undefined | undefined;
989
+ maxFeePerBlobGas?: undefined | undefined;
990
+ maxFeePerGas?: undefined | undefined;
991
+ maxPriorityFeePerGas?: undefined | undefined;
992
+ } & {
993
+ accessList: viem.TransactionSerializableEIP2930["accessList"];
994
+ } ? "eip2930" : never) | (request extends ({
995
+ accessList?: viem.AccessList | undefined;
996
+ authorizationList?: undefined | undefined;
997
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
998
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
999
+ maxFeePerBlobGas?: bigint | undefined;
1000
+ maxFeePerGas?: bigint | undefined;
1001
+ maxPriorityFeePerGas?: bigint | undefined;
1002
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
1003
+ } | {
1004
+ accessList?: viem.AccessList | undefined;
1005
+ authorizationList?: undefined | undefined;
1006
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
1007
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1008
+ maxFeePerBlobGas?: bigint | undefined;
1009
+ maxFeePerGas?: bigint | undefined;
1010
+ maxPriorityFeePerGas?: bigint | undefined;
1011
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
1012
+ }) & (viem.ExactPartial<viem.FeeValuesEIP4844> & viem.OneOf<{
1013
+ blobs: viem.TransactionSerializableEIP4844["blobs"];
1014
+ } | {
1015
+ blobVersionedHashes: viem.TransactionSerializableEIP4844["blobVersionedHashes"];
1016
+ } | {
1017
+ sidecars: viem.TransactionSerializableEIP4844["sidecars"];
1018
+ }, viem.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
1019
+ accessList?: viem.AccessList | undefined;
1020
+ authorizationList?: viem.SignedAuthorizationList | undefined;
1021
+ blobs?: undefined | undefined;
1022
+ blobVersionedHashes?: undefined | undefined;
1023
+ gasPrice?: undefined | undefined;
1024
+ maxFeePerBlobGas?: undefined | undefined;
1025
+ maxFeePerGas?: bigint | undefined;
1026
+ maxPriorityFeePerGas?: bigint | undefined;
1027
+ sidecars?: undefined | undefined;
1028
+ } | {
1029
+ accessList?: viem.AccessList | undefined;
1030
+ authorizationList?: viem.SignedAuthorizationList | undefined;
1031
+ blobs?: undefined | undefined;
1032
+ blobVersionedHashes?: undefined | undefined;
1033
+ gasPrice?: undefined | undefined;
1034
+ maxFeePerBlobGas?: undefined | undefined;
1035
+ maxFeePerGas?: bigint | undefined;
1036
+ maxPriorityFeePerGas?: bigint | undefined;
1037
+ sidecars?: undefined | undefined;
1038
+ }) & {
1039
+ authorizationList: viem.TransactionSerializableEIP7702["authorizationList"];
1040
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : viem.GetTransactionType<request, (request extends {
1041
+ accessList?: undefined | undefined;
1042
+ authorizationList?: undefined | undefined;
1043
+ blobs?: undefined | undefined;
1044
+ blobVersionedHashes?: undefined | undefined;
1045
+ gasPrice?: bigint | undefined;
1046
+ sidecars?: undefined | undefined;
1047
+ } & viem.FeeValuesLegacy ? "legacy" : never) | (request extends {
1048
+ accessList?: viem.AccessList | undefined;
1049
+ authorizationList?: undefined | undefined;
1050
+ blobs?: undefined | undefined;
1051
+ blobVersionedHashes?: undefined | undefined;
1052
+ gasPrice?: undefined | undefined;
1053
+ maxFeePerBlobGas?: undefined | undefined;
1054
+ maxFeePerGas?: bigint | undefined;
1055
+ maxPriorityFeePerGas?: bigint | undefined;
1056
+ sidecars?: undefined | undefined;
1057
+ } & (viem.OneOf<{
1058
+ maxFeePerGas: viem.FeeValuesEIP1559["maxFeePerGas"];
1059
+ } | {
1060
+ maxPriorityFeePerGas: viem.FeeValuesEIP1559["maxPriorityFeePerGas"];
1061
+ }, viem.FeeValuesEIP1559> & {
1062
+ accessList?: viem.TransactionSerializableEIP2930["accessList"] | undefined;
1063
+ }) ? "eip1559" : never) | (request extends {
1064
+ accessList?: viem.AccessList | undefined;
1065
+ authorizationList?: undefined | undefined;
1066
+ blobs?: undefined | undefined;
1067
+ blobVersionedHashes?: undefined | undefined;
1068
+ gasPrice?: bigint | undefined;
1069
+ sidecars?: undefined | undefined;
1070
+ maxFeePerBlobGas?: undefined | undefined;
1071
+ maxFeePerGas?: undefined | undefined;
1072
+ maxPriorityFeePerGas?: undefined | undefined;
1073
+ } & {
1074
+ accessList: viem.TransactionSerializableEIP2930["accessList"];
1075
+ } ? "eip2930" : never) | (request extends ({
1076
+ accessList?: viem.AccessList | undefined;
1077
+ authorizationList?: undefined | undefined;
1078
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
1079
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1080
+ maxFeePerBlobGas?: bigint | undefined;
1081
+ maxFeePerGas?: bigint | undefined;
1082
+ maxPriorityFeePerGas?: bigint | undefined;
1083
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
1084
+ } | {
1085
+ accessList?: viem.AccessList | undefined;
1086
+ authorizationList?: undefined | undefined;
1087
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
1088
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1089
+ maxFeePerBlobGas?: bigint | undefined;
1090
+ maxFeePerGas?: bigint | undefined;
1091
+ maxPriorityFeePerGas?: bigint | undefined;
1092
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
1093
+ }) & (viem.ExactPartial<viem.FeeValuesEIP4844> & viem.OneOf<{
1094
+ blobs: viem.TransactionSerializableEIP4844["blobs"];
1095
+ } | {
1096
+ blobVersionedHashes: viem.TransactionSerializableEIP4844["blobVersionedHashes"];
1097
+ } | {
1098
+ sidecars: viem.TransactionSerializableEIP4844["sidecars"];
1099
+ }, viem.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
1100
+ accessList?: viem.AccessList | undefined;
1101
+ authorizationList?: viem.SignedAuthorizationList | undefined;
1102
+ blobs?: undefined | undefined;
1103
+ blobVersionedHashes?: undefined | undefined;
1104
+ gasPrice?: undefined | undefined;
1105
+ maxFeePerBlobGas?: undefined | undefined;
1106
+ maxFeePerGas?: bigint | undefined;
1107
+ maxPriorityFeePerGas?: bigint | undefined;
1108
+ sidecars?: undefined | undefined;
1109
+ } | {
1110
+ accessList?: viem.AccessList | undefined;
1111
+ authorizationList?: viem.SignedAuthorizationList | undefined;
1112
+ blobs?: undefined | undefined;
1113
+ blobVersionedHashes?: undefined | undefined;
1114
+ gasPrice?: undefined | undefined;
1115
+ maxFeePerBlobGas?: undefined | undefined;
1116
+ maxFeePerGas?: bigint | undefined;
1117
+ maxPriorityFeePerGas?: bigint | undefined;
1118
+ sidecars?: undefined | undefined;
1119
+ }) & {
1120
+ authorizationList: viem.TransactionSerializableEIP7702["authorizationList"];
1121
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_4 extends "eip1559" ? viem.TransactionRequestEIP1559 : never : never : never) | ((request["type"] extends string | undefined ? request["type"] : viem.GetTransactionType<request, (request extends {
1122
+ accessList?: undefined | undefined;
1123
+ authorizationList?: undefined | undefined;
1124
+ blobs?: undefined | undefined;
1125
+ blobVersionedHashes?: undefined | undefined;
1126
+ gasPrice?: bigint | undefined;
1127
+ sidecars?: undefined | undefined;
1128
+ } & viem.FeeValuesLegacy ? "legacy" : never) | (request extends {
1129
+ accessList?: viem.AccessList | undefined;
1130
+ authorizationList?: undefined | undefined;
1131
+ blobs?: undefined | undefined;
1132
+ blobVersionedHashes?: undefined | undefined;
1133
+ gasPrice?: undefined | undefined;
1134
+ maxFeePerBlobGas?: undefined | undefined;
1135
+ maxFeePerGas?: bigint | undefined;
1136
+ maxPriorityFeePerGas?: bigint | undefined;
1137
+ sidecars?: undefined | undefined;
1138
+ } & (viem.OneOf<{
1139
+ maxFeePerGas: viem.FeeValuesEIP1559["maxFeePerGas"];
1140
+ } | {
1141
+ maxPriorityFeePerGas: viem.FeeValuesEIP1559["maxPriorityFeePerGas"];
1142
+ }, viem.FeeValuesEIP1559> & {
1143
+ accessList?: viem.TransactionSerializableEIP2930["accessList"] | undefined;
1144
+ }) ? "eip1559" : never) | (request extends {
1145
+ accessList?: viem.AccessList | undefined;
1146
+ authorizationList?: undefined | undefined;
1147
+ blobs?: undefined | undefined;
1148
+ blobVersionedHashes?: undefined | undefined;
1149
+ gasPrice?: bigint | undefined;
1150
+ sidecars?: undefined | undefined;
1151
+ maxFeePerBlobGas?: undefined | undefined;
1152
+ maxFeePerGas?: undefined | undefined;
1153
+ maxPriorityFeePerGas?: undefined | undefined;
1154
+ } & {
1155
+ accessList: viem.TransactionSerializableEIP2930["accessList"];
1156
+ } ? "eip2930" : never) | (request extends ({
1157
+ accessList?: viem.AccessList | undefined;
1158
+ authorizationList?: undefined | undefined;
1159
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
1160
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1161
+ maxFeePerBlobGas?: bigint | undefined;
1162
+ maxFeePerGas?: bigint | undefined;
1163
+ maxPriorityFeePerGas?: bigint | undefined;
1164
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
1165
+ } | {
1166
+ accessList?: viem.AccessList | undefined;
1167
+ authorizationList?: undefined | undefined;
1168
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
1169
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1170
+ maxFeePerBlobGas?: bigint | undefined;
1171
+ maxFeePerGas?: bigint | undefined;
1172
+ maxPriorityFeePerGas?: bigint | undefined;
1173
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
1174
+ }) & (viem.ExactPartial<viem.FeeValuesEIP4844> & viem.OneOf<{
1175
+ blobs: viem.TransactionSerializableEIP4844["blobs"];
1176
+ } | {
1177
+ blobVersionedHashes: viem.TransactionSerializableEIP4844["blobVersionedHashes"];
1178
+ } | {
1179
+ sidecars: viem.TransactionSerializableEIP4844["sidecars"];
1180
+ }, viem.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
1181
+ accessList?: viem.AccessList | undefined;
1182
+ authorizationList?: viem.SignedAuthorizationList | undefined;
1183
+ blobs?: undefined | undefined;
1184
+ blobVersionedHashes?: undefined | undefined;
1185
+ gasPrice?: undefined | undefined;
1186
+ maxFeePerBlobGas?: undefined | undefined;
1187
+ maxFeePerGas?: bigint | undefined;
1188
+ maxPriorityFeePerGas?: bigint | undefined;
1189
+ sidecars?: undefined | undefined;
1190
+ } | {
1191
+ accessList?: viem.AccessList | undefined;
1192
+ authorizationList?: viem.SignedAuthorizationList | undefined;
1193
+ blobs?: undefined | undefined;
1194
+ blobVersionedHashes?: undefined | undefined;
1195
+ gasPrice?: undefined | undefined;
1196
+ maxFeePerBlobGas?: undefined | undefined;
1197
+ maxFeePerGas?: bigint | undefined;
1198
+ maxPriorityFeePerGas?: bigint | undefined;
1199
+ sidecars?: undefined | undefined;
1200
+ }) & {
1201
+ authorizationList: viem.TransactionSerializableEIP7702["authorizationList"];
1202
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : viem.GetTransactionType<request, (request extends {
1203
+ accessList?: undefined | undefined;
1204
+ authorizationList?: undefined | undefined;
1205
+ blobs?: undefined | undefined;
1206
+ blobVersionedHashes?: undefined | undefined;
1207
+ gasPrice?: bigint | undefined;
1208
+ sidecars?: undefined | undefined;
1209
+ } & viem.FeeValuesLegacy ? "legacy" : never) | (request extends {
1210
+ accessList?: viem.AccessList | undefined;
1211
+ authorizationList?: undefined | undefined;
1212
+ blobs?: undefined | undefined;
1213
+ blobVersionedHashes?: undefined | undefined;
1214
+ gasPrice?: undefined | undefined;
1215
+ maxFeePerBlobGas?: undefined | undefined;
1216
+ maxFeePerGas?: bigint | undefined;
1217
+ maxPriorityFeePerGas?: bigint | undefined;
1218
+ sidecars?: undefined | undefined;
1219
+ } & (viem.OneOf<{
1220
+ maxFeePerGas: viem.FeeValuesEIP1559["maxFeePerGas"];
1221
+ } | {
1222
+ maxPriorityFeePerGas: viem.FeeValuesEIP1559["maxPriorityFeePerGas"];
1223
+ }, viem.FeeValuesEIP1559> & {
1224
+ accessList?: viem.TransactionSerializableEIP2930["accessList"] | undefined;
1225
+ }) ? "eip1559" : never) | (request extends {
1226
+ accessList?: viem.AccessList | undefined;
1227
+ authorizationList?: undefined | undefined;
1228
+ blobs?: undefined | undefined;
1229
+ blobVersionedHashes?: undefined | undefined;
1230
+ gasPrice?: bigint | undefined;
1231
+ sidecars?: undefined | undefined;
1232
+ maxFeePerBlobGas?: undefined | undefined;
1233
+ maxFeePerGas?: undefined | undefined;
1234
+ maxPriorityFeePerGas?: undefined | undefined;
1235
+ } & {
1236
+ accessList: viem.TransactionSerializableEIP2930["accessList"];
1237
+ } ? "eip2930" : never) | (request extends ({
1238
+ accessList?: viem.AccessList | undefined;
1239
+ authorizationList?: undefined | undefined;
1240
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
1241
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1242
+ maxFeePerBlobGas?: bigint | undefined;
1243
+ maxFeePerGas?: bigint | undefined;
1244
+ maxPriorityFeePerGas?: bigint | undefined;
1245
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
1246
+ } | {
1247
+ accessList?: viem.AccessList | undefined;
1248
+ authorizationList?: undefined | undefined;
1249
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
1250
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1251
+ maxFeePerBlobGas?: bigint | undefined;
1252
+ maxFeePerGas?: bigint | undefined;
1253
+ maxPriorityFeePerGas?: bigint | undefined;
1254
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
1255
+ }) & (viem.ExactPartial<viem.FeeValuesEIP4844> & viem.OneOf<{
1256
+ blobs: viem.TransactionSerializableEIP4844["blobs"];
1257
+ } | {
1258
+ blobVersionedHashes: viem.TransactionSerializableEIP4844["blobVersionedHashes"];
1259
+ } | {
1260
+ sidecars: viem.TransactionSerializableEIP4844["sidecars"];
1261
+ }, viem.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
1262
+ accessList?: viem.AccessList | undefined;
1263
+ authorizationList?: viem.SignedAuthorizationList | undefined;
1264
+ blobs?: undefined | undefined;
1265
+ blobVersionedHashes?: undefined | undefined;
1266
+ gasPrice?: undefined | undefined;
1267
+ maxFeePerBlobGas?: undefined | undefined;
1268
+ maxFeePerGas?: bigint | undefined;
1269
+ maxPriorityFeePerGas?: bigint | undefined;
1270
+ sidecars?: undefined | undefined;
1271
+ } | {
1272
+ accessList?: viem.AccessList | undefined;
1273
+ authorizationList?: viem.SignedAuthorizationList | undefined;
1274
+ blobs?: undefined | undefined;
1275
+ blobVersionedHashes?: undefined | undefined;
1276
+ gasPrice?: undefined | undefined;
1277
+ maxFeePerBlobGas?: undefined | undefined;
1278
+ maxFeePerGas?: bigint | undefined;
1279
+ maxPriorityFeePerGas?: bigint | undefined;
1280
+ sidecars?: undefined | undefined;
1281
+ }) & {
1282
+ authorizationList: viem.TransactionSerializableEIP7702["authorizationList"];
1283
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) extends infer T_5 ? T_5 extends (request["type"] extends string | undefined ? request["type"] : viem.GetTransactionType<request, (request extends {
1284
+ accessList?: undefined | undefined;
1285
+ authorizationList?: undefined | undefined;
1286
+ blobs?: undefined | undefined;
1287
+ blobVersionedHashes?: undefined | undefined;
1288
+ gasPrice?: bigint | undefined;
1289
+ sidecars?: undefined | undefined;
1290
+ } & viem.FeeValuesLegacy ? "legacy" : never) | (request extends {
1291
+ accessList?: viem.AccessList | undefined;
1292
+ authorizationList?: undefined | undefined;
1293
+ blobs?: undefined | undefined;
1294
+ blobVersionedHashes?: undefined | undefined;
1295
+ gasPrice?: undefined | undefined;
1296
+ maxFeePerBlobGas?: undefined | undefined;
1297
+ maxFeePerGas?: bigint | undefined;
1298
+ maxPriorityFeePerGas?: bigint | undefined;
1299
+ sidecars?: undefined | undefined;
1300
+ } & (viem.OneOf<{
1301
+ maxFeePerGas: viem.FeeValuesEIP1559["maxFeePerGas"];
1302
+ } | {
1303
+ maxPriorityFeePerGas: viem.FeeValuesEIP1559["maxPriorityFeePerGas"];
1304
+ }, viem.FeeValuesEIP1559> & {
1305
+ accessList?: viem.TransactionSerializableEIP2930["accessList"] | undefined;
1306
+ }) ? "eip1559" : never) | (request extends {
1307
+ accessList?: viem.AccessList | undefined;
1308
+ authorizationList?: undefined | undefined;
1309
+ blobs?: undefined | undefined;
1310
+ blobVersionedHashes?: undefined | undefined;
1311
+ gasPrice?: bigint | undefined;
1312
+ sidecars?: undefined | undefined;
1313
+ maxFeePerBlobGas?: undefined | undefined;
1314
+ maxFeePerGas?: undefined | undefined;
1315
+ maxPriorityFeePerGas?: undefined | undefined;
1316
+ } & {
1317
+ accessList: viem.TransactionSerializableEIP2930["accessList"];
1318
+ } ? "eip2930" : never) | (request extends ({
1319
+ accessList?: viem.AccessList | undefined;
1320
+ authorizationList?: undefined | undefined;
1321
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
1322
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1323
+ maxFeePerBlobGas?: bigint | undefined;
1324
+ maxFeePerGas?: bigint | undefined;
1325
+ maxPriorityFeePerGas?: bigint | undefined;
1326
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
1327
+ } | {
1328
+ accessList?: viem.AccessList | undefined;
1329
+ authorizationList?: undefined | undefined;
1330
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
1331
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1332
+ maxFeePerBlobGas?: bigint | undefined;
1333
+ maxFeePerGas?: bigint | undefined;
1334
+ maxPriorityFeePerGas?: bigint | undefined;
1335
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
1336
+ }) & (viem.ExactPartial<viem.FeeValuesEIP4844> & viem.OneOf<{
1337
+ blobs: viem.TransactionSerializableEIP4844["blobs"];
1338
+ } | {
1339
+ blobVersionedHashes: viem.TransactionSerializableEIP4844["blobVersionedHashes"];
1340
+ } | {
1341
+ sidecars: viem.TransactionSerializableEIP4844["sidecars"];
1342
+ }, viem.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
1343
+ accessList?: viem.AccessList | undefined;
1344
+ authorizationList?: viem.SignedAuthorizationList | undefined;
1345
+ blobs?: undefined | undefined;
1346
+ blobVersionedHashes?: undefined | undefined;
1347
+ gasPrice?: undefined | undefined;
1348
+ maxFeePerBlobGas?: undefined | undefined;
1349
+ maxFeePerGas?: bigint | undefined;
1350
+ maxPriorityFeePerGas?: bigint | undefined;
1351
+ sidecars?: undefined | undefined;
1352
+ } | {
1353
+ accessList?: viem.AccessList | undefined;
1354
+ authorizationList?: viem.SignedAuthorizationList | undefined;
1355
+ blobs?: undefined | undefined;
1356
+ blobVersionedHashes?: undefined | undefined;
1357
+ gasPrice?: undefined | undefined;
1358
+ maxFeePerBlobGas?: undefined | undefined;
1359
+ maxFeePerGas?: bigint | undefined;
1360
+ maxPriorityFeePerGas?: bigint | undefined;
1361
+ sidecars?: undefined | undefined;
1362
+ }) & {
1363
+ authorizationList: viem.TransactionSerializableEIP7702["authorizationList"];
1364
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : viem.GetTransactionType<request, (request extends {
1365
+ accessList?: undefined | undefined;
1366
+ authorizationList?: undefined | undefined;
1367
+ blobs?: undefined | undefined;
1368
+ blobVersionedHashes?: undefined | undefined;
1369
+ gasPrice?: bigint | undefined;
1370
+ sidecars?: undefined | undefined;
1371
+ } & viem.FeeValuesLegacy ? "legacy" : never) | (request extends {
1372
+ accessList?: viem.AccessList | undefined;
1373
+ authorizationList?: undefined | undefined;
1374
+ blobs?: undefined | undefined;
1375
+ blobVersionedHashes?: undefined | undefined;
1376
+ gasPrice?: undefined | undefined;
1377
+ maxFeePerBlobGas?: undefined | undefined;
1378
+ maxFeePerGas?: bigint | undefined;
1379
+ maxPriorityFeePerGas?: bigint | undefined;
1380
+ sidecars?: undefined | undefined;
1381
+ } & (viem.OneOf<{
1382
+ maxFeePerGas: viem.FeeValuesEIP1559["maxFeePerGas"];
1383
+ } | {
1384
+ maxPriorityFeePerGas: viem.FeeValuesEIP1559["maxPriorityFeePerGas"];
1385
+ }, viem.FeeValuesEIP1559> & {
1386
+ accessList?: viem.TransactionSerializableEIP2930["accessList"] | undefined;
1387
+ }) ? "eip1559" : never) | (request extends {
1388
+ accessList?: viem.AccessList | undefined;
1389
+ authorizationList?: undefined | undefined;
1390
+ blobs?: undefined | undefined;
1391
+ blobVersionedHashes?: undefined | undefined;
1392
+ gasPrice?: bigint | undefined;
1393
+ sidecars?: undefined | undefined;
1394
+ maxFeePerBlobGas?: undefined | undefined;
1395
+ maxFeePerGas?: undefined | undefined;
1396
+ maxPriorityFeePerGas?: undefined | undefined;
1397
+ } & {
1398
+ accessList: viem.TransactionSerializableEIP2930["accessList"];
1399
+ } ? "eip2930" : never) | (request extends ({
1400
+ accessList?: viem.AccessList | undefined;
1401
+ authorizationList?: undefined | undefined;
1402
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
1403
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1404
+ maxFeePerBlobGas?: bigint | undefined;
1405
+ maxFeePerGas?: bigint | undefined;
1406
+ maxPriorityFeePerGas?: bigint | undefined;
1407
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
1408
+ } | {
1409
+ accessList?: viem.AccessList | undefined;
1410
+ authorizationList?: undefined | undefined;
1411
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
1412
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1413
+ maxFeePerBlobGas?: bigint | undefined;
1414
+ maxFeePerGas?: bigint | undefined;
1415
+ maxPriorityFeePerGas?: bigint | undefined;
1416
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
1417
+ }) & (viem.ExactPartial<viem.FeeValuesEIP4844> & viem.OneOf<{
1418
+ blobs: viem.TransactionSerializableEIP4844["blobs"];
1419
+ } | {
1420
+ blobVersionedHashes: viem.TransactionSerializableEIP4844["blobVersionedHashes"];
1421
+ } | {
1422
+ sidecars: viem.TransactionSerializableEIP4844["sidecars"];
1423
+ }, viem.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
1424
+ accessList?: viem.AccessList | undefined;
1425
+ authorizationList?: viem.SignedAuthorizationList | undefined;
1426
+ blobs?: undefined | undefined;
1427
+ blobVersionedHashes?: undefined | undefined;
1428
+ gasPrice?: undefined | undefined;
1429
+ maxFeePerBlobGas?: undefined | undefined;
1430
+ maxFeePerGas?: bigint | undefined;
1431
+ maxPriorityFeePerGas?: bigint | undefined;
1432
+ sidecars?: undefined | undefined;
1433
+ } | {
1434
+ accessList?: viem.AccessList | undefined;
1435
+ authorizationList?: viem.SignedAuthorizationList | undefined;
1436
+ blobs?: undefined | undefined;
1437
+ blobVersionedHashes?: undefined | undefined;
1438
+ gasPrice?: undefined | undefined;
1439
+ maxFeePerBlobGas?: undefined | undefined;
1440
+ maxFeePerGas?: bigint | undefined;
1441
+ maxPriorityFeePerGas?: bigint | undefined;
1442
+ sidecars?: undefined | undefined;
1443
+ }) & {
1444
+ authorizationList: viem.TransactionSerializableEIP7702["authorizationList"];
1445
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_5 extends "eip2930" ? viem.TransactionRequestEIP2930 : never : never : never) | ((request["type"] extends string | undefined ? request["type"] : viem.GetTransactionType<request, (request extends {
1446
+ accessList?: undefined | undefined;
1447
+ authorizationList?: undefined | undefined;
1448
+ blobs?: undefined | undefined;
1449
+ blobVersionedHashes?: undefined | undefined;
1450
+ gasPrice?: bigint | undefined;
1451
+ sidecars?: undefined | undefined;
1452
+ } & viem.FeeValuesLegacy ? "legacy" : never) | (request extends {
1453
+ accessList?: viem.AccessList | undefined;
1454
+ authorizationList?: undefined | undefined;
1455
+ blobs?: undefined | undefined;
1456
+ blobVersionedHashes?: undefined | undefined;
1457
+ gasPrice?: undefined | undefined;
1458
+ maxFeePerBlobGas?: undefined | undefined;
1459
+ maxFeePerGas?: bigint | undefined;
1460
+ maxPriorityFeePerGas?: bigint | undefined;
1461
+ sidecars?: undefined | undefined;
1462
+ } & (viem.OneOf<{
1463
+ maxFeePerGas: viem.FeeValuesEIP1559["maxFeePerGas"];
1464
+ } | {
1465
+ maxPriorityFeePerGas: viem.FeeValuesEIP1559["maxPriorityFeePerGas"];
1466
+ }, viem.FeeValuesEIP1559> & {
1467
+ accessList?: viem.TransactionSerializableEIP2930["accessList"] | undefined;
1468
+ }) ? "eip1559" : never) | (request extends {
1469
+ accessList?: viem.AccessList | undefined;
1470
+ authorizationList?: undefined | undefined;
1471
+ blobs?: undefined | undefined;
1472
+ blobVersionedHashes?: undefined | undefined;
1473
+ gasPrice?: bigint | undefined;
1474
+ sidecars?: undefined | undefined;
1475
+ maxFeePerBlobGas?: undefined | undefined;
1476
+ maxFeePerGas?: undefined | undefined;
1477
+ maxPriorityFeePerGas?: undefined | undefined;
1478
+ } & {
1479
+ accessList: viem.TransactionSerializableEIP2930["accessList"];
1480
+ } ? "eip2930" : never) | (request extends ({
1481
+ accessList?: viem.AccessList | undefined;
1482
+ authorizationList?: undefined | undefined;
1483
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
1484
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1485
+ maxFeePerBlobGas?: bigint | undefined;
1486
+ maxFeePerGas?: bigint | undefined;
1487
+ maxPriorityFeePerGas?: bigint | undefined;
1488
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
1489
+ } | {
1490
+ accessList?: viem.AccessList | undefined;
1491
+ authorizationList?: undefined | undefined;
1492
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
1493
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1494
+ maxFeePerBlobGas?: bigint | undefined;
1495
+ maxFeePerGas?: bigint | undefined;
1496
+ maxPriorityFeePerGas?: bigint | undefined;
1497
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
1498
+ }) & (viem.ExactPartial<viem.FeeValuesEIP4844> & viem.OneOf<{
1499
+ blobs: viem.TransactionSerializableEIP4844["blobs"];
1500
+ } | {
1501
+ blobVersionedHashes: viem.TransactionSerializableEIP4844["blobVersionedHashes"];
1502
+ } | {
1503
+ sidecars: viem.TransactionSerializableEIP4844["sidecars"];
1504
+ }, viem.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
1505
+ accessList?: viem.AccessList | undefined;
1506
+ authorizationList?: viem.SignedAuthorizationList | undefined;
1507
+ blobs?: undefined | undefined;
1508
+ blobVersionedHashes?: undefined | undefined;
1509
+ gasPrice?: undefined | undefined;
1510
+ maxFeePerBlobGas?: undefined | undefined;
1511
+ maxFeePerGas?: bigint | undefined;
1512
+ maxPriorityFeePerGas?: bigint | undefined;
1513
+ sidecars?: undefined | undefined;
1514
+ } | {
1515
+ accessList?: viem.AccessList | undefined;
1516
+ authorizationList?: viem.SignedAuthorizationList | undefined;
1517
+ blobs?: undefined | undefined;
1518
+ blobVersionedHashes?: undefined | undefined;
1519
+ gasPrice?: undefined | undefined;
1520
+ maxFeePerBlobGas?: undefined | undefined;
1521
+ maxFeePerGas?: bigint | undefined;
1522
+ maxPriorityFeePerGas?: bigint | undefined;
1523
+ sidecars?: undefined | undefined;
1524
+ }) & {
1525
+ authorizationList: viem.TransactionSerializableEIP7702["authorizationList"];
1526
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : viem.GetTransactionType<request, (request extends {
1527
+ accessList?: undefined | undefined;
1528
+ authorizationList?: undefined | undefined;
1529
+ blobs?: undefined | undefined;
1530
+ blobVersionedHashes?: undefined | undefined;
1531
+ gasPrice?: bigint | undefined;
1532
+ sidecars?: undefined | undefined;
1533
+ } & viem.FeeValuesLegacy ? "legacy" : never) | (request extends {
1534
+ accessList?: viem.AccessList | undefined;
1535
+ authorizationList?: undefined | undefined;
1536
+ blobs?: undefined | undefined;
1537
+ blobVersionedHashes?: undefined | undefined;
1538
+ gasPrice?: undefined | undefined;
1539
+ maxFeePerBlobGas?: undefined | undefined;
1540
+ maxFeePerGas?: bigint | undefined;
1541
+ maxPriorityFeePerGas?: bigint | undefined;
1542
+ sidecars?: undefined | undefined;
1543
+ } & (viem.OneOf<{
1544
+ maxFeePerGas: viem.FeeValuesEIP1559["maxFeePerGas"];
1545
+ } | {
1546
+ maxPriorityFeePerGas: viem.FeeValuesEIP1559["maxPriorityFeePerGas"];
1547
+ }, viem.FeeValuesEIP1559> & {
1548
+ accessList?: viem.TransactionSerializableEIP2930["accessList"] | undefined;
1549
+ }) ? "eip1559" : never) | (request extends {
1550
+ accessList?: viem.AccessList | undefined;
1551
+ authorizationList?: undefined | undefined;
1552
+ blobs?: undefined | undefined;
1553
+ blobVersionedHashes?: undefined | undefined;
1554
+ gasPrice?: bigint | undefined;
1555
+ sidecars?: undefined | undefined;
1556
+ maxFeePerBlobGas?: undefined | undefined;
1557
+ maxFeePerGas?: undefined | undefined;
1558
+ maxPriorityFeePerGas?: undefined | undefined;
1559
+ } & {
1560
+ accessList: viem.TransactionSerializableEIP2930["accessList"];
1561
+ } ? "eip2930" : never) | (request extends ({
1562
+ accessList?: viem.AccessList | undefined;
1563
+ authorizationList?: undefined | undefined;
1564
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
1565
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1566
+ maxFeePerBlobGas?: bigint | undefined;
1567
+ maxFeePerGas?: bigint | undefined;
1568
+ maxPriorityFeePerGas?: bigint | undefined;
1569
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
1570
+ } | {
1571
+ accessList?: viem.AccessList | undefined;
1572
+ authorizationList?: undefined | undefined;
1573
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
1574
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1575
+ maxFeePerBlobGas?: bigint | undefined;
1576
+ maxFeePerGas?: bigint | undefined;
1577
+ maxPriorityFeePerGas?: bigint | undefined;
1578
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
1579
+ }) & (viem.ExactPartial<viem.FeeValuesEIP4844> & viem.OneOf<{
1580
+ blobs: viem.TransactionSerializableEIP4844["blobs"];
1581
+ } | {
1582
+ blobVersionedHashes: viem.TransactionSerializableEIP4844["blobVersionedHashes"];
1583
+ } | {
1584
+ sidecars: viem.TransactionSerializableEIP4844["sidecars"];
1585
+ }, viem.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
1586
+ accessList?: viem.AccessList | undefined;
1587
+ authorizationList?: viem.SignedAuthorizationList | undefined;
1588
+ blobs?: undefined | undefined;
1589
+ blobVersionedHashes?: undefined | undefined;
1590
+ gasPrice?: undefined | undefined;
1591
+ maxFeePerBlobGas?: undefined | undefined;
1592
+ maxFeePerGas?: bigint | undefined;
1593
+ maxPriorityFeePerGas?: bigint | undefined;
1594
+ sidecars?: undefined | undefined;
1595
+ } | {
1596
+ accessList?: viem.AccessList | undefined;
1597
+ authorizationList?: viem.SignedAuthorizationList | undefined;
1598
+ blobs?: undefined | undefined;
1599
+ blobVersionedHashes?: undefined | undefined;
1600
+ gasPrice?: undefined | undefined;
1601
+ maxFeePerBlobGas?: undefined | undefined;
1602
+ maxFeePerGas?: bigint | undefined;
1603
+ maxPriorityFeePerGas?: bigint | undefined;
1604
+ sidecars?: undefined | undefined;
1605
+ }) & {
1606
+ authorizationList: viem.TransactionSerializableEIP7702["authorizationList"];
1607
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) extends infer T_6 ? T_6 extends (request["type"] extends string | undefined ? request["type"] : viem.GetTransactionType<request, (request extends {
1608
+ accessList?: undefined | undefined;
1609
+ authorizationList?: undefined | undefined;
1610
+ blobs?: undefined | undefined;
1611
+ blobVersionedHashes?: undefined | undefined;
1612
+ gasPrice?: bigint | undefined;
1613
+ sidecars?: undefined | undefined;
1614
+ } & viem.FeeValuesLegacy ? "legacy" : never) | (request extends {
1615
+ accessList?: viem.AccessList | undefined;
1616
+ authorizationList?: undefined | undefined;
1617
+ blobs?: undefined | undefined;
1618
+ blobVersionedHashes?: undefined | undefined;
1619
+ gasPrice?: undefined | undefined;
1620
+ maxFeePerBlobGas?: undefined | undefined;
1621
+ maxFeePerGas?: bigint | undefined;
1622
+ maxPriorityFeePerGas?: bigint | undefined;
1623
+ sidecars?: undefined | undefined;
1624
+ } & (viem.OneOf<{
1625
+ maxFeePerGas: viem.FeeValuesEIP1559["maxFeePerGas"];
1626
+ } | {
1627
+ maxPriorityFeePerGas: viem.FeeValuesEIP1559["maxPriorityFeePerGas"];
1628
+ }, viem.FeeValuesEIP1559> & {
1629
+ accessList?: viem.TransactionSerializableEIP2930["accessList"] | undefined;
1630
+ }) ? "eip1559" : never) | (request extends {
1631
+ accessList?: viem.AccessList | undefined;
1632
+ authorizationList?: undefined | undefined;
1633
+ blobs?: undefined | undefined;
1634
+ blobVersionedHashes?: undefined | undefined;
1635
+ gasPrice?: bigint | undefined;
1636
+ sidecars?: undefined | undefined;
1637
+ maxFeePerBlobGas?: undefined | undefined;
1638
+ maxFeePerGas?: undefined | undefined;
1639
+ maxPriorityFeePerGas?: undefined | undefined;
1640
+ } & {
1641
+ accessList: viem.TransactionSerializableEIP2930["accessList"];
1642
+ } ? "eip2930" : never) | (request extends ({
1643
+ accessList?: viem.AccessList | undefined;
1644
+ authorizationList?: undefined | undefined;
1645
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
1646
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1647
+ maxFeePerBlobGas?: bigint | undefined;
1648
+ maxFeePerGas?: bigint | undefined;
1649
+ maxPriorityFeePerGas?: bigint | undefined;
1650
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
1651
+ } | {
1652
+ accessList?: viem.AccessList | undefined;
1653
+ authorizationList?: undefined | undefined;
1654
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
1655
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1656
+ maxFeePerBlobGas?: bigint | undefined;
1657
+ maxFeePerGas?: bigint | undefined;
1658
+ maxPriorityFeePerGas?: bigint | undefined;
1659
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
1660
+ }) & (viem.ExactPartial<viem.FeeValuesEIP4844> & viem.OneOf<{
1661
+ blobs: viem.TransactionSerializableEIP4844["blobs"];
1662
+ } | {
1663
+ blobVersionedHashes: viem.TransactionSerializableEIP4844["blobVersionedHashes"];
1664
+ } | {
1665
+ sidecars: viem.TransactionSerializableEIP4844["sidecars"];
1666
+ }, viem.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
1667
+ accessList?: viem.AccessList | undefined;
1668
+ authorizationList?: viem.SignedAuthorizationList | undefined;
1669
+ blobs?: undefined | undefined;
1670
+ blobVersionedHashes?: undefined | undefined;
1671
+ gasPrice?: undefined | undefined;
1672
+ maxFeePerBlobGas?: undefined | undefined;
1673
+ maxFeePerGas?: bigint | undefined;
1674
+ maxPriorityFeePerGas?: bigint | undefined;
1675
+ sidecars?: undefined | undefined;
1676
+ } | {
1677
+ accessList?: viem.AccessList | undefined;
1678
+ authorizationList?: viem.SignedAuthorizationList | undefined;
1679
+ blobs?: undefined | undefined;
1680
+ blobVersionedHashes?: undefined | undefined;
1681
+ gasPrice?: undefined | undefined;
1682
+ maxFeePerBlobGas?: undefined | undefined;
1683
+ maxFeePerGas?: bigint | undefined;
1684
+ maxPriorityFeePerGas?: bigint | undefined;
1685
+ sidecars?: undefined | undefined;
1686
+ }) & {
1687
+ authorizationList: viem.TransactionSerializableEIP7702["authorizationList"];
1688
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : viem.GetTransactionType<request, (request extends {
1689
+ accessList?: undefined | undefined;
1690
+ authorizationList?: undefined | undefined;
1691
+ blobs?: undefined | undefined;
1692
+ blobVersionedHashes?: undefined | undefined;
1693
+ gasPrice?: bigint | undefined;
1694
+ sidecars?: undefined | undefined;
1695
+ } & viem.FeeValuesLegacy ? "legacy" : never) | (request extends {
1696
+ accessList?: viem.AccessList | undefined;
1697
+ authorizationList?: undefined | undefined;
1698
+ blobs?: undefined | undefined;
1699
+ blobVersionedHashes?: undefined | undefined;
1700
+ gasPrice?: undefined | undefined;
1701
+ maxFeePerBlobGas?: undefined | undefined;
1702
+ maxFeePerGas?: bigint | undefined;
1703
+ maxPriorityFeePerGas?: bigint | undefined;
1704
+ sidecars?: undefined | undefined;
1705
+ } & (viem.OneOf<{
1706
+ maxFeePerGas: viem.FeeValuesEIP1559["maxFeePerGas"];
1707
+ } | {
1708
+ maxPriorityFeePerGas: viem.FeeValuesEIP1559["maxPriorityFeePerGas"];
1709
+ }, viem.FeeValuesEIP1559> & {
1710
+ accessList?: viem.TransactionSerializableEIP2930["accessList"] | undefined;
1711
+ }) ? "eip1559" : never) | (request extends {
1712
+ accessList?: viem.AccessList | undefined;
1713
+ authorizationList?: undefined | undefined;
1714
+ blobs?: undefined | undefined;
1715
+ blobVersionedHashes?: undefined | undefined;
1716
+ gasPrice?: bigint | undefined;
1717
+ sidecars?: undefined | undefined;
1718
+ maxFeePerBlobGas?: undefined | undefined;
1719
+ maxFeePerGas?: undefined | undefined;
1720
+ maxPriorityFeePerGas?: undefined | undefined;
1721
+ } & {
1722
+ accessList: viem.TransactionSerializableEIP2930["accessList"];
1723
+ } ? "eip2930" : never) | (request extends ({
1724
+ accessList?: viem.AccessList | undefined;
1725
+ authorizationList?: undefined | undefined;
1726
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
1727
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1728
+ maxFeePerBlobGas?: bigint | undefined;
1729
+ maxFeePerGas?: bigint | undefined;
1730
+ maxPriorityFeePerGas?: bigint | undefined;
1731
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
1732
+ } | {
1733
+ accessList?: viem.AccessList | undefined;
1734
+ authorizationList?: undefined | undefined;
1735
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
1736
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1737
+ maxFeePerBlobGas?: bigint | undefined;
1738
+ maxFeePerGas?: bigint | undefined;
1739
+ maxPriorityFeePerGas?: bigint | undefined;
1740
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
1741
+ }) & (viem.ExactPartial<viem.FeeValuesEIP4844> & viem.OneOf<{
1742
+ blobs: viem.TransactionSerializableEIP4844["blobs"];
1743
+ } | {
1744
+ blobVersionedHashes: viem.TransactionSerializableEIP4844["blobVersionedHashes"];
1745
+ } | {
1746
+ sidecars: viem.TransactionSerializableEIP4844["sidecars"];
1747
+ }, viem.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
1748
+ accessList?: viem.AccessList | undefined;
1749
+ authorizationList?: viem.SignedAuthorizationList | undefined;
1750
+ blobs?: undefined | undefined;
1751
+ blobVersionedHashes?: undefined | undefined;
1752
+ gasPrice?: undefined | undefined;
1753
+ maxFeePerBlobGas?: undefined | undefined;
1754
+ maxFeePerGas?: bigint | undefined;
1755
+ maxPriorityFeePerGas?: bigint | undefined;
1756
+ sidecars?: undefined | undefined;
1757
+ } | {
1758
+ accessList?: viem.AccessList | undefined;
1759
+ authorizationList?: viem.SignedAuthorizationList | undefined;
1760
+ blobs?: undefined | undefined;
1761
+ blobVersionedHashes?: undefined | undefined;
1762
+ gasPrice?: undefined | undefined;
1763
+ maxFeePerBlobGas?: undefined | undefined;
1764
+ maxFeePerGas?: bigint | undefined;
1765
+ maxPriorityFeePerGas?: bigint | undefined;
1766
+ sidecars?: undefined | undefined;
1767
+ }) & {
1768
+ authorizationList: viem.TransactionSerializableEIP7702["authorizationList"];
1769
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_6 extends "eip4844" ? viem.TransactionRequestEIP4844 : never : never : never) | ((request["type"] extends string | undefined ? request["type"] : viem.GetTransactionType<request, (request extends {
1770
+ accessList?: undefined | undefined;
1771
+ authorizationList?: undefined | undefined;
1772
+ blobs?: undefined | undefined;
1773
+ blobVersionedHashes?: undefined | undefined;
1774
+ gasPrice?: bigint | undefined;
1775
+ sidecars?: undefined | undefined;
1776
+ } & viem.FeeValuesLegacy ? "legacy" : never) | (request extends {
1777
+ accessList?: viem.AccessList | undefined;
1778
+ authorizationList?: undefined | undefined;
1779
+ blobs?: undefined | undefined;
1780
+ blobVersionedHashes?: undefined | undefined;
1781
+ gasPrice?: undefined | undefined;
1782
+ maxFeePerBlobGas?: undefined | undefined;
1783
+ maxFeePerGas?: bigint | undefined;
1784
+ maxPriorityFeePerGas?: bigint | undefined;
1785
+ sidecars?: undefined | undefined;
1786
+ } & (viem.OneOf<{
1787
+ maxFeePerGas: viem.FeeValuesEIP1559["maxFeePerGas"];
1788
+ } | {
1789
+ maxPriorityFeePerGas: viem.FeeValuesEIP1559["maxPriorityFeePerGas"];
1790
+ }, viem.FeeValuesEIP1559> & {
1791
+ accessList?: viem.TransactionSerializableEIP2930["accessList"] | undefined;
1792
+ }) ? "eip1559" : never) | (request extends {
1793
+ accessList?: viem.AccessList | undefined;
1794
+ authorizationList?: undefined | undefined;
1795
+ blobs?: undefined | undefined;
1796
+ blobVersionedHashes?: undefined | undefined;
1797
+ gasPrice?: bigint | undefined;
1798
+ sidecars?: undefined | undefined;
1799
+ maxFeePerBlobGas?: undefined | undefined;
1800
+ maxFeePerGas?: undefined | undefined;
1801
+ maxPriorityFeePerGas?: undefined | undefined;
1802
+ } & {
1803
+ accessList: viem.TransactionSerializableEIP2930["accessList"];
1804
+ } ? "eip2930" : never) | (request extends ({
1805
+ accessList?: viem.AccessList | undefined;
1806
+ authorizationList?: undefined | undefined;
1807
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
1808
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1809
+ maxFeePerBlobGas?: bigint | undefined;
1810
+ maxFeePerGas?: bigint | undefined;
1811
+ maxPriorityFeePerGas?: bigint | undefined;
1812
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
1813
+ } | {
1814
+ accessList?: viem.AccessList | undefined;
1815
+ authorizationList?: undefined | undefined;
1816
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
1817
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1818
+ maxFeePerBlobGas?: bigint | undefined;
1819
+ maxFeePerGas?: bigint | undefined;
1820
+ maxPriorityFeePerGas?: bigint | undefined;
1821
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
1822
+ }) & (viem.ExactPartial<viem.FeeValuesEIP4844> & viem.OneOf<{
1823
+ blobs: viem.TransactionSerializableEIP4844["blobs"];
1824
+ } | {
1825
+ blobVersionedHashes: viem.TransactionSerializableEIP4844["blobVersionedHashes"];
1826
+ } | {
1827
+ sidecars: viem.TransactionSerializableEIP4844["sidecars"];
1828
+ }, viem.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
1829
+ accessList?: viem.AccessList | undefined;
1830
+ authorizationList?: viem.SignedAuthorizationList | undefined;
1831
+ blobs?: undefined | undefined;
1832
+ blobVersionedHashes?: undefined | undefined;
1833
+ gasPrice?: undefined | undefined;
1834
+ maxFeePerBlobGas?: undefined | undefined;
1835
+ maxFeePerGas?: bigint | undefined;
1836
+ maxPriorityFeePerGas?: bigint | undefined;
1837
+ sidecars?: undefined | undefined;
1838
+ } | {
1839
+ accessList?: viem.AccessList | undefined;
1840
+ authorizationList?: viem.SignedAuthorizationList | undefined;
1841
+ blobs?: undefined | undefined;
1842
+ blobVersionedHashes?: undefined | undefined;
1843
+ gasPrice?: undefined | undefined;
1844
+ maxFeePerBlobGas?: undefined | undefined;
1845
+ maxFeePerGas?: bigint | undefined;
1846
+ maxPriorityFeePerGas?: bigint | undefined;
1847
+ sidecars?: undefined | undefined;
1848
+ }) & {
1849
+ authorizationList: viem.TransactionSerializableEIP7702["authorizationList"];
1850
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : viem.GetTransactionType<request, (request extends {
1851
+ accessList?: undefined | undefined;
1852
+ authorizationList?: undefined | undefined;
1853
+ blobs?: undefined | undefined;
1854
+ blobVersionedHashes?: undefined | undefined;
1855
+ gasPrice?: bigint | undefined;
1856
+ sidecars?: undefined | undefined;
1857
+ } & viem.FeeValuesLegacy ? "legacy" : never) | (request extends {
1858
+ accessList?: viem.AccessList | undefined;
1859
+ authorizationList?: undefined | undefined;
1860
+ blobs?: undefined | undefined;
1861
+ blobVersionedHashes?: undefined | undefined;
1862
+ gasPrice?: undefined | undefined;
1863
+ maxFeePerBlobGas?: undefined | undefined;
1864
+ maxFeePerGas?: bigint | undefined;
1865
+ maxPriorityFeePerGas?: bigint | undefined;
1866
+ sidecars?: undefined | undefined;
1867
+ } & (viem.OneOf<{
1868
+ maxFeePerGas: viem.FeeValuesEIP1559["maxFeePerGas"];
1869
+ } | {
1870
+ maxPriorityFeePerGas: viem.FeeValuesEIP1559["maxPriorityFeePerGas"];
1871
+ }, viem.FeeValuesEIP1559> & {
1872
+ accessList?: viem.TransactionSerializableEIP2930["accessList"] | undefined;
1873
+ }) ? "eip1559" : never) | (request extends {
1874
+ accessList?: viem.AccessList | undefined;
1875
+ authorizationList?: undefined | undefined;
1876
+ blobs?: undefined | undefined;
1877
+ blobVersionedHashes?: undefined | undefined;
1878
+ gasPrice?: bigint | undefined;
1879
+ sidecars?: undefined | undefined;
1880
+ maxFeePerBlobGas?: undefined | undefined;
1881
+ maxFeePerGas?: undefined | undefined;
1882
+ maxPriorityFeePerGas?: undefined | undefined;
1883
+ } & {
1884
+ accessList: viem.TransactionSerializableEIP2930["accessList"];
1885
+ } ? "eip2930" : never) | (request extends ({
1886
+ accessList?: viem.AccessList | undefined;
1887
+ authorizationList?: undefined | undefined;
1888
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
1889
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1890
+ maxFeePerBlobGas?: bigint | undefined;
1891
+ maxFeePerGas?: bigint | undefined;
1892
+ maxPriorityFeePerGas?: bigint | undefined;
1893
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
1894
+ } | {
1895
+ accessList?: viem.AccessList | undefined;
1896
+ authorizationList?: undefined | undefined;
1897
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
1898
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1899
+ maxFeePerBlobGas?: bigint | undefined;
1900
+ maxFeePerGas?: bigint | undefined;
1901
+ maxPriorityFeePerGas?: bigint | undefined;
1902
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
1903
+ }) & (viem.ExactPartial<viem.FeeValuesEIP4844> & viem.OneOf<{
1904
+ blobs: viem.TransactionSerializableEIP4844["blobs"];
1905
+ } | {
1906
+ blobVersionedHashes: viem.TransactionSerializableEIP4844["blobVersionedHashes"];
1907
+ } | {
1908
+ sidecars: viem.TransactionSerializableEIP4844["sidecars"];
1909
+ }, viem.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
1910
+ accessList?: viem.AccessList | undefined;
1911
+ authorizationList?: viem.SignedAuthorizationList | undefined;
1912
+ blobs?: undefined | undefined;
1913
+ blobVersionedHashes?: undefined | undefined;
1914
+ gasPrice?: undefined | undefined;
1915
+ maxFeePerBlobGas?: undefined | undefined;
1916
+ maxFeePerGas?: bigint | undefined;
1917
+ maxPriorityFeePerGas?: bigint | undefined;
1918
+ sidecars?: undefined | undefined;
1919
+ } | {
1920
+ accessList?: viem.AccessList | undefined;
1921
+ authorizationList?: viem.SignedAuthorizationList | undefined;
1922
+ blobs?: undefined | undefined;
1923
+ blobVersionedHashes?: undefined | undefined;
1924
+ gasPrice?: undefined | undefined;
1925
+ maxFeePerBlobGas?: undefined | undefined;
1926
+ maxFeePerGas?: bigint | undefined;
1927
+ maxPriorityFeePerGas?: bigint | undefined;
1928
+ sidecars?: undefined | undefined;
1929
+ }) & {
1930
+ authorizationList: viem.TransactionSerializableEIP7702["authorizationList"];
1931
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) extends infer T_7 ? T_7 extends (request["type"] extends string | undefined ? request["type"] : viem.GetTransactionType<request, (request extends {
1932
+ accessList?: undefined | undefined;
1933
+ authorizationList?: undefined | undefined;
1934
+ blobs?: undefined | undefined;
1935
+ blobVersionedHashes?: undefined | undefined;
1936
+ gasPrice?: bigint | undefined;
1937
+ sidecars?: undefined | undefined;
1938
+ } & viem.FeeValuesLegacy ? "legacy" : never) | (request extends {
1939
+ accessList?: viem.AccessList | undefined;
1940
+ authorizationList?: undefined | undefined;
1941
+ blobs?: undefined | undefined;
1942
+ blobVersionedHashes?: undefined | undefined;
1943
+ gasPrice?: undefined | undefined;
1944
+ maxFeePerBlobGas?: undefined | undefined;
1945
+ maxFeePerGas?: bigint | undefined;
1946
+ maxPriorityFeePerGas?: bigint | undefined;
1947
+ sidecars?: undefined | undefined;
1948
+ } & (viem.OneOf<{
1949
+ maxFeePerGas: viem.FeeValuesEIP1559["maxFeePerGas"];
1950
+ } | {
1951
+ maxPriorityFeePerGas: viem.FeeValuesEIP1559["maxPriorityFeePerGas"];
1952
+ }, viem.FeeValuesEIP1559> & {
1953
+ accessList?: viem.TransactionSerializableEIP2930["accessList"] | undefined;
1954
+ }) ? "eip1559" : never) | (request extends {
1955
+ accessList?: viem.AccessList | undefined;
1956
+ authorizationList?: undefined | undefined;
1957
+ blobs?: undefined | undefined;
1958
+ blobVersionedHashes?: undefined | undefined;
1959
+ gasPrice?: bigint | undefined;
1960
+ sidecars?: undefined | undefined;
1961
+ maxFeePerBlobGas?: undefined | undefined;
1962
+ maxFeePerGas?: undefined | undefined;
1963
+ maxPriorityFeePerGas?: undefined | undefined;
1964
+ } & {
1965
+ accessList: viem.TransactionSerializableEIP2930["accessList"];
1966
+ } ? "eip2930" : never) | (request extends ({
1967
+ accessList?: viem.AccessList | undefined;
1968
+ authorizationList?: undefined | undefined;
1969
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
1970
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1971
+ maxFeePerBlobGas?: bigint | undefined;
1972
+ maxFeePerGas?: bigint | undefined;
1973
+ maxPriorityFeePerGas?: bigint | undefined;
1974
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
1975
+ } | {
1976
+ accessList?: viem.AccessList | undefined;
1977
+ authorizationList?: undefined | undefined;
1978
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
1979
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1980
+ maxFeePerBlobGas?: bigint | undefined;
1981
+ maxFeePerGas?: bigint | undefined;
1982
+ maxPriorityFeePerGas?: bigint | undefined;
1983
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
1984
+ }) & (viem.ExactPartial<viem.FeeValuesEIP4844> & viem.OneOf<{
1985
+ blobs: viem.TransactionSerializableEIP4844["blobs"];
1986
+ } | {
1987
+ blobVersionedHashes: viem.TransactionSerializableEIP4844["blobVersionedHashes"];
1988
+ } | {
1989
+ sidecars: viem.TransactionSerializableEIP4844["sidecars"];
1990
+ }, viem.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
1991
+ accessList?: viem.AccessList | undefined;
1992
+ authorizationList?: viem.SignedAuthorizationList | undefined;
1993
+ blobs?: undefined | undefined;
1994
+ blobVersionedHashes?: undefined | undefined;
1995
+ gasPrice?: undefined | undefined;
1996
+ maxFeePerBlobGas?: undefined | undefined;
1997
+ maxFeePerGas?: bigint | undefined;
1998
+ maxPriorityFeePerGas?: bigint | undefined;
1999
+ sidecars?: undefined | undefined;
2000
+ } | {
2001
+ accessList?: viem.AccessList | undefined;
2002
+ authorizationList?: viem.SignedAuthorizationList | undefined;
2003
+ blobs?: undefined | undefined;
2004
+ blobVersionedHashes?: undefined | undefined;
2005
+ gasPrice?: undefined | undefined;
2006
+ maxFeePerBlobGas?: undefined | undefined;
2007
+ maxFeePerGas?: bigint | undefined;
2008
+ maxPriorityFeePerGas?: bigint | undefined;
2009
+ sidecars?: undefined | undefined;
2010
+ }) & {
2011
+ authorizationList: viem.TransactionSerializableEIP7702["authorizationList"];
2012
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : viem.GetTransactionType<request, (request extends {
2013
+ accessList?: undefined | undefined;
2014
+ authorizationList?: undefined | undefined;
2015
+ blobs?: undefined | undefined;
2016
+ blobVersionedHashes?: undefined | undefined;
2017
+ gasPrice?: bigint | undefined;
2018
+ sidecars?: undefined | undefined;
2019
+ } & viem.FeeValuesLegacy ? "legacy" : never) | (request extends {
2020
+ accessList?: viem.AccessList | undefined;
2021
+ authorizationList?: undefined | undefined;
2022
+ blobs?: undefined | undefined;
2023
+ blobVersionedHashes?: undefined | undefined;
2024
+ gasPrice?: undefined | undefined;
2025
+ maxFeePerBlobGas?: undefined | undefined;
2026
+ maxFeePerGas?: bigint | undefined;
2027
+ maxPriorityFeePerGas?: bigint | undefined;
2028
+ sidecars?: undefined | undefined;
2029
+ } & (viem.OneOf<{
2030
+ maxFeePerGas: viem.FeeValuesEIP1559["maxFeePerGas"];
2031
+ } | {
2032
+ maxPriorityFeePerGas: viem.FeeValuesEIP1559["maxPriorityFeePerGas"];
2033
+ }, viem.FeeValuesEIP1559> & {
2034
+ accessList?: viem.TransactionSerializableEIP2930["accessList"] | undefined;
2035
+ }) ? "eip1559" : never) | (request extends {
2036
+ accessList?: viem.AccessList | undefined;
2037
+ authorizationList?: undefined | undefined;
2038
+ blobs?: undefined | undefined;
2039
+ blobVersionedHashes?: undefined | undefined;
2040
+ gasPrice?: bigint | undefined;
2041
+ sidecars?: undefined | undefined;
2042
+ maxFeePerBlobGas?: undefined | undefined;
2043
+ maxFeePerGas?: undefined | undefined;
2044
+ maxPriorityFeePerGas?: undefined | undefined;
2045
+ } & {
2046
+ accessList: viem.TransactionSerializableEIP2930["accessList"];
2047
+ } ? "eip2930" : never) | (request extends ({
2048
+ accessList?: viem.AccessList | undefined;
2049
+ authorizationList?: undefined | undefined;
2050
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
2051
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2052
+ maxFeePerBlobGas?: bigint | undefined;
2053
+ maxFeePerGas?: bigint | undefined;
2054
+ maxPriorityFeePerGas?: bigint | undefined;
2055
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
2056
+ } | {
2057
+ accessList?: viem.AccessList | undefined;
2058
+ authorizationList?: undefined | undefined;
2059
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
2060
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2061
+ maxFeePerBlobGas?: bigint | undefined;
2062
+ maxFeePerGas?: bigint | undefined;
2063
+ maxPriorityFeePerGas?: bigint | undefined;
2064
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
2065
+ }) & (viem.ExactPartial<viem.FeeValuesEIP4844> & viem.OneOf<{
2066
+ blobs: viem.TransactionSerializableEIP4844["blobs"];
2067
+ } | {
2068
+ blobVersionedHashes: viem.TransactionSerializableEIP4844["blobVersionedHashes"];
2069
+ } | {
2070
+ sidecars: viem.TransactionSerializableEIP4844["sidecars"];
2071
+ }, viem.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
2072
+ accessList?: viem.AccessList | undefined;
2073
+ authorizationList?: viem.SignedAuthorizationList | undefined;
2074
+ blobs?: undefined | undefined;
2075
+ blobVersionedHashes?: undefined | undefined;
2076
+ gasPrice?: undefined | undefined;
2077
+ maxFeePerBlobGas?: undefined | undefined;
2078
+ maxFeePerGas?: bigint | undefined;
2079
+ maxPriorityFeePerGas?: bigint | undefined;
2080
+ sidecars?: undefined | undefined;
2081
+ } | {
2082
+ accessList?: viem.AccessList | undefined;
2083
+ authorizationList?: viem.SignedAuthorizationList | undefined;
2084
+ blobs?: undefined | undefined;
2085
+ blobVersionedHashes?: undefined | undefined;
2086
+ gasPrice?: undefined | undefined;
2087
+ maxFeePerBlobGas?: undefined | undefined;
2088
+ maxFeePerGas?: bigint | undefined;
2089
+ maxPriorityFeePerGas?: bigint | undefined;
2090
+ sidecars?: undefined | undefined;
2091
+ }) & {
2092
+ authorizationList: viem.TransactionSerializableEIP7702["authorizationList"];
2093
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_7 extends "eip7702" ? viem.TransactionRequestEIP7702 : never : never : never)> extends true ? unknown : viem.ExactPartial<((request["type"] extends string | undefined ? request["type"] : viem.GetTransactionType<request, (request extends {
2094
+ accessList?: undefined | undefined;
2095
+ authorizationList?: undefined | undefined;
2096
+ blobs?: undefined | undefined;
2097
+ blobVersionedHashes?: undefined | undefined;
2098
+ gasPrice?: bigint | undefined;
2099
+ sidecars?: undefined | undefined;
2100
+ } & viem.FeeValuesLegacy ? "legacy" : never) | (request extends {
2101
+ accessList?: viem.AccessList | undefined;
2102
+ authorizationList?: undefined | undefined;
2103
+ blobs?: undefined | undefined;
2104
+ blobVersionedHashes?: undefined | undefined;
2105
+ gasPrice?: undefined | undefined;
2106
+ maxFeePerBlobGas?: undefined | undefined;
2107
+ maxFeePerGas?: bigint | undefined;
2108
+ maxPriorityFeePerGas?: bigint | undefined;
2109
+ sidecars?: undefined | undefined;
2110
+ } & (viem.OneOf<{
2111
+ maxFeePerGas: viem.FeeValuesEIP1559["maxFeePerGas"];
2112
+ } | {
2113
+ maxPriorityFeePerGas: viem.FeeValuesEIP1559["maxPriorityFeePerGas"];
2114
+ }, viem.FeeValuesEIP1559> & {
2115
+ accessList?: viem.TransactionSerializableEIP2930["accessList"] | undefined;
2116
+ }) ? "eip1559" : never) | (request extends {
2117
+ accessList?: viem.AccessList | undefined;
2118
+ authorizationList?: undefined | undefined;
2119
+ blobs?: undefined | undefined;
2120
+ blobVersionedHashes?: undefined | undefined;
2121
+ gasPrice?: bigint | undefined;
2122
+ sidecars?: undefined | undefined;
2123
+ maxFeePerBlobGas?: undefined | undefined;
2124
+ maxFeePerGas?: undefined | undefined;
2125
+ maxPriorityFeePerGas?: undefined | undefined;
2126
+ } & {
2127
+ accessList: viem.TransactionSerializableEIP2930["accessList"];
2128
+ } ? "eip2930" : never) | (request extends ({
2129
+ accessList?: viem.AccessList | undefined;
2130
+ authorizationList?: undefined | undefined;
2131
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
2132
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2133
+ maxFeePerBlobGas?: bigint | undefined;
2134
+ maxFeePerGas?: bigint | undefined;
2135
+ maxPriorityFeePerGas?: bigint | undefined;
2136
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
2137
+ } | {
2138
+ accessList?: viem.AccessList | undefined;
2139
+ authorizationList?: undefined | undefined;
2140
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
2141
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2142
+ maxFeePerBlobGas?: bigint | undefined;
2143
+ maxFeePerGas?: bigint | undefined;
2144
+ maxPriorityFeePerGas?: bigint | undefined;
2145
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
2146
+ }) & (viem.ExactPartial<viem.FeeValuesEIP4844> & viem.OneOf<{
2147
+ blobs: viem.TransactionSerializableEIP4844["blobs"];
2148
+ } | {
2149
+ blobVersionedHashes: viem.TransactionSerializableEIP4844["blobVersionedHashes"];
2150
+ } | {
2151
+ sidecars: viem.TransactionSerializableEIP4844["sidecars"];
2152
+ }, viem.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
2153
+ accessList?: viem.AccessList | undefined;
2154
+ authorizationList?: viem.SignedAuthorizationList | undefined;
2155
+ blobs?: undefined | undefined;
2156
+ blobVersionedHashes?: undefined | undefined;
2157
+ gasPrice?: undefined | undefined;
2158
+ maxFeePerBlobGas?: undefined | undefined;
2159
+ maxFeePerGas?: bigint | undefined;
2160
+ maxPriorityFeePerGas?: bigint | undefined;
2161
+ sidecars?: undefined | undefined;
2162
+ } | {
2163
+ accessList?: viem.AccessList | undefined;
2164
+ authorizationList?: viem.SignedAuthorizationList | undefined;
2165
+ blobs?: undefined | undefined;
2166
+ blobVersionedHashes?: undefined | undefined;
2167
+ gasPrice?: undefined | undefined;
2168
+ maxFeePerBlobGas?: undefined | undefined;
2169
+ maxFeePerGas?: bigint | undefined;
2170
+ maxPriorityFeePerGas?: bigint | undefined;
2171
+ sidecars?: undefined | undefined;
2172
+ }) & {
2173
+ authorizationList: viem.TransactionSerializableEIP7702["authorizationList"];
2174
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : viem.GetTransactionType<request, (request extends {
2175
+ accessList?: undefined | undefined;
2176
+ authorizationList?: undefined | undefined;
2177
+ blobs?: undefined | undefined;
2178
+ blobVersionedHashes?: undefined | undefined;
2179
+ gasPrice?: bigint | undefined;
2180
+ sidecars?: undefined | undefined;
2181
+ } & viem.FeeValuesLegacy ? "legacy" : never) | (request extends {
2182
+ accessList?: viem.AccessList | undefined;
2183
+ authorizationList?: undefined | undefined;
2184
+ blobs?: undefined | undefined;
2185
+ blobVersionedHashes?: undefined | undefined;
2186
+ gasPrice?: undefined | undefined;
2187
+ maxFeePerBlobGas?: undefined | undefined;
2188
+ maxFeePerGas?: bigint | undefined;
2189
+ maxPriorityFeePerGas?: bigint | undefined;
2190
+ sidecars?: undefined | undefined;
2191
+ } & (viem.OneOf<{
2192
+ maxFeePerGas: viem.FeeValuesEIP1559["maxFeePerGas"];
2193
+ } | {
2194
+ maxPriorityFeePerGas: viem.FeeValuesEIP1559["maxPriorityFeePerGas"];
2195
+ }, viem.FeeValuesEIP1559> & {
2196
+ accessList?: viem.TransactionSerializableEIP2930["accessList"] | undefined;
2197
+ }) ? "eip1559" : never) | (request extends {
2198
+ accessList?: viem.AccessList | undefined;
2199
+ authorizationList?: undefined | undefined;
2200
+ blobs?: undefined | undefined;
2201
+ blobVersionedHashes?: undefined | undefined;
2202
+ gasPrice?: bigint | undefined;
2203
+ sidecars?: undefined | undefined;
2204
+ maxFeePerBlobGas?: undefined | undefined;
2205
+ maxFeePerGas?: undefined | undefined;
2206
+ maxPriorityFeePerGas?: undefined | undefined;
2207
+ } & {
2208
+ accessList: viem.TransactionSerializableEIP2930["accessList"];
2209
+ } ? "eip2930" : never) | (request extends ({
2210
+ accessList?: viem.AccessList | undefined;
2211
+ authorizationList?: undefined | undefined;
2212
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
2213
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2214
+ maxFeePerBlobGas?: bigint | undefined;
2215
+ maxFeePerGas?: bigint | undefined;
2216
+ maxPriorityFeePerGas?: bigint | undefined;
2217
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
2218
+ } | {
2219
+ accessList?: viem.AccessList | undefined;
2220
+ authorizationList?: undefined | undefined;
2221
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
2222
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2223
+ maxFeePerBlobGas?: bigint | undefined;
2224
+ maxFeePerGas?: bigint | undefined;
2225
+ maxPriorityFeePerGas?: bigint | undefined;
2226
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
2227
+ }) & (viem.ExactPartial<viem.FeeValuesEIP4844> & viem.OneOf<{
2228
+ blobs: viem.TransactionSerializableEIP4844["blobs"];
2229
+ } | {
2230
+ blobVersionedHashes: viem.TransactionSerializableEIP4844["blobVersionedHashes"];
2231
+ } | {
2232
+ sidecars: viem.TransactionSerializableEIP4844["sidecars"];
2233
+ }, viem.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
2234
+ accessList?: viem.AccessList | undefined;
2235
+ authorizationList?: viem.SignedAuthorizationList | undefined;
2236
+ blobs?: undefined | undefined;
2237
+ blobVersionedHashes?: undefined | undefined;
2238
+ gasPrice?: undefined | undefined;
2239
+ maxFeePerBlobGas?: undefined | undefined;
2240
+ maxFeePerGas?: bigint | undefined;
2241
+ maxPriorityFeePerGas?: bigint | undefined;
2242
+ sidecars?: undefined | undefined;
2243
+ } | {
2244
+ accessList?: viem.AccessList | undefined;
2245
+ authorizationList?: viem.SignedAuthorizationList | undefined;
2246
+ blobs?: undefined | undefined;
2247
+ blobVersionedHashes?: undefined | undefined;
2248
+ gasPrice?: undefined | undefined;
2249
+ maxFeePerBlobGas?: undefined | undefined;
2250
+ maxFeePerGas?: bigint | undefined;
2251
+ maxPriorityFeePerGas?: bigint | undefined;
2252
+ sidecars?: undefined | undefined;
2253
+ }) & {
2254
+ authorizationList: viem.TransactionSerializableEIP7702["authorizationList"];
2255
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) extends infer T_8 ? T_8 extends (request["type"] extends string | undefined ? request["type"] : viem.GetTransactionType<request, (request extends {
2256
+ accessList?: undefined | undefined;
2257
+ authorizationList?: undefined | undefined;
2258
+ blobs?: undefined | undefined;
2259
+ blobVersionedHashes?: undefined | undefined;
2260
+ gasPrice?: bigint | undefined;
2261
+ sidecars?: undefined | undefined;
2262
+ } & viem.FeeValuesLegacy ? "legacy" : never) | (request extends {
2263
+ accessList?: viem.AccessList | undefined;
2264
+ authorizationList?: undefined | undefined;
2265
+ blobs?: undefined | undefined;
2266
+ blobVersionedHashes?: undefined | undefined;
2267
+ gasPrice?: undefined | undefined;
2268
+ maxFeePerBlobGas?: undefined | undefined;
2269
+ maxFeePerGas?: bigint | undefined;
2270
+ maxPriorityFeePerGas?: bigint | undefined;
2271
+ sidecars?: undefined | undefined;
2272
+ } & (viem.OneOf<{
2273
+ maxFeePerGas: viem.FeeValuesEIP1559["maxFeePerGas"];
2274
+ } | {
2275
+ maxPriorityFeePerGas: viem.FeeValuesEIP1559["maxPriorityFeePerGas"];
2276
+ }, viem.FeeValuesEIP1559> & {
2277
+ accessList?: viem.TransactionSerializableEIP2930["accessList"] | undefined;
2278
+ }) ? "eip1559" : never) | (request extends {
2279
+ accessList?: viem.AccessList | undefined;
2280
+ authorizationList?: undefined | undefined;
2281
+ blobs?: undefined | undefined;
2282
+ blobVersionedHashes?: undefined | undefined;
2283
+ gasPrice?: bigint | undefined;
2284
+ sidecars?: undefined | undefined;
2285
+ maxFeePerBlobGas?: undefined | undefined;
2286
+ maxFeePerGas?: undefined | undefined;
2287
+ maxPriorityFeePerGas?: undefined | undefined;
2288
+ } & {
2289
+ accessList: viem.TransactionSerializableEIP2930["accessList"];
2290
+ } ? "eip2930" : never) | (request extends ({
2291
+ accessList?: viem.AccessList | undefined;
2292
+ authorizationList?: undefined | undefined;
2293
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
2294
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2295
+ maxFeePerBlobGas?: bigint | undefined;
2296
+ maxFeePerGas?: bigint | undefined;
2297
+ maxPriorityFeePerGas?: bigint | undefined;
2298
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
2299
+ } | {
2300
+ accessList?: viem.AccessList | undefined;
2301
+ authorizationList?: undefined | undefined;
2302
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
2303
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2304
+ maxFeePerBlobGas?: bigint | undefined;
2305
+ maxFeePerGas?: bigint | undefined;
2306
+ maxPriorityFeePerGas?: bigint | undefined;
2307
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
2308
+ }) & (viem.ExactPartial<viem.FeeValuesEIP4844> & viem.OneOf<{
2309
+ blobs: viem.TransactionSerializableEIP4844["blobs"];
2310
+ } | {
2311
+ blobVersionedHashes: viem.TransactionSerializableEIP4844["blobVersionedHashes"];
2312
+ } | {
2313
+ sidecars: viem.TransactionSerializableEIP4844["sidecars"];
2314
+ }, viem.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
2315
+ accessList?: viem.AccessList | undefined;
2316
+ authorizationList?: viem.SignedAuthorizationList | undefined;
2317
+ blobs?: undefined | undefined;
2318
+ blobVersionedHashes?: undefined | undefined;
2319
+ gasPrice?: undefined | undefined;
2320
+ maxFeePerBlobGas?: undefined | undefined;
2321
+ maxFeePerGas?: bigint | undefined;
2322
+ maxPriorityFeePerGas?: bigint | undefined;
2323
+ sidecars?: undefined | undefined;
2324
+ } | {
2325
+ accessList?: viem.AccessList | undefined;
2326
+ authorizationList?: viem.SignedAuthorizationList | undefined;
2327
+ blobs?: undefined | undefined;
2328
+ blobVersionedHashes?: undefined | undefined;
2329
+ gasPrice?: undefined | undefined;
2330
+ maxFeePerBlobGas?: undefined | undefined;
2331
+ maxFeePerGas?: bigint | undefined;
2332
+ maxPriorityFeePerGas?: bigint | undefined;
2333
+ sidecars?: undefined | undefined;
2334
+ }) & {
2335
+ authorizationList: viem.TransactionSerializableEIP7702["authorizationList"];
2336
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : viem.GetTransactionType<request, (request extends {
2337
+ accessList?: undefined | undefined;
2338
+ authorizationList?: undefined | undefined;
2339
+ blobs?: undefined | undefined;
2340
+ blobVersionedHashes?: undefined | undefined;
2341
+ gasPrice?: bigint | undefined;
2342
+ sidecars?: undefined | undefined;
2343
+ } & viem.FeeValuesLegacy ? "legacy" : never) | (request extends {
2344
+ accessList?: viem.AccessList | undefined;
2345
+ authorizationList?: undefined | undefined;
2346
+ blobs?: undefined | undefined;
2347
+ blobVersionedHashes?: undefined | undefined;
2348
+ gasPrice?: undefined | undefined;
2349
+ maxFeePerBlobGas?: undefined | undefined;
2350
+ maxFeePerGas?: bigint | undefined;
2351
+ maxPriorityFeePerGas?: bigint | undefined;
2352
+ sidecars?: undefined | undefined;
2353
+ } & (viem.OneOf<{
2354
+ maxFeePerGas: viem.FeeValuesEIP1559["maxFeePerGas"];
2355
+ } | {
2356
+ maxPriorityFeePerGas: viem.FeeValuesEIP1559["maxPriorityFeePerGas"];
2357
+ }, viem.FeeValuesEIP1559> & {
2358
+ accessList?: viem.TransactionSerializableEIP2930["accessList"] | undefined;
2359
+ }) ? "eip1559" : never) | (request extends {
2360
+ accessList?: viem.AccessList | undefined;
2361
+ authorizationList?: undefined | undefined;
2362
+ blobs?: undefined | undefined;
2363
+ blobVersionedHashes?: undefined | undefined;
2364
+ gasPrice?: bigint | undefined;
2365
+ sidecars?: undefined | undefined;
2366
+ maxFeePerBlobGas?: undefined | undefined;
2367
+ maxFeePerGas?: undefined | undefined;
2368
+ maxPriorityFeePerGas?: undefined | undefined;
2369
+ } & {
2370
+ accessList: viem.TransactionSerializableEIP2930["accessList"];
2371
+ } ? "eip2930" : never) | (request extends ({
2372
+ accessList?: viem.AccessList | undefined;
2373
+ authorizationList?: undefined | undefined;
2374
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
2375
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2376
+ maxFeePerBlobGas?: bigint | undefined;
2377
+ maxFeePerGas?: bigint | undefined;
2378
+ maxPriorityFeePerGas?: bigint | undefined;
2379
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
2380
+ } | {
2381
+ accessList?: viem.AccessList | undefined;
2382
+ authorizationList?: undefined | undefined;
2383
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
2384
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2385
+ maxFeePerBlobGas?: bigint | undefined;
2386
+ maxFeePerGas?: bigint | undefined;
2387
+ maxPriorityFeePerGas?: bigint | undefined;
2388
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
2389
+ }) & (viem.ExactPartial<viem.FeeValuesEIP4844> & viem.OneOf<{
2390
+ blobs: viem.TransactionSerializableEIP4844["blobs"];
2391
+ } | {
2392
+ blobVersionedHashes: viem.TransactionSerializableEIP4844["blobVersionedHashes"];
2393
+ } | {
2394
+ sidecars: viem.TransactionSerializableEIP4844["sidecars"];
2395
+ }, viem.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
2396
+ accessList?: viem.AccessList | undefined;
2397
+ authorizationList?: viem.SignedAuthorizationList | undefined;
2398
+ blobs?: undefined | undefined;
2399
+ blobVersionedHashes?: undefined | undefined;
2400
+ gasPrice?: undefined | undefined;
2401
+ maxFeePerBlobGas?: undefined | undefined;
2402
+ maxFeePerGas?: bigint | undefined;
2403
+ maxPriorityFeePerGas?: bigint | undefined;
2404
+ sidecars?: undefined | undefined;
2405
+ } | {
2406
+ accessList?: viem.AccessList | undefined;
2407
+ authorizationList?: viem.SignedAuthorizationList | undefined;
2408
+ blobs?: undefined | undefined;
2409
+ blobVersionedHashes?: undefined | undefined;
2410
+ gasPrice?: undefined | undefined;
2411
+ maxFeePerBlobGas?: undefined | undefined;
2412
+ maxFeePerGas?: bigint | undefined;
2413
+ maxPriorityFeePerGas?: bigint | undefined;
2414
+ sidecars?: undefined | undefined;
2415
+ }) & {
2416
+ authorizationList: viem.TransactionSerializableEIP7702["authorizationList"];
2417
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_8 extends "legacy" ? viem.TransactionRequestLegacy : never : never : never) | ((request["type"] extends string | undefined ? request["type"] : viem.GetTransactionType<request, (request extends {
2418
+ accessList?: undefined | undefined;
2419
+ authorizationList?: undefined | undefined;
2420
+ blobs?: undefined | undefined;
2421
+ blobVersionedHashes?: undefined | undefined;
2422
+ gasPrice?: bigint | undefined;
2423
+ sidecars?: undefined | undefined;
2424
+ } & viem.FeeValuesLegacy ? "legacy" : never) | (request extends {
2425
+ accessList?: viem.AccessList | undefined;
2426
+ authorizationList?: undefined | undefined;
2427
+ blobs?: undefined | undefined;
2428
+ blobVersionedHashes?: undefined | undefined;
2429
+ gasPrice?: undefined | undefined;
2430
+ maxFeePerBlobGas?: undefined | undefined;
2431
+ maxFeePerGas?: bigint | undefined;
2432
+ maxPriorityFeePerGas?: bigint | undefined;
2433
+ sidecars?: undefined | undefined;
2434
+ } & (viem.OneOf<{
2435
+ maxFeePerGas: viem.FeeValuesEIP1559["maxFeePerGas"];
2436
+ } | {
2437
+ maxPriorityFeePerGas: viem.FeeValuesEIP1559["maxPriorityFeePerGas"];
2438
+ }, viem.FeeValuesEIP1559> & {
2439
+ accessList?: viem.TransactionSerializableEIP2930["accessList"] | undefined;
2440
+ }) ? "eip1559" : never) | (request extends {
2441
+ accessList?: viem.AccessList | undefined;
2442
+ authorizationList?: undefined | undefined;
2443
+ blobs?: undefined | undefined;
2444
+ blobVersionedHashes?: undefined | undefined;
2445
+ gasPrice?: bigint | undefined;
2446
+ sidecars?: undefined | undefined;
2447
+ maxFeePerBlobGas?: undefined | undefined;
2448
+ maxFeePerGas?: undefined | undefined;
2449
+ maxPriorityFeePerGas?: undefined | undefined;
2450
+ } & {
2451
+ accessList: viem.TransactionSerializableEIP2930["accessList"];
2452
+ } ? "eip2930" : never) | (request extends ({
2453
+ accessList?: viem.AccessList | undefined;
2454
+ authorizationList?: undefined | undefined;
2455
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
2456
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2457
+ maxFeePerBlobGas?: bigint | undefined;
2458
+ maxFeePerGas?: bigint | undefined;
2459
+ maxPriorityFeePerGas?: bigint | undefined;
2460
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
2461
+ } | {
2462
+ accessList?: viem.AccessList | undefined;
2463
+ authorizationList?: undefined | undefined;
2464
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
2465
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2466
+ maxFeePerBlobGas?: bigint | undefined;
2467
+ maxFeePerGas?: bigint | undefined;
2468
+ maxPriorityFeePerGas?: bigint | undefined;
2469
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
2470
+ }) & (viem.ExactPartial<viem.FeeValuesEIP4844> & viem.OneOf<{
2471
+ blobs: viem.TransactionSerializableEIP4844["blobs"];
2472
+ } | {
2473
+ blobVersionedHashes: viem.TransactionSerializableEIP4844["blobVersionedHashes"];
2474
+ } | {
2475
+ sidecars: viem.TransactionSerializableEIP4844["sidecars"];
2476
+ }, viem.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
2477
+ accessList?: viem.AccessList | undefined;
2478
+ authorizationList?: viem.SignedAuthorizationList | undefined;
2479
+ blobs?: undefined | undefined;
2480
+ blobVersionedHashes?: undefined | undefined;
2481
+ gasPrice?: undefined | undefined;
2482
+ maxFeePerBlobGas?: undefined | undefined;
2483
+ maxFeePerGas?: bigint | undefined;
2484
+ maxPriorityFeePerGas?: bigint | undefined;
2485
+ sidecars?: undefined | undefined;
2486
+ } | {
2487
+ accessList?: viem.AccessList | undefined;
2488
+ authorizationList?: viem.SignedAuthorizationList | undefined;
2489
+ blobs?: undefined | undefined;
2490
+ blobVersionedHashes?: undefined | undefined;
2491
+ gasPrice?: undefined | undefined;
2492
+ maxFeePerBlobGas?: undefined | undefined;
2493
+ maxFeePerGas?: bigint | undefined;
2494
+ maxPriorityFeePerGas?: bigint | undefined;
2495
+ sidecars?: undefined | undefined;
2496
+ }) & {
2497
+ authorizationList: viem.TransactionSerializableEIP7702["authorizationList"];
2498
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : viem.GetTransactionType<request, (request extends {
2499
+ accessList?: undefined | undefined;
2500
+ authorizationList?: undefined | undefined;
2501
+ blobs?: undefined | undefined;
2502
+ blobVersionedHashes?: undefined | undefined;
2503
+ gasPrice?: bigint | undefined;
2504
+ sidecars?: undefined | undefined;
2505
+ } & viem.FeeValuesLegacy ? "legacy" : never) | (request extends {
2506
+ accessList?: viem.AccessList | undefined;
2507
+ authorizationList?: undefined | undefined;
2508
+ blobs?: undefined | undefined;
2509
+ blobVersionedHashes?: undefined | undefined;
2510
+ gasPrice?: undefined | undefined;
2511
+ maxFeePerBlobGas?: undefined | undefined;
2512
+ maxFeePerGas?: bigint | undefined;
2513
+ maxPriorityFeePerGas?: bigint | undefined;
2514
+ sidecars?: undefined | undefined;
2515
+ } & (viem.OneOf<{
2516
+ maxFeePerGas: viem.FeeValuesEIP1559["maxFeePerGas"];
2517
+ } | {
2518
+ maxPriorityFeePerGas: viem.FeeValuesEIP1559["maxPriorityFeePerGas"];
2519
+ }, viem.FeeValuesEIP1559> & {
2520
+ accessList?: viem.TransactionSerializableEIP2930["accessList"] | undefined;
2521
+ }) ? "eip1559" : never) | (request extends {
2522
+ accessList?: viem.AccessList | undefined;
2523
+ authorizationList?: undefined | undefined;
2524
+ blobs?: undefined | undefined;
2525
+ blobVersionedHashes?: undefined | undefined;
2526
+ gasPrice?: bigint | undefined;
2527
+ sidecars?: undefined | undefined;
2528
+ maxFeePerBlobGas?: undefined | undefined;
2529
+ maxFeePerGas?: undefined | undefined;
2530
+ maxPriorityFeePerGas?: undefined | undefined;
2531
+ } & {
2532
+ accessList: viem.TransactionSerializableEIP2930["accessList"];
2533
+ } ? "eip2930" : never) | (request extends ({
2534
+ accessList?: viem.AccessList | undefined;
2535
+ authorizationList?: undefined | undefined;
2536
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
2537
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2538
+ maxFeePerBlobGas?: bigint | undefined;
2539
+ maxFeePerGas?: bigint | undefined;
2540
+ maxPriorityFeePerGas?: bigint | undefined;
2541
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
2542
+ } | {
2543
+ accessList?: viem.AccessList | undefined;
2544
+ authorizationList?: undefined | undefined;
2545
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
2546
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2547
+ maxFeePerBlobGas?: bigint | undefined;
2548
+ maxFeePerGas?: bigint | undefined;
2549
+ maxPriorityFeePerGas?: bigint | undefined;
2550
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
2551
+ }) & (viem.ExactPartial<viem.FeeValuesEIP4844> & viem.OneOf<{
2552
+ blobs: viem.TransactionSerializableEIP4844["blobs"];
2553
+ } | {
2554
+ blobVersionedHashes: viem.TransactionSerializableEIP4844["blobVersionedHashes"];
2555
+ } | {
2556
+ sidecars: viem.TransactionSerializableEIP4844["sidecars"];
2557
+ }, viem.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
2558
+ accessList?: viem.AccessList | undefined;
2559
+ authorizationList?: viem.SignedAuthorizationList | undefined;
2560
+ blobs?: undefined | undefined;
2561
+ blobVersionedHashes?: undefined | undefined;
2562
+ gasPrice?: undefined | undefined;
2563
+ maxFeePerBlobGas?: undefined | undefined;
2564
+ maxFeePerGas?: bigint | undefined;
2565
+ maxPriorityFeePerGas?: bigint | undefined;
2566
+ sidecars?: undefined | undefined;
2567
+ } | {
2568
+ accessList?: viem.AccessList | undefined;
2569
+ authorizationList?: viem.SignedAuthorizationList | undefined;
2570
+ blobs?: undefined | undefined;
2571
+ blobVersionedHashes?: undefined | undefined;
2572
+ gasPrice?: undefined | undefined;
2573
+ maxFeePerBlobGas?: undefined | undefined;
2574
+ maxFeePerGas?: bigint | undefined;
2575
+ maxPriorityFeePerGas?: bigint | undefined;
2576
+ sidecars?: undefined | undefined;
2577
+ }) & {
2578
+ authorizationList: viem.TransactionSerializableEIP7702["authorizationList"];
2579
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) extends infer T_9 ? T_9 extends (request["type"] extends string | undefined ? request["type"] : viem.GetTransactionType<request, (request extends {
2580
+ accessList?: undefined | undefined;
2581
+ authorizationList?: undefined | undefined;
2582
+ blobs?: undefined | undefined;
2583
+ blobVersionedHashes?: undefined | undefined;
2584
+ gasPrice?: bigint | undefined;
2585
+ sidecars?: undefined | undefined;
2586
+ } & viem.FeeValuesLegacy ? "legacy" : never) | (request extends {
2587
+ accessList?: viem.AccessList | undefined;
2588
+ authorizationList?: undefined | undefined;
2589
+ blobs?: undefined | undefined;
2590
+ blobVersionedHashes?: undefined | undefined;
2591
+ gasPrice?: undefined | undefined;
2592
+ maxFeePerBlobGas?: undefined | undefined;
2593
+ maxFeePerGas?: bigint | undefined;
2594
+ maxPriorityFeePerGas?: bigint | undefined;
2595
+ sidecars?: undefined | undefined;
2596
+ } & (viem.OneOf<{
2597
+ maxFeePerGas: viem.FeeValuesEIP1559["maxFeePerGas"];
2598
+ } | {
2599
+ maxPriorityFeePerGas: viem.FeeValuesEIP1559["maxPriorityFeePerGas"];
2600
+ }, viem.FeeValuesEIP1559> & {
2601
+ accessList?: viem.TransactionSerializableEIP2930["accessList"] | undefined;
2602
+ }) ? "eip1559" : never) | (request extends {
2603
+ accessList?: viem.AccessList | undefined;
2604
+ authorizationList?: undefined | undefined;
2605
+ blobs?: undefined | undefined;
2606
+ blobVersionedHashes?: undefined | undefined;
2607
+ gasPrice?: bigint | undefined;
2608
+ sidecars?: undefined | undefined;
2609
+ maxFeePerBlobGas?: undefined | undefined;
2610
+ maxFeePerGas?: undefined | undefined;
2611
+ maxPriorityFeePerGas?: undefined | undefined;
2612
+ } & {
2613
+ accessList: viem.TransactionSerializableEIP2930["accessList"];
2614
+ } ? "eip2930" : never) | (request extends ({
2615
+ accessList?: viem.AccessList | undefined;
2616
+ authorizationList?: undefined | undefined;
2617
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
2618
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2619
+ maxFeePerBlobGas?: bigint | undefined;
2620
+ maxFeePerGas?: bigint | undefined;
2621
+ maxPriorityFeePerGas?: bigint | undefined;
2622
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
2623
+ } | {
2624
+ accessList?: viem.AccessList | undefined;
2625
+ authorizationList?: undefined | undefined;
2626
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
2627
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2628
+ maxFeePerBlobGas?: bigint | undefined;
2629
+ maxFeePerGas?: bigint | undefined;
2630
+ maxPriorityFeePerGas?: bigint | undefined;
2631
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
2632
+ }) & (viem.ExactPartial<viem.FeeValuesEIP4844> & viem.OneOf<{
2633
+ blobs: viem.TransactionSerializableEIP4844["blobs"];
2634
+ } | {
2635
+ blobVersionedHashes: viem.TransactionSerializableEIP4844["blobVersionedHashes"];
2636
+ } | {
2637
+ sidecars: viem.TransactionSerializableEIP4844["sidecars"];
2638
+ }, viem.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
2639
+ accessList?: viem.AccessList | undefined;
2640
+ authorizationList?: viem.SignedAuthorizationList | undefined;
2641
+ blobs?: undefined | undefined;
2642
+ blobVersionedHashes?: undefined | undefined;
2643
+ gasPrice?: undefined | undefined;
2644
+ maxFeePerBlobGas?: undefined | undefined;
2645
+ maxFeePerGas?: bigint | undefined;
2646
+ maxPriorityFeePerGas?: bigint | undefined;
2647
+ sidecars?: undefined | undefined;
2648
+ } | {
2649
+ accessList?: viem.AccessList | undefined;
2650
+ authorizationList?: viem.SignedAuthorizationList | undefined;
2651
+ blobs?: undefined | undefined;
2652
+ blobVersionedHashes?: undefined | undefined;
2653
+ gasPrice?: undefined | undefined;
2654
+ maxFeePerBlobGas?: undefined | undefined;
2655
+ maxFeePerGas?: bigint | undefined;
2656
+ maxPriorityFeePerGas?: bigint | undefined;
2657
+ sidecars?: undefined | undefined;
2658
+ }) & {
2659
+ authorizationList: viem.TransactionSerializableEIP7702["authorizationList"];
2660
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : viem.GetTransactionType<request, (request extends {
2661
+ accessList?: undefined | undefined;
2662
+ authorizationList?: undefined | undefined;
2663
+ blobs?: undefined | undefined;
2664
+ blobVersionedHashes?: undefined | undefined;
2665
+ gasPrice?: bigint | undefined;
2666
+ sidecars?: undefined | undefined;
2667
+ } & viem.FeeValuesLegacy ? "legacy" : never) | (request extends {
2668
+ accessList?: viem.AccessList | undefined;
2669
+ authorizationList?: undefined | undefined;
2670
+ blobs?: undefined | undefined;
2671
+ blobVersionedHashes?: undefined | undefined;
2672
+ gasPrice?: undefined | undefined;
2673
+ maxFeePerBlobGas?: undefined | undefined;
2674
+ maxFeePerGas?: bigint | undefined;
2675
+ maxPriorityFeePerGas?: bigint | undefined;
2676
+ sidecars?: undefined | undefined;
2677
+ } & (viem.OneOf<{
2678
+ maxFeePerGas: viem.FeeValuesEIP1559["maxFeePerGas"];
2679
+ } | {
2680
+ maxPriorityFeePerGas: viem.FeeValuesEIP1559["maxPriorityFeePerGas"];
2681
+ }, viem.FeeValuesEIP1559> & {
2682
+ accessList?: viem.TransactionSerializableEIP2930["accessList"] | undefined;
2683
+ }) ? "eip1559" : never) | (request extends {
2684
+ accessList?: viem.AccessList | undefined;
2685
+ authorizationList?: undefined | undefined;
2686
+ blobs?: undefined | undefined;
2687
+ blobVersionedHashes?: undefined | undefined;
2688
+ gasPrice?: bigint | undefined;
2689
+ sidecars?: undefined | undefined;
2690
+ maxFeePerBlobGas?: undefined | undefined;
2691
+ maxFeePerGas?: undefined | undefined;
2692
+ maxPriorityFeePerGas?: undefined | undefined;
2693
+ } & {
2694
+ accessList: viem.TransactionSerializableEIP2930["accessList"];
2695
+ } ? "eip2930" : never) | (request extends ({
2696
+ accessList?: viem.AccessList | undefined;
2697
+ authorizationList?: undefined | undefined;
2698
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
2699
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2700
+ maxFeePerBlobGas?: bigint | undefined;
2701
+ maxFeePerGas?: bigint | undefined;
2702
+ maxPriorityFeePerGas?: bigint | undefined;
2703
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
2704
+ } | {
2705
+ accessList?: viem.AccessList | undefined;
2706
+ authorizationList?: undefined | undefined;
2707
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
2708
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2709
+ maxFeePerBlobGas?: bigint | undefined;
2710
+ maxFeePerGas?: bigint | undefined;
2711
+ maxPriorityFeePerGas?: bigint | undefined;
2712
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
2713
+ }) & (viem.ExactPartial<viem.FeeValuesEIP4844> & viem.OneOf<{
2714
+ blobs: viem.TransactionSerializableEIP4844["blobs"];
2715
+ } | {
2716
+ blobVersionedHashes: viem.TransactionSerializableEIP4844["blobVersionedHashes"];
2717
+ } | {
2718
+ sidecars: viem.TransactionSerializableEIP4844["sidecars"];
2719
+ }, viem.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
2720
+ accessList?: viem.AccessList | undefined;
2721
+ authorizationList?: viem.SignedAuthorizationList | undefined;
2722
+ blobs?: undefined | undefined;
2723
+ blobVersionedHashes?: undefined | undefined;
2724
+ gasPrice?: undefined | undefined;
2725
+ maxFeePerBlobGas?: undefined | undefined;
2726
+ maxFeePerGas?: bigint | undefined;
2727
+ maxPriorityFeePerGas?: bigint | undefined;
2728
+ sidecars?: undefined | undefined;
2729
+ } | {
2730
+ accessList?: viem.AccessList | undefined;
2731
+ authorizationList?: viem.SignedAuthorizationList | undefined;
2732
+ blobs?: undefined | undefined;
2733
+ blobVersionedHashes?: undefined | undefined;
2734
+ gasPrice?: undefined | undefined;
2735
+ maxFeePerBlobGas?: undefined | undefined;
2736
+ maxFeePerGas?: bigint | undefined;
2737
+ maxPriorityFeePerGas?: bigint | undefined;
2738
+ sidecars?: undefined | undefined;
2739
+ }) & {
2740
+ authorizationList: viem.TransactionSerializableEIP7702["authorizationList"];
2741
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_9 extends "eip1559" ? viem.TransactionRequestEIP1559 : never : never : never) | ((request["type"] extends string | undefined ? request["type"] : viem.GetTransactionType<request, (request extends {
2742
+ accessList?: undefined | undefined;
2743
+ authorizationList?: undefined | undefined;
2744
+ blobs?: undefined | undefined;
2745
+ blobVersionedHashes?: undefined | undefined;
2746
+ gasPrice?: bigint | undefined;
2747
+ sidecars?: undefined | undefined;
2748
+ } & viem.FeeValuesLegacy ? "legacy" : never) | (request extends {
2749
+ accessList?: viem.AccessList | undefined;
2750
+ authorizationList?: undefined | undefined;
2751
+ blobs?: undefined | undefined;
2752
+ blobVersionedHashes?: undefined | undefined;
2753
+ gasPrice?: undefined | undefined;
2754
+ maxFeePerBlobGas?: undefined | undefined;
2755
+ maxFeePerGas?: bigint | undefined;
2756
+ maxPriorityFeePerGas?: bigint | undefined;
2757
+ sidecars?: undefined | undefined;
2758
+ } & (viem.OneOf<{
2759
+ maxFeePerGas: viem.FeeValuesEIP1559["maxFeePerGas"];
2760
+ } | {
2761
+ maxPriorityFeePerGas: viem.FeeValuesEIP1559["maxPriorityFeePerGas"];
2762
+ }, viem.FeeValuesEIP1559> & {
2763
+ accessList?: viem.TransactionSerializableEIP2930["accessList"] | undefined;
2764
+ }) ? "eip1559" : never) | (request extends {
2765
+ accessList?: viem.AccessList | undefined;
2766
+ authorizationList?: undefined | undefined;
2767
+ blobs?: undefined | undefined;
2768
+ blobVersionedHashes?: undefined | undefined;
2769
+ gasPrice?: bigint | undefined;
2770
+ sidecars?: undefined | undefined;
2771
+ maxFeePerBlobGas?: undefined | undefined;
2772
+ maxFeePerGas?: undefined | undefined;
2773
+ maxPriorityFeePerGas?: undefined | undefined;
2774
+ } & {
2775
+ accessList: viem.TransactionSerializableEIP2930["accessList"];
2776
+ } ? "eip2930" : never) | (request extends ({
2777
+ accessList?: viem.AccessList | undefined;
2778
+ authorizationList?: undefined | undefined;
2779
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
2780
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2781
+ maxFeePerBlobGas?: bigint | undefined;
2782
+ maxFeePerGas?: bigint | undefined;
2783
+ maxPriorityFeePerGas?: bigint | undefined;
2784
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
2785
+ } | {
2786
+ accessList?: viem.AccessList | undefined;
2787
+ authorizationList?: undefined | undefined;
2788
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
2789
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2790
+ maxFeePerBlobGas?: bigint | undefined;
2791
+ maxFeePerGas?: bigint | undefined;
2792
+ maxPriorityFeePerGas?: bigint | undefined;
2793
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
2794
+ }) & (viem.ExactPartial<viem.FeeValuesEIP4844> & viem.OneOf<{
2795
+ blobs: viem.TransactionSerializableEIP4844["blobs"];
2796
+ } | {
2797
+ blobVersionedHashes: viem.TransactionSerializableEIP4844["blobVersionedHashes"];
2798
+ } | {
2799
+ sidecars: viem.TransactionSerializableEIP4844["sidecars"];
2800
+ }, viem.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
2801
+ accessList?: viem.AccessList | undefined;
2802
+ authorizationList?: viem.SignedAuthorizationList | undefined;
2803
+ blobs?: undefined | undefined;
2804
+ blobVersionedHashes?: undefined | undefined;
2805
+ gasPrice?: undefined | undefined;
2806
+ maxFeePerBlobGas?: undefined | undefined;
2807
+ maxFeePerGas?: bigint | undefined;
2808
+ maxPriorityFeePerGas?: bigint | undefined;
2809
+ sidecars?: undefined | undefined;
2810
+ } | {
2811
+ accessList?: viem.AccessList | undefined;
2812
+ authorizationList?: viem.SignedAuthorizationList | undefined;
2813
+ blobs?: undefined | undefined;
2814
+ blobVersionedHashes?: undefined | undefined;
2815
+ gasPrice?: undefined | undefined;
2816
+ maxFeePerBlobGas?: undefined | undefined;
2817
+ maxFeePerGas?: bigint | undefined;
2818
+ maxPriorityFeePerGas?: bigint | undefined;
2819
+ sidecars?: undefined | undefined;
2820
+ }) & {
2821
+ authorizationList: viem.TransactionSerializableEIP7702["authorizationList"];
2822
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : viem.GetTransactionType<request, (request extends {
2823
+ accessList?: undefined | undefined;
2824
+ authorizationList?: undefined | undefined;
2825
+ blobs?: undefined | undefined;
2826
+ blobVersionedHashes?: undefined | undefined;
2827
+ gasPrice?: bigint | undefined;
2828
+ sidecars?: undefined | undefined;
2829
+ } & viem.FeeValuesLegacy ? "legacy" : never) | (request extends {
2830
+ accessList?: viem.AccessList | undefined;
2831
+ authorizationList?: undefined | undefined;
2832
+ blobs?: undefined | undefined;
2833
+ blobVersionedHashes?: undefined | undefined;
2834
+ gasPrice?: undefined | undefined;
2835
+ maxFeePerBlobGas?: undefined | undefined;
2836
+ maxFeePerGas?: bigint | undefined;
2837
+ maxPriorityFeePerGas?: bigint | undefined;
2838
+ sidecars?: undefined | undefined;
2839
+ } & (viem.OneOf<{
2840
+ maxFeePerGas: viem.FeeValuesEIP1559["maxFeePerGas"];
2841
+ } | {
2842
+ maxPriorityFeePerGas: viem.FeeValuesEIP1559["maxPriorityFeePerGas"];
2843
+ }, viem.FeeValuesEIP1559> & {
2844
+ accessList?: viem.TransactionSerializableEIP2930["accessList"] | undefined;
2845
+ }) ? "eip1559" : never) | (request extends {
2846
+ accessList?: viem.AccessList | undefined;
2847
+ authorizationList?: undefined | undefined;
2848
+ blobs?: undefined | undefined;
2849
+ blobVersionedHashes?: undefined | undefined;
2850
+ gasPrice?: bigint | undefined;
2851
+ sidecars?: undefined | undefined;
2852
+ maxFeePerBlobGas?: undefined | undefined;
2853
+ maxFeePerGas?: undefined | undefined;
2854
+ maxPriorityFeePerGas?: undefined | undefined;
2855
+ } & {
2856
+ accessList: viem.TransactionSerializableEIP2930["accessList"];
2857
+ } ? "eip2930" : never) | (request extends ({
2858
+ accessList?: viem.AccessList | undefined;
2859
+ authorizationList?: undefined | undefined;
2860
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
2861
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2862
+ maxFeePerBlobGas?: bigint | undefined;
2863
+ maxFeePerGas?: bigint | undefined;
2864
+ maxPriorityFeePerGas?: bigint | undefined;
2865
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
2866
+ } | {
2867
+ accessList?: viem.AccessList | undefined;
2868
+ authorizationList?: undefined | undefined;
2869
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
2870
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2871
+ maxFeePerBlobGas?: bigint | undefined;
2872
+ maxFeePerGas?: bigint | undefined;
2873
+ maxPriorityFeePerGas?: bigint | undefined;
2874
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
2875
+ }) & (viem.ExactPartial<viem.FeeValuesEIP4844> & viem.OneOf<{
2876
+ blobs: viem.TransactionSerializableEIP4844["blobs"];
2877
+ } | {
2878
+ blobVersionedHashes: viem.TransactionSerializableEIP4844["blobVersionedHashes"];
2879
+ } | {
2880
+ sidecars: viem.TransactionSerializableEIP4844["sidecars"];
2881
+ }, viem.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
2882
+ accessList?: viem.AccessList | undefined;
2883
+ authorizationList?: viem.SignedAuthorizationList | undefined;
2884
+ blobs?: undefined | undefined;
2885
+ blobVersionedHashes?: undefined | undefined;
2886
+ gasPrice?: undefined | undefined;
2887
+ maxFeePerBlobGas?: undefined | undefined;
2888
+ maxFeePerGas?: bigint | undefined;
2889
+ maxPriorityFeePerGas?: bigint | undefined;
2890
+ sidecars?: undefined | undefined;
2891
+ } | {
2892
+ accessList?: viem.AccessList | undefined;
2893
+ authorizationList?: viem.SignedAuthorizationList | undefined;
2894
+ blobs?: undefined | undefined;
2895
+ blobVersionedHashes?: undefined | undefined;
2896
+ gasPrice?: undefined | undefined;
2897
+ maxFeePerBlobGas?: undefined | undefined;
2898
+ maxFeePerGas?: bigint | undefined;
2899
+ maxPriorityFeePerGas?: bigint | undefined;
2900
+ sidecars?: undefined | undefined;
2901
+ }) & {
2902
+ authorizationList: viem.TransactionSerializableEIP7702["authorizationList"];
2903
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) extends infer T_10 ? T_10 extends (request["type"] extends string | undefined ? request["type"] : viem.GetTransactionType<request, (request extends {
2904
+ accessList?: undefined | undefined;
2905
+ authorizationList?: undefined | undefined;
2906
+ blobs?: undefined | undefined;
2907
+ blobVersionedHashes?: undefined | undefined;
2908
+ gasPrice?: bigint | undefined;
2909
+ sidecars?: undefined | undefined;
2910
+ } & viem.FeeValuesLegacy ? "legacy" : never) | (request extends {
2911
+ accessList?: viem.AccessList | undefined;
2912
+ authorizationList?: undefined | undefined;
2913
+ blobs?: undefined | undefined;
2914
+ blobVersionedHashes?: undefined | undefined;
2915
+ gasPrice?: undefined | undefined;
2916
+ maxFeePerBlobGas?: undefined | undefined;
2917
+ maxFeePerGas?: bigint | undefined;
2918
+ maxPriorityFeePerGas?: bigint | undefined;
2919
+ sidecars?: undefined | undefined;
2920
+ } & (viem.OneOf<{
2921
+ maxFeePerGas: viem.FeeValuesEIP1559["maxFeePerGas"];
2922
+ } | {
2923
+ maxPriorityFeePerGas: viem.FeeValuesEIP1559["maxPriorityFeePerGas"];
2924
+ }, viem.FeeValuesEIP1559> & {
2925
+ accessList?: viem.TransactionSerializableEIP2930["accessList"] | undefined;
2926
+ }) ? "eip1559" : never) | (request extends {
2927
+ accessList?: viem.AccessList | undefined;
2928
+ authorizationList?: undefined | undefined;
2929
+ blobs?: undefined | undefined;
2930
+ blobVersionedHashes?: undefined | undefined;
2931
+ gasPrice?: bigint | undefined;
2932
+ sidecars?: undefined | undefined;
2933
+ maxFeePerBlobGas?: undefined | undefined;
2934
+ maxFeePerGas?: undefined | undefined;
2935
+ maxPriorityFeePerGas?: undefined | undefined;
2936
+ } & {
2937
+ accessList: viem.TransactionSerializableEIP2930["accessList"];
2938
+ } ? "eip2930" : never) | (request extends ({
2939
+ accessList?: viem.AccessList | undefined;
2940
+ authorizationList?: undefined | undefined;
2941
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
2942
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2943
+ maxFeePerBlobGas?: bigint | undefined;
2944
+ maxFeePerGas?: bigint | undefined;
2945
+ maxPriorityFeePerGas?: bigint | undefined;
2946
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
2947
+ } | {
2948
+ accessList?: viem.AccessList | undefined;
2949
+ authorizationList?: undefined | undefined;
2950
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
2951
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2952
+ maxFeePerBlobGas?: bigint | undefined;
2953
+ maxFeePerGas?: bigint | undefined;
2954
+ maxPriorityFeePerGas?: bigint | undefined;
2955
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
2956
+ }) & (viem.ExactPartial<viem.FeeValuesEIP4844> & viem.OneOf<{
2957
+ blobs: viem.TransactionSerializableEIP4844["blobs"];
2958
+ } | {
2959
+ blobVersionedHashes: viem.TransactionSerializableEIP4844["blobVersionedHashes"];
2960
+ } | {
2961
+ sidecars: viem.TransactionSerializableEIP4844["sidecars"];
2962
+ }, viem.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
2963
+ accessList?: viem.AccessList | undefined;
2964
+ authorizationList?: viem.SignedAuthorizationList | undefined;
2965
+ blobs?: undefined | undefined;
2966
+ blobVersionedHashes?: undefined | undefined;
2967
+ gasPrice?: undefined | undefined;
2968
+ maxFeePerBlobGas?: undefined | undefined;
2969
+ maxFeePerGas?: bigint | undefined;
2970
+ maxPriorityFeePerGas?: bigint | undefined;
2971
+ sidecars?: undefined | undefined;
2972
+ } | {
2973
+ accessList?: viem.AccessList | undefined;
2974
+ authorizationList?: viem.SignedAuthorizationList | undefined;
2975
+ blobs?: undefined | undefined;
2976
+ blobVersionedHashes?: undefined | undefined;
2977
+ gasPrice?: undefined | undefined;
2978
+ maxFeePerBlobGas?: undefined | undefined;
2979
+ maxFeePerGas?: bigint | undefined;
2980
+ maxPriorityFeePerGas?: bigint | undefined;
2981
+ sidecars?: undefined | undefined;
2982
+ }) & {
2983
+ authorizationList: viem.TransactionSerializableEIP7702["authorizationList"];
2984
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : viem.GetTransactionType<request, (request extends {
2985
+ accessList?: undefined | undefined;
2986
+ authorizationList?: undefined | undefined;
2987
+ blobs?: undefined | undefined;
2988
+ blobVersionedHashes?: undefined | undefined;
2989
+ gasPrice?: bigint | undefined;
2990
+ sidecars?: undefined | undefined;
2991
+ } & viem.FeeValuesLegacy ? "legacy" : never) | (request extends {
2992
+ accessList?: viem.AccessList | undefined;
2993
+ authorizationList?: undefined | undefined;
2994
+ blobs?: undefined | undefined;
2995
+ blobVersionedHashes?: undefined | undefined;
2996
+ gasPrice?: undefined | undefined;
2997
+ maxFeePerBlobGas?: undefined | undefined;
2998
+ maxFeePerGas?: bigint | undefined;
2999
+ maxPriorityFeePerGas?: bigint | undefined;
3000
+ sidecars?: undefined | undefined;
3001
+ } & (viem.OneOf<{
3002
+ maxFeePerGas: viem.FeeValuesEIP1559["maxFeePerGas"];
3003
+ } | {
3004
+ maxPriorityFeePerGas: viem.FeeValuesEIP1559["maxPriorityFeePerGas"];
3005
+ }, viem.FeeValuesEIP1559> & {
3006
+ accessList?: viem.TransactionSerializableEIP2930["accessList"] | undefined;
3007
+ }) ? "eip1559" : never) | (request extends {
3008
+ accessList?: viem.AccessList | undefined;
3009
+ authorizationList?: undefined | undefined;
3010
+ blobs?: undefined | undefined;
3011
+ blobVersionedHashes?: undefined | undefined;
3012
+ gasPrice?: bigint | undefined;
3013
+ sidecars?: undefined | undefined;
3014
+ maxFeePerBlobGas?: undefined | undefined;
3015
+ maxFeePerGas?: undefined | undefined;
3016
+ maxPriorityFeePerGas?: undefined | undefined;
3017
+ } & {
3018
+ accessList: viem.TransactionSerializableEIP2930["accessList"];
3019
+ } ? "eip2930" : never) | (request extends ({
3020
+ accessList?: viem.AccessList | undefined;
3021
+ authorizationList?: undefined | undefined;
3022
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
3023
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3024
+ maxFeePerBlobGas?: bigint | undefined;
3025
+ maxFeePerGas?: bigint | undefined;
3026
+ maxPriorityFeePerGas?: bigint | undefined;
3027
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
3028
+ } | {
3029
+ accessList?: viem.AccessList | undefined;
3030
+ authorizationList?: undefined | undefined;
3031
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
3032
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3033
+ maxFeePerBlobGas?: bigint | undefined;
3034
+ maxFeePerGas?: bigint | undefined;
3035
+ maxPriorityFeePerGas?: bigint | undefined;
3036
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
3037
+ }) & (viem.ExactPartial<viem.FeeValuesEIP4844> & viem.OneOf<{
3038
+ blobs: viem.TransactionSerializableEIP4844["blobs"];
3039
+ } | {
3040
+ blobVersionedHashes: viem.TransactionSerializableEIP4844["blobVersionedHashes"];
3041
+ } | {
3042
+ sidecars: viem.TransactionSerializableEIP4844["sidecars"];
3043
+ }, viem.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
3044
+ accessList?: viem.AccessList | undefined;
3045
+ authorizationList?: viem.SignedAuthorizationList | undefined;
3046
+ blobs?: undefined | undefined;
3047
+ blobVersionedHashes?: undefined | undefined;
3048
+ gasPrice?: undefined | undefined;
3049
+ maxFeePerBlobGas?: undefined | undefined;
3050
+ maxFeePerGas?: bigint | undefined;
3051
+ maxPriorityFeePerGas?: bigint | undefined;
3052
+ sidecars?: undefined | undefined;
3053
+ } | {
3054
+ accessList?: viem.AccessList | undefined;
3055
+ authorizationList?: viem.SignedAuthorizationList | undefined;
3056
+ blobs?: undefined | undefined;
3057
+ blobVersionedHashes?: undefined | undefined;
3058
+ gasPrice?: undefined | undefined;
3059
+ maxFeePerBlobGas?: undefined | undefined;
3060
+ maxFeePerGas?: bigint | undefined;
3061
+ maxPriorityFeePerGas?: bigint | undefined;
3062
+ sidecars?: undefined | undefined;
3063
+ }) & {
3064
+ authorizationList: viem.TransactionSerializableEIP7702["authorizationList"];
3065
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_10 extends "eip2930" ? viem.TransactionRequestEIP2930 : never : never : never) | ((request["type"] extends string | undefined ? request["type"] : viem.GetTransactionType<request, (request extends {
3066
+ accessList?: undefined | undefined;
3067
+ authorizationList?: undefined | undefined;
3068
+ blobs?: undefined | undefined;
3069
+ blobVersionedHashes?: undefined | undefined;
3070
+ gasPrice?: bigint | undefined;
3071
+ sidecars?: undefined | undefined;
3072
+ } & viem.FeeValuesLegacy ? "legacy" : never) | (request extends {
3073
+ accessList?: viem.AccessList | undefined;
3074
+ authorizationList?: undefined | undefined;
3075
+ blobs?: undefined | undefined;
3076
+ blobVersionedHashes?: undefined | undefined;
3077
+ gasPrice?: undefined | undefined;
3078
+ maxFeePerBlobGas?: undefined | undefined;
3079
+ maxFeePerGas?: bigint | undefined;
3080
+ maxPriorityFeePerGas?: bigint | undefined;
3081
+ sidecars?: undefined | undefined;
3082
+ } & (viem.OneOf<{
3083
+ maxFeePerGas: viem.FeeValuesEIP1559["maxFeePerGas"];
3084
+ } | {
3085
+ maxPriorityFeePerGas: viem.FeeValuesEIP1559["maxPriorityFeePerGas"];
3086
+ }, viem.FeeValuesEIP1559> & {
3087
+ accessList?: viem.TransactionSerializableEIP2930["accessList"] | undefined;
3088
+ }) ? "eip1559" : never) | (request extends {
3089
+ accessList?: viem.AccessList | undefined;
3090
+ authorizationList?: undefined | undefined;
3091
+ blobs?: undefined | undefined;
3092
+ blobVersionedHashes?: undefined | undefined;
3093
+ gasPrice?: bigint | undefined;
3094
+ sidecars?: undefined | undefined;
3095
+ maxFeePerBlobGas?: undefined | undefined;
3096
+ maxFeePerGas?: undefined | undefined;
3097
+ maxPriorityFeePerGas?: undefined | undefined;
3098
+ } & {
3099
+ accessList: viem.TransactionSerializableEIP2930["accessList"];
3100
+ } ? "eip2930" : never) | (request extends ({
3101
+ accessList?: viem.AccessList | undefined;
3102
+ authorizationList?: undefined | undefined;
3103
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
3104
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3105
+ maxFeePerBlobGas?: bigint | undefined;
3106
+ maxFeePerGas?: bigint | undefined;
3107
+ maxPriorityFeePerGas?: bigint | undefined;
3108
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
3109
+ } | {
3110
+ accessList?: viem.AccessList | undefined;
3111
+ authorizationList?: undefined | undefined;
3112
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
3113
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3114
+ maxFeePerBlobGas?: bigint | undefined;
3115
+ maxFeePerGas?: bigint | undefined;
3116
+ maxPriorityFeePerGas?: bigint | undefined;
3117
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
3118
+ }) & (viem.ExactPartial<viem.FeeValuesEIP4844> & viem.OneOf<{
3119
+ blobs: viem.TransactionSerializableEIP4844["blobs"];
3120
+ } | {
3121
+ blobVersionedHashes: viem.TransactionSerializableEIP4844["blobVersionedHashes"];
3122
+ } | {
3123
+ sidecars: viem.TransactionSerializableEIP4844["sidecars"];
3124
+ }, viem.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
3125
+ accessList?: viem.AccessList | undefined;
3126
+ authorizationList?: viem.SignedAuthorizationList | undefined;
3127
+ blobs?: undefined | undefined;
3128
+ blobVersionedHashes?: undefined | undefined;
3129
+ gasPrice?: undefined | undefined;
3130
+ maxFeePerBlobGas?: undefined | undefined;
3131
+ maxFeePerGas?: bigint | undefined;
3132
+ maxPriorityFeePerGas?: bigint | undefined;
3133
+ sidecars?: undefined | undefined;
3134
+ } | {
3135
+ accessList?: viem.AccessList | undefined;
3136
+ authorizationList?: viem.SignedAuthorizationList | undefined;
3137
+ blobs?: undefined | undefined;
3138
+ blobVersionedHashes?: undefined | undefined;
3139
+ gasPrice?: undefined | undefined;
3140
+ maxFeePerBlobGas?: undefined | undefined;
3141
+ maxFeePerGas?: bigint | undefined;
3142
+ maxPriorityFeePerGas?: bigint | undefined;
3143
+ sidecars?: undefined | undefined;
3144
+ }) & {
3145
+ authorizationList: viem.TransactionSerializableEIP7702["authorizationList"];
3146
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : viem.GetTransactionType<request, (request extends {
3147
+ accessList?: undefined | undefined;
3148
+ authorizationList?: undefined | undefined;
3149
+ blobs?: undefined | undefined;
3150
+ blobVersionedHashes?: undefined | undefined;
3151
+ gasPrice?: bigint | undefined;
3152
+ sidecars?: undefined | undefined;
3153
+ } & viem.FeeValuesLegacy ? "legacy" : never) | (request extends {
3154
+ accessList?: viem.AccessList | undefined;
3155
+ authorizationList?: undefined | undefined;
3156
+ blobs?: undefined | undefined;
3157
+ blobVersionedHashes?: undefined | undefined;
3158
+ gasPrice?: undefined | undefined;
3159
+ maxFeePerBlobGas?: undefined | undefined;
3160
+ maxFeePerGas?: bigint | undefined;
3161
+ maxPriorityFeePerGas?: bigint | undefined;
3162
+ sidecars?: undefined | undefined;
3163
+ } & (viem.OneOf<{
3164
+ maxFeePerGas: viem.FeeValuesEIP1559["maxFeePerGas"];
3165
+ } | {
3166
+ maxPriorityFeePerGas: viem.FeeValuesEIP1559["maxPriorityFeePerGas"];
3167
+ }, viem.FeeValuesEIP1559> & {
3168
+ accessList?: viem.TransactionSerializableEIP2930["accessList"] | undefined;
3169
+ }) ? "eip1559" : never) | (request extends {
3170
+ accessList?: viem.AccessList | undefined;
3171
+ authorizationList?: undefined | undefined;
3172
+ blobs?: undefined | undefined;
3173
+ blobVersionedHashes?: undefined | undefined;
3174
+ gasPrice?: bigint | undefined;
3175
+ sidecars?: undefined | undefined;
3176
+ maxFeePerBlobGas?: undefined | undefined;
3177
+ maxFeePerGas?: undefined | undefined;
3178
+ maxPriorityFeePerGas?: undefined | undefined;
3179
+ } & {
3180
+ accessList: viem.TransactionSerializableEIP2930["accessList"];
3181
+ } ? "eip2930" : never) | (request extends ({
3182
+ accessList?: viem.AccessList | undefined;
3183
+ authorizationList?: undefined | undefined;
3184
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
3185
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3186
+ maxFeePerBlobGas?: bigint | undefined;
3187
+ maxFeePerGas?: bigint | undefined;
3188
+ maxPriorityFeePerGas?: bigint | undefined;
3189
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
3190
+ } | {
3191
+ accessList?: viem.AccessList | undefined;
3192
+ authorizationList?: undefined | undefined;
3193
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
3194
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3195
+ maxFeePerBlobGas?: bigint | undefined;
3196
+ maxFeePerGas?: bigint | undefined;
3197
+ maxPriorityFeePerGas?: bigint | undefined;
3198
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
3199
+ }) & (viem.ExactPartial<viem.FeeValuesEIP4844> & viem.OneOf<{
3200
+ blobs: viem.TransactionSerializableEIP4844["blobs"];
3201
+ } | {
3202
+ blobVersionedHashes: viem.TransactionSerializableEIP4844["blobVersionedHashes"];
3203
+ } | {
3204
+ sidecars: viem.TransactionSerializableEIP4844["sidecars"];
3205
+ }, viem.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
3206
+ accessList?: viem.AccessList | undefined;
3207
+ authorizationList?: viem.SignedAuthorizationList | undefined;
3208
+ blobs?: undefined | undefined;
3209
+ blobVersionedHashes?: undefined | undefined;
3210
+ gasPrice?: undefined | undefined;
3211
+ maxFeePerBlobGas?: undefined | undefined;
3212
+ maxFeePerGas?: bigint | undefined;
3213
+ maxPriorityFeePerGas?: bigint | undefined;
3214
+ sidecars?: undefined | undefined;
3215
+ } | {
3216
+ accessList?: viem.AccessList | undefined;
3217
+ authorizationList?: viem.SignedAuthorizationList | undefined;
3218
+ blobs?: undefined | undefined;
3219
+ blobVersionedHashes?: undefined | undefined;
3220
+ gasPrice?: undefined | undefined;
3221
+ maxFeePerBlobGas?: undefined | undefined;
3222
+ maxFeePerGas?: bigint | undefined;
3223
+ maxPriorityFeePerGas?: bigint | undefined;
3224
+ sidecars?: undefined | undefined;
3225
+ }) & {
3226
+ authorizationList: viem.TransactionSerializableEIP7702["authorizationList"];
3227
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) extends infer T_11 ? T_11 extends (request["type"] extends string | undefined ? request["type"] : viem.GetTransactionType<request, (request extends {
3228
+ accessList?: undefined | undefined;
3229
+ authorizationList?: undefined | undefined;
3230
+ blobs?: undefined | undefined;
3231
+ blobVersionedHashes?: undefined | undefined;
3232
+ gasPrice?: bigint | undefined;
3233
+ sidecars?: undefined | undefined;
3234
+ } & viem.FeeValuesLegacy ? "legacy" : never) | (request extends {
3235
+ accessList?: viem.AccessList | undefined;
3236
+ authorizationList?: undefined | undefined;
3237
+ blobs?: undefined | undefined;
3238
+ blobVersionedHashes?: undefined | undefined;
3239
+ gasPrice?: undefined | undefined;
3240
+ maxFeePerBlobGas?: undefined | undefined;
3241
+ maxFeePerGas?: bigint | undefined;
3242
+ maxPriorityFeePerGas?: bigint | undefined;
3243
+ sidecars?: undefined | undefined;
3244
+ } & (viem.OneOf<{
3245
+ maxFeePerGas: viem.FeeValuesEIP1559["maxFeePerGas"];
3246
+ } | {
3247
+ maxPriorityFeePerGas: viem.FeeValuesEIP1559["maxPriorityFeePerGas"];
3248
+ }, viem.FeeValuesEIP1559> & {
3249
+ accessList?: viem.TransactionSerializableEIP2930["accessList"] | undefined;
3250
+ }) ? "eip1559" : never) | (request extends {
3251
+ accessList?: viem.AccessList | undefined;
3252
+ authorizationList?: undefined | undefined;
3253
+ blobs?: undefined | undefined;
3254
+ blobVersionedHashes?: undefined | undefined;
3255
+ gasPrice?: bigint | undefined;
3256
+ sidecars?: undefined | undefined;
3257
+ maxFeePerBlobGas?: undefined | undefined;
3258
+ maxFeePerGas?: undefined | undefined;
3259
+ maxPriorityFeePerGas?: undefined | undefined;
3260
+ } & {
3261
+ accessList: viem.TransactionSerializableEIP2930["accessList"];
3262
+ } ? "eip2930" : never) | (request extends ({
3263
+ accessList?: viem.AccessList | undefined;
3264
+ authorizationList?: undefined | undefined;
3265
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
3266
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3267
+ maxFeePerBlobGas?: bigint | undefined;
3268
+ maxFeePerGas?: bigint | undefined;
3269
+ maxPriorityFeePerGas?: bigint | undefined;
3270
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
3271
+ } | {
3272
+ accessList?: viem.AccessList | undefined;
3273
+ authorizationList?: undefined | undefined;
3274
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
3275
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3276
+ maxFeePerBlobGas?: bigint | undefined;
3277
+ maxFeePerGas?: bigint | undefined;
3278
+ maxPriorityFeePerGas?: bigint | undefined;
3279
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
3280
+ }) & (viem.ExactPartial<viem.FeeValuesEIP4844> & viem.OneOf<{
3281
+ blobs: viem.TransactionSerializableEIP4844["blobs"];
3282
+ } | {
3283
+ blobVersionedHashes: viem.TransactionSerializableEIP4844["blobVersionedHashes"];
3284
+ } | {
3285
+ sidecars: viem.TransactionSerializableEIP4844["sidecars"];
3286
+ }, viem.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
3287
+ accessList?: viem.AccessList | undefined;
3288
+ authorizationList?: viem.SignedAuthorizationList | undefined;
3289
+ blobs?: undefined | undefined;
3290
+ blobVersionedHashes?: undefined | undefined;
3291
+ gasPrice?: undefined | undefined;
3292
+ maxFeePerBlobGas?: undefined | undefined;
3293
+ maxFeePerGas?: bigint | undefined;
3294
+ maxPriorityFeePerGas?: bigint | undefined;
3295
+ sidecars?: undefined | undefined;
3296
+ } | {
3297
+ accessList?: viem.AccessList | undefined;
3298
+ authorizationList?: viem.SignedAuthorizationList | undefined;
3299
+ blobs?: undefined | undefined;
3300
+ blobVersionedHashes?: undefined | undefined;
3301
+ gasPrice?: undefined | undefined;
3302
+ maxFeePerBlobGas?: undefined | undefined;
3303
+ maxFeePerGas?: bigint | undefined;
3304
+ maxPriorityFeePerGas?: bigint | undefined;
3305
+ sidecars?: undefined | undefined;
3306
+ }) & {
3307
+ authorizationList: viem.TransactionSerializableEIP7702["authorizationList"];
3308
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : viem.GetTransactionType<request, (request extends {
3309
+ accessList?: undefined | undefined;
3310
+ authorizationList?: undefined | undefined;
3311
+ blobs?: undefined | undefined;
3312
+ blobVersionedHashes?: undefined | undefined;
3313
+ gasPrice?: bigint | undefined;
3314
+ sidecars?: undefined | undefined;
3315
+ } & viem.FeeValuesLegacy ? "legacy" : never) | (request extends {
3316
+ accessList?: viem.AccessList | undefined;
3317
+ authorizationList?: undefined | undefined;
3318
+ blobs?: undefined | undefined;
3319
+ blobVersionedHashes?: undefined | undefined;
3320
+ gasPrice?: undefined | undefined;
3321
+ maxFeePerBlobGas?: undefined | undefined;
3322
+ maxFeePerGas?: bigint | undefined;
3323
+ maxPriorityFeePerGas?: bigint | undefined;
3324
+ sidecars?: undefined | undefined;
3325
+ } & (viem.OneOf<{
3326
+ maxFeePerGas: viem.FeeValuesEIP1559["maxFeePerGas"];
3327
+ } | {
3328
+ maxPriorityFeePerGas: viem.FeeValuesEIP1559["maxPriorityFeePerGas"];
3329
+ }, viem.FeeValuesEIP1559> & {
3330
+ accessList?: viem.TransactionSerializableEIP2930["accessList"] | undefined;
3331
+ }) ? "eip1559" : never) | (request extends {
3332
+ accessList?: viem.AccessList | undefined;
3333
+ authorizationList?: undefined | undefined;
3334
+ blobs?: undefined | undefined;
3335
+ blobVersionedHashes?: undefined | undefined;
3336
+ gasPrice?: bigint | undefined;
3337
+ sidecars?: undefined | undefined;
3338
+ maxFeePerBlobGas?: undefined | undefined;
3339
+ maxFeePerGas?: undefined | undefined;
3340
+ maxPriorityFeePerGas?: undefined | undefined;
3341
+ } & {
3342
+ accessList: viem.TransactionSerializableEIP2930["accessList"];
3343
+ } ? "eip2930" : never) | (request extends ({
3344
+ accessList?: viem.AccessList | undefined;
3345
+ authorizationList?: undefined | undefined;
3346
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
3347
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3348
+ maxFeePerBlobGas?: bigint | undefined;
3349
+ maxFeePerGas?: bigint | undefined;
3350
+ maxPriorityFeePerGas?: bigint | undefined;
3351
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
3352
+ } | {
3353
+ accessList?: viem.AccessList | undefined;
3354
+ authorizationList?: undefined | undefined;
3355
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
3356
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3357
+ maxFeePerBlobGas?: bigint | undefined;
3358
+ maxFeePerGas?: bigint | undefined;
3359
+ maxPriorityFeePerGas?: bigint | undefined;
3360
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
3361
+ }) & (viem.ExactPartial<viem.FeeValuesEIP4844> & viem.OneOf<{
3362
+ blobs: viem.TransactionSerializableEIP4844["blobs"];
3363
+ } | {
3364
+ blobVersionedHashes: viem.TransactionSerializableEIP4844["blobVersionedHashes"];
3365
+ } | {
3366
+ sidecars: viem.TransactionSerializableEIP4844["sidecars"];
3367
+ }, viem.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
3368
+ accessList?: viem.AccessList | undefined;
3369
+ authorizationList?: viem.SignedAuthorizationList | undefined;
3370
+ blobs?: undefined | undefined;
3371
+ blobVersionedHashes?: undefined | undefined;
3372
+ gasPrice?: undefined | undefined;
3373
+ maxFeePerBlobGas?: undefined | undefined;
3374
+ maxFeePerGas?: bigint | undefined;
3375
+ maxPriorityFeePerGas?: bigint | undefined;
3376
+ sidecars?: undefined | undefined;
3377
+ } | {
3378
+ accessList?: viem.AccessList | undefined;
3379
+ authorizationList?: viem.SignedAuthorizationList | undefined;
3380
+ blobs?: undefined | undefined;
3381
+ blobVersionedHashes?: undefined | undefined;
3382
+ gasPrice?: undefined | undefined;
3383
+ maxFeePerBlobGas?: undefined | undefined;
3384
+ maxFeePerGas?: bigint | undefined;
3385
+ maxPriorityFeePerGas?: bigint | undefined;
3386
+ sidecars?: undefined | undefined;
3387
+ }) & {
3388
+ authorizationList: viem.TransactionSerializableEIP7702["authorizationList"];
3389
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_11 extends "eip4844" ? viem.TransactionRequestEIP4844 : never : never : never) | ((request["type"] extends string | undefined ? request["type"] : viem.GetTransactionType<request, (request extends {
3390
+ accessList?: undefined | undefined;
3391
+ authorizationList?: undefined | undefined;
3392
+ blobs?: undefined | undefined;
3393
+ blobVersionedHashes?: undefined | undefined;
3394
+ gasPrice?: bigint | undefined;
3395
+ sidecars?: undefined | undefined;
3396
+ } & viem.FeeValuesLegacy ? "legacy" : never) | (request extends {
3397
+ accessList?: viem.AccessList | undefined;
3398
+ authorizationList?: undefined | undefined;
3399
+ blobs?: undefined | undefined;
3400
+ blobVersionedHashes?: undefined | undefined;
3401
+ gasPrice?: undefined | undefined;
3402
+ maxFeePerBlobGas?: undefined | undefined;
3403
+ maxFeePerGas?: bigint | undefined;
3404
+ maxPriorityFeePerGas?: bigint | undefined;
3405
+ sidecars?: undefined | undefined;
3406
+ } & (viem.OneOf<{
3407
+ maxFeePerGas: viem.FeeValuesEIP1559["maxFeePerGas"];
3408
+ } | {
3409
+ maxPriorityFeePerGas: viem.FeeValuesEIP1559["maxPriorityFeePerGas"];
3410
+ }, viem.FeeValuesEIP1559> & {
3411
+ accessList?: viem.TransactionSerializableEIP2930["accessList"] | undefined;
3412
+ }) ? "eip1559" : never) | (request extends {
3413
+ accessList?: viem.AccessList | undefined;
3414
+ authorizationList?: undefined | undefined;
3415
+ blobs?: undefined | undefined;
3416
+ blobVersionedHashes?: undefined | undefined;
3417
+ gasPrice?: bigint | undefined;
3418
+ sidecars?: undefined | undefined;
3419
+ maxFeePerBlobGas?: undefined | undefined;
3420
+ maxFeePerGas?: undefined | undefined;
3421
+ maxPriorityFeePerGas?: undefined | undefined;
3422
+ } & {
3423
+ accessList: viem.TransactionSerializableEIP2930["accessList"];
3424
+ } ? "eip2930" : never) | (request extends ({
3425
+ accessList?: viem.AccessList | undefined;
3426
+ authorizationList?: undefined | undefined;
3427
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
3428
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3429
+ maxFeePerBlobGas?: bigint | undefined;
3430
+ maxFeePerGas?: bigint | undefined;
3431
+ maxPriorityFeePerGas?: bigint | undefined;
3432
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
3433
+ } | {
3434
+ accessList?: viem.AccessList | undefined;
3435
+ authorizationList?: undefined | undefined;
3436
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
3437
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3438
+ maxFeePerBlobGas?: bigint | undefined;
3439
+ maxFeePerGas?: bigint | undefined;
3440
+ maxPriorityFeePerGas?: bigint | undefined;
3441
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
3442
+ }) & (viem.ExactPartial<viem.FeeValuesEIP4844> & viem.OneOf<{
3443
+ blobs: viem.TransactionSerializableEIP4844["blobs"];
3444
+ } | {
3445
+ blobVersionedHashes: viem.TransactionSerializableEIP4844["blobVersionedHashes"];
3446
+ } | {
3447
+ sidecars: viem.TransactionSerializableEIP4844["sidecars"];
3448
+ }, viem.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
3449
+ accessList?: viem.AccessList | undefined;
3450
+ authorizationList?: viem.SignedAuthorizationList | undefined;
3451
+ blobs?: undefined | undefined;
3452
+ blobVersionedHashes?: undefined | undefined;
3453
+ gasPrice?: undefined | undefined;
3454
+ maxFeePerBlobGas?: undefined | undefined;
3455
+ maxFeePerGas?: bigint | undefined;
3456
+ maxPriorityFeePerGas?: bigint | undefined;
3457
+ sidecars?: undefined | undefined;
3458
+ } | {
3459
+ accessList?: viem.AccessList | undefined;
3460
+ authorizationList?: viem.SignedAuthorizationList | undefined;
3461
+ blobs?: undefined | undefined;
3462
+ blobVersionedHashes?: undefined | undefined;
3463
+ gasPrice?: undefined | undefined;
3464
+ maxFeePerBlobGas?: undefined | undefined;
3465
+ maxFeePerGas?: bigint | undefined;
3466
+ maxPriorityFeePerGas?: bigint | undefined;
3467
+ sidecars?: undefined | undefined;
3468
+ }) & {
3469
+ authorizationList: viem.TransactionSerializableEIP7702["authorizationList"];
3470
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : viem.GetTransactionType<request, (request extends {
3471
+ accessList?: undefined | undefined;
3472
+ authorizationList?: undefined | undefined;
3473
+ blobs?: undefined | undefined;
3474
+ blobVersionedHashes?: undefined | undefined;
3475
+ gasPrice?: bigint | undefined;
3476
+ sidecars?: undefined | undefined;
3477
+ } & viem.FeeValuesLegacy ? "legacy" : never) | (request extends {
3478
+ accessList?: viem.AccessList | undefined;
3479
+ authorizationList?: undefined | undefined;
3480
+ blobs?: undefined | undefined;
3481
+ blobVersionedHashes?: undefined | undefined;
3482
+ gasPrice?: undefined | undefined;
3483
+ maxFeePerBlobGas?: undefined | undefined;
3484
+ maxFeePerGas?: bigint | undefined;
3485
+ maxPriorityFeePerGas?: bigint | undefined;
3486
+ sidecars?: undefined | undefined;
3487
+ } & (viem.OneOf<{
3488
+ maxFeePerGas: viem.FeeValuesEIP1559["maxFeePerGas"];
3489
+ } | {
3490
+ maxPriorityFeePerGas: viem.FeeValuesEIP1559["maxPriorityFeePerGas"];
3491
+ }, viem.FeeValuesEIP1559> & {
3492
+ accessList?: viem.TransactionSerializableEIP2930["accessList"] | undefined;
3493
+ }) ? "eip1559" : never) | (request extends {
3494
+ accessList?: viem.AccessList | undefined;
3495
+ authorizationList?: undefined | undefined;
3496
+ blobs?: undefined | undefined;
3497
+ blobVersionedHashes?: undefined | undefined;
3498
+ gasPrice?: bigint | undefined;
3499
+ sidecars?: undefined | undefined;
3500
+ maxFeePerBlobGas?: undefined | undefined;
3501
+ maxFeePerGas?: undefined | undefined;
3502
+ maxPriorityFeePerGas?: undefined | undefined;
3503
+ } & {
3504
+ accessList: viem.TransactionSerializableEIP2930["accessList"];
3505
+ } ? "eip2930" : never) | (request extends ({
3506
+ accessList?: viem.AccessList | undefined;
3507
+ authorizationList?: undefined | undefined;
3508
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
3509
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3510
+ maxFeePerBlobGas?: bigint | undefined;
3511
+ maxFeePerGas?: bigint | undefined;
3512
+ maxPriorityFeePerGas?: bigint | undefined;
3513
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
3514
+ } | {
3515
+ accessList?: viem.AccessList | undefined;
3516
+ authorizationList?: undefined | undefined;
3517
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
3518
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3519
+ maxFeePerBlobGas?: bigint | undefined;
3520
+ maxFeePerGas?: bigint | undefined;
3521
+ maxPriorityFeePerGas?: bigint | undefined;
3522
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
3523
+ }) & (viem.ExactPartial<viem.FeeValuesEIP4844> & viem.OneOf<{
3524
+ blobs: viem.TransactionSerializableEIP4844["blobs"];
3525
+ } | {
3526
+ blobVersionedHashes: viem.TransactionSerializableEIP4844["blobVersionedHashes"];
3527
+ } | {
3528
+ sidecars: viem.TransactionSerializableEIP4844["sidecars"];
3529
+ }, viem.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
3530
+ accessList?: viem.AccessList | undefined;
3531
+ authorizationList?: viem.SignedAuthorizationList | undefined;
3532
+ blobs?: undefined | undefined;
3533
+ blobVersionedHashes?: undefined | undefined;
3534
+ gasPrice?: undefined | undefined;
3535
+ maxFeePerBlobGas?: undefined | undefined;
3536
+ maxFeePerGas?: bigint | undefined;
3537
+ maxPriorityFeePerGas?: bigint | undefined;
3538
+ sidecars?: undefined | undefined;
3539
+ } | {
3540
+ accessList?: viem.AccessList | undefined;
3541
+ authorizationList?: viem.SignedAuthorizationList | undefined;
3542
+ blobs?: undefined | undefined;
3543
+ blobVersionedHashes?: undefined | undefined;
3544
+ gasPrice?: undefined | undefined;
3545
+ maxFeePerBlobGas?: undefined | undefined;
3546
+ maxFeePerGas?: bigint | undefined;
3547
+ maxPriorityFeePerGas?: bigint | undefined;
3548
+ sidecars?: undefined | undefined;
3549
+ }) & {
3550
+ authorizationList: viem.TransactionSerializableEIP7702["authorizationList"];
3551
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) extends infer T_12 ? T_12 extends (request["type"] extends string | undefined ? request["type"] : viem.GetTransactionType<request, (request extends {
3552
+ accessList?: undefined | undefined;
3553
+ authorizationList?: undefined | undefined;
3554
+ blobs?: undefined | undefined;
3555
+ blobVersionedHashes?: undefined | undefined;
3556
+ gasPrice?: bigint | undefined;
3557
+ sidecars?: undefined | undefined;
3558
+ } & viem.FeeValuesLegacy ? "legacy" : never) | (request extends {
3559
+ accessList?: viem.AccessList | undefined;
3560
+ authorizationList?: undefined | undefined;
3561
+ blobs?: undefined | undefined;
3562
+ blobVersionedHashes?: undefined | undefined;
3563
+ gasPrice?: undefined | undefined;
3564
+ maxFeePerBlobGas?: undefined | undefined;
3565
+ maxFeePerGas?: bigint | undefined;
3566
+ maxPriorityFeePerGas?: bigint | undefined;
3567
+ sidecars?: undefined | undefined;
3568
+ } & (viem.OneOf<{
3569
+ maxFeePerGas: viem.FeeValuesEIP1559["maxFeePerGas"];
3570
+ } | {
3571
+ maxPriorityFeePerGas: viem.FeeValuesEIP1559["maxPriorityFeePerGas"];
3572
+ }, viem.FeeValuesEIP1559> & {
3573
+ accessList?: viem.TransactionSerializableEIP2930["accessList"] | undefined;
3574
+ }) ? "eip1559" : never) | (request extends {
3575
+ accessList?: viem.AccessList | undefined;
3576
+ authorizationList?: undefined | undefined;
3577
+ blobs?: undefined | undefined;
3578
+ blobVersionedHashes?: undefined | undefined;
3579
+ gasPrice?: bigint | undefined;
3580
+ sidecars?: undefined | undefined;
3581
+ maxFeePerBlobGas?: undefined | undefined;
3582
+ maxFeePerGas?: undefined | undefined;
3583
+ maxPriorityFeePerGas?: undefined | undefined;
3584
+ } & {
3585
+ accessList: viem.TransactionSerializableEIP2930["accessList"];
3586
+ } ? "eip2930" : never) | (request extends ({
3587
+ accessList?: viem.AccessList | undefined;
3588
+ authorizationList?: undefined | undefined;
3589
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
3590
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3591
+ maxFeePerBlobGas?: bigint | undefined;
3592
+ maxFeePerGas?: bigint | undefined;
3593
+ maxPriorityFeePerGas?: bigint | undefined;
3594
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
3595
+ } | {
3596
+ accessList?: viem.AccessList | undefined;
3597
+ authorizationList?: undefined | undefined;
3598
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
3599
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3600
+ maxFeePerBlobGas?: bigint | undefined;
3601
+ maxFeePerGas?: bigint | undefined;
3602
+ maxPriorityFeePerGas?: bigint | undefined;
3603
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
3604
+ }) & (viem.ExactPartial<viem.FeeValuesEIP4844> & viem.OneOf<{
3605
+ blobs: viem.TransactionSerializableEIP4844["blobs"];
3606
+ } | {
3607
+ blobVersionedHashes: viem.TransactionSerializableEIP4844["blobVersionedHashes"];
3608
+ } | {
3609
+ sidecars: viem.TransactionSerializableEIP4844["sidecars"];
3610
+ }, viem.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
3611
+ accessList?: viem.AccessList | undefined;
3612
+ authorizationList?: viem.SignedAuthorizationList | undefined;
3613
+ blobs?: undefined | undefined;
3614
+ blobVersionedHashes?: undefined | undefined;
3615
+ gasPrice?: undefined | undefined;
3616
+ maxFeePerBlobGas?: undefined | undefined;
3617
+ maxFeePerGas?: bigint | undefined;
3618
+ maxPriorityFeePerGas?: bigint | undefined;
3619
+ sidecars?: undefined | undefined;
3620
+ } | {
3621
+ accessList?: viem.AccessList | undefined;
3622
+ authorizationList?: viem.SignedAuthorizationList | undefined;
3623
+ blobs?: undefined | undefined;
3624
+ blobVersionedHashes?: undefined | undefined;
3625
+ gasPrice?: undefined | undefined;
3626
+ maxFeePerBlobGas?: undefined | undefined;
3627
+ maxFeePerGas?: bigint | undefined;
3628
+ maxPriorityFeePerGas?: bigint | undefined;
3629
+ sidecars?: undefined | undefined;
3630
+ }) & {
3631
+ authorizationList: viem.TransactionSerializableEIP7702["authorizationList"];
3632
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : viem.GetTransactionType<request, (request extends {
3633
+ accessList?: undefined | undefined;
3634
+ authorizationList?: undefined | undefined;
3635
+ blobs?: undefined | undefined;
3636
+ blobVersionedHashes?: undefined | undefined;
3637
+ gasPrice?: bigint | undefined;
3638
+ sidecars?: undefined | undefined;
3639
+ } & viem.FeeValuesLegacy ? "legacy" : never) | (request extends {
3640
+ accessList?: viem.AccessList | undefined;
3641
+ authorizationList?: undefined | undefined;
3642
+ blobs?: undefined | undefined;
3643
+ blobVersionedHashes?: undefined | undefined;
3644
+ gasPrice?: undefined | undefined;
3645
+ maxFeePerBlobGas?: undefined | undefined;
3646
+ maxFeePerGas?: bigint | undefined;
3647
+ maxPriorityFeePerGas?: bigint | undefined;
3648
+ sidecars?: undefined | undefined;
3649
+ } & (viem.OneOf<{
3650
+ maxFeePerGas: viem.FeeValuesEIP1559["maxFeePerGas"];
3651
+ } | {
3652
+ maxPriorityFeePerGas: viem.FeeValuesEIP1559["maxPriorityFeePerGas"];
3653
+ }, viem.FeeValuesEIP1559> & {
3654
+ accessList?: viem.TransactionSerializableEIP2930["accessList"] | undefined;
3655
+ }) ? "eip1559" : never) | (request extends {
3656
+ accessList?: viem.AccessList | undefined;
3657
+ authorizationList?: undefined | undefined;
3658
+ blobs?: undefined | undefined;
3659
+ blobVersionedHashes?: undefined | undefined;
3660
+ gasPrice?: bigint | undefined;
3661
+ sidecars?: undefined | undefined;
3662
+ maxFeePerBlobGas?: undefined | undefined;
3663
+ maxFeePerGas?: undefined | undefined;
3664
+ maxPriorityFeePerGas?: undefined | undefined;
3665
+ } & {
3666
+ accessList: viem.TransactionSerializableEIP2930["accessList"];
3667
+ } ? "eip2930" : never) | (request extends ({
3668
+ accessList?: viem.AccessList | undefined;
3669
+ authorizationList?: undefined | undefined;
3670
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
3671
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3672
+ maxFeePerBlobGas?: bigint | undefined;
3673
+ maxFeePerGas?: bigint | undefined;
3674
+ maxPriorityFeePerGas?: bigint | undefined;
3675
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
3676
+ } | {
3677
+ accessList?: viem.AccessList | undefined;
3678
+ authorizationList?: undefined | undefined;
3679
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
3680
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3681
+ maxFeePerBlobGas?: bigint | undefined;
3682
+ maxFeePerGas?: bigint | undefined;
3683
+ maxPriorityFeePerGas?: bigint | undefined;
3684
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
3685
+ }) & (viem.ExactPartial<viem.FeeValuesEIP4844> & viem.OneOf<{
3686
+ blobs: viem.TransactionSerializableEIP4844["blobs"];
3687
+ } | {
3688
+ blobVersionedHashes: viem.TransactionSerializableEIP4844["blobVersionedHashes"];
3689
+ } | {
3690
+ sidecars: viem.TransactionSerializableEIP4844["sidecars"];
3691
+ }, viem.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
3692
+ accessList?: viem.AccessList | undefined;
3693
+ authorizationList?: viem.SignedAuthorizationList | undefined;
3694
+ blobs?: undefined | undefined;
3695
+ blobVersionedHashes?: undefined | undefined;
3696
+ gasPrice?: undefined | undefined;
3697
+ maxFeePerBlobGas?: undefined | undefined;
3698
+ maxFeePerGas?: bigint | undefined;
3699
+ maxPriorityFeePerGas?: bigint | undefined;
3700
+ sidecars?: undefined | undefined;
3701
+ } | {
3702
+ accessList?: viem.AccessList | undefined;
3703
+ authorizationList?: viem.SignedAuthorizationList | undefined;
3704
+ blobs?: undefined | undefined;
3705
+ blobVersionedHashes?: undefined | undefined;
3706
+ gasPrice?: undefined | undefined;
3707
+ maxFeePerBlobGas?: undefined | undefined;
3708
+ maxFeePerGas?: bigint | undefined;
3709
+ maxPriorityFeePerGas?: bigint | undefined;
3710
+ sidecars?: undefined | undefined;
3711
+ }) & {
3712
+ authorizationList: viem.TransactionSerializableEIP7702["authorizationList"];
3713
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_12 extends "eip7702" ? viem.TransactionRequestEIP7702 : never : never : never)>> & {
3714
+ chainId?: number | undefined;
3715
+ }, (request["parameters"] extends readonly viem.PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "chainId" | "type" | "gas" | "nonce" | "blobVersionedHashes" | "fees") extends infer T_13 ? T_13 extends (request["parameters"] extends readonly viem.PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "chainId" | "type" | "gas" | "nonce" | "blobVersionedHashes" | "fees") ? T_13 extends "fees" ? "gasPrice" | "maxFeePerGas" | "maxPriorityFeePerGas" : T_13 : never : never> & (unknown extends request["kzg"] ? {} : Pick<request, "kzg">) extends infer T ? { [K in keyof T]: T[K]; } : never>;
3716
+ requestAddresses: () => Promise<viem.RequestAddressesReturnType>;
3717
+ requestPermissions: (args: viem.RequestPermissionsParameters) => Promise<viem.RequestPermissionsReturnType>;
3718
+ sendCalls: <const calls extends readonly unknown[], chainOverride extends viem.Chain | undefined = undefined>(parameters: viem.SendCallsParameters<viem.Chain | undefined, viem.Account | undefined, chainOverride, calls>) => Promise<{
3719
+ capabilities?: {
3720
+ [x: string]: any;
3721
+ } | undefined;
3722
+ id: string;
3723
+ }>;
3724
+ sendCallsSync: <const calls extends readonly unknown[], chainOverride extends viem.Chain | undefined = undefined>(parameters: viem.SendCallsSyncParameters<viem.Chain | undefined, viem.Account | undefined, chainOverride, calls>) => Promise<{
3725
+ chainId: number;
3726
+ version: string;
3727
+ atomic: boolean;
3728
+ capabilities?: {
3729
+ [key: string]: any;
3730
+ } | {
3731
+ [x: string]: any;
3732
+ } | undefined;
3733
+ id: string;
3734
+ receipts?: viem.WalletCallReceipt<bigint, "success" | "reverted">[] | undefined;
3735
+ statusCode: number;
3736
+ status: "pending" | "success" | "failure" | undefined;
3737
+ }>;
3738
+ sendRawTransaction: (args: viem.SendRawTransactionParameters) => Promise<viem.SendRawTransactionReturnType>;
3739
+ sendRawTransactionSync: (args: viem.SendRawTransactionSyncParameters) => Promise<viem.TransactionReceipt>;
3740
+ sendTransaction: <const request extends viem.SendTransactionRequest<viem.Chain | undefined, chainOverride>, chainOverride extends viem.Chain | undefined = undefined>(args: viem.SendTransactionParameters<viem.Chain | undefined, viem.Account | undefined, chainOverride, request>) => Promise<viem.SendTransactionReturnType>;
3741
+ sendTransactionSync: <const request extends viem.SendTransactionSyncRequest<viem.Chain | undefined, chainOverride>, chainOverride extends viem.Chain | undefined = undefined>(args: viem.SendTransactionSyncParameters<viem.Chain | undefined, viem.Account | undefined, chainOverride, request>) => Promise<viem.TransactionReceipt>;
3742
+ showCallsStatus: (parameters: viem.ShowCallsStatusParameters) => Promise<viem.ShowCallsStatusReturnType>;
3743
+ signAuthorization: (parameters: viem.SignAuthorizationParameters<viem.Account | undefined>) => Promise<viem.SignAuthorizationReturnType>;
3744
+ signMessage: (args: viem.SignMessageParameters<viem.Account | undefined>) => Promise<viem.SignMessageReturnType>;
3745
+ signTransaction: <chainOverride extends viem.Chain | undefined, const request extends viem.UnionOmit<viem.ExtractChainFormatterParameters<viem.DeriveChain<viem.Chain | undefined, chainOverride>, "transactionRequest", viem.TransactionRequest>, "from"> = viem.UnionOmit<viem.ExtractChainFormatterParameters<viem.DeriveChain<viem.Chain | undefined, chainOverride>, "transactionRequest", viem.TransactionRequest>, "from">>(args: viem.SignTransactionParameters<viem.Chain | undefined, viem.Account | undefined, chainOverride, request>) => Promise<viem.TransactionSerialized<viem.GetTransactionType<request, (request extends {
3746
+ accessList?: undefined | undefined;
3747
+ authorizationList?: undefined | undefined;
3748
+ blobs?: undefined | undefined;
3749
+ blobVersionedHashes?: undefined | undefined;
3750
+ gasPrice?: bigint | undefined;
3751
+ sidecars?: undefined | undefined;
3752
+ } & viem.FeeValuesLegacy ? "legacy" : never) | (request extends {
3753
+ accessList?: viem.AccessList | undefined;
3754
+ authorizationList?: undefined | undefined;
3755
+ blobs?: undefined | undefined;
3756
+ blobVersionedHashes?: undefined | undefined;
3757
+ gasPrice?: undefined | undefined;
3758
+ maxFeePerBlobGas?: undefined | undefined;
3759
+ maxFeePerGas?: bigint | undefined;
3760
+ maxPriorityFeePerGas?: bigint | undefined;
3761
+ sidecars?: undefined | undefined;
3762
+ } & (viem.OneOf<{
3763
+ maxFeePerGas: viem.FeeValuesEIP1559["maxFeePerGas"];
3764
+ } | {
3765
+ maxPriorityFeePerGas: viem.FeeValuesEIP1559["maxPriorityFeePerGas"];
3766
+ }, viem.FeeValuesEIP1559> & {
3767
+ accessList?: viem.TransactionSerializableEIP2930["accessList"] | undefined;
3768
+ }) ? "eip1559" : never) | (request extends {
3769
+ accessList?: viem.AccessList | undefined;
3770
+ authorizationList?: undefined | undefined;
3771
+ blobs?: undefined | undefined;
3772
+ blobVersionedHashes?: undefined | undefined;
3773
+ gasPrice?: bigint | undefined;
3774
+ sidecars?: undefined | undefined;
3775
+ maxFeePerBlobGas?: undefined | undefined;
3776
+ maxFeePerGas?: undefined | undefined;
3777
+ maxPriorityFeePerGas?: undefined | undefined;
3778
+ } & {
3779
+ accessList: viem.TransactionSerializableEIP2930["accessList"];
3780
+ } ? "eip2930" : never) | (request extends ({
3781
+ accessList?: viem.AccessList | undefined;
3782
+ authorizationList?: undefined | undefined;
3783
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
3784
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3785
+ maxFeePerBlobGas?: bigint | undefined;
3786
+ maxFeePerGas?: bigint | undefined;
3787
+ maxPriorityFeePerGas?: bigint | undefined;
3788
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
3789
+ } | {
3790
+ accessList?: viem.AccessList | undefined;
3791
+ authorizationList?: undefined | undefined;
3792
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
3793
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3794
+ maxFeePerBlobGas?: bigint | undefined;
3795
+ maxFeePerGas?: bigint | undefined;
3796
+ maxPriorityFeePerGas?: bigint | undefined;
3797
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
3798
+ }) & (viem.ExactPartial<viem.FeeValuesEIP4844> & viem.OneOf<{
3799
+ blobs: viem.TransactionSerializableEIP4844["blobs"];
3800
+ } | {
3801
+ blobVersionedHashes: viem.TransactionSerializableEIP4844["blobVersionedHashes"];
3802
+ } | {
3803
+ sidecars: viem.TransactionSerializableEIP4844["sidecars"];
3804
+ }, viem.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
3805
+ accessList?: viem.AccessList | undefined;
3806
+ authorizationList?: viem.SignedAuthorizationList | undefined;
3807
+ blobs?: undefined | undefined;
3808
+ blobVersionedHashes?: undefined | undefined;
3809
+ gasPrice?: undefined | undefined;
3810
+ maxFeePerBlobGas?: undefined | undefined;
3811
+ maxFeePerGas?: bigint | undefined;
3812
+ maxPriorityFeePerGas?: bigint | undefined;
3813
+ sidecars?: undefined | undefined;
3814
+ } | {
3815
+ accessList?: viem.AccessList | undefined;
3816
+ authorizationList?: viem.SignedAuthorizationList | undefined;
3817
+ blobs?: undefined | undefined;
3818
+ blobVersionedHashes?: undefined | undefined;
3819
+ gasPrice?: undefined | undefined;
3820
+ maxFeePerBlobGas?: undefined | undefined;
3821
+ maxFeePerGas?: bigint | undefined;
3822
+ maxPriorityFeePerGas?: bigint | undefined;
3823
+ sidecars?: undefined | undefined;
3824
+ }) & {
3825
+ authorizationList: viem.TransactionSerializableEIP7702["authorizationList"];
3826
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>, (viem.GetTransactionType<request, (request extends {
3827
+ accessList?: undefined | undefined;
3828
+ authorizationList?: undefined | undefined;
3829
+ blobs?: undefined | undefined;
3830
+ blobVersionedHashes?: undefined | undefined;
3831
+ gasPrice?: bigint | undefined;
3832
+ sidecars?: undefined | undefined;
3833
+ } & viem.FeeValuesLegacy ? "legacy" : never) | (request extends {
3834
+ accessList?: viem.AccessList | undefined;
3835
+ authorizationList?: undefined | undefined;
3836
+ blobs?: undefined | undefined;
3837
+ blobVersionedHashes?: undefined | undefined;
3838
+ gasPrice?: undefined | undefined;
3839
+ maxFeePerBlobGas?: undefined | undefined;
3840
+ maxFeePerGas?: bigint | undefined;
3841
+ maxPriorityFeePerGas?: bigint | undefined;
3842
+ sidecars?: undefined | undefined;
3843
+ } & (viem.OneOf<{
3844
+ maxFeePerGas: viem.FeeValuesEIP1559["maxFeePerGas"];
3845
+ } | {
3846
+ maxPriorityFeePerGas: viem.FeeValuesEIP1559["maxPriorityFeePerGas"];
3847
+ }, viem.FeeValuesEIP1559> & {
3848
+ accessList?: viem.TransactionSerializableEIP2930["accessList"] | undefined;
3849
+ }) ? "eip1559" : never) | (request extends {
3850
+ accessList?: viem.AccessList | undefined;
3851
+ authorizationList?: undefined | undefined;
3852
+ blobs?: undefined | undefined;
3853
+ blobVersionedHashes?: undefined | undefined;
3854
+ gasPrice?: bigint | undefined;
3855
+ sidecars?: undefined | undefined;
3856
+ maxFeePerBlobGas?: undefined | undefined;
3857
+ maxFeePerGas?: undefined | undefined;
3858
+ maxPriorityFeePerGas?: undefined | undefined;
3859
+ } & {
3860
+ accessList: viem.TransactionSerializableEIP2930["accessList"];
3861
+ } ? "eip2930" : never) | (request extends ({
3862
+ accessList?: viem.AccessList | undefined;
3863
+ authorizationList?: undefined | undefined;
3864
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
3865
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3866
+ maxFeePerBlobGas?: bigint | undefined;
3867
+ maxFeePerGas?: bigint | undefined;
3868
+ maxPriorityFeePerGas?: bigint | undefined;
3869
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
3870
+ } | {
3871
+ accessList?: viem.AccessList | undefined;
3872
+ authorizationList?: undefined | undefined;
3873
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
3874
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3875
+ maxFeePerBlobGas?: bigint | undefined;
3876
+ maxFeePerGas?: bigint | undefined;
3877
+ maxPriorityFeePerGas?: bigint | undefined;
3878
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
3879
+ }) & (viem.ExactPartial<viem.FeeValuesEIP4844> & viem.OneOf<{
3880
+ blobs: viem.TransactionSerializableEIP4844["blobs"];
3881
+ } | {
3882
+ blobVersionedHashes: viem.TransactionSerializableEIP4844["blobVersionedHashes"];
3883
+ } | {
3884
+ sidecars: viem.TransactionSerializableEIP4844["sidecars"];
3885
+ }, viem.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
3886
+ accessList?: viem.AccessList | undefined;
3887
+ authorizationList?: viem.SignedAuthorizationList | undefined;
3888
+ blobs?: undefined | undefined;
3889
+ blobVersionedHashes?: undefined | undefined;
3890
+ gasPrice?: undefined | undefined;
3891
+ maxFeePerBlobGas?: undefined | undefined;
3892
+ maxFeePerGas?: bigint | undefined;
3893
+ maxPriorityFeePerGas?: bigint | undefined;
3894
+ sidecars?: undefined | undefined;
3895
+ } | {
3896
+ accessList?: viem.AccessList | undefined;
3897
+ authorizationList?: viem.SignedAuthorizationList | undefined;
3898
+ blobs?: undefined | undefined;
3899
+ blobVersionedHashes?: undefined | undefined;
3900
+ gasPrice?: undefined | undefined;
3901
+ maxFeePerBlobGas?: undefined | undefined;
3902
+ maxFeePerGas?: bigint | undefined;
3903
+ maxPriorityFeePerGas?: bigint | undefined;
3904
+ sidecars?: undefined | undefined;
3905
+ }) & {
3906
+ authorizationList: viem.TransactionSerializableEIP7702["authorizationList"];
3907
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends infer T ? T extends viem.GetTransactionType<request, (request extends {
3908
+ accessList?: undefined | undefined;
3909
+ authorizationList?: undefined | undefined;
3910
+ blobs?: undefined | undefined;
3911
+ blobVersionedHashes?: undefined | undefined;
3912
+ gasPrice?: bigint | undefined;
3913
+ sidecars?: undefined | undefined;
3914
+ } & viem.FeeValuesLegacy ? "legacy" : never) | (request extends {
3915
+ accessList?: viem.AccessList | undefined;
3916
+ authorizationList?: undefined | undefined;
3917
+ blobs?: undefined | undefined;
3918
+ blobVersionedHashes?: undefined | undefined;
3919
+ gasPrice?: undefined | undefined;
3920
+ maxFeePerBlobGas?: undefined | undefined;
3921
+ maxFeePerGas?: bigint | undefined;
3922
+ maxPriorityFeePerGas?: bigint | undefined;
3923
+ sidecars?: undefined | undefined;
3924
+ } & (viem.OneOf<{
3925
+ maxFeePerGas: viem.FeeValuesEIP1559["maxFeePerGas"];
3926
+ } | {
3927
+ maxPriorityFeePerGas: viem.FeeValuesEIP1559["maxPriorityFeePerGas"];
3928
+ }, viem.FeeValuesEIP1559> & {
3929
+ accessList?: viem.TransactionSerializableEIP2930["accessList"] | undefined;
3930
+ }) ? "eip1559" : never) | (request extends {
3931
+ accessList?: viem.AccessList | undefined;
3932
+ authorizationList?: undefined | undefined;
3933
+ blobs?: undefined | undefined;
3934
+ blobVersionedHashes?: undefined | undefined;
3935
+ gasPrice?: bigint | undefined;
3936
+ sidecars?: undefined | undefined;
3937
+ maxFeePerBlobGas?: undefined | undefined;
3938
+ maxFeePerGas?: undefined | undefined;
3939
+ maxPriorityFeePerGas?: undefined | undefined;
3940
+ } & {
3941
+ accessList: viem.TransactionSerializableEIP2930["accessList"];
3942
+ } ? "eip2930" : never) | (request extends ({
3943
+ accessList?: viem.AccessList | undefined;
3944
+ authorizationList?: undefined | undefined;
3945
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
3946
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3947
+ maxFeePerBlobGas?: bigint | undefined;
3948
+ maxFeePerGas?: bigint | undefined;
3949
+ maxPriorityFeePerGas?: bigint | undefined;
3950
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
3951
+ } | {
3952
+ accessList?: viem.AccessList | undefined;
3953
+ authorizationList?: undefined | undefined;
3954
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
3955
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3956
+ maxFeePerBlobGas?: bigint | undefined;
3957
+ maxFeePerGas?: bigint | undefined;
3958
+ maxPriorityFeePerGas?: bigint | undefined;
3959
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
3960
+ }) & (viem.ExactPartial<viem.FeeValuesEIP4844> & viem.OneOf<{
3961
+ blobs: viem.TransactionSerializableEIP4844["blobs"];
3962
+ } | {
3963
+ blobVersionedHashes: viem.TransactionSerializableEIP4844["blobVersionedHashes"];
3964
+ } | {
3965
+ sidecars: viem.TransactionSerializableEIP4844["sidecars"];
3966
+ }, viem.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
3967
+ accessList?: viem.AccessList | undefined;
3968
+ authorizationList?: viem.SignedAuthorizationList | undefined;
3969
+ blobs?: undefined | undefined;
3970
+ blobVersionedHashes?: undefined | undefined;
3971
+ gasPrice?: undefined | undefined;
3972
+ maxFeePerBlobGas?: undefined | undefined;
3973
+ maxFeePerGas?: bigint | undefined;
3974
+ maxPriorityFeePerGas?: bigint | undefined;
3975
+ sidecars?: undefined | undefined;
3976
+ } | {
3977
+ accessList?: viem.AccessList | undefined;
3978
+ authorizationList?: viem.SignedAuthorizationList | undefined;
3979
+ blobs?: undefined | undefined;
3980
+ blobVersionedHashes?: undefined | undefined;
3981
+ gasPrice?: undefined | undefined;
3982
+ maxFeePerBlobGas?: undefined | undefined;
3983
+ maxFeePerGas?: bigint | undefined;
3984
+ maxPriorityFeePerGas?: bigint | undefined;
3985
+ sidecars?: undefined | undefined;
3986
+ }) & {
3987
+ authorizationList: viem.TransactionSerializableEIP7702["authorizationList"];
3988
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> ? T extends "eip1559" ? `0x02${string}` : never : never : never) | (viem.GetTransactionType<request, (request extends {
3989
+ accessList?: undefined | undefined;
3990
+ authorizationList?: undefined | undefined;
3991
+ blobs?: undefined | undefined;
3992
+ blobVersionedHashes?: undefined | undefined;
3993
+ gasPrice?: bigint | undefined;
3994
+ sidecars?: undefined | undefined;
3995
+ } & viem.FeeValuesLegacy ? "legacy" : never) | (request extends {
3996
+ accessList?: viem.AccessList | undefined;
3997
+ authorizationList?: undefined | undefined;
3998
+ blobs?: undefined | undefined;
3999
+ blobVersionedHashes?: undefined | undefined;
4000
+ gasPrice?: undefined | undefined;
4001
+ maxFeePerBlobGas?: undefined | undefined;
4002
+ maxFeePerGas?: bigint | undefined;
4003
+ maxPriorityFeePerGas?: bigint | undefined;
4004
+ sidecars?: undefined | undefined;
4005
+ } & (viem.OneOf<{
4006
+ maxFeePerGas: viem.FeeValuesEIP1559["maxFeePerGas"];
4007
+ } | {
4008
+ maxPriorityFeePerGas: viem.FeeValuesEIP1559["maxPriorityFeePerGas"];
4009
+ }, viem.FeeValuesEIP1559> & {
4010
+ accessList?: viem.TransactionSerializableEIP2930["accessList"] | undefined;
4011
+ }) ? "eip1559" : never) | (request extends {
4012
+ accessList?: viem.AccessList | undefined;
4013
+ authorizationList?: undefined | undefined;
4014
+ blobs?: undefined | undefined;
4015
+ blobVersionedHashes?: undefined | undefined;
4016
+ gasPrice?: bigint | undefined;
4017
+ sidecars?: undefined | undefined;
4018
+ maxFeePerBlobGas?: undefined | undefined;
4019
+ maxFeePerGas?: undefined | undefined;
4020
+ maxPriorityFeePerGas?: undefined | undefined;
4021
+ } & {
4022
+ accessList: viem.TransactionSerializableEIP2930["accessList"];
4023
+ } ? "eip2930" : never) | (request extends ({
4024
+ accessList?: viem.AccessList | undefined;
4025
+ authorizationList?: undefined | undefined;
4026
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
4027
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
4028
+ maxFeePerBlobGas?: bigint | undefined;
4029
+ maxFeePerGas?: bigint | undefined;
4030
+ maxPriorityFeePerGas?: bigint | undefined;
4031
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
4032
+ } | {
4033
+ accessList?: viem.AccessList | undefined;
4034
+ authorizationList?: undefined | undefined;
4035
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
4036
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
4037
+ maxFeePerBlobGas?: bigint | undefined;
4038
+ maxFeePerGas?: bigint | undefined;
4039
+ maxPriorityFeePerGas?: bigint | undefined;
4040
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
4041
+ }) & (viem.ExactPartial<viem.FeeValuesEIP4844> & viem.OneOf<{
4042
+ blobs: viem.TransactionSerializableEIP4844["blobs"];
4043
+ } | {
4044
+ blobVersionedHashes: viem.TransactionSerializableEIP4844["blobVersionedHashes"];
4045
+ } | {
4046
+ sidecars: viem.TransactionSerializableEIP4844["sidecars"];
4047
+ }, viem.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
4048
+ accessList?: viem.AccessList | undefined;
4049
+ authorizationList?: viem.SignedAuthorizationList | undefined;
4050
+ blobs?: undefined | undefined;
4051
+ blobVersionedHashes?: undefined | undefined;
4052
+ gasPrice?: undefined | undefined;
4053
+ maxFeePerBlobGas?: undefined | undefined;
4054
+ maxFeePerGas?: bigint | undefined;
4055
+ maxPriorityFeePerGas?: bigint | undefined;
4056
+ sidecars?: undefined | undefined;
4057
+ } | {
4058
+ accessList?: viem.AccessList | undefined;
4059
+ authorizationList?: viem.SignedAuthorizationList | undefined;
4060
+ blobs?: undefined | undefined;
4061
+ blobVersionedHashes?: undefined | undefined;
4062
+ gasPrice?: undefined | undefined;
4063
+ maxFeePerBlobGas?: undefined | undefined;
4064
+ maxFeePerGas?: bigint | undefined;
4065
+ maxPriorityFeePerGas?: bigint | undefined;
4066
+ sidecars?: undefined | undefined;
4067
+ }) & {
4068
+ authorizationList: viem.TransactionSerializableEIP7702["authorizationList"];
4069
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends infer T_1 ? T_1 extends viem.GetTransactionType<request, (request extends {
4070
+ accessList?: undefined | undefined;
4071
+ authorizationList?: undefined | undefined;
4072
+ blobs?: undefined | undefined;
4073
+ blobVersionedHashes?: undefined | undefined;
4074
+ gasPrice?: bigint | undefined;
4075
+ sidecars?: undefined | undefined;
4076
+ } & viem.FeeValuesLegacy ? "legacy" : never) | (request extends {
4077
+ accessList?: viem.AccessList | undefined;
4078
+ authorizationList?: undefined | undefined;
4079
+ blobs?: undefined | undefined;
4080
+ blobVersionedHashes?: undefined | undefined;
4081
+ gasPrice?: undefined | undefined;
4082
+ maxFeePerBlobGas?: undefined | undefined;
4083
+ maxFeePerGas?: bigint | undefined;
4084
+ maxPriorityFeePerGas?: bigint | undefined;
4085
+ sidecars?: undefined | undefined;
4086
+ } & (viem.OneOf<{
4087
+ maxFeePerGas: viem.FeeValuesEIP1559["maxFeePerGas"];
4088
+ } | {
4089
+ maxPriorityFeePerGas: viem.FeeValuesEIP1559["maxPriorityFeePerGas"];
4090
+ }, viem.FeeValuesEIP1559> & {
4091
+ accessList?: viem.TransactionSerializableEIP2930["accessList"] | undefined;
4092
+ }) ? "eip1559" : never) | (request extends {
4093
+ accessList?: viem.AccessList | undefined;
4094
+ authorizationList?: undefined | undefined;
4095
+ blobs?: undefined | undefined;
4096
+ blobVersionedHashes?: undefined | undefined;
4097
+ gasPrice?: bigint | undefined;
4098
+ sidecars?: undefined | undefined;
4099
+ maxFeePerBlobGas?: undefined | undefined;
4100
+ maxFeePerGas?: undefined | undefined;
4101
+ maxPriorityFeePerGas?: undefined | undefined;
4102
+ } & {
4103
+ accessList: viem.TransactionSerializableEIP2930["accessList"];
4104
+ } ? "eip2930" : never) | (request extends ({
4105
+ accessList?: viem.AccessList | undefined;
4106
+ authorizationList?: undefined | undefined;
4107
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
4108
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
4109
+ maxFeePerBlobGas?: bigint | undefined;
4110
+ maxFeePerGas?: bigint | undefined;
4111
+ maxPriorityFeePerGas?: bigint | undefined;
4112
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
4113
+ } | {
4114
+ accessList?: viem.AccessList | undefined;
4115
+ authorizationList?: undefined | undefined;
4116
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
4117
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
4118
+ maxFeePerBlobGas?: bigint | undefined;
4119
+ maxFeePerGas?: bigint | undefined;
4120
+ maxPriorityFeePerGas?: bigint | undefined;
4121
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
4122
+ }) & (viem.ExactPartial<viem.FeeValuesEIP4844> & viem.OneOf<{
4123
+ blobs: viem.TransactionSerializableEIP4844["blobs"];
4124
+ } | {
4125
+ blobVersionedHashes: viem.TransactionSerializableEIP4844["blobVersionedHashes"];
4126
+ } | {
4127
+ sidecars: viem.TransactionSerializableEIP4844["sidecars"];
4128
+ }, viem.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
4129
+ accessList?: viem.AccessList | undefined;
4130
+ authorizationList?: viem.SignedAuthorizationList | undefined;
4131
+ blobs?: undefined | undefined;
4132
+ blobVersionedHashes?: undefined | undefined;
4133
+ gasPrice?: undefined | undefined;
4134
+ maxFeePerBlobGas?: undefined | undefined;
4135
+ maxFeePerGas?: bigint | undefined;
4136
+ maxPriorityFeePerGas?: bigint | undefined;
4137
+ sidecars?: undefined | undefined;
4138
+ } | {
4139
+ accessList?: viem.AccessList | undefined;
4140
+ authorizationList?: viem.SignedAuthorizationList | undefined;
4141
+ blobs?: undefined | undefined;
4142
+ blobVersionedHashes?: undefined | undefined;
4143
+ gasPrice?: undefined | undefined;
4144
+ maxFeePerBlobGas?: undefined | undefined;
4145
+ maxFeePerGas?: bigint | undefined;
4146
+ maxPriorityFeePerGas?: bigint | undefined;
4147
+ sidecars?: undefined | undefined;
4148
+ }) & {
4149
+ authorizationList: viem.TransactionSerializableEIP7702["authorizationList"];
4150
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> ? T_1 extends "eip2930" ? `0x01${string}` : never : never : never) | (viem.GetTransactionType<request, (request extends {
4151
+ accessList?: undefined | undefined;
4152
+ authorizationList?: undefined | undefined;
4153
+ blobs?: undefined | undefined;
4154
+ blobVersionedHashes?: undefined | undefined;
4155
+ gasPrice?: bigint | undefined;
4156
+ sidecars?: undefined | undefined;
4157
+ } & viem.FeeValuesLegacy ? "legacy" : never) | (request extends {
4158
+ accessList?: viem.AccessList | undefined;
4159
+ authorizationList?: undefined | undefined;
4160
+ blobs?: undefined | undefined;
4161
+ blobVersionedHashes?: undefined | undefined;
4162
+ gasPrice?: undefined | undefined;
4163
+ maxFeePerBlobGas?: undefined | undefined;
4164
+ maxFeePerGas?: bigint | undefined;
4165
+ maxPriorityFeePerGas?: bigint | undefined;
4166
+ sidecars?: undefined | undefined;
4167
+ } & (viem.OneOf<{
4168
+ maxFeePerGas: viem.FeeValuesEIP1559["maxFeePerGas"];
4169
+ } | {
4170
+ maxPriorityFeePerGas: viem.FeeValuesEIP1559["maxPriorityFeePerGas"];
4171
+ }, viem.FeeValuesEIP1559> & {
4172
+ accessList?: viem.TransactionSerializableEIP2930["accessList"] | undefined;
4173
+ }) ? "eip1559" : never) | (request extends {
4174
+ accessList?: viem.AccessList | undefined;
4175
+ authorizationList?: undefined | undefined;
4176
+ blobs?: undefined | undefined;
4177
+ blobVersionedHashes?: undefined | undefined;
4178
+ gasPrice?: bigint | undefined;
4179
+ sidecars?: undefined | undefined;
4180
+ maxFeePerBlobGas?: undefined | undefined;
4181
+ maxFeePerGas?: undefined | undefined;
4182
+ maxPriorityFeePerGas?: undefined | undefined;
4183
+ } & {
4184
+ accessList: viem.TransactionSerializableEIP2930["accessList"];
4185
+ } ? "eip2930" : never) | (request extends ({
4186
+ accessList?: viem.AccessList | undefined;
4187
+ authorizationList?: undefined | undefined;
4188
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
4189
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
4190
+ maxFeePerBlobGas?: bigint | undefined;
4191
+ maxFeePerGas?: bigint | undefined;
4192
+ maxPriorityFeePerGas?: bigint | undefined;
4193
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
4194
+ } | {
4195
+ accessList?: viem.AccessList | undefined;
4196
+ authorizationList?: undefined | undefined;
4197
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
4198
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
4199
+ maxFeePerBlobGas?: bigint | undefined;
4200
+ maxFeePerGas?: bigint | undefined;
4201
+ maxPriorityFeePerGas?: bigint | undefined;
4202
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
4203
+ }) & (viem.ExactPartial<viem.FeeValuesEIP4844> & viem.OneOf<{
4204
+ blobs: viem.TransactionSerializableEIP4844["blobs"];
4205
+ } | {
4206
+ blobVersionedHashes: viem.TransactionSerializableEIP4844["blobVersionedHashes"];
4207
+ } | {
4208
+ sidecars: viem.TransactionSerializableEIP4844["sidecars"];
4209
+ }, viem.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
4210
+ accessList?: viem.AccessList | undefined;
4211
+ authorizationList?: viem.SignedAuthorizationList | undefined;
4212
+ blobs?: undefined | undefined;
4213
+ blobVersionedHashes?: undefined | undefined;
4214
+ gasPrice?: undefined | undefined;
4215
+ maxFeePerBlobGas?: undefined | undefined;
4216
+ maxFeePerGas?: bigint | undefined;
4217
+ maxPriorityFeePerGas?: bigint | undefined;
4218
+ sidecars?: undefined | undefined;
4219
+ } | {
4220
+ accessList?: viem.AccessList | undefined;
4221
+ authorizationList?: viem.SignedAuthorizationList | undefined;
4222
+ blobs?: undefined | undefined;
4223
+ blobVersionedHashes?: undefined | undefined;
4224
+ gasPrice?: undefined | undefined;
4225
+ maxFeePerBlobGas?: undefined | undefined;
4226
+ maxFeePerGas?: bigint | undefined;
4227
+ maxPriorityFeePerGas?: bigint | undefined;
4228
+ sidecars?: undefined | undefined;
4229
+ }) & {
4230
+ authorizationList: viem.TransactionSerializableEIP7702["authorizationList"];
4231
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends infer T_2 ? T_2 extends viem.GetTransactionType<request, (request extends {
4232
+ accessList?: undefined | undefined;
4233
+ authorizationList?: undefined | undefined;
4234
+ blobs?: undefined | undefined;
4235
+ blobVersionedHashes?: undefined | undefined;
4236
+ gasPrice?: bigint | undefined;
4237
+ sidecars?: undefined | undefined;
4238
+ } & viem.FeeValuesLegacy ? "legacy" : never) | (request extends {
4239
+ accessList?: viem.AccessList | undefined;
4240
+ authorizationList?: undefined | undefined;
4241
+ blobs?: undefined | undefined;
4242
+ blobVersionedHashes?: undefined | undefined;
4243
+ gasPrice?: undefined | undefined;
4244
+ maxFeePerBlobGas?: undefined | undefined;
4245
+ maxFeePerGas?: bigint | undefined;
4246
+ maxPriorityFeePerGas?: bigint | undefined;
4247
+ sidecars?: undefined | undefined;
4248
+ } & (viem.OneOf<{
4249
+ maxFeePerGas: viem.FeeValuesEIP1559["maxFeePerGas"];
4250
+ } | {
4251
+ maxPriorityFeePerGas: viem.FeeValuesEIP1559["maxPriorityFeePerGas"];
4252
+ }, viem.FeeValuesEIP1559> & {
4253
+ accessList?: viem.TransactionSerializableEIP2930["accessList"] | undefined;
4254
+ }) ? "eip1559" : never) | (request extends {
4255
+ accessList?: viem.AccessList | undefined;
4256
+ authorizationList?: undefined | undefined;
4257
+ blobs?: undefined | undefined;
4258
+ blobVersionedHashes?: undefined | undefined;
4259
+ gasPrice?: bigint | undefined;
4260
+ sidecars?: undefined | undefined;
4261
+ maxFeePerBlobGas?: undefined | undefined;
4262
+ maxFeePerGas?: undefined | undefined;
4263
+ maxPriorityFeePerGas?: undefined | undefined;
4264
+ } & {
4265
+ accessList: viem.TransactionSerializableEIP2930["accessList"];
4266
+ } ? "eip2930" : never) | (request extends ({
4267
+ accessList?: viem.AccessList | undefined;
4268
+ authorizationList?: undefined | undefined;
4269
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
4270
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
4271
+ maxFeePerBlobGas?: bigint | undefined;
4272
+ maxFeePerGas?: bigint | undefined;
4273
+ maxPriorityFeePerGas?: bigint | undefined;
4274
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
4275
+ } | {
4276
+ accessList?: viem.AccessList | undefined;
4277
+ authorizationList?: undefined | undefined;
4278
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
4279
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
4280
+ maxFeePerBlobGas?: bigint | undefined;
4281
+ maxFeePerGas?: bigint | undefined;
4282
+ maxPriorityFeePerGas?: bigint | undefined;
4283
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
4284
+ }) & (viem.ExactPartial<viem.FeeValuesEIP4844> & viem.OneOf<{
4285
+ blobs: viem.TransactionSerializableEIP4844["blobs"];
4286
+ } | {
4287
+ blobVersionedHashes: viem.TransactionSerializableEIP4844["blobVersionedHashes"];
4288
+ } | {
4289
+ sidecars: viem.TransactionSerializableEIP4844["sidecars"];
4290
+ }, viem.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
4291
+ accessList?: viem.AccessList | undefined;
4292
+ authorizationList?: viem.SignedAuthorizationList | undefined;
4293
+ blobs?: undefined | undefined;
4294
+ blobVersionedHashes?: undefined | undefined;
4295
+ gasPrice?: undefined | undefined;
4296
+ maxFeePerBlobGas?: undefined | undefined;
4297
+ maxFeePerGas?: bigint | undefined;
4298
+ maxPriorityFeePerGas?: bigint | undefined;
4299
+ sidecars?: undefined | undefined;
4300
+ } | {
4301
+ accessList?: viem.AccessList | undefined;
4302
+ authorizationList?: viem.SignedAuthorizationList | undefined;
4303
+ blobs?: undefined | undefined;
4304
+ blobVersionedHashes?: undefined | undefined;
4305
+ gasPrice?: undefined | undefined;
4306
+ maxFeePerBlobGas?: undefined | undefined;
4307
+ maxFeePerGas?: bigint | undefined;
4308
+ maxPriorityFeePerGas?: bigint | undefined;
4309
+ sidecars?: undefined | undefined;
4310
+ }) & {
4311
+ authorizationList: viem.TransactionSerializableEIP7702["authorizationList"];
4312
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> ? T_2 extends "eip4844" ? `0x03${string}` : never : never : never) | (viem.GetTransactionType<request, (request extends {
4313
+ accessList?: undefined | undefined;
4314
+ authorizationList?: undefined | undefined;
4315
+ blobs?: undefined | undefined;
4316
+ blobVersionedHashes?: undefined | undefined;
4317
+ gasPrice?: bigint | undefined;
4318
+ sidecars?: undefined | undefined;
4319
+ } & viem.FeeValuesLegacy ? "legacy" : never) | (request extends {
4320
+ accessList?: viem.AccessList | undefined;
4321
+ authorizationList?: undefined | undefined;
4322
+ blobs?: undefined | undefined;
4323
+ blobVersionedHashes?: undefined | undefined;
4324
+ gasPrice?: undefined | undefined;
4325
+ maxFeePerBlobGas?: undefined | undefined;
4326
+ maxFeePerGas?: bigint | undefined;
4327
+ maxPriorityFeePerGas?: bigint | undefined;
4328
+ sidecars?: undefined | undefined;
4329
+ } & (viem.OneOf<{
4330
+ maxFeePerGas: viem.FeeValuesEIP1559["maxFeePerGas"];
4331
+ } | {
4332
+ maxPriorityFeePerGas: viem.FeeValuesEIP1559["maxPriorityFeePerGas"];
4333
+ }, viem.FeeValuesEIP1559> & {
4334
+ accessList?: viem.TransactionSerializableEIP2930["accessList"] | undefined;
4335
+ }) ? "eip1559" : never) | (request extends {
4336
+ accessList?: viem.AccessList | undefined;
4337
+ authorizationList?: undefined | undefined;
4338
+ blobs?: undefined | undefined;
4339
+ blobVersionedHashes?: undefined | undefined;
4340
+ gasPrice?: bigint | undefined;
4341
+ sidecars?: undefined | undefined;
4342
+ maxFeePerBlobGas?: undefined | undefined;
4343
+ maxFeePerGas?: undefined | undefined;
4344
+ maxPriorityFeePerGas?: undefined | undefined;
4345
+ } & {
4346
+ accessList: viem.TransactionSerializableEIP2930["accessList"];
4347
+ } ? "eip2930" : never) | (request extends ({
4348
+ accessList?: viem.AccessList | undefined;
4349
+ authorizationList?: undefined | undefined;
4350
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
4351
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
4352
+ maxFeePerBlobGas?: bigint | undefined;
4353
+ maxFeePerGas?: bigint | undefined;
4354
+ maxPriorityFeePerGas?: bigint | undefined;
4355
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
4356
+ } | {
4357
+ accessList?: viem.AccessList | undefined;
4358
+ authorizationList?: undefined | undefined;
4359
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
4360
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
4361
+ maxFeePerBlobGas?: bigint | undefined;
4362
+ maxFeePerGas?: bigint | undefined;
4363
+ maxPriorityFeePerGas?: bigint | undefined;
4364
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
4365
+ }) & (viem.ExactPartial<viem.FeeValuesEIP4844> & viem.OneOf<{
4366
+ blobs: viem.TransactionSerializableEIP4844["blobs"];
4367
+ } | {
4368
+ blobVersionedHashes: viem.TransactionSerializableEIP4844["blobVersionedHashes"];
4369
+ } | {
4370
+ sidecars: viem.TransactionSerializableEIP4844["sidecars"];
4371
+ }, viem.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
4372
+ accessList?: viem.AccessList | undefined;
4373
+ authorizationList?: viem.SignedAuthorizationList | undefined;
4374
+ blobs?: undefined | undefined;
4375
+ blobVersionedHashes?: undefined | undefined;
4376
+ gasPrice?: undefined | undefined;
4377
+ maxFeePerBlobGas?: undefined | undefined;
4378
+ maxFeePerGas?: bigint | undefined;
4379
+ maxPriorityFeePerGas?: bigint | undefined;
4380
+ sidecars?: undefined | undefined;
4381
+ } | {
4382
+ accessList?: viem.AccessList | undefined;
4383
+ authorizationList?: viem.SignedAuthorizationList | undefined;
4384
+ blobs?: undefined | undefined;
4385
+ blobVersionedHashes?: undefined | undefined;
4386
+ gasPrice?: undefined | undefined;
4387
+ maxFeePerBlobGas?: undefined | undefined;
4388
+ maxFeePerGas?: bigint | undefined;
4389
+ maxPriorityFeePerGas?: bigint | undefined;
4390
+ sidecars?: undefined | undefined;
4391
+ }) & {
4392
+ authorizationList: viem.TransactionSerializableEIP7702["authorizationList"];
4393
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends infer T_3 ? T_3 extends viem.GetTransactionType<request, (request extends {
4394
+ accessList?: undefined | undefined;
4395
+ authorizationList?: undefined | undefined;
4396
+ blobs?: undefined | undefined;
4397
+ blobVersionedHashes?: undefined | undefined;
4398
+ gasPrice?: bigint | undefined;
4399
+ sidecars?: undefined | undefined;
4400
+ } & viem.FeeValuesLegacy ? "legacy" : never) | (request extends {
4401
+ accessList?: viem.AccessList | undefined;
4402
+ authorizationList?: undefined | undefined;
4403
+ blobs?: undefined | undefined;
4404
+ blobVersionedHashes?: undefined | undefined;
4405
+ gasPrice?: undefined | undefined;
4406
+ maxFeePerBlobGas?: undefined | undefined;
4407
+ maxFeePerGas?: bigint | undefined;
4408
+ maxPriorityFeePerGas?: bigint | undefined;
4409
+ sidecars?: undefined | undefined;
4410
+ } & (viem.OneOf<{
4411
+ maxFeePerGas: viem.FeeValuesEIP1559["maxFeePerGas"];
4412
+ } | {
4413
+ maxPriorityFeePerGas: viem.FeeValuesEIP1559["maxPriorityFeePerGas"];
4414
+ }, viem.FeeValuesEIP1559> & {
4415
+ accessList?: viem.TransactionSerializableEIP2930["accessList"] | undefined;
4416
+ }) ? "eip1559" : never) | (request extends {
4417
+ accessList?: viem.AccessList | undefined;
4418
+ authorizationList?: undefined | undefined;
4419
+ blobs?: undefined | undefined;
4420
+ blobVersionedHashes?: undefined | undefined;
4421
+ gasPrice?: bigint | undefined;
4422
+ sidecars?: undefined | undefined;
4423
+ maxFeePerBlobGas?: undefined | undefined;
4424
+ maxFeePerGas?: undefined | undefined;
4425
+ maxPriorityFeePerGas?: undefined | undefined;
4426
+ } & {
4427
+ accessList: viem.TransactionSerializableEIP2930["accessList"];
4428
+ } ? "eip2930" : never) | (request extends ({
4429
+ accessList?: viem.AccessList | undefined;
4430
+ authorizationList?: undefined | undefined;
4431
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
4432
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
4433
+ maxFeePerBlobGas?: bigint | undefined;
4434
+ maxFeePerGas?: bigint | undefined;
4435
+ maxPriorityFeePerGas?: bigint | undefined;
4436
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
4437
+ } | {
4438
+ accessList?: viem.AccessList | undefined;
4439
+ authorizationList?: undefined | undefined;
4440
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
4441
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
4442
+ maxFeePerBlobGas?: bigint | undefined;
4443
+ maxFeePerGas?: bigint | undefined;
4444
+ maxPriorityFeePerGas?: bigint | undefined;
4445
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
4446
+ }) & (viem.ExactPartial<viem.FeeValuesEIP4844> & viem.OneOf<{
4447
+ blobs: viem.TransactionSerializableEIP4844["blobs"];
4448
+ } | {
4449
+ blobVersionedHashes: viem.TransactionSerializableEIP4844["blobVersionedHashes"];
4450
+ } | {
4451
+ sidecars: viem.TransactionSerializableEIP4844["sidecars"];
4452
+ }, viem.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
4453
+ accessList?: viem.AccessList | undefined;
4454
+ authorizationList?: viem.SignedAuthorizationList | undefined;
4455
+ blobs?: undefined | undefined;
4456
+ blobVersionedHashes?: undefined | undefined;
4457
+ gasPrice?: undefined | undefined;
4458
+ maxFeePerBlobGas?: undefined | undefined;
4459
+ maxFeePerGas?: bigint | undefined;
4460
+ maxPriorityFeePerGas?: bigint | undefined;
4461
+ sidecars?: undefined | undefined;
4462
+ } | {
4463
+ accessList?: viem.AccessList | undefined;
4464
+ authorizationList?: viem.SignedAuthorizationList | undefined;
4465
+ blobs?: undefined | undefined;
4466
+ blobVersionedHashes?: undefined | undefined;
4467
+ gasPrice?: undefined | undefined;
4468
+ maxFeePerBlobGas?: undefined | undefined;
4469
+ maxFeePerGas?: bigint | undefined;
4470
+ maxPriorityFeePerGas?: bigint | undefined;
4471
+ sidecars?: undefined | undefined;
4472
+ }) & {
4473
+ authorizationList: viem.TransactionSerializableEIP7702["authorizationList"];
4474
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> ? T_3 extends "eip7702" ? `0x04${string}` : never : never : never) | (viem.GetTransactionType<request, (request extends {
4475
+ accessList?: undefined | undefined;
4476
+ authorizationList?: undefined | undefined;
4477
+ blobs?: undefined | undefined;
4478
+ blobVersionedHashes?: undefined | undefined;
4479
+ gasPrice?: bigint | undefined;
4480
+ sidecars?: undefined | undefined;
4481
+ } & viem.FeeValuesLegacy ? "legacy" : never) | (request extends {
4482
+ accessList?: viem.AccessList | undefined;
4483
+ authorizationList?: undefined | undefined;
4484
+ blobs?: undefined | undefined;
4485
+ blobVersionedHashes?: undefined | undefined;
4486
+ gasPrice?: undefined | undefined;
4487
+ maxFeePerBlobGas?: undefined | undefined;
4488
+ maxFeePerGas?: bigint | undefined;
4489
+ maxPriorityFeePerGas?: bigint | undefined;
4490
+ sidecars?: undefined | undefined;
4491
+ } & (viem.OneOf<{
4492
+ maxFeePerGas: viem.FeeValuesEIP1559["maxFeePerGas"];
4493
+ } | {
4494
+ maxPriorityFeePerGas: viem.FeeValuesEIP1559["maxPriorityFeePerGas"];
4495
+ }, viem.FeeValuesEIP1559> & {
4496
+ accessList?: viem.TransactionSerializableEIP2930["accessList"] | undefined;
4497
+ }) ? "eip1559" : never) | (request extends {
4498
+ accessList?: viem.AccessList | undefined;
4499
+ authorizationList?: undefined | undefined;
4500
+ blobs?: undefined | undefined;
4501
+ blobVersionedHashes?: undefined | undefined;
4502
+ gasPrice?: bigint | undefined;
4503
+ sidecars?: undefined | undefined;
4504
+ maxFeePerBlobGas?: undefined | undefined;
4505
+ maxFeePerGas?: undefined | undefined;
4506
+ maxPriorityFeePerGas?: undefined | undefined;
4507
+ } & {
4508
+ accessList: viem.TransactionSerializableEIP2930["accessList"];
4509
+ } ? "eip2930" : never) | (request extends ({
4510
+ accessList?: viem.AccessList | undefined;
4511
+ authorizationList?: undefined | undefined;
4512
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
4513
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
4514
+ maxFeePerBlobGas?: bigint | undefined;
4515
+ maxFeePerGas?: bigint | undefined;
4516
+ maxPriorityFeePerGas?: bigint | undefined;
4517
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
4518
+ } | {
4519
+ accessList?: viem.AccessList | undefined;
4520
+ authorizationList?: undefined | undefined;
4521
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
4522
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
4523
+ maxFeePerBlobGas?: bigint | undefined;
4524
+ maxFeePerGas?: bigint | undefined;
4525
+ maxPriorityFeePerGas?: bigint | undefined;
4526
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
4527
+ }) & (viem.ExactPartial<viem.FeeValuesEIP4844> & viem.OneOf<{
4528
+ blobs: viem.TransactionSerializableEIP4844["blobs"];
4529
+ } | {
4530
+ blobVersionedHashes: viem.TransactionSerializableEIP4844["blobVersionedHashes"];
4531
+ } | {
4532
+ sidecars: viem.TransactionSerializableEIP4844["sidecars"];
4533
+ }, viem.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
4534
+ accessList?: viem.AccessList | undefined;
4535
+ authorizationList?: viem.SignedAuthorizationList | undefined;
4536
+ blobs?: undefined | undefined;
4537
+ blobVersionedHashes?: undefined | undefined;
4538
+ gasPrice?: undefined | undefined;
4539
+ maxFeePerBlobGas?: undefined | undefined;
4540
+ maxFeePerGas?: bigint | undefined;
4541
+ maxPriorityFeePerGas?: bigint | undefined;
4542
+ sidecars?: undefined | undefined;
4543
+ } | {
4544
+ accessList?: viem.AccessList | undefined;
4545
+ authorizationList?: viem.SignedAuthorizationList | undefined;
4546
+ blobs?: undefined | undefined;
4547
+ blobVersionedHashes?: undefined | undefined;
4548
+ gasPrice?: undefined | undefined;
4549
+ maxFeePerBlobGas?: undefined | undefined;
4550
+ maxFeePerGas?: bigint | undefined;
4551
+ maxPriorityFeePerGas?: bigint | undefined;
4552
+ sidecars?: undefined | undefined;
4553
+ }) & {
4554
+ authorizationList: viem.TransactionSerializableEIP7702["authorizationList"];
4555
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends infer T_4 ? T_4 extends viem.GetTransactionType<request, (request extends {
4556
+ accessList?: undefined | undefined;
4557
+ authorizationList?: undefined | undefined;
4558
+ blobs?: undefined | undefined;
4559
+ blobVersionedHashes?: undefined | undefined;
4560
+ gasPrice?: bigint | undefined;
4561
+ sidecars?: undefined | undefined;
4562
+ } & viem.FeeValuesLegacy ? "legacy" : never) | (request extends {
4563
+ accessList?: viem.AccessList | undefined;
4564
+ authorizationList?: undefined | undefined;
4565
+ blobs?: undefined | undefined;
4566
+ blobVersionedHashes?: undefined | undefined;
4567
+ gasPrice?: undefined | undefined;
4568
+ maxFeePerBlobGas?: undefined | undefined;
4569
+ maxFeePerGas?: bigint | undefined;
4570
+ maxPriorityFeePerGas?: bigint | undefined;
4571
+ sidecars?: undefined | undefined;
4572
+ } & (viem.OneOf<{
4573
+ maxFeePerGas: viem.FeeValuesEIP1559["maxFeePerGas"];
4574
+ } | {
4575
+ maxPriorityFeePerGas: viem.FeeValuesEIP1559["maxPriorityFeePerGas"];
4576
+ }, viem.FeeValuesEIP1559> & {
4577
+ accessList?: viem.TransactionSerializableEIP2930["accessList"] | undefined;
4578
+ }) ? "eip1559" : never) | (request extends {
4579
+ accessList?: viem.AccessList | undefined;
4580
+ authorizationList?: undefined | undefined;
4581
+ blobs?: undefined | undefined;
4582
+ blobVersionedHashes?: undefined | undefined;
4583
+ gasPrice?: bigint | undefined;
4584
+ sidecars?: undefined | undefined;
4585
+ maxFeePerBlobGas?: undefined | undefined;
4586
+ maxFeePerGas?: undefined | undefined;
4587
+ maxPriorityFeePerGas?: undefined | undefined;
4588
+ } & {
4589
+ accessList: viem.TransactionSerializableEIP2930["accessList"];
4590
+ } ? "eip2930" : never) | (request extends ({
4591
+ accessList?: viem.AccessList | undefined;
4592
+ authorizationList?: undefined | undefined;
4593
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
4594
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
4595
+ maxFeePerBlobGas?: bigint | undefined;
4596
+ maxFeePerGas?: bigint | undefined;
4597
+ maxPriorityFeePerGas?: bigint | undefined;
4598
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
4599
+ } | {
4600
+ accessList?: viem.AccessList | undefined;
4601
+ authorizationList?: undefined | undefined;
4602
+ blobs?: readonly `0x${string}`[] | readonly viem.ByteArray[] | undefined;
4603
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
4604
+ maxFeePerBlobGas?: bigint | undefined;
4605
+ maxFeePerGas?: bigint | undefined;
4606
+ maxPriorityFeePerGas?: bigint | undefined;
4607
+ sidecars?: false | readonly viem.BlobSidecar<`0x${string}`>[] | undefined;
4608
+ }) & (viem.ExactPartial<viem.FeeValuesEIP4844> & viem.OneOf<{
4609
+ blobs: viem.TransactionSerializableEIP4844["blobs"];
4610
+ } | {
4611
+ blobVersionedHashes: viem.TransactionSerializableEIP4844["blobVersionedHashes"];
4612
+ } | {
4613
+ sidecars: viem.TransactionSerializableEIP4844["sidecars"];
4614
+ }, viem.TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
4615
+ accessList?: viem.AccessList | undefined;
4616
+ authorizationList?: viem.SignedAuthorizationList | undefined;
4617
+ blobs?: undefined | undefined;
4618
+ blobVersionedHashes?: undefined | undefined;
4619
+ gasPrice?: undefined | undefined;
4620
+ maxFeePerBlobGas?: undefined | undefined;
4621
+ maxFeePerGas?: bigint | undefined;
4622
+ maxPriorityFeePerGas?: bigint | undefined;
4623
+ sidecars?: undefined | undefined;
4624
+ } | {
4625
+ accessList?: viem.AccessList | undefined;
4626
+ authorizationList?: viem.SignedAuthorizationList | undefined;
4627
+ blobs?: undefined | undefined;
4628
+ blobVersionedHashes?: undefined | undefined;
4629
+ gasPrice?: undefined | undefined;
4630
+ maxFeePerBlobGas?: undefined | undefined;
4631
+ maxFeePerGas?: bigint | undefined;
4632
+ maxPriorityFeePerGas?: bigint | undefined;
4633
+ sidecars?: undefined | undefined;
4634
+ }) & {
4635
+ authorizationList: viem.TransactionSerializableEIP7702["authorizationList"];
4636
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> ? T_4 extends "legacy" ? viem.TransactionSerializedLegacy : never : never : never)>>;
4637
+ signTypedData: <const typedData extends {
4638
+ [x: string]: readonly viem.TypedDataParameter[];
4639
+ [x: `string[${string}]`]: undefined;
4640
+ [x: `function[${string}]`]: undefined;
4641
+ [x: `address[${string}]`]: undefined;
4642
+ [x: `uint256[${string}]`]: undefined;
4643
+ [x: `bytes4[${string}]`]: undefined;
4644
+ [x: `bool[${string}]`]: undefined;
4645
+ [x: `bytes[${string}]`]: undefined;
4646
+ [x: `bytes32[${string}]`]: undefined;
4647
+ [x: `uint8[${string}]`]: undefined;
4648
+ [x: `bytes1[${string}]`]: undefined;
4649
+ [x: `bytes2[${string}]`]: undefined;
4650
+ [x: `bytes3[${string}]`]: undefined;
4651
+ [x: `bytes5[${string}]`]: undefined;
4652
+ [x: `bytes6[${string}]`]: undefined;
4653
+ [x: `bytes7[${string}]`]: undefined;
4654
+ [x: `bytes8[${string}]`]: undefined;
4655
+ [x: `bytes9[${string}]`]: undefined;
4656
+ [x: `bytes20[${string}]`]: undefined;
4657
+ [x: `bytes15[${string}]`]: undefined;
4658
+ [x: `bytes22[${string}]`]: undefined;
4659
+ [x: `bytes10[${string}]`]: undefined;
4660
+ [x: `bytes11[${string}]`]: undefined;
4661
+ [x: `bytes12[${string}]`]: undefined;
4662
+ [x: `bytes13[${string}]`]: undefined;
4663
+ [x: `bytes14[${string}]`]: undefined;
4664
+ [x: `bytes16[${string}]`]: undefined;
4665
+ [x: `bytes17[${string}]`]: undefined;
4666
+ [x: `bytes18[${string}]`]: undefined;
4667
+ [x: `bytes19[${string}]`]: undefined;
4668
+ [x: `bytes21[${string}]`]: undefined;
4669
+ [x: `bytes23[${string}]`]: undefined;
4670
+ [x: `bytes24[${string}]`]: undefined;
4671
+ [x: `bytes25[${string}]`]: undefined;
4672
+ [x: `bytes26[${string}]`]: undefined;
4673
+ [x: `bytes27[${string}]`]: undefined;
4674
+ [x: `bytes28[${string}]`]: undefined;
4675
+ [x: `bytes29[${string}]`]: undefined;
4676
+ [x: `bytes30[${string}]`]: undefined;
4677
+ [x: `bytes31[${string}]`]: undefined;
4678
+ [x: `int[${string}]`]: undefined;
4679
+ [x: `int8[${string}]`]: undefined;
4680
+ [x: `int56[${string}]`]: undefined;
4681
+ [x: `int16[${string}]`]: undefined;
4682
+ [x: `int24[${string}]`]: undefined;
4683
+ [x: `int32[${string}]`]: undefined;
4684
+ [x: `int40[${string}]`]: undefined;
4685
+ [x: `int48[${string}]`]: undefined;
4686
+ [x: `int64[${string}]`]: undefined;
4687
+ [x: `int72[${string}]`]: undefined;
4688
+ [x: `int80[${string}]`]: undefined;
4689
+ [x: `int88[${string}]`]: undefined;
4690
+ [x: `int96[${string}]`]: undefined;
4691
+ [x: `int104[${string}]`]: undefined;
4692
+ [x: `int112[${string}]`]: undefined;
4693
+ [x: `int120[${string}]`]: undefined;
4694
+ [x: `int128[${string}]`]: undefined;
4695
+ [x: `int136[${string}]`]: undefined;
4696
+ [x: `int144[${string}]`]: undefined;
4697
+ [x: `int152[${string}]`]: undefined;
4698
+ [x: `int160[${string}]`]: undefined;
4699
+ [x: `int168[${string}]`]: undefined;
4700
+ [x: `int176[${string}]`]: undefined;
4701
+ [x: `int184[${string}]`]: undefined;
4702
+ [x: `int192[${string}]`]: undefined;
4703
+ [x: `int200[${string}]`]: undefined;
4704
+ [x: `int208[${string}]`]: undefined;
4705
+ [x: `int216[${string}]`]: undefined;
4706
+ [x: `int224[${string}]`]: undefined;
4707
+ [x: `int232[${string}]`]: undefined;
4708
+ [x: `int240[${string}]`]: undefined;
4709
+ [x: `int248[${string}]`]: undefined;
4710
+ [x: `int256[${string}]`]: undefined;
4711
+ [x: `uint[${string}]`]: undefined;
4712
+ [x: `uint56[${string}]`]: undefined;
4713
+ [x: `uint16[${string}]`]: undefined;
4714
+ [x: `uint24[${string}]`]: undefined;
4715
+ [x: `uint32[${string}]`]: undefined;
4716
+ [x: `uint40[${string}]`]: undefined;
4717
+ [x: `uint48[${string}]`]: undefined;
4718
+ [x: `uint64[${string}]`]: undefined;
4719
+ [x: `uint72[${string}]`]: undefined;
4720
+ [x: `uint80[${string}]`]: undefined;
4721
+ [x: `uint88[${string}]`]: undefined;
4722
+ [x: `uint96[${string}]`]: undefined;
4723
+ [x: `uint104[${string}]`]: undefined;
4724
+ [x: `uint112[${string}]`]: undefined;
4725
+ [x: `uint120[${string}]`]: undefined;
4726
+ [x: `uint128[${string}]`]: undefined;
4727
+ [x: `uint136[${string}]`]: undefined;
4728
+ [x: `uint144[${string}]`]: undefined;
4729
+ [x: `uint152[${string}]`]: undefined;
4730
+ [x: `uint160[${string}]`]: undefined;
4731
+ [x: `uint168[${string}]`]: undefined;
4732
+ [x: `uint176[${string}]`]: undefined;
4733
+ [x: `uint184[${string}]`]: undefined;
4734
+ [x: `uint192[${string}]`]: undefined;
4735
+ [x: `uint200[${string}]`]: undefined;
4736
+ [x: `uint208[${string}]`]: undefined;
4737
+ [x: `uint216[${string}]`]: undefined;
4738
+ [x: `uint224[${string}]`]: undefined;
4739
+ [x: `uint232[${string}]`]: undefined;
4740
+ [x: `uint240[${string}]`]: undefined;
4741
+ [x: `uint248[${string}]`]: undefined;
4742
+ string?: undefined;
4743
+ address?: undefined;
4744
+ uint256?: undefined;
4745
+ bytes4?: undefined;
4746
+ bool?: undefined;
4747
+ bytes?: undefined;
4748
+ bytes32?: undefined;
4749
+ uint8?: undefined;
4750
+ bytes1?: undefined;
4751
+ bytes2?: undefined;
4752
+ bytes3?: undefined;
4753
+ bytes5?: undefined;
4754
+ bytes6?: undefined;
4755
+ bytes7?: undefined;
4756
+ bytes8?: undefined;
4757
+ bytes9?: undefined;
4758
+ bytes20?: undefined;
4759
+ bytes15?: undefined;
4760
+ bytes22?: undefined;
4761
+ bytes10?: undefined;
4762
+ bytes11?: undefined;
4763
+ bytes12?: undefined;
4764
+ bytes13?: undefined;
4765
+ bytes14?: undefined;
4766
+ bytes16?: undefined;
4767
+ bytes17?: undefined;
4768
+ bytes18?: undefined;
4769
+ bytes19?: undefined;
4770
+ bytes21?: undefined;
4771
+ bytes23?: undefined;
4772
+ bytes24?: undefined;
4773
+ bytes25?: undefined;
4774
+ bytes26?: undefined;
4775
+ bytes27?: undefined;
4776
+ bytes28?: undefined;
4777
+ bytes29?: undefined;
4778
+ bytes30?: undefined;
4779
+ bytes31?: undefined;
4780
+ int8?: undefined;
4781
+ int56?: undefined;
4782
+ int16?: undefined;
4783
+ int24?: undefined;
4784
+ int32?: undefined;
4785
+ int40?: undefined;
4786
+ int48?: undefined;
4787
+ int64?: undefined;
4788
+ int72?: undefined;
4789
+ int80?: undefined;
4790
+ int88?: undefined;
4791
+ int96?: undefined;
4792
+ int104?: undefined;
4793
+ int112?: undefined;
4794
+ int120?: undefined;
4795
+ int128?: undefined;
4796
+ int136?: undefined;
4797
+ int144?: undefined;
4798
+ int152?: undefined;
4799
+ int160?: undefined;
4800
+ int168?: undefined;
4801
+ int176?: undefined;
4802
+ int184?: undefined;
4803
+ int192?: undefined;
4804
+ int200?: undefined;
4805
+ int208?: undefined;
4806
+ int216?: undefined;
4807
+ int224?: undefined;
4808
+ int232?: undefined;
4809
+ int240?: undefined;
4810
+ int248?: undefined;
4811
+ int256?: undefined;
4812
+ uint56?: undefined;
4813
+ uint16?: undefined;
4814
+ uint24?: undefined;
4815
+ uint32?: undefined;
4816
+ uint40?: undefined;
4817
+ uint48?: undefined;
4818
+ uint64?: undefined;
4819
+ uint72?: undefined;
4820
+ uint80?: undefined;
4821
+ uint88?: undefined;
4822
+ uint96?: undefined;
4823
+ uint104?: undefined;
4824
+ uint112?: undefined;
4825
+ uint120?: undefined;
4826
+ uint128?: undefined;
4827
+ uint136?: undefined;
4828
+ uint144?: undefined;
4829
+ uint152?: undefined;
4830
+ uint160?: undefined;
4831
+ uint168?: undefined;
4832
+ uint176?: undefined;
4833
+ uint184?: undefined;
4834
+ uint192?: undefined;
4835
+ uint200?: undefined;
4836
+ uint208?: undefined;
4837
+ uint216?: undefined;
4838
+ uint224?: undefined;
4839
+ uint232?: undefined;
4840
+ uint240?: undefined;
4841
+ uint248?: undefined;
4842
+ } | {
4843
+ [key: string]: unknown;
4844
+ }, primaryType extends string>(args: viem.SignTypedDataParameters<typedData, primaryType, viem.Account | undefined>) => Promise<viem.SignTypedDataReturnType>;
4845
+ switchChain: (args: viem.SwitchChainParameters) => Promise<void>;
4846
+ waitForCallsStatus: (parameters: viem.WaitForCallsStatusParameters) => Promise<viem.WaitForCallsStatusReturnType>;
4847
+ watchAsset: (args: viem.WatchAssetParameters) => Promise<viem.WatchAssetReturnType>;
4848
+ writeContract: <const abi extends viem.Abi | readonly unknown[], functionName extends viem.ContractFunctionName<abi, "nonpayable" | "payable">, args_1 extends viem.ContractFunctionArgs<abi, "nonpayable" | "payable", functionName>, chainOverride extends viem.Chain | undefined = undefined>(args: viem.WriteContractParameters<abi, functionName, args_1, viem.Chain | undefined, viem.Account | undefined, chainOverride>) => Promise<viem.WriteContractReturnType>;
4849
+ writeContractSync: <const abi extends viem.Abi | readonly unknown[], functionName extends viem.ContractFunctionName<abi, "nonpayable" | "payable">, args_1 extends viem.ContractFunctionArgs<abi, "nonpayable" | "payable", functionName>, chainOverride extends viem.Chain | undefined = undefined>(args: viem.WriteContractSyncParameters<abi, functionName, args_1, viem.Chain | undefined, viem.Account | undefined, chainOverride>) => Promise<viem.WriteContractSyncReturnType>;
4850
+ extend: <const client extends {
4851
+ [x: string]: unknown;
4852
+ account?: undefined;
4853
+ batch?: undefined;
4854
+ cacheTime?: undefined;
4855
+ ccipRead?: undefined;
4856
+ chain?: undefined;
4857
+ dataSuffix?: undefined;
4858
+ experimental_blockTag?: undefined;
4859
+ key?: undefined;
4860
+ name?: undefined;
4861
+ pollingInterval?: undefined;
4862
+ request?: undefined;
4863
+ transport?: undefined;
4864
+ type?: undefined;
4865
+ uid?: undefined;
4866
+ } & viem.ExactPartial<Pick<viem.PublicActions<viem.Transport, viem.Chain | undefined, viem.Account | undefined>, "getChainId" | "prepareTransactionRequest" | "sendRawTransaction" | "call" | "createContractEventFilter" | "createEventFilter" | "estimateContractGas" | "estimateGas" | "getBlock" | "getBlockNumber" | "getContractEvents" | "getEnsText" | "getFilterChanges" | "getGasPrice" | "getLogs" | "getTransaction" | "getTransactionCount" | "getTransactionReceipt" | "readContract" | "simulateContract" | "uninstallFilter" | "watchBlockNumber" | "watchContractEvent"> & Pick<viem.WalletActions<viem.Chain | undefined, viem.Account | undefined>, "sendTransaction" | "writeContract">>>(fn: (client: viem.Client<viem.Transport, viem.Chain | undefined, viem.Account | undefined, viem.WalletRpcSchema, viem.WalletActions<viem.Chain | undefined, viem.Account | undefined>>) => client) => viem.Client<viem.Transport, viem.Chain | undefined, viem.Account | undefined, viem.WalletRpcSchema, { [K in keyof client]: client[K]; } & viem.WalletActions<viem.Chain | undefined, viem.Account | undefined>>;
4867
+ } | null;
4868
+ get isWriteReady(): boolean;
4869
+ private requireWalletClient;
433
4870
  get addresses(): {
434
4871
  multiAccount: `0x${string}`;
435
4872
  symmioDiamond: `0x${string}`;