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