@thenamespace/ens-components 0.9.0 → 0.10.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (107) hide show
  1. package/dist/index.css +316 -109
  2. package/dist/index.css.map +1 -1
  3. package/dist/index.d.ts +19157 -7819
  4. package/dist/index.js +129408 -2911
  5. package/dist/index.js.map +1 -1
  6. package/dist/types/backend/index.d.ts +1 -0
  7. package/dist/types/backend/list-manager/index.d.ts +57 -0
  8. package/dist/types/components/ens-names-registrar-component/ENSNamesRegistrarComponent.d.ts +17 -0
  9. package/dist/types/components/{ens-names-register-component → ens-names-registrar-component}/sub-components/CostSummary.d.ts +3 -1
  10. package/dist/types/components/ens-names-registrar-component/sub-components/Header.d.ts +8 -0
  11. package/dist/types/components/{ens-names-register-component → ens-names-registrar-component}/sub-components/NameSearch.d.ts +4 -1
  12. package/dist/types/components/{ens-names-register-component → ens-names-registrar-component}/sub-components/RegistrationForm.d.ts +8 -1
  13. package/dist/types/components/ens-names-registrar-component/sub-components/RegistrationProcess.d.ts +10 -0
  14. package/dist/types/components/index.d.ts +3 -3
  15. package/dist/types/components/{ens-offchain-register-modal/EnsOffChainRegisterModal.d.ts → subname-offchain-registrar-modal/SubnameOffChainRegistrarModal.d.ts} +3 -3
  16. package/dist/types/components/{ens-onchain-register-modal/EnsOnChainRegisterModal.d.ts → subname-onchain-registrar-modal/SubnameOnChainRegistrarModal.d.ts} +3 -3
  17. package/dist/types/components/{ens-onchain-register-modal → subname-onchain-registrar-modal}/sub-components/RegistrationStep.d.ts +1 -2
  18. package/dist/types/constants/records/addressConstants.d.ts +12 -0
  19. package/dist/types/context/account-context.d.ts +44 -0
  20. package/dist/types/context/account-filter-context.d.ts +32 -0
  21. package/dist/types/context/auth-context.d.ts +22 -0
  22. package/dist/types/context/crop-image-context.d.ts +27 -0
  23. package/dist/types/context/current-user-context.d.ts +19 -0
  24. package/dist/types/context/edit-profile-context.d.ts +13 -0
  25. package/dist/types/context/ens-profile-context.d.ts +54 -0
  26. package/dist/types/context/index.d.ts +6 -0
  27. package/dist/types/context/listing-form-context.d.ts +55 -0
  28. package/dist/types/context/listing-status-context.d.ts +19 -0
  29. package/dist/types/context/mint-subname-context.d.ts +12 -0
  30. package/dist/types/environment/index.d.ts +9 -0
  31. package/dist/types/hooks/efp/use-efp.d.ts +11 -0
  32. package/dist/types/hooks/ens/ens-local-cache.d.ts +18 -0
  33. package/dist/types/hooks/ens/use-ens-client.d.ts +763 -0
  34. package/dist/types/hooks/ens/use-ens-contract-address.d.ts +1 -0
  35. package/dist/types/hooks/ens/use-ens-name-profile.d.ts +15 -0
  36. package/dist/types/hooks/ens/use-ens.d.ts +21 -0
  37. package/dist/types/hooks/ens/use-eth-registrar-controller.d.ts +21 -0
  38. package/dist/types/hooks/ens/use-name-wrapper.d.ts +6 -0
  39. package/dist/types/hooks/ens/use-owned-ens-names.d.ts +9 -0
  40. package/dist/types/hooks/index.d.ts +24 -1
  41. package/dist/types/hooks/namespace/use-burn-l2-subname.d.ts +4 -0
  42. package/dist/types/hooks/namespace/use-hybrid-resolver.d.ts +10 -0
  43. package/dist/types/hooks/namespace/use-l2-controller.d.ts +8 -0
  44. package/dist/types/hooks/namespace/use-listing-manager.d.ts +2 -0
  45. package/dist/types/hooks/namespace/use-mint-client.d.ts +2 -0
  46. package/dist/types/hooks/namespace/use-mintable-listings.d.ts +7 -0
  47. package/dist/types/hooks/namespace/use-name-listings.d.ts +1 -0
  48. package/dist/types/hooks/namespace/use-namespace-account.d.ts +25 -0
  49. package/dist/types/hooks/namespace/use-namespace-indexer.d.ts +7 -0
  50. package/dist/types/hooks/namespace/use-re-render-image.d.ts +1 -0
  51. package/dist/types/hooks/namespace/use-trading-stats.d.ts +1 -0
  52. package/dist/types/hooks/upload-image/use-upload-image.d.ts +8 -0
  53. package/dist/types/hooks/use-error-modal.d.ts +4 -0
  54. package/dist/types/hooks/use-screen-size.d.ts +5 -0
  55. package/dist/types/hooks/useWeb3Clients.d.ts +30 -30
  56. package/dist/types/hooks/web3/alchemy-sdk-no-ssr.d.ts +0 -0
  57. package/dist/types/hooks/web3/use-alchemy-sdk.d.ts +4 -0
  58. package/dist/types/hooks/web3/use-block-explorer.d.ts +2 -0
  59. package/dist/types/hooks/web3/use-blockexplorer-url.d.ts +2 -0
  60. package/dist/types/hooks/web3/use-contract-addresses.d.ts +1 -0
  61. package/dist/types/hooks/web3/use-l1-name-minter.d.ts +5 -0
  62. package/dist/types/hooks/web3/use-main-chain.d.ts +10 -0
  63. package/dist/types/hooks/web3/use-main-public-client.d.ts +3624 -0
  64. package/dist/types/hooks/web3/use-name-resolver.d.ts +24 -0
  65. package/dist/types/hooks/web3/use-name-wrapper.d.ts +3 -0
  66. package/dist/types/hooks/web3/use-wait-for-transaction.d.ts +8 -0
  67. package/dist/types/hooks/web3/use-web3-clients.d.ts +8042 -0
  68. package/dist/types/index.d.ts +1 -0
  69. package/dist/types/types/auth.d.ts +8 -0
  70. package/dist/types/types/ens.d.ts +61 -0
  71. package/dist/types/types/errors.d.ts +2 -0
  72. package/dist/types/types/hybrid-resolver.d.ts +4 -0
  73. package/dist/types/types/index.d.ts +10 -0
  74. package/dist/types/types/indexer.d.ts +27 -0
  75. package/dist/types/types/l2.d.ts +34 -0
  76. package/dist/types/types/list-manager.d.ts +179 -0
  77. package/dist/types/types/listing.d.ts +136 -0
  78. package/dist/types/types/minting.d.ts +75 -0
  79. package/dist/types/types/name-listing/enums.d.ts +20 -0
  80. package/dist/types/types/name-listing/index.d.ts +3 -0
  81. package/dist/types/types/name-listing/l2-name-registry.d.ts +13 -0
  82. package/dist/types/types/name-listing/listing.d.ts +73 -0
  83. package/dist/types/types/networks.d.ts +16 -0
  84. package/dist/types/utils/ens.d.ts +3 -0
  85. package/dist/types/utils/image-event-emitter.d.ts +8 -0
  86. package/dist/types/utils/models.d.ts +24 -0
  87. package/dist/types/web3/abis/index.d.ts +300 -0
  88. package/dist/types/web3/chains.d.ts +12 -0
  89. package/dist/types/web3/contracts/addresses.d.ts +4 -0
  90. package/dist/types/web3/efp-provider.d.ts +2 -0
  91. package/dist/types/web3/index.d.ts +5 -0
  92. package/dist/types/web3/providers.d.ts +3 -0
  93. package/dist/types/web3/wallet-connect.d.ts +2 -0
  94. package/package.json +13 -3
  95. package/dist/types/components/ens-names-register-component/ENSNamesRegisterComponent.d.ts +0 -17
  96. package/dist/types/components/ens-names-register-component/sub-components/Header.d.ts +0 -7
  97. package/dist/types/components/ens-names-register-component/sub-components/RegistrationProcess.d.ts +0 -17
  98. /package/dist/types/components/{ens-names-register-component → ens-names-registrar-component}/sub-components/ProgressBar.d.ts +0 -0
  99. /package/dist/types/components/{ens-names-register-component → ens-names-registrar-component}/sub-components/StepItem.d.ts +0 -0
  100. /package/dist/types/components/{ens-names-register-component → ens-names-registrar-component}/sub-components/SuccessScreen.d.ts +0 -0
  101. /package/dist/types/components/{ens-names-register-component → ens-names-registrar-component}/sub-components/Timer.d.ts +0 -0
  102. /package/dist/types/components/{ens-offchain-register-modal → subname-offchain-registrar-modal}/sub-components/InitialStep.d.ts +0 -0
  103. /package/dist/types/components/{ens-offchain-register-modal → subname-offchain-registrar-modal}/sub-components/OffchainRegistrationProcess.d.ts +0 -0
  104. /package/dist/types/components/{ens-offchain-register-modal → subname-offchain-registrar-modal}/sub-components/OffchainSuccessScreen.d.ts +0 -0
  105. /package/dist/types/components/{ens-onchain-register-modal → subname-onchain-registrar-modal}/sub-components/ConfirmationStep.d.ts +0 -0
  106. /package/dist/types/components/{ens-onchain-register-modal → subname-onchain-registrar-modal}/sub-components/InitialStep.d.ts +0 -0
  107. /package/dist/types/components/{ens-onchain-register-modal → subname-onchain-registrar-modal}/sub-components/OnchainSuccessScreen.d.ts +0 -0
@@ -0,0 +1,3624 @@
1
+ export declare const useMainPublicClient: () => {
2
+ account: undefined;
3
+ batch?: {
4
+ multicall?: boolean | import("viem").Prettify<import("viem").MulticallBatchOptions> | undefined;
5
+ } | undefined;
6
+ cacheTime: number;
7
+ ccipRead?: false | {
8
+ request?: (parameters: import("viem").CcipRequestParameters) => Promise<import("node_modules/viem/_types/utils/ccip").CcipRequestReturnType>;
9
+ } | undefined;
10
+ chain: import("viem").Chain;
11
+ experimental_blockTag?: import("viem").BlockTag | undefined;
12
+ key: string;
13
+ name: string;
14
+ pollingInterval: number;
15
+ request: import("viem").EIP1193RequestFn<import("viem").PublicRpcSchema>;
16
+ transport: import("viem").TransportConfig<string, import("viem").EIP1193RequestFn> & Record<string, any>;
17
+ type: string;
18
+ uid: string;
19
+ call: (parameters: import("viem").CallParameters<import("viem").Chain>) => Promise<import("viem").CallReturnType>;
20
+ createAccessList: (parameters: import("viem").CreateAccessListParameters<import("viem").Chain>) => Promise<{
21
+ accessList: import("viem").AccessList;
22
+ gasUsed: bigint;
23
+ }>;
24
+ createBlockFilter: () => Promise<import("viem").CreateBlockFilterReturnType>;
25
+ createContractEventFilter: <const abi extends import("abitype").Abi | readonly unknown[], eventName extends import("viem").ContractEventName<abi> | undefined, args extends import("viem").MaybeExtractEventArgsFromAbi<abi, eventName> | undefined, strict extends boolean | undefined = undefined, fromBlock extends import("viem").BlockNumber | import("viem").BlockTag | undefined = undefined, toBlock extends import("viem").BlockNumber | import("viem").BlockTag | undefined = undefined>(args: import("viem").CreateContractEventFilterParameters<abi, eventName, args, strict, fromBlock, toBlock>) => Promise<import("viem").CreateContractEventFilterReturnType<abi, eventName, args, strict, fromBlock, toBlock>>;
26
+ createEventFilter: <const abiEvent extends import("abitype").AbiEvent | undefined = undefined, const abiEvents extends readonly import("abitype").AbiEvent[] | readonly unknown[] | undefined = abiEvent extends import("abitype").AbiEvent ? [abiEvent] : undefined, strict extends boolean | undefined = undefined, fromBlock extends import("viem").BlockNumber | import("viem").BlockTag | undefined = undefined, toBlock extends import("viem").BlockNumber | import("viem").BlockTag | undefined = undefined, _EventName extends string | undefined = import("viem").MaybeAbiEventName<abiEvent>, _Args extends import("viem").MaybeExtractEventArgsFromAbi<abiEvents, _EventName> | undefined = undefined>(args?: import("viem").CreateEventFilterParameters<abiEvent, abiEvents, strict, fromBlock, toBlock, _EventName, _Args> | undefined) => Promise<import("viem").CreateEventFilterReturnType<abiEvent, abiEvents, strict, fromBlock, toBlock, _EventName, _Args>>;
27
+ createPendingTransactionFilter: () => Promise<import("viem").CreatePendingTransactionFilterReturnType>;
28
+ estimateContractGas: <chain extends import("viem").Chain | undefined, const abi extends import("abitype").Abi | readonly unknown[], functionName extends import("viem").ContractFunctionName<abi, "nonpayable" | "payable">, args extends import("viem").ContractFunctionArgs<abi, "nonpayable" | "payable", functionName>>(args: import("viem").EstimateContractGasParameters<abi, functionName, args, chain>) => Promise<import("viem").EstimateContractGasReturnType>;
29
+ estimateGas: (args: import("viem").EstimateGasParameters<import("viem").Chain>) => Promise<import("viem").EstimateGasReturnType>;
30
+ getBalance: (args: import("viem").GetBalanceParameters) => Promise<import("viem").GetBalanceReturnType>;
31
+ getBlobBaseFee: () => Promise<import("viem").GetBlobBaseFeeReturnType>;
32
+ getBlock: <includeTransactions extends boolean = false, blockTag extends import("viem").BlockTag = "latest">(args?: import("viem").GetBlockParameters<includeTransactions, blockTag> | undefined) => Promise<{
33
+ number: blockTag extends "pending" ? null : bigint;
34
+ nonce: blockTag extends "pending" ? null : `0x${string}`;
35
+ size: bigint;
36
+ hash: blockTag extends "pending" ? null : `0x${string}`;
37
+ logsBloom: blockTag extends "pending" ? null : `0x${string}`;
38
+ baseFeePerGas: bigint | null;
39
+ blobGasUsed: bigint;
40
+ difficulty: bigint;
41
+ excessBlobGas: bigint;
42
+ extraData: import("viem").Hex;
43
+ gasLimit: bigint;
44
+ gasUsed: bigint;
45
+ miner: import("abitype").Address;
46
+ mixHash: import("viem").Hash;
47
+ parentBeaconBlockRoot?: `0x${string}` | undefined;
48
+ parentHash: import("viem").Hash;
49
+ receiptsRoot: import("viem").Hex;
50
+ sealFields: import("viem").Hex[];
51
+ sha3Uncles: import("viem").Hash;
52
+ stateRoot: import("viem").Hash;
53
+ timestamp: bigint;
54
+ totalDifficulty: bigint | null;
55
+ transactionsRoot: import("viem").Hash;
56
+ uncles: import("viem").Hash[];
57
+ withdrawals?: import("viem").Withdrawal[] | undefined | undefined;
58
+ withdrawalsRoot?: `0x${string}` | undefined;
59
+ transactions: includeTransactions extends true ? ({
60
+ type: "legacy";
61
+ value: bigint;
62
+ nonce: number;
63
+ input: import("viem").Hex;
64
+ from: import("abitype").Address;
65
+ r: import("viem").Hex;
66
+ to: import("abitype").Address | null;
67
+ s: import("viem").Hex;
68
+ chainId?: number | undefined;
69
+ v: bigint;
70
+ yParity?: undefined | undefined;
71
+ gas: bigint;
72
+ maxFeePerBlobGas?: undefined | undefined;
73
+ gasPrice: bigint;
74
+ maxFeePerGas?: undefined | undefined;
75
+ maxPriorityFeePerGas?: undefined | undefined;
76
+ accessList?: undefined | undefined;
77
+ blobVersionedHashes?: undefined | undefined;
78
+ authorizationList?: undefined | undefined;
79
+ hash: import("viem").Hash;
80
+ typeHex: import("viem").Hex | null;
81
+ blockNumber: (blockTag extends "pending" ? true : false) extends infer T ? T extends (blockTag extends "pending" ? true : false) ? T extends true ? null : bigint : never : never;
82
+ blockHash: (blockTag extends "pending" ? true : false) extends infer T_1 ? T_1 extends (blockTag extends "pending" ? true : false) ? T_1 extends true ? null : `0x${string}` : never : never;
83
+ transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_2 ? T_2 extends (blockTag extends "pending" ? true : false) ? T_2 extends true ? null : number : never : never;
84
+ } | {
85
+ type: "eip2930";
86
+ value: bigint;
87
+ nonce: number;
88
+ input: import("viem").Hex;
89
+ from: import("abitype").Address;
90
+ r: import("viem").Hex;
91
+ to: import("abitype").Address | null;
92
+ s: import("viem").Hex;
93
+ chainId: number;
94
+ v: bigint;
95
+ yParity: number;
96
+ gas: bigint;
97
+ maxFeePerBlobGas?: undefined | undefined;
98
+ gasPrice: bigint;
99
+ maxFeePerGas?: undefined | undefined;
100
+ maxPriorityFeePerGas?: undefined | undefined;
101
+ accessList: import("viem").AccessList;
102
+ blobVersionedHashes?: undefined | undefined;
103
+ authorizationList?: undefined | undefined;
104
+ hash: import("viem").Hash;
105
+ typeHex: import("viem").Hex | null;
106
+ blockNumber: (blockTag extends "pending" ? true : false) extends infer T_3 ? T_3 extends (blockTag extends "pending" ? true : false) ? T_3 extends true ? null : bigint : never : never;
107
+ blockHash: (blockTag extends "pending" ? true : false) extends infer T_4 ? T_4 extends (blockTag extends "pending" ? true : false) ? T_4 extends true ? null : `0x${string}` : never : never;
108
+ transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_5 ? T_5 extends (blockTag extends "pending" ? true : false) ? T_5 extends true ? null : number : never : never;
109
+ } | {
110
+ type: "eip1559";
111
+ value: bigint;
112
+ nonce: number;
113
+ input: import("viem").Hex;
114
+ from: import("abitype").Address;
115
+ r: import("viem").Hex;
116
+ to: import("abitype").Address | null;
117
+ s: import("viem").Hex;
118
+ chainId: number;
119
+ v: bigint;
120
+ yParity: number;
121
+ gas: bigint;
122
+ maxFeePerBlobGas?: undefined | undefined;
123
+ gasPrice?: undefined | undefined;
124
+ maxFeePerGas: bigint;
125
+ maxPriorityFeePerGas: bigint;
126
+ accessList: import("viem").AccessList;
127
+ blobVersionedHashes?: undefined | undefined;
128
+ authorizationList?: undefined | undefined;
129
+ hash: import("viem").Hash;
130
+ typeHex: import("viem").Hex | null;
131
+ blockNumber: (blockTag extends "pending" ? true : false) extends infer T_6 ? T_6 extends (blockTag extends "pending" ? true : false) ? T_6 extends true ? null : bigint : never : never;
132
+ blockHash: (blockTag extends "pending" ? true : false) extends infer T_7 ? T_7 extends (blockTag extends "pending" ? true : false) ? T_7 extends true ? null : `0x${string}` : never : never;
133
+ transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_8 ? T_8 extends (blockTag extends "pending" ? true : false) ? T_8 extends true ? null : number : never : never;
134
+ } | {
135
+ type: "eip4844";
136
+ value: bigint;
137
+ nonce: number;
138
+ input: import("viem").Hex;
139
+ from: import("abitype").Address;
140
+ r: import("viem").Hex;
141
+ to: import("abitype").Address | null;
142
+ s: import("viem").Hex;
143
+ chainId: number;
144
+ v: bigint;
145
+ yParity: number;
146
+ gas: bigint;
147
+ maxFeePerBlobGas: bigint;
148
+ gasPrice?: undefined | undefined;
149
+ maxFeePerGas: bigint;
150
+ maxPriorityFeePerGas: bigint;
151
+ accessList: import("viem").AccessList;
152
+ blobVersionedHashes: readonly import("viem").Hex[];
153
+ authorizationList?: undefined | undefined;
154
+ hash: import("viem").Hash;
155
+ typeHex: import("viem").Hex | null;
156
+ blockNumber: (blockTag extends "pending" ? true : false) extends infer T_9 ? T_9 extends (blockTag extends "pending" ? true : false) ? T_9 extends true ? null : bigint : never : never;
157
+ blockHash: (blockTag extends "pending" ? true : false) extends infer T_10 ? T_10 extends (blockTag extends "pending" ? true : false) ? T_10 extends true ? null : `0x${string}` : never : never;
158
+ transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_11 ? T_11 extends (blockTag extends "pending" ? true : false) ? T_11 extends true ? null : number : never : never;
159
+ } | {
160
+ type: "eip7702";
161
+ value: bigint;
162
+ nonce: number;
163
+ input: import("viem").Hex;
164
+ from: import("abitype").Address;
165
+ r: import("viem").Hex;
166
+ to: import("abitype").Address | null;
167
+ s: import("viem").Hex;
168
+ chainId: number;
169
+ v: bigint;
170
+ yParity: number;
171
+ gas: bigint;
172
+ maxFeePerBlobGas?: undefined | undefined;
173
+ gasPrice?: undefined | undefined;
174
+ maxFeePerGas: bigint;
175
+ maxPriorityFeePerGas: bigint;
176
+ accessList: import("viem").AccessList;
177
+ blobVersionedHashes?: undefined | undefined;
178
+ authorizationList: import("viem").SignedAuthorizationList;
179
+ hash: import("viem").Hash;
180
+ typeHex: import("viem").Hex | null;
181
+ blockNumber: (blockTag extends "pending" ? true : false) extends infer T_12 ? T_12 extends (blockTag extends "pending" ? true : false) ? T_12 extends true ? null : bigint : never : never;
182
+ blockHash: (blockTag extends "pending" ? true : false) extends infer T_13 ? T_13 extends (blockTag extends "pending" ? true : false) ? T_13 extends true ? null : `0x${string}` : never : never;
183
+ transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_14 ? T_14 extends (blockTag extends "pending" ? true : false) ? T_14 extends true ? null : number : never : never;
184
+ })[] : `0x${string}`[];
185
+ }>;
186
+ getBlockNumber: (args?: import("viem").GetBlockNumberParameters | undefined) => Promise<import("viem").GetBlockNumberReturnType>;
187
+ getBlockTransactionCount: (args?: import("viem").GetBlockTransactionCountParameters | undefined) => Promise<import("viem").GetBlockTransactionCountReturnType>;
188
+ getBytecode: (args: import("viem").GetBytecodeParameters) => Promise<import("viem").GetBytecodeReturnType>;
189
+ getChainId: () => Promise<import("viem").GetChainIdReturnType>;
190
+ getCode: (args: import("viem").GetBytecodeParameters) => Promise<import("viem").GetBytecodeReturnType>;
191
+ getContractEvents: <const abi extends import("abitype").Abi | readonly unknown[], eventName extends import("viem").ContractEventName<abi> | undefined = undefined, strict extends boolean | undefined = undefined, fromBlock extends import("viem").BlockNumber | import("viem").BlockTag | undefined = undefined, toBlock extends import("viem").BlockNumber | import("viem").BlockTag | undefined = undefined>(args: import("viem").GetContractEventsParameters<abi, eventName, strict, fromBlock, toBlock>) => Promise<import("viem").GetContractEventsReturnType<abi, eventName, strict, fromBlock, toBlock>>;
192
+ getEip712Domain: (args: import("viem").GetEip712DomainParameters) => Promise<import("viem").GetEip712DomainReturnType>;
193
+ getEnsAddress: (args: import("viem").GetEnsAddressParameters) => Promise<import("viem").GetEnsAddressReturnType>;
194
+ getEnsAvatar: (args: import("viem").GetEnsAvatarParameters) => Promise<import("viem").GetEnsAvatarReturnType>;
195
+ getEnsName: (args: import("viem").GetEnsNameParameters) => Promise<import("viem").GetEnsNameReturnType>;
196
+ getEnsResolver: (args: import("viem").GetEnsResolverParameters) => Promise<import("viem").GetEnsResolverReturnType>;
197
+ getEnsText: (args: import("viem").GetEnsTextParameters) => Promise<import("viem").GetEnsTextReturnType>;
198
+ getFeeHistory: (args: import("viem").GetFeeHistoryParameters) => Promise<import("viem").GetFeeHistoryReturnType>;
199
+ estimateFeesPerGas: <chainOverride extends import("viem").Chain | undefined = undefined, type extends import("viem").FeeValuesType = "eip1559">(args?: import("viem").EstimateFeesPerGasParameters<import("viem").Chain, chainOverride, type> | undefined) => Promise<import("viem").EstimateFeesPerGasReturnType<type>>;
200
+ getFilterChanges: <filterType extends import("viem").FilterType, const abi extends import("abitype").Abi | readonly unknown[] | undefined, eventName extends string | undefined, strict extends boolean | undefined = undefined, fromBlock extends import("viem").BlockNumber | import("viem").BlockTag | undefined = undefined, toBlock extends import("viem").BlockNumber | import("viem").BlockTag | undefined = undefined>(args: import("viem").GetFilterChangesParameters<filterType, abi, eventName, strict, fromBlock, toBlock>) => Promise<import("viem").GetFilterChangesReturnType<filterType, abi, eventName, strict, fromBlock, toBlock>>;
201
+ getFilterLogs: <const abi extends import("abitype").Abi | readonly unknown[] | undefined, eventName extends string | undefined, strict extends boolean | undefined = undefined, fromBlock extends import("viem").BlockNumber | import("viem").BlockTag | undefined = undefined, toBlock extends import("viem").BlockNumber | import("viem").BlockTag | undefined = undefined>(args: import("viem").GetFilterLogsParameters<abi, eventName, strict, fromBlock, toBlock>) => Promise<import("viem").GetFilterLogsReturnType<abi, eventName, strict, fromBlock, toBlock>>;
202
+ getGasPrice: () => Promise<import("viem").GetGasPriceReturnType>;
203
+ getLogs: <const abiEvent extends import("abitype").AbiEvent | undefined = undefined, const abiEvents extends readonly import("abitype").AbiEvent[] | readonly unknown[] | undefined = abiEvent extends import("abitype").AbiEvent ? [abiEvent] : undefined, strict extends boolean | undefined = undefined, fromBlock extends import("viem").BlockNumber | import("viem").BlockTag | undefined = undefined, toBlock extends import("viem").BlockNumber | import("viem").BlockTag | undefined = undefined>(args?: import("viem").GetLogsParameters<abiEvent, abiEvents, strict, fromBlock, toBlock> | undefined) => Promise<import("viem").GetLogsReturnType<abiEvent, abiEvents, strict, fromBlock, toBlock>>;
204
+ getProof: (args: import("viem").GetProofParameters) => Promise<import("viem").GetProofReturnType>;
205
+ estimateMaxPriorityFeePerGas: <chainOverride extends import("viem").Chain | undefined = undefined>(args?: {
206
+ chain?: chainOverride | null | undefined;
207
+ } | undefined) => Promise<import("viem").EstimateMaxPriorityFeePerGasReturnType>;
208
+ getStorageAt: (args: import("viem").GetStorageAtParameters) => Promise<import("viem").GetStorageAtReturnType>;
209
+ getTransaction: <blockTag extends import("viem").BlockTag = "latest">(args: import("viem").GetTransactionParameters<blockTag>) => Promise<{
210
+ type: "legacy";
211
+ value: bigint;
212
+ nonce: number;
213
+ input: import("viem").Hex;
214
+ from: import("abitype").Address;
215
+ r: import("viem").Hex;
216
+ to: import("abitype").Address | null;
217
+ s: import("viem").Hex;
218
+ chainId?: number | undefined;
219
+ v: bigint;
220
+ yParity?: undefined | undefined;
221
+ gas: bigint;
222
+ maxFeePerBlobGas?: undefined | undefined;
223
+ gasPrice: bigint;
224
+ maxFeePerGas?: undefined | undefined;
225
+ maxPriorityFeePerGas?: undefined | undefined;
226
+ accessList?: undefined | undefined;
227
+ blobVersionedHashes?: undefined | undefined;
228
+ authorizationList?: undefined | undefined;
229
+ hash: import("viem").Hash;
230
+ typeHex: import("viem").Hex | null;
231
+ blockNumber: (blockTag extends "pending" ? true : false) extends infer T ? T extends (blockTag extends "pending" ? true : false) ? T extends true ? null : bigint : never : never;
232
+ blockHash: (blockTag extends "pending" ? true : false) extends infer T_1 ? T_1 extends (blockTag extends "pending" ? true : false) ? T_1 extends true ? null : `0x${string}` : never : never;
233
+ transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_2 ? T_2 extends (blockTag extends "pending" ? true : false) ? T_2 extends true ? null : number : never : never;
234
+ } | {
235
+ type: "eip2930";
236
+ value: bigint;
237
+ nonce: number;
238
+ input: import("viem").Hex;
239
+ from: import("abitype").Address;
240
+ r: import("viem").Hex;
241
+ to: import("abitype").Address | null;
242
+ s: import("viem").Hex;
243
+ chainId: number;
244
+ v: bigint;
245
+ yParity: number;
246
+ gas: bigint;
247
+ maxFeePerBlobGas?: undefined | undefined;
248
+ gasPrice: bigint;
249
+ maxFeePerGas?: undefined | undefined;
250
+ maxPriorityFeePerGas?: undefined | undefined;
251
+ accessList: import("viem").AccessList;
252
+ blobVersionedHashes?: undefined | undefined;
253
+ authorizationList?: undefined | undefined;
254
+ hash: import("viem").Hash;
255
+ typeHex: import("viem").Hex | null;
256
+ blockNumber: (blockTag extends "pending" ? true : false) extends infer T_3 ? T_3 extends (blockTag extends "pending" ? true : false) ? T_3 extends true ? null : bigint : never : never;
257
+ blockHash: (blockTag extends "pending" ? true : false) extends infer T_4 ? T_4 extends (blockTag extends "pending" ? true : false) ? T_4 extends true ? null : `0x${string}` : never : never;
258
+ transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_5 ? T_5 extends (blockTag extends "pending" ? true : false) ? T_5 extends true ? null : number : never : never;
259
+ } | {
260
+ type: "eip1559";
261
+ value: bigint;
262
+ nonce: number;
263
+ input: import("viem").Hex;
264
+ from: import("abitype").Address;
265
+ r: import("viem").Hex;
266
+ to: import("abitype").Address | null;
267
+ s: import("viem").Hex;
268
+ chainId: number;
269
+ v: bigint;
270
+ yParity: number;
271
+ gas: bigint;
272
+ maxFeePerBlobGas?: undefined | undefined;
273
+ gasPrice?: undefined | undefined;
274
+ maxFeePerGas: bigint;
275
+ maxPriorityFeePerGas: bigint;
276
+ accessList: import("viem").AccessList;
277
+ blobVersionedHashes?: undefined | undefined;
278
+ authorizationList?: undefined | undefined;
279
+ hash: import("viem").Hash;
280
+ typeHex: import("viem").Hex | null;
281
+ blockNumber: (blockTag extends "pending" ? true : false) extends infer T_6 ? T_6 extends (blockTag extends "pending" ? true : false) ? T_6 extends true ? null : bigint : never : never;
282
+ blockHash: (blockTag extends "pending" ? true : false) extends infer T_7 ? T_7 extends (blockTag extends "pending" ? true : false) ? T_7 extends true ? null : `0x${string}` : never : never;
283
+ transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_8 ? T_8 extends (blockTag extends "pending" ? true : false) ? T_8 extends true ? null : number : never : never;
284
+ } | {
285
+ type: "eip4844";
286
+ value: bigint;
287
+ nonce: number;
288
+ input: import("viem").Hex;
289
+ from: import("abitype").Address;
290
+ r: import("viem").Hex;
291
+ to: import("abitype").Address | null;
292
+ s: import("viem").Hex;
293
+ chainId: number;
294
+ v: bigint;
295
+ yParity: number;
296
+ gas: bigint;
297
+ maxFeePerBlobGas: bigint;
298
+ gasPrice?: undefined | undefined;
299
+ maxFeePerGas: bigint;
300
+ maxPriorityFeePerGas: bigint;
301
+ accessList: import("viem").AccessList;
302
+ blobVersionedHashes: readonly import("viem").Hex[];
303
+ authorizationList?: undefined | undefined;
304
+ hash: import("viem").Hash;
305
+ typeHex: import("viem").Hex | null;
306
+ blockNumber: (blockTag extends "pending" ? true : false) extends infer T_9 ? T_9 extends (blockTag extends "pending" ? true : false) ? T_9 extends true ? null : bigint : never : never;
307
+ blockHash: (blockTag extends "pending" ? true : false) extends infer T_10 ? T_10 extends (blockTag extends "pending" ? true : false) ? T_10 extends true ? null : `0x${string}` : never : never;
308
+ transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_11 ? T_11 extends (blockTag extends "pending" ? true : false) ? T_11 extends true ? null : number : never : never;
309
+ } | {
310
+ type: "eip7702";
311
+ value: bigint;
312
+ nonce: number;
313
+ input: import("viem").Hex;
314
+ from: import("abitype").Address;
315
+ r: import("viem").Hex;
316
+ to: import("abitype").Address | null;
317
+ s: import("viem").Hex;
318
+ chainId: number;
319
+ v: bigint;
320
+ yParity: number;
321
+ gas: bigint;
322
+ maxFeePerBlobGas?: undefined | undefined;
323
+ gasPrice?: undefined | undefined;
324
+ maxFeePerGas: bigint;
325
+ maxPriorityFeePerGas: bigint;
326
+ accessList: import("viem").AccessList;
327
+ blobVersionedHashes?: undefined | undefined;
328
+ authorizationList: import("viem").SignedAuthorizationList;
329
+ hash: import("viem").Hash;
330
+ typeHex: import("viem").Hex | null;
331
+ blockNumber: (blockTag extends "pending" ? true : false) extends infer T_12 ? T_12 extends (blockTag extends "pending" ? true : false) ? T_12 extends true ? null : bigint : never : never;
332
+ blockHash: (blockTag extends "pending" ? true : false) extends infer T_13 ? T_13 extends (blockTag extends "pending" ? true : false) ? T_13 extends true ? null : `0x${string}` : never : never;
333
+ transactionIndex: (blockTag extends "pending" ? true : false) extends infer T_14 ? T_14 extends (blockTag extends "pending" ? true : false) ? T_14 extends true ? null : number : never : never;
334
+ }>;
335
+ getTransactionConfirmations: (args: import("viem").GetTransactionConfirmationsParameters<import("viem").Chain>) => Promise<import("viem").GetTransactionConfirmationsReturnType>;
336
+ getTransactionCount: (args: import("viem").GetTransactionCountParameters) => Promise<import("viem").GetTransactionCountReturnType>;
337
+ getTransactionReceipt: (args: import("viem").GetTransactionReceiptParameters) => Promise<import("viem").TransactionReceipt>;
338
+ multicall: <const contracts extends readonly unknown[], allowFailure extends boolean = true>(args: import("viem").MulticallParameters<contracts, allowFailure>) => Promise<import("viem").MulticallReturnType<contracts, allowFailure>>;
339
+ prepareTransactionRequest: <const request extends import("viem").PrepareTransactionRequestRequest<import("viem").Chain, chainOverride>, chainOverride extends import("viem").Chain | undefined = undefined, accountOverride extends import("viem").Account | import("abitype").Address | undefined = undefined>(args: import("viem").PrepareTransactionRequestParameters<import("viem").Chain, import("viem").Account | undefined, chainOverride, accountOverride, request>) => Promise<import("viem").UnionRequiredBy<Extract<import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<import("viem").Chain, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> & (import("viem").DeriveChain<import("viem").Chain, chainOverride> extends infer T_1 ? T_1 extends import("viem").DeriveChain<import("viem").Chain, chainOverride> ? T_1 extends import("viem").Chain ? {
340
+ chain: T_1;
341
+ } : {
342
+ chain?: undefined;
343
+ } : never : never) & (import("viem").DeriveAccount<import("viem").Account | undefined, accountOverride> extends infer T_2 ? T_2 extends import("viem").DeriveAccount<import("viem").Account | undefined, accountOverride> ? T_2 extends import("viem").Account ? {
344
+ account: T_2;
345
+ from: import("abitype").Address;
346
+ } : {
347
+ account?: undefined;
348
+ from?: undefined;
349
+ } : never : never), import("viem").IsNever<((request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
350
+ accessList?: undefined | undefined;
351
+ authorizationList?: undefined | undefined;
352
+ blobs?: undefined | undefined;
353
+ blobVersionedHashes?: undefined | undefined;
354
+ gasPrice?: bigint | undefined;
355
+ sidecars?: undefined | undefined;
356
+ } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
357
+ accessList?: import("viem").AccessList | undefined;
358
+ authorizationList?: undefined | undefined;
359
+ blobs?: undefined | undefined;
360
+ blobVersionedHashes?: undefined | undefined;
361
+ gasPrice?: undefined | undefined;
362
+ maxFeePerBlobGas?: undefined | undefined;
363
+ maxFeePerGas?: bigint | undefined;
364
+ maxPriorityFeePerGas?: bigint | undefined;
365
+ sidecars?: undefined | undefined;
366
+ } & (import("viem").OneOf<{
367
+ maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
368
+ } | {
369
+ maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
370
+ }, import("viem").FeeValuesEIP1559> & {
371
+ accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
372
+ }) ? "eip1559" : never) | (request extends {
373
+ accessList?: import("viem").AccessList | undefined;
374
+ authorizationList?: undefined | undefined;
375
+ blobs?: undefined | undefined;
376
+ blobVersionedHashes?: undefined | undefined;
377
+ gasPrice?: bigint | undefined;
378
+ sidecars?: undefined | undefined;
379
+ maxFeePerBlobGas?: undefined | undefined;
380
+ maxFeePerGas?: undefined | undefined;
381
+ maxPriorityFeePerGas?: undefined | undefined;
382
+ } & {
383
+ accessList: import("viem").TransactionSerializableEIP2930["accessList"];
384
+ } ? "eip2930" : never) | (request extends ({
385
+ accessList?: import("viem").AccessList | undefined;
386
+ authorizationList?: undefined | undefined;
387
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
388
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
389
+ maxFeePerBlobGas?: bigint | undefined;
390
+ maxFeePerGas?: bigint | undefined;
391
+ maxPriorityFeePerGas?: bigint | undefined;
392
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
393
+ } | {
394
+ accessList?: import("viem").AccessList | undefined;
395
+ authorizationList?: undefined | undefined;
396
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
397
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
398
+ maxFeePerBlobGas?: bigint | undefined;
399
+ maxFeePerGas?: bigint | undefined;
400
+ maxPriorityFeePerGas?: bigint | undefined;
401
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
402
+ }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
403
+ blobs: import("viem").TransactionSerializableEIP4844["blobs"];
404
+ } | {
405
+ blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
406
+ } | {
407
+ sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
408
+ }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
409
+ accessList?: import("viem").AccessList | undefined;
410
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
411
+ blobs?: undefined | undefined;
412
+ blobVersionedHashes?: undefined | undefined;
413
+ gasPrice?: undefined | undefined;
414
+ maxFeePerBlobGas?: undefined | undefined;
415
+ maxFeePerGas?: bigint | undefined;
416
+ maxPriorityFeePerGas?: bigint | undefined;
417
+ sidecars?: undefined | undefined;
418
+ } | {
419
+ accessList?: import("viem").AccessList | undefined;
420
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
421
+ blobs?: undefined | undefined;
422
+ blobVersionedHashes?: undefined | undefined;
423
+ gasPrice?: undefined | undefined;
424
+ maxFeePerBlobGas?: undefined | undefined;
425
+ maxFeePerGas?: bigint | undefined;
426
+ maxPriorityFeePerGas?: bigint | undefined;
427
+ sidecars?: undefined | undefined;
428
+ }) & {
429
+ authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
430
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
431
+ accessList?: undefined | undefined;
432
+ authorizationList?: undefined | undefined;
433
+ blobs?: undefined | undefined;
434
+ blobVersionedHashes?: undefined | undefined;
435
+ gasPrice?: bigint | undefined;
436
+ sidecars?: undefined | undefined;
437
+ } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
438
+ accessList?: import("viem").AccessList | undefined;
439
+ authorizationList?: undefined | undefined;
440
+ blobs?: undefined | undefined;
441
+ blobVersionedHashes?: undefined | undefined;
442
+ gasPrice?: undefined | undefined;
443
+ maxFeePerBlobGas?: undefined | undefined;
444
+ maxFeePerGas?: bigint | undefined;
445
+ maxPriorityFeePerGas?: bigint | undefined;
446
+ sidecars?: undefined | undefined;
447
+ } & (import("viem").OneOf<{
448
+ maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
449
+ } | {
450
+ maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
451
+ }, import("viem").FeeValuesEIP1559> & {
452
+ accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
453
+ }) ? "eip1559" : never) | (request extends {
454
+ accessList?: import("viem").AccessList | undefined;
455
+ authorizationList?: undefined | undefined;
456
+ blobs?: undefined | undefined;
457
+ blobVersionedHashes?: undefined | undefined;
458
+ gasPrice?: bigint | undefined;
459
+ sidecars?: undefined | undefined;
460
+ maxFeePerBlobGas?: undefined | undefined;
461
+ maxFeePerGas?: undefined | undefined;
462
+ maxPriorityFeePerGas?: undefined | undefined;
463
+ } & {
464
+ accessList: import("viem").TransactionSerializableEIP2930["accessList"];
465
+ } ? "eip2930" : never) | (request extends ({
466
+ accessList?: import("viem").AccessList | undefined;
467
+ authorizationList?: undefined | undefined;
468
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
469
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
470
+ maxFeePerBlobGas?: bigint | undefined;
471
+ maxFeePerGas?: bigint | undefined;
472
+ maxPriorityFeePerGas?: bigint | undefined;
473
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
474
+ } | {
475
+ accessList?: import("viem").AccessList | undefined;
476
+ authorizationList?: undefined | undefined;
477
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
478
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
479
+ maxFeePerBlobGas?: bigint | undefined;
480
+ maxFeePerGas?: bigint | undefined;
481
+ maxPriorityFeePerGas?: bigint | undefined;
482
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
483
+ }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
484
+ blobs: import("viem").TransactionSerializableEIP4844["blobs"];
485
+ } | {
486
+ blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
487
+ } | {
488
+ sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
489
+ }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
490
+ accessList?: import("viem").AccessList | undefined;
491
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
492
+ blobs?: undefined | undefined;
493
+ blobVersionedHashes?: undefined | undefined;
494
+ gasPrice?: undefined | undefined;
495
+ maxFeePerBlobGas?: undefined | undefined;
496
+ maxFeePerGas?: bigint | undefined;
497
+ maxPriorityFeePerGas?: bigint | undefined;
498
+ sidecars?: undefined | undefined;
499
+ } | {
500
+ accessList?: import("viem").AccessList | undefined;
501
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
502
+ blobs?: undefined | undefined;
503
+ blobVersionedHashes?: undefined | undefined;
504
+ gasPrice?: undefined | undefined;
505
+ maxFeePerBlobGas?: undefined | undefined;
506
+ maxFeePerGas?: bigint | undefined;
507
+ maxPriorityFeePerGas?: bigint | undefined;
508
+ sidecars?: undefined | undefined;
509
+ }) & {
510
+ authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
511
+ } ? "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"] : import("viem").GetTransactionType<request, (request extends {
512
+ accessList?: undefined | undefined;
513
+ authorizationList?: undefined | undefined;
514
+ blobs?: undefined | undefined;
515
+ blobVersionedHashes?: undefined | undefined;
516
+ gasPrice?: bigint | undefined;
517
+ sidecars?: undefined | undefined;
518
+ } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
519
+ accessList?: import("viem").AccessList | undefined;
520
+ authorizationList?: undefined | undefined;
521
+ blobs?: undefined | undefined;
522
+ blobVersionedHashes?: undefined | undefined;
523
+ gasPrice?: undefined | undefined;
524
+ maxFeePerBlobGas?: undefined | undefined;
525
+ maxFeePerGas?: bigint | undefined;
526
+ maxPriorityFeePerGas?: bigint | undefined;
527
+ sidecars?: undefined | undefined;
528
+ } & (import("viem").OneOf<{
529
+ maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
530
+ } | {
531
+ maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
532
+ }, import("viem").FeeValuesEIP1559> & {
533
+ accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
534
+ }) ? "eip1559" : never) | (request extends {
535
+ accessList?: import("viem").AccessList | undefined;
536
+ authorizationList?: undefined | undefined;
537
+ blobs?: undefined | undefined;
538
+ blobVersionedHashes?: undefined | undefined;
539
+ gasPrice?: bigint | undefined;
540
+ sidecars?: undefined | undefined;
541
+ maxFeePerBlobGas?: undefined | undefined;
542
+ maxFeePerGas?: undefined | undefined;
543
+ maxPriorityFeePerGas?: undefined | undefined;
544
+ } & {
545
+ accessList: import("viem").TransactionSerializableEIP2930["accessList"];
546
+ } ? "eip2930" : never) | (request extends ({
547
+ accessList?: import("viem").AccessList | undefined;
548
+ authorizationList?: undefined | undefined;
549
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
550
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
551
+ maxFeePerBlobGas?: bigint | undefined;
552
+ maxFeePerGas?: bigint | undefined;
553
+ maxPriorityFeePerGas?: bigint | undefined;
554
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
555
+ } | {
556
+ accessList?: import("viem").AccessList | undefined;
557
+ authorizationList?: undefined | undefined;
558
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
559
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
560
+ maxFeePerBlobGas?: bigint | undefined;
561
+ maxFeePerGas?: bigint | undefined;
562
+ maxPriorityFeePerGas?: bigint | undefined;
563
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
564
+ }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
565
+ blobs: import("viem").TransactionSerializableEIP4844["blobs"];
566
+ } | {
567
+ blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
568
+ } | {
569
+ sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
570
+ }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
571
+ accessList?: import("viem").AccessList | undefined;
572
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
573
+ blobs?: undefined | undefined;
574
+ blobVersionedHashes?: undefined | undefined;
575
+ gasPrice?: undefined | undefined;
576
+ maxFeePerBlobGas?: undefined | undefined;
577
+ maxFeePerGas?: bigint | undefined;
578
+ maxPriorityFeePerGas?: bigint | undefined;
579
+ sidecars?: undefined | undefined;
580
+ } | {
581
+ accessList?: import("viem").AccessList | undefined;
582
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
583
+ blobs?: undefined | undefined;
584
+ blobVersionedHashes?: undefined | undefined;
585
+ gasPrice?: undefined | undefined;
586
+ maxFeePerBlobGas?: undefined | undefined;
587
+ maxFeePerGas?: bigint | undefined;
588
+ maxPriorityFeePerGas?: bigint | undefined;
589
+ sidecars?: undefined | undefined;
590
+ }) & {
591
+ authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
592
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
593
+ accessList?: undefined | undefined;
594
+ authorizationList?: undefined | undefined;
595
+ blobs?: undefined | undefined;
596
+ blobVersionedHashes?: undefined | undefined;
597
+ gasPrice?: bigint | undefined;
598
+ sidecars?: undefined | undefined;
599
+ } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
600
+ accessList?: import("viem").AccessList | undefined;
601
+ authorizationList?: undefined | undefined;
602
+ blobs?: undefined | undefined;
603
+ blobVersionedHashes?: undefined | undefined;
604
+ gasPrice?: undefined | undefined;
605
+ maxFeePerBlobGas?: undefined | undefined;
606
+ maxFeePerGas?: bigint | undefined;
607
+ maxPriorityFeePerGas?: bigint | undefined;
608
+ sidecars?: undefined | undefined;
609
+ } & (import("viem").OneOf<{
610
+ maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
611
+ } | {
612
+ maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
613
+ }, import("viem").FeeValuesEIP1559> & {
614
+ accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
615
+ }) ? "eip1559" : never) | (request extends {
616
+ accessList?: import("viem").AccessList | undefined;
617
+ authorizationList?: undefined | undefined;
618
+ blobs?: undefined | undefined;
619
+ blobVersionedHashes?: undefined | undefined;
620
+ gasPrice?: bigint | undefined;
621
+ sidecars?: undefined | undefined;
622
+ maxFeePerBlobGas?: undefined | undefined;
623
+ maxFeePerGas?: undefined | undefined;
624
+ maxPriorityFeePerGas?: undefined | undefined;
625
+ } & {
626
+ accessList: import("viem").TransactionSerializableEIP2930["accessList"];
627
+ } ? "eip2930" : never) | (request extends ({
628
+ accessList?: import("viem").AccessList | undefined;
629
+ authorizationList?: undefined | undefined;
630
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
631
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
632
+ maxFeePerBlobGas?: bigint | undefined;
633
+ maxFeePerGas?: bigint | undefined;
634
+ maxPriorityFeePerGas?: bigint | undefined;
635
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
636
+ } | {
637
+ accessList?: import("viem").AccessList | undefined;
638
+ authorizationList?: undefined | undefined;
639
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
640
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
641
+ maxFeePerBlobGas?: bigint | undefined;
642
+ maxFeePerGas?: bigint | undefined;
643
+ maxPriorityFeePerGas?: bigint | undefined;
644
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
645
+ }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
646
+ blobs: import("viem").TransactionSerializableEIP4844["blobs"];
647
+ } | {
648
+ blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
649
+ } | {
650
+ sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
651
+ }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
652
+ accessList?: import("viem").AccessList | undefined;
653
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
654
+ blobs?: undefined | undefined;
655
+ blobVersionedHashes?: undefined | undefined;
656
+ gasPrice?: undefined | undefined;
657
+ maxFeePerBlobGas?: undefined | undefined;
658
+ maxFeePerGas?: bigint | undefined;
659
+ maxPriorityFeePerGas?: bigint | undefined;
660
+ sidecars?: undefined | undefined;
661
+ } | {
662
+ accessList?: import("viem").AccessList | undefined;
663
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
664
+ blobs?: undefined | undefined;
665
+ blobVersionedHashes?: undefined | undefined;
666
+ gasPrice?: undefined | undefined;
667
+ maxFeePerBlobGas?: undefined | undefined;
668
+ maxFeePerGas?: bigint | undefined;
669
+ maxPriorityFeePerGas?: bigint | undefined;
670
+ sidecars?: undefined | undefined;
671
+ }) & {
672
+ authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
673
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_3 extends "legacy" ? import("viem").TransactionRequestLegacy : never : never : never) | ((request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
674
+ accessList?: undefined | undefined;
675
+ authorizationList?: undefined | undefined;
676
+ blobs?: undefined | undefined;
677
+ blobVersionedHashes?: undefined | undefined;
678
+ gasPrice?: bigint | undefined;
679
+ sidecars?: undefined | undefined;
680
+ } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
681
+ accessList?: import("viem").AccessList | undefined;
682
+ authorizationList?: undefined | undefined;
683
+ blobs?: undefined | undefined;
684
+ blobVersionedHashes?: undefined | undefined;
685
+ gasPrice?: undefined | undefined;
686
+ maxFeePerBlobGas?: undefined | undefined;
687
+ maxFeePerGas?: bigint | undefined;
688
+ maxPriorityFeePerGas?: bigint | undefined;
689
+ sidecars?: undefined | undefined;
690
+ } & (import("viem").OneOf<{
691
+ maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
692
+ } | {
693
+ maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
694
+ }, import("viem").FeeValuesEIP1559> & {
695
+ accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
696
+ }) ? "eip1559" : never) | (request extends {
697
+ accessList?: import("viem").AccessList | undefined;
698
+ authorizationList?: undefined | undefined;
699
+ blobs?: undefined | undefined;
700
+ blobVersionedHashes?: undefined | undefined;
701
+ gasPrice?: bigint | undefined;
702
+ sidecars?: undefined | undefined;
703
+ maxFeePerBlobGas?: undefined | undefined;
704
+ maxFeePerGas?: undefined | undefined;
705
+ maxPriorityFeePerGas?: undefined | undefined;
706
+ } & {
707
+ accessList: import("viem").TransactionSerializableEIP2930["accessList"];
708
+ } ? "eip2930" : never) | (request extends ({
709
+ accessList?: import("viem").AccessList | undefined;
710
+ authorizationList?: undefined | undefined;
711
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
712
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
713
+ maxFeePerBlobGas?: bigint | undefined;
714
+ maxFeePerGas?: bigint | undefined;
715
+ maxPriorityFeePerGas?: bigint | undefined;
716
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
717
+ } | {
718
+ accessList?: import("viem").AccessList | undefined;
719
+ authorizationList?: undefined | undefined;
720
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
721
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
722
+ maxFeePerBlobGas?: bigint | undefined;
723
+ maxFeePerGas?: bigint | undefined;
724
+ maxPriorityFeePerGas?: bigint | undefined;
725
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
726
+ }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
727
+ blobs: import("viem").TransactionSerializableEIP4844["blobs"];
728
+ } | {
729
+ blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
730
+ } | {
731
+ sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
732
+ }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
733
+ accessList?: import("viem").AccessList | undefined;
734
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
735
+ blobs?: undefined | undefined;
736
+ blobVersionedHashes?: undefined | undefined;
737
+ gasPrice?: undefined | undefined;
738
+ maxFeePerBlobGas?: undefined | undefined;
739
+ maxFeePerGas?: bigint | undefined;
740
+ maxPriorityFeePerGas?: bigint | undefined;
741
+ sidecars?: undefined | undefined;
742
+ } | {
743
+ accessList?: import("viem").AccessList | undefined;
744
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
745
+ blobs?: undefined | undefined;
746
+ blobVersionedHashes?: undefined | undefined;
747
+ gasPrice?: undefined | undefined;
748
+ maxFeePerBlobGas?: undefined | undefined;
749
+ maxFeePerGas?: bigint | undefined;
750
+ maxPriorityFeePerGas?: bigint | undefined;
751
+ sidecars?: undefined | undefined;
752
+ }) & {
753
+ authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
754
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
755
+ accessList?: undefined | undefined;
756
+ authorizationList?: undefined | undefined;
757
+ blobs?: undefined | undefined;
758
+ blobVersionedHashes?: undefined | undefined;
759
+ gasPrice?: bigint | undefined;
760
+ sidecars?: undefined | undefined;
761
+ } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
762
+ accessList?: import("viem").AccessList | undefined;
763
+ authorizationList?: undefined | undefined;
764
+ blobs?: undefined | undefined;
765
+ blobVersionedHashes?: undefined | undefined;
766
+ gasPrice?: undefined | undefined;
767
+ maxFeePerBlobGas?: undefined | undefined;
768
+ maxFeePerGas?: bigint | undefined;
769
+ maxPriorityFeePerGas?: bigint | undefined;
770
+ sidecars?: undefined | undefined;
771
+ } & (import("viem").OneOf<{
772
+ maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
773
+ } | {
774
+ maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
775
+ }, import("viem").FeeValuesEIP1559> & {
776
+ accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
777
+ }) ? "eip1559" : never) | (request extends {
778
+ accessList?: import("viem").AccessList | undefined;
779
+ authorizationList?: undefined | undefined;
780
+ blobs?: undefined | undefined;
781
+ blobVersionedHashes?: undefined | undefined;
782
+ gasPrice?: bigint | undefined;
783
+ sidecars?: undefined | undefined;
784
+ maxFeePerBlobGas?: undefined | undefined;
785
+ maxFeePerGas?: undefined | undefined;
786
+ maxPriorityFeePerGas?: undefined | undefined;
787
+ } & {
788
+ accessList: import("viem").TransactionSerializableEIP2930["accessList"];
789
+ } ? "eip2930" : never) | (request extends ({
790
+ accessList?: import("viem").AccessList | undefined;
791
+ authorizationList?: undefined | undefined;
792
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
793
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
794
+ maxFeePerBlobGas?: bigint | undefined;
795
+ maxFeePerGas?: bigint | undefined;
796
+ maxPriorityFeePerGas?: bigint | undefined;
797
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
798
+ } | {
799
+ accessList?: import("viem").AccessList | undefined;
800
+ authorizationList?: undefined | undefined;
801
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
802
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
803
+ maxFeePerBlobGas?: bigint | undefined;
804
+ maxFeePerGas?: bigint | undefined;
805
+ maxPriorityFeePerGas?: bigint | undefined;
806
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
807
+ }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
808
+ blobs: import("viem").TransactionSerializableEIP4844["blobs"];
809
+ } | {
810
+ blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
811
+ } | {
812
+ sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
813
+ }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
814
+ accessList?: import("viem").AccessList | undefined;
815
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
816
+ blobs?: undefined | undefined;
817
+ blobVersionedHashes?: undefined | undefined;
818
+ gasPrice?: undefined | undefined;
819
+ maxFeePerBlobGas?: undefined | undefined;
820
+ maxFeePerGas?: bigint | undefined;
821
+ maxPriorityFeePerGas?: bigint | undefined;
822
+ sidecars?: undefined | undefined;
823
+ } | {
824
+ accessList?: import("viem").AccessList | undefined;
825
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
826
+ blobs?: undefined | undefined;
827
+ blobVersionedHashes?: undefined | undefined;
828
+ gasPrice?: undefined | undefined;
829
+ maxFeePerBlobGas?: undefined | undefined;
830
+ maxFeePerGas?: bigint | undefined;
831
+ maxPriorityFeePerGas?: bigint | undefined;
832
+ sidecars?: undefined | undefined;
833
+ }) & {
834
+ authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
835
+ } ? "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"] : import("viem").GetTransactionType<request, (request extends {
836
+ accessList?: undefined | undefined;
837
+ authorizationList?: undefined | undefined;
838
+ blobs?: undefined | undefined;
839
+ blobVersionedHashes?: undefined | undefined;
840
+ gasPrice?: bigint | undefined;
841
+ sidecars?: undefined | undefined;
842
+ } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
843
+ accessList?: import("viem").AccessList | undefined;
844
+ authorizationList?: undefined | undefined;
845
+ blobs?: undefined | undefined;
846
+ blobVersionedHashes?: undefined | undefined;
847
+ gasPrice?: undefined | undefined;
848
+ maxFeePerBlobGas?: undefined | undefined;
849
+ maxFeePerGas?: bigint | undefined;
850
+ maxPriorityFeePerGas?: bigint | undefined;
851
+ sidecars?: undefined | undefined;
852
+ } & (import("viem").OneOf<{
853
+ maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
854
+ } | {
855
+ maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
856
+ }, import("viem").FeeValuesEIP1559> & {
857
+ accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
858
+ }) ? "eip1559" : never) | (request extends {
859
+ accessList?: import("viem").AccessList | undefined;
860
+ authorizationList?: undefined | undefined;
861
+ blobs?: undefined | undefined;
862
+ blobVersionedHashes?: undefined | undefined;
863
+ gasPrice?: bigint | undefined;
864
+ sidecars?: undefined | undefined;
865
+ maxFeePerBlobGas?: undefined | undefined;
866
+ maxFeePerGas?: undefined | undefined;
867
+ maxPriorityFeePerGas?: undefined | undefined;
868
+ } & {
869
+ accessList: import("viem").TransactionSerializableEIP2930["accessList"];
870
+ } ? "eip2930" : never) | (request extends ({
871
+ accessList?: import("viem").AccessList | undefined;
872
+ authorizationList?: undefined | undefined;
873
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
874
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
875
+ maxFeePerBlobGas?: bigint | undefined;
876
+ maxFeePerGas?: bigint | undefined;
877
+ maxPriorityFeePerGas?: bigint | undefined;
878
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
879
+ } | {
880
+ accessList?: import("viem").AccessList | undefined;
881
+ authorizationList?: undefined | undefined;
882
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
883
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
884
+ maxFeePerBlobGas?: bigint | undefined;
885
+ maxFeePerGas?: bigint | undefined;
886
+ maxPriorityFeePerGas?: bigint | undefined;
887
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
888
+ }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
889
+ blobs: import("viem").TransactionSerializableEIP4844["blobs"];
890
+ } | {
891
+ blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
892
+ } | {
893
+ sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
894
+ }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
895
+ accessList?: import("viem").AccessList | undefined;
896
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
897
+ blobs?: undefined | undefined;
898
+ blobVersionedHashes?: undefined | undefined;
899
+ gasPrice?: undefined | undefined;
900
+ maxFeePerBlobGas?: undefined | undefined;
901
+ maxFeePerGas?: bigint | undefined;
902
+ maxPriorityFeePerGas?: bigint | undefined;
903
+ sidecars?: undefined | undefined;
904
+ } | {
905
+ accessList?: import("viem").AccessList | undefined;
906
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
907
+ blobs?: undefined | undefined;
908
+ blobVersionedHashes?: undefined | undefined;
909
+ gasPrice?: undefined | undefined;
910
+ maxFeePerBlobGas?: undefined | undefined;
911
+ maxFeePerGas?: bigint | undefined;
912
+ maxPriorityFeePerGas?: bigint | undefined;
913
+ sidecars?: undefined | undefined;
914
+ }) & {
915
+ authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
916
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
917
+ accessList?: undefined | undefined;
918
+ authorizationList?: undefined | undefined;
919
+ blobs?: undefined | undefined;
920
+ blobVersionedHashes?: undefined | undefined;
921
+ gasPrice?: bigint | undefined;
922
+ sidecars?: undefined | undefined;
923
+ } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
924
+ accessList?: import("viem").AccessList | undefined;
925
+ authorizationList?: undefined | undefined;
926
+ blobs?: undefined | undefined;
927
+ blobVersionedHashes?: undefined | undefined;
928
+ gasPrice?: undefined | undefined;
929
+ maxFeePerBlobGas?: undefined | undefined;
930
+ maxFeePerGas?: bigint | undefined;
931
+ maxPriorityFeePerGas?: bigint | undefined;
932
+ sidecars?: undefined | undefined;
933
+ } & (import("viem").OneOf<{
934
+ maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
935
+ } | {
936
+ maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
937
+ }, import("viem").FeeValuesEIP1559> & {
938
+ accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
939
+ }) ? "eip1559" : never) | (request extends {
940
+ accessList?: import("viem").AccessList | undefined;
941
+ authorizationList?: undefined | undefined;
942
+ blobs?: undefined | undefined;
943
+ blobVersionedHashes?: undefined | undefined;
944
+ gasPrice?: bigint | undefined;
945
+ sidecars?: undefined | undefined;
946
+ maxFeePerBlobGas?: undefined | undefined;
947
+ maxFeePerGas?: undefined | undefined;
948
+ maxPriorityFeePerGas?: undefined | undefined;
949
+ } & {
950
+ accessList: import("viem").TransactionSerializableEIP2930["accessList"];
951
+ } ? "eip2930" : never) | (request extends ({
952
+ accessList?: import("viem").AccessList | undefined;
953
+ authorizationList?: undefined | undefined;
954
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
955
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
956
+ maxFeePerBlobGas?: bigint | undefined;
957
+ maxFeePerGas?: bigint | undefined;
958
+ maxPriorityFeePerGas?: bigint | undefined;
959
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
960
+ } | {
961
+ accessList?: import("viem").AccessList | undefined;
962
+ authorizationList?: undefined | undefined;
963
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
964
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
965
+ maxFeePerBlobGas?: bigint | undefined;
966
+ maxFeePerGas?: bigint | undefined;
967
+ maxPriorityFeePerGas?: bigint | undefined;
968
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
969
+ }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
970
+ blobs: import("viem").TransactionSerializableEIP4844["blobs"];
971
+ } | {
972
+ blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
973
+ } | {
974
+ sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
975
+ }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
976
+ accessList?: import("viem").AccessList | undefined;
977
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
978
+ blobs?: undefined | undefined;
979
+ blobVersionedHashes?: undefined | undefined;
980
+ gasPrice?: undefined | undefined;
981
+ maxFeePerBlobGas?: undefined | undefined;
982
+ maxFeePerGas?: bigint | undefined;
983
+ maxPriorityFeePerGas?: bigint | undefined;
984
+ sidecars?: undefined | undefined;
985
+ } | {
986
+ accessList?: import("viem").AccessList | undefined;
987
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
988
+ blobs?: undefined | undefined;
989
+ blobVersionedHashes?: undefined | undefined;
990
+ gasPrice?: undefined | undefined;
991
+ maxFeePerBlobGas?: undefined | undefined;
992
+ maxFeePerGas?: bigint | undefined;
993
+ maxPriorityFeePerGas?: bigint | undefined;
994
+ sidecars?: undefined | undefined;
995
+ }) & {
996
+ authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
997
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_4 extends "eip1559" ? import("viem").TransactionRequestEIP1559 : never : never : never) | ((request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
998
+ accessList?: undefined | undefined;
999
+ authorizationList?: undefined | undefined;
1000
+ blobs?: undefined | undefined;
1001
+ blobVersionedHashes?: undefined | undefined;
1002
+ gasPrice?: bigint | undefined;
1003
+ sidecars?: undefined | undefined;
1004
+ } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
1005
+ accessList?: import("viem").AccessList | undefined;
1006
+ authorizationList?: undefined | undefined;
1007
+ blobs?: undefined | undefined;
1008
+ blobVersionedHashes?: undefined | undefined;
1009
+ gasPrice?: undefined | undefined;
1010
+ maxFeePerBlobGas?: undefined | undefined;
1011
+ maxFeePerGas?: bigint | undefined;
1012
+ maxPriorityFeePerGas?: bigint | undefined;
1013
+ sidecars?: undefined | undefined;
1014
+ } & (import("viem").OneOf<{
1015
+ maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
1016
+ } | {
1017
+ maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
1018
+ }, import("viem").FeeValuesEIP1559> & {
1019
+ accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
1020
+ }) ? "eip1559" : never) | (request extends {
1021
+ accessList?: import("viem").AccessList | undefined;
1022
+ authorizationList?: undefined | undefined;
1023
+ blobs?: undefined | undefined;
1024
+ blobVersionedHashes?: undefined | undefined;
1025
+ gasPrice?: bigint | undefined;
1026
+ sidecars?: undefined | undefined;
1027
+ maxFeePerBlobGas?: undefined | undefined;
1028
+ maxFeePerGas?: undefined | undefined;
1029
+ maxPriorityFeePerGas?: undefined | undefined;
1030
+ } & {
1031
+ accessList: import("viem").TransactionSerializableEIP2930["accessList"];
1032
+ } ? "eip2930" : never) | (request extends ({
1033
+ accessList?: import("viem").AccessList | undefined;
1034
+ authorizationList?: undefined | undefined;
1035
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1036
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1037
+ maxFeePerBlobGas?: bigint | undefined;
1038
+ maxFeePerGas?: bigint | undefined;
1039
+ maxPriorityFeePerGas?: bigint | undefined;
1040
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1041
+ } | {
1042
+ accessList?: import("viem").AccessList | undefined;
1043
+ authorizationList?: undefined | undefined;
1044
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1045
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1046
+ maxFeePerBlobGas?: bigint | undefined;
1047
+ maxFeePerGas?: bigint | undefined;
1048
+ maxPriorityFeePerGas?: bigint | undefined;
1049
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1050
+ }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
1051
+ blobs: import("viem").TransactionSerializableEIP4844["blobs"];
1052
+ } | {
1053
+ blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
1054
+ } | {
1055
+ sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
1056
+ }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
1057
+ accessList?: import("viem").AccessList | undefined;
1058
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
1059
+ blobs?: undefined | undefined;
1060
+ blobVersionedHashes?: undefined | undefined;
1061
+ gasPrice?: undefined | undefined;
1062
+ maxFeePerBlobGas?: undefined | undefined;
1063
+ maxFeePerGas?: bigint | undefined;
1064
+ maxPriorityFeePerGas?: bigint | undefined;
1065
+ sidecars?: undefined | undefined;
1066
+ } | {
1067
+ accessList?: import("viem").AccessList | undefined;
1068
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
1069
+ blobs?: undefined | undefined;
1070
+ blobVersionedHashes?: undefined | undefined;
1071
+ gasPrice?: undefined | undefined;
1072
+ maxFeePerBlobGas?: undefined | undefined;
1073
+ maxFeePerGas?: bigint | undefined;
1074
+ maxPriorityFeePerGas?: bigint | undefined;
1075
+ sidecars?: undefined | undefined;
1076
+ }) & {
1077
+ authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
1078
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
1079
+ accessList?: undefined | undefined;
1080
+ authorizationList?: undefined | undefined;
1081
+ blobs?: undefined | undefined;
1082
+ blobVersionedHashes?: undefined | undefined;
1083
+ gasPrice?: bigint | undefined;
1084
+ sidecars?: undefined | undefined;
1085
+ } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
1086
+ accessList?: import("viem").AccessList | undefined;
1087
+ authorizationList?: undefined | undefined;
1088
+ blobs?: undefined | undefined;
1089
+ blobVersionedHashes?: undefined | undefined;
1090
+ gasPrice?: undefined | undefined;
1091
+ maxFeePerBlobGas?: undefined | undefined;
1092
+ maxFeePerGas?: bigint | undefined;
1093
+ maxPriorityFeePerGas?: bigint | undefined;
1094
+ sidecars?: undefined | undefined;
1095
+ } & (import("viem").OneOf<{
1096
+ maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
1097
+ } | {
1098
+ maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
1099
+ }, import("viem").FeeValuesEIP1559> & {
1100
+ accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
1101
+ }) ? "eip1559" : never) | (request extends {
1102
+ accessList?: import("viem").AccessList | undefined;
1103
+ authorizationList?: undefined | undefined;
1104
+ blobs?: undefined | undefined;
1105
+ blobVersionedHashes?: undefined | undefined;
1106
+ gasPrice?: bigint | undefined;
1107
+ sidecars?: undefined | undefined;
1108
+ maxFeePerBlobGas?: undefined | undefined;
1109
+ maxFeePerGas?: undefined | undefined;
1110
+ maxPriorityFeePerGas?: undefined | undefined;
1111
+ } & {
1112
+ accessList: import("viem").TransactionSerializableEIP2930["accessList"];
1113
+ } ? "eip2930" : never) | (request extends ({
1114
+ accessList?: import("viem").AccessList | undefined;
1115
+ authorizationList?: undefined | undefined;
1116
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1117
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1118
+ maxFeePerBlobGas?: bigint | undefined;
1119
+ maxFeePerGas?: bigint | undefined;
1120
+ maxPriorityFeePerGas?: bigint | undefined;
1121
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1122
+ } | {
1123
+ accessList?: import("viem").AccessList | undefined;
1124
+ authorizationList?: undefined | undefined;
1125
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1126
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1127
+ maxFeePerBlobGas?: bigint | undefined;
1128
+ maxFeePerGas?: bigint | undefined;
1129
+ maxPriorityFeePerGas?: bigint | undefined;
1130
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1131
+ }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
1132
+ blobs: import("viem").TransactionSerializableEIP4844["blobs"];
1133
+ } | {
1134
+ blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
1135
+ } | {
1136
+ sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
1137
+ }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
1138
+ accessList?: import("viem").AccessList | undefined;
1139
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
1140
+ blobs?: undefined | undefined;
1141
+ blobVersionedHashes?: undefined | undefined;
1142
+ gasPrice?: undefined | undefined;
1143
+ maxFeePerBlobGas?: undefined | undefined;
1144
+ maxFeePerGas?: bigint | undefined;
1145
+ maxPriorityFeePerGas?: bigint | undefined;
1146
+ sidecars?: undefined | undefined;
1147
+ } | {
1148
+ accessList?: import("viem").AccessList | undefined;
1149
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
1150
+ blobs?: undefined | undefined;
1151
+ blobVersionedHashes?: undefined | undefined;
1152
+ gasPrice?: undefined | undefined;
1153
+ maxFeePerBlobGas?: undefined | undefined;
1154
+ maxFeePerGas?: bigint | undefined;
1155
+ maxPriorityFeePerGas?: bigint | undefined;
1156
+ sidecars?: undefined | undefined;
1157
+ }) & {
1158
+ authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
1159
+ } ? "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"] : import("viem").GetTransactionType<request, (request extends {
1160
+ accessList?: undefined | undefined;
1161
+ authorizationList?: undefined | undefined;
1162
+ blobs?: undefined | undefined;
1163
+ blobVersionedHashes?: undefined | undefined;
1164
+ gasPrice?: bigint | undefined;
1165
+ sidecars?: undefined | undefined;
1166
+ } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
1167
+ accessList?: import("viem").AccessList | undefined;
1168
+ authorizationList?: undefined | undefined;
1169
+ blobs?: undefined | undefined;
1170
+ blobVersionedHashes?: undefined | undefined;
1171
+ gasPrice?: undefined | undefined;
1172
+ maxFeePerBlobGas?: undefined | undefined;
1173
+ maxFeePerGas?: bigint | undefined;
1174
+ maxPriorityFeePerGas?: bigint | undefined;
1175
+ sidecars?: undefined | undefined;
1176
+ } & (import("viem").OneOf<{
1177
+ maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
1178
+ } | {
1179
+ maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
1180
+ }, import("viem").FeeValuesEIP1559> & {
1181
+ accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
1182
+ }) ? "eip1559" : never) | (request extends {
1183
+ accessList?: import("viem").AccessList | undefined;
1184
+ authorizationList?: undefined | undefined;
1185
+ blobs?: undefined | undefined;
1186
+ blobVersionedHashes?: undefined | undefined;
1187
+ gasPrice?: bigint | undefined;
1188
+ sidecars?: undefined | undefined;
1189
+ maxFeePerBlobGas?: undefined | undefined;
1190
+ maxFeePerGas?: undefined | undefined;
1191
+ maxPriorityFeePerGas?: undefined | undefined;
1192
+ } & {
1193
+ accessList: import("viem").TransactionSerializableEIP2930["accessList"];
1194
+ } ? "eip2930" : never) | (request extends ({
1195
+ accessList?: import("viem").AccessList | undefined;
1196
+ authorizationList?: undefined | undefined;
1197
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1198
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1199
+ maxFeePerBlobGas?: bigint | undefined;
1200
+ maxFeePerGas?: bigint | undefined;
1201
+ maxPriorityFeePerGas?: bigint | undefined;
1202
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1203
+ } | {
1204
+ accessList?: import("viem").AccessList | undefined;
1205
+ authorizationList?: undefined | undefined;
1206
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1207
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1208
+ maxFeePerBlobGas?: bigint | undefined;
1209
+ maxFeePerGas?: bigint | undefined;
1210
+ maxPriorityFeePerGas?: bigint | undefined;
1211
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1212
+ }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
1213
+ blobs: import("viem").TransactionSerializableEIP4844["blobs"];
1214
+ } | {
1215
+ blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
1216
+ } | {
1217
+ sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
1218
+ }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
1219
+ accessList?: import("viem").AccessList | undefined;
1220
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
1221
+ blobs?: undefined | undefined;
1222
+ blobVersionedHashes?: undefined | undefined;
1223
+ gasPrice?: undefined | undefined;
1224
+ maxFeePerBlobGas?: undefined | undefined;
1225
+ maxFeePerGas?: bigint | undefined;
1226
+ maxPriorityFeePerGas?: bigint | undefined;
1227
+ sidecars?: undefined | undefined;
1228
+ } | {
1229
+ accessList?: import("viem").AccessList | undefined;
1230
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
1231
+ blobs?: undefined | undefined;
1232
+ blobVersionedHashes?: undefined | undefined;
1233
+ gasPrice?: undefined | undefined;
1234
+ maxFeePerBlobGas?: undefined | undefined;
1235
+ maxFeePerGas?: bigint | undefined;
1236
+ maxPriorityFeePerGas?: bigint | undefined;
1237
+ sidecars?: undefined | undefined;
1238
+ }) & {
1239
+ authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
1240
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
1241
+ accessList?: undefined | undefined;
1242
+ authorizationList?: undefined | undefined;
1243
+ blobs?: undefined | undefined;
1244
+ blobVersionedHashes?: undefined | undefined;
1245
+ gasPrice?: bigint | undefined;
1246
+ sidecars?: undefined | undefined;
1247
+ } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
1248
+ accessList?: import("viem").AccessList | undefined;
1249
+ authorizationList?: undefined | undefined;
1250
+ blobs?: undefined | undefined;
1251
+ blobVersionedHashes?: undefined | undefined;
1252
+ gasPrice?: undefined | undefined;
1253
+ maxFeePerBlobGas?: undefined | undefined;
1254
+ maxFeePerGas?: bigint | undefined;
1255
+ maxPriorityFeePerGas?: bigint | undefined;
1256
+ sidecars?: undefined | undefined;
1257
+ } & (import("viem").OneOf<{
1258
+ maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
1259
+ } | {
1260
+ maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
1261
+ }, import("viem").FeeValuesEIP1559> & {
1262
+ accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
1263
+ }) ? "eip1559" : never) | (request extends {
1264
+ accessList?: import("viem").AccessList | undefined;
1265
+ authorizationList?: undefined | undefined;
1266
+ blobs?: undefined | undefined;
1267
+ blobVersionedHashes?: undefined | undefined;
1268
+ gasPrice?: bigint | undefined;
1269
+ sidecars?: undefined | undefined;
1270
+ maxFeePerBlobGas?: undefined | undefined;
1271
+ maxFeePerGas?: undefined | undefined;
1272
+ maxPriorityFeePerGas?: undefined | undefined;
1273
+ } & {
1274
+ accessList: import("viem").TransactionSerializableEIP2930["accessList"];
1275
+ } ? "eip2930" : never) | (request extends ({
1276
+ accessList?: import("viem").AccessList | undefined;
1277
+ authorizationList?: undefined | undefined;
1278
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1279
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1280
+ maxFeePerBlobGas?: bigint | undefined;
1281
+ maxFeePerGas?: bigint | undefined;
1282
+ maxPriorityFeePerGas?: bigint | undefined;
1283
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1284
+ } | {
1285
+ accessList?: import("viem").AccessList | undefined;
1286
+ authorizationList?: undefined | undefined;
1287
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1288
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1289
+ maxFeePerBlobGas?: bigint | undefined;
1290
+ maxFeePerGas?: bigint | undefined;
1291
+ maxPriorityFeePerGas?: bigint | undefined;
1292
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1293
+ }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
1294
+ blobs: import("viem").TransactionSerializableEIP4844["blobs"];
1295
+ } | {
1296
+ blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
1297
+ } | {
1298
+ sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
1299
+ }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
1300
+ accessList?: import("viem").AccessList | undefined;
1301
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
1302
+ blobs?: undefined | undefined;
1303
+ blobVersionedHashes?: undefined | undefined;
1304
+ gasPrice?: undefined | undefined;
1305
+ maxFeePerBlobGas?: undefined | undefined;
1306
+ maxFeePerGas?: bigint | undefined;
1307
+ maxPriorityFeePerGas?: bigint | undefined;
1308
+ sidecars?: undefined | undefined;
1309
+ } | {
1310
+ accessList?: import("viem").AccessList | undefined;
1311
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
1312
+ blobs?: undefined | undefined;
1313
+ blobVersionedHashes?: undefined | undefined;
1314
+ gasPrice?: undefined | undefined;
1315
+ maxFeePerBlobGas?: undefined | undefined;
1316
+ maxFeePerGas?: bigint | undefined;
1317
+ maxPriorityFeePerGas?: bigint | undefined;
1318
+ sidecars?: undefined | undefined;
1319
+ }) & {
1320
+ authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
1321
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_5 extends "eip2930" ? import("viem").TransactionRequestEIP2930 : never : never : never) | ((request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
1322
+ accessList?: undefined | undefined;
1323
+ authorizationList?: undefined | undefined;
1324
+ blobs?: undefined | undefined;
1325
+ blobVersionedHashes?: undefined | undefined;
1326
+ gasPrice?: bigint | undefined;
1327
+ sidecars?: undefined | undefined;
1328
+ } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
1329
+ accessList?: import("viem").AccessList | undefined;
1330
+ authorizationList?: undefined | undefined;
1331
+ blobs?: undefined | undefined;
1332
+ blobVersionedHashes?: undefined | undefined;
1333
+ gasPrice?: undefined | undefined;
1334
+ maxFeePerBlobGas?: undefined | undefined;
1335
+ maxFeePerGas?: bigint | undefined;
1336
+ maxPriorityFeePerGas?: bigint | undefined;
1337
+ sidecars?: undefined | undefined;
1338
+ } & (import("viem").OneOf<{
1339
+ maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
1340
+ } | {
1341
+ maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
1342
+ }, import("viem").FeeValuesEIP1559> & {
1343
+ accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
1344
+ }) ? "eip1559" : never) | (request extends {
1345
+ accessList?: import("viem").AccessList | undefined;
1346
+ authorizationList?: undefined | undefined;
1347
+ blobs?: undefined | undefined;
1348
+ blobVersionedHashes?: undefined | undefined;
1349
+ gasPrice?: bigint | undefined;
1350
+ sidecars?: undefined | undefined;
1351
+ maxFeePerBlobGas?: undefined | undefined;
1352
+ maxFeePerGas?: undefined | undefined;
1353
+ maxPriorityFeePerGas?: undefined | undefined;
1354
+ } & {
1355
+ accessList: import("viem").TransactionSerializableEIP2930["accessList"];
1356
+ } ? "eip2930" : never) | (request extends ({
1357
+ accessList?: import("viem").AccessList | undefined;
1358
+ authorizationList?: undefined | undefined;
1359
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1360
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1361
+ maxFeePerBlobGas?: bigint | undefined;
1362
+ maxFeePerGas?: bigint | undefined;
1363
+ maxPriorityFeePerGas?: bigint | undefined;
1364
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1365
+ } | {
1366
+ accessList?: import("viem").AccessList | undefined;
1367
+ authorizationList?: undefined | undefined;
1368
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1369
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1370
+ maxFeePerBlobGas?: bigint | undefined;
1371
+ maxFeePerGas?: bigint | undefined;
1372
+ maxPriorityFeePerGas?: bigint | undefined;
1373
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1374
+ }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
1375
+ blobs: import("viem").TransactionSerializableEIP4844["blobs"];
1376
+ } | {
1377
+ blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
1378
+ } | {
1379
+ sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
1380
+ }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
1381
+ accessList?: import("viem").AccessList | undefined;
1382
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
1383
+ blobs?: undefined | undefined;
1384
+ blobVersionedHashes?: undefined | undefined;
1385
+ gasPrice?: undefined | undefined;
1386
+ maxFeePerBlobGas?: undefined | undefined;
1387
+ maxFeePerGas?: bigint | undefined;
1388
+ maxPriorityFeePerGas?: bigint | undefined;
1389
+ sidecars?: undefined | undefined;
1390
+ } | {
1391
+ accessList?: import("viem").AccessList | undefined;
1392
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
1393
+ blobs?: undefined | undefined;
1394
+ blobVersionedHashes?: undefined | undefined;
1395
+ gasPrice?: undefined | undefined;
1396
+ maxFeePerBlobGas?: undefined | undefined;
1397
+ maxFeePerGas?: bigint | undefined;
1398
+ maxPriorityFeePerGas?: bigint | undefined;
1399
+ sidecars?: undefined | undefined;
1400
+ }) & {
1401
+ authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
1402
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
1403
+ accessList?: undefined | undefined;
1404
+ authorizationList?: undefined | undefined;
1405
+ blobs?: undefined | undefined;
1406
+ blobVersionedHashes?: undefined | undefined;
1407
+ gasPrice?: bigint | undefined;
1408
+ sidecars?: undefined | undefined;
1409
+ } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
1410
+ accessList?: import("viem").AccessList | undefined;
1411
+ authorizationList?: undefined | undefined;
1412
+ blobs?: undefined | undefined;
1413
+ blobVersionedHashes?: undefined | undefined;
1414
+ gasPrice?: undefined | undefined;
1415
+ maxFeePerBlobGas?: undefined | undefined;
1416
+ maxFeePerGas?: bigint | undefined;
1417
+ maxPriorityFeePerGas?: bigint | undefined;
1418
+ sidecars?: undefined | undefined;
1419
+ } & (import("viem").OneOf<{
1420
+ maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
1421
+ } | {
1422
+ maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
1423
+ }, import("viem").FeeValuesEIP1559> & {
1424
+ accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
1425
+ }) ? "eip1559" : never) | (request extends {
1426
+ accessList?: import("viem").AccessList | undefined;
1427
+ authorizationList?: undefined | undefined;
1428
+ blobs?: undefined | undefined;
1429
+ blobVersionedHashes?: undefined | undefined;
1430
+ gasPrice?: bigint | undefined;
1431
+ sidecars?: undefined | undefined;
1432
+ maxFeePerBlobGas?: undefined | undefined;
1433
+ maxFeePerGas?: undefined | undefined;
1434
+ maxPriorityFeePerGas?: undefined | undefined;
1435
+ } & {
1436
+ accessList: import("viem").TransactionSerializableEIP2930["accessList"];
1437
+ } ? "eip2930" : never) | (request extends ({
1438
+ accessList?: import("viem").AccessList | undefined;
1439
+ authorizationList?: undefined | undefined;
1440
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1441
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1442
+ maxFeePerBlobGas?: bigint | undefined;
1443
+ maxFeePerGas?: bigint | undefined;
1444
+ maxPriorityFeePerGas?: bigint | undefined;
1445
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1446
+ } | {
1447
+ accessList?: import("viem").AccessList | undefined;
1448
+ authorizationList?: undefined | undefined;
1449
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1450
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1451
+ maxFeePerBlobGas?: bigint | undefined;
1452
+ maxFeePerGas?: bigint | undefined;
1453
+ maxPriorityFeePerGas?: bigint | undefined;
1454
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1455
+ }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
1456
+ blobs: import("viem").TransactionSerializableEIP4844["blobs"];
1457
+ } | {
1458
+ blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
1459
+ } | {
1460
+ sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
1461
+ }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
1462
+ accessList?: import("viem").AccessList | undefined;
1463
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
1464
+ blobs?: undefined | undefined;
1465
+ blobVersionedHashes?: undefined | undefined;
1466
+ gasPrice?: undefined | undefined;
1467
+ maxFeePerBlobGas?: undefined | undefined;
1468
+ maxFeePerGas?: bigint | undefined;
1469
+ maxPriorityFeePerGas?: bigint | undefined;
1470
+ sidecars?: undefined | undefined;
1471
+ } | {
1472
+ accessList?: import("viem").AccessList | undefined;
1473
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
1474
+ blobs?: undefined | undefined;
1475
+ blobVersionedHashes?: undefined | undefined;
1476
+ gasPrice?: undefined | undefined;
1477
+ maxFeePerBlobGas?: undefined | undefined;
1478
+ maxFeePerGas?: bigint | undefined;
1479
+ maxPriorityFeePerGas?: bigint | undefined;
1480
+ sidecars?: undefined | undefined;
1481
+ }) & {
1482
+ authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
1483
+ } ? "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"] : import("viem").GetTransactionType<request, (request extends {
1484
+ accessList?: undefined | undefined;
1485
+ authorizationList?: undefined | undefined;
1486
+ blobs?: undefined | undefined;
1487
+ blobVersionedHashes?: undefined | undefined;
1488
+ gasPrice?: bigint | undefined;
1489
+ sidecars?: undefined | undefined;
1490
+ } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
1491
+ accessList?: import("viem").AccessList | undefined;
1492
+ authorizationList?: undefined | undefined;
1493
+ blobs?: undefined | undefined;
1494
+ blobVersionedHashes?: undefined | undefined;
1495
+ gasPrice?: undefined | undefined;
1496
+ maxFeePerBlobGas?: undefined | undefined;
1497
+ maxFeePerGas?: bigint | undefined;
1498
+ maxPriorityFeePerGas?: bigint | undefined;
1499
+ sidecars?: undefined | undefined;
1500
+ } & (import("viem").OneOf<{
1501
+ maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
1502
+ } | {
1503
+ maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
1504
+ }, import("viem").FeeValuesEIP1559> & {
1505
+ accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
1506
+ }) ? "eip1559" : never) | (request extends {
1507
+ accessList?: import("viem").AccessList | undefined;
1508
+ authorizationList?: undefined | undefined;
1509
+ blobs?: undefined | undefined;
1510
+ blobVersionedHashes?: undefined | undefined;
1511
+ gasPrice?: bigint | undefined;
1512
+ sidecars?: undefined | undefined;
1513
+ maxFeePerBlobGas?: undefined | undefined;
1514
+ maxFeePerGas?: undefined | undefined;
1515
+ maxPriorityFeePerGas?: undefined | undefined;
1516
+ } & {
1517
+ accessList: import("viem").TransactionSerializableEIP2930["accessList"];
1518
+ } ? "eip2930" : never) | (request extends ({
1519
+ accessList?: import("viem").AccessList | undefined;
1520
+ authorizationList?: undefined | undefined;
1521
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1522
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1523
+ maxFeePerBlobGas?: bigint | undefined;
1524
+ maxFeePerGas?: bigint | undefined;
1525
+ maxPriorityFeePerGas?: bigint | undefined;
1526
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1527
+ } | {
1528
+ accessList?: import("viem").AccessList | undefined;
1529
+ authorizationList?: undefined | undefined;
1530
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1531
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1532
+ maxFeePerBlobGas?: bigint | undefined;
1533
+ maxFeePerGas?: bigint | undefined;
1534
+ maxPriorityFeePerGas?: bigint | undefined;
1535
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1536
+ }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
1537
+ blobs: import("viem").TransactionSerializableEIP4844["blobs"];
1538
+ } | {
1539
+ blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
1540
+ } | {
1541
+ sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
1542
+ }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
1543
+ accessList?: import("viem").AccessList | undefined;
1544
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
1545
+ blobs?: undefined | undefined;
1546
+ blobVersionedHashes?: undefined | undefined;
1547
+ gasPrice?: undefined | undefined;
1548
+ maxFeePerBlobGas?: undefined | undefined;
1549
+ maxFeePerGas?: bigint | undefined;
1550
+ maxPriorityFeePerGas?: bigint | undefined;
1551
+ sidecars?: undefined | undefined;
1552
+ } | {
1553
+ accessList?: import("viem").AccessList | undefined;
1554
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
1555
+ blobs?: undefined | undefined;
1556
+ blobVersionedHashes?: undefined | undefined;
1557
+ gasPrice?: undefined | undefined;
1558
+ maxFeePerBlobGas?: undefined | undefined;
1559
+ maxFeePerGas?: bigint | undefined;
1560
+ maxPriorityFeePerGas?: bigint | undefined;
1561
+ sidecars?: undefined | undefined;
1562
+ }) & {
1563
+ authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
1564
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
1565
+ accessList?: undefined | undefined;
1566
+ authorizationList?: undefined | undefined;
1567
+ blobs?: undefined | undefined;
1568
+ blobVersionedHashes?: undefined | undefined;
1569
+ gasPrice?: bigint | undefined;
1570
+ sidecars?: undefined | undefined;
1571
+ } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
1572
+ accessList?: import("viem").AccessList | undefined;
1573
+ authorizationList?: undefined | undefined;
1574
+ blobs?: undefined | undefined;
1575
+ blobVersionedHashes?: undefined | undefined;
1576
+ gasPrice?: undefined | undefined;
1577
+ maxFeePerBlobGas?: undefined | undefined;
1578
+ maxFeePerGas?: bigint | undefined;
1579
+ maxPriorityFeePerGas?: bigint | undefined;
1580
+ sidecars?: undefined | undefined;
1581
+ } & (import("viem").OneOf<{
1582
+ maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
1583
+ } | {
1584
+ maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
1585
+ }, import("viem").FeeValuesEIP1559> & {
1586
+ accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
1587
+ }) ? "eip1559" : never) | (request extends {
1588
+ accessList?: import("viem").AccessList | undefined;
1589
+ authorizationList?: undefined | undefined;
1590
+ blobs?: undefined | undefined;
1591
+ blobVersionedHashes?: undefined | undefined;
1592
+ gasPrice?: bigint | undefined;
1593
+ sidecars?: undefined | undefined;
1594
+ maxFeePerBlobGas?: undefined | undefined;
1595
+ maxFeePerGas?: undefined | undefined;
1596
+ maxPriorityFeePerGas?: undefined | undefined;
1597
+ } & {
1598
+ accessList: import("viem").TransactionSerializableEIP2930["accessList"];
1599
+ } ? "eip2930" : never) | (request extends ({
1600
+ accessList?: import("viem").AccessList | undefined;
1601
+ authorizationList?: undefined | undefined;
1602
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1603
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1604
+ maxFeePerBlobGas?: bigint | undefined;
1605
+ maxFeePerGas?: bigint | undefined;
1606
+ maxPriorityFeePerGas?: bigint | undefined;
1607
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1608
+ } | {
1609
+ accessList?: import("viem").AccessList | undefined;
1610
+ authorizationList?: undefined | undefined;
1611
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1612
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1613
+ maxFeePerBlobGas?: bigint | undefined;
1614
+ maxFeePerGas?: bigint | undefined;
1615
+ maxPriorityFeePerGas?: bigint | undefined;
1616
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1617
+ }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
1618
+ blobs: import("viem").TransactionSerializableEIP4844["blobs"];
1619
+ } | {
1620
+ blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
1621
+ } | {
1622
+ sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
1623
+ }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
1624
+ accessList?: import("viem").AccessList | undefined;
1625
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
1626
+ blobs?: undefined | undefined;
1627
+ blobVersionedHashes?: undefined | undefined;
1628
+ gasPrice?: undefined | undefined;
1629
+ maxFeePerBlobGas?: undefined | undefined;
1630
+ maxFeePerGas?: bigint | undefined;
1631
+ maxPriorityFeePerGas?: bigint | undefined;
1632
+ sidecars?: undefined | undefined;
1633
+ } | {
1634
+ accessList?: import("viem").AccessList | undefined;
1635
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
1636
+ blobs?: undefined | undefined;
1637
+ blobVersionedHashes?: undefined | undefined;
1638
+ gasPrice?: undefined | undefined;
1639
+ maxFeePerBlobGas?: undefined | undefined;
1640
+ maxFeePerGas?: bigint | undefined;
1641
+ maxPriorityFeePerGas?: bigint | undefined;
1642
+ sidecars?: undefined | undefined;
1643
+ }) & {
1644
+ authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
1645
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_6 extends "eip4844" ? import("viem").TransactionRequestEIP4844 : never : never : never) | ((request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
1646
+ accessList?: undefined | undefined;
1647
+ authorizationList?: undefined | undefined;
1648
+ blobs?: undefined | undefined;
1649
+ blobVersionedHashes?: undefined | undefined;
1650
+ gasPrice?: bigint | undefined;
1651
+ sidecars?: undefined | undefined;
1652
+ } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
1653
+ accessList?: import("viem").AccessList | undefined;
1654
+ authorizationList?: undefined | undefined;
1655
+ blobs?: undefined | undefined;
1656
+ blobVersionedHashes?: undefined | undefined;
1657
+ gasPrice?: undefined | undefined;
1658
+ maxFeePerBlobGas?: undefined | undefined;
1659
+ maxFeePerGas?: bigint | undefined;
1660
+ maxPriorityFeePerGas?: bigint | undefined;
1661
+ sidecars?: undefined | undefined;
1662
+ } & (import("viem").OneOf<{
1663
+ maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
1664
+ } | {
1665
+ maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
1666
+ }, import("viem").FeeValuesEIP1559> & {
1667
+ accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
1668
+ }) ? "eip1559" : never) | (request extends {
1669
+ accessList?: import("viem").AccessList | undefined;
1670
+ authorizationList?: undefined | undefined;
1671
+ blobs?: undefined | undefined;
1672
+ blobVersionedHashes?: undefined | undefined;
1673
+ gasPrice?: bigint | undefined;
1674
+ sidecars?: undefined | undefined;
1675
+ maxFeePerBlobGas?: undefined | undefined;
1676
+ maxFeePerGas?: undefined | undefined;
1677
+ maxPriorityFeePerGas?: undefined | undefined;
1678
+ } & {
1679
+ accessList: import("viem").TransactionSerializableEIP2930["accessList"];
1680
+ } ? "eip2930" : never) | (request extends ({
1681
+ accessList?: import("viem").AccessList | undefined;
1682
+ authorizationList?: undefined | undefined;
1683
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1684
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1685
+ maxFeePerBlobGas?: bigint | undefined;
1686
+ maxFeePerGas?: bigint | undefined;
1687
+ maxPriorityFeePerGas?: bigint | undefined;
1688
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1689
+ } | {
1690
+ accessList?: import("viem").AccessList | undefined;
1691
+ authorizationList?: undefined | undefined;
1692
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1693
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1694
+ maxFeePerBlobGas?: bigint | undefined;
1695
+ maxFeePerGas?: bigint | undefined;
1696
+ maxPriorityFeePerGas?: bigint | undefined;
1697
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1698
+ }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
1699
+ blobs: import("viem").TransactionSerializableEIP4844["blobs"];
1700
+ } | {
1701
+ blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
1702
+ } | {
1703
+ sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
1704
+ }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
1705
+ accessList?: import("viem").AccessList | undefined;
1706
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
1707
+ blobs?: undefined | undefined;
1708
+ blobVersionedHashes?: undefined | undefined;
1709
+ gasPrice?: undefined | undefined;
1710
+ maxFeePerBlobGas?: undefined | undefined;
1711
+ maxFeePerGas?: bigint | undefined;
1712
+ maxPriorityFeePerGas?: bigint | undefined;
1713
+ sidecars?: undefined | undefined;
1714
+ } | {
1715
+ accessList?: import("viem").AccessList | undefined;
1716
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
1717
+ blobs?: undefined | undefined;
1718
+ blobVersionedHashes?: undefined | undefined;
1719
+ gasPrice?: undefined | undefined;
1720
+ maxFeePerBlobGas?: undefined | undefined;
1721
+ maxFeePerGas?: bigint | undefined;
1722
+ maxPriorityFeePerGas?: bigint | undefined;
1723
+ sidecars?: undefined | undefined;
1724
+ }) & {
1725
+ authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
1726
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
1727
+ accessList?: undefined | undefined;
1728
+ authorizationList?: undefined | undefined;
1729
+ blobs?: undefined | undefined;
1730
+ blobVersionedHashes?: undefined | undefined;
1731
+ gasPrice?: bigint | undefined;
1732
+ sidecars?: undefined | undefined;
1733
+ } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
1734
+ accessList?: import("viem").AccessList | undefined;
1735
+ authorizationList?: undefined | undefined;
1736
+ blobs?: undefined | undefined;
1737
+ blobVersionedHashes?: undefined | undefined;
1738
+ gasPrice?: undefined | undefined;
1739
+ maxFeePerBlobGas?: undefined | undefined;
1740
+ maxFeePerGas?: bigint | undefined;
1741
+ maxPriorityFeePerGas?: bigint | undefined;
1742
+ sidecars?: undefined | undefined;
1743
+ } & (import("viem").OneOf<{
1744
+ maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
1745
+ } | {
1746
+ maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
1747
+ }, import("viem").FeeValuesEIP1559> & {
1748
+ accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
1749
+ }) ? "eip1559" : never) | (request extends {
1750
+ accessList?: import("viem").AccessList | undefined;
1751
+ authorizationList?: undefined | undefined;
1752
+ blobs?: undefined | undefined;
1753
+ blobVersionedHashes?: undefined | undefined;
1754
+ gasPrice?: bigint | undefined;
1755
+ sidecars?: undefined | undefined;
1756
+ maxFeePerBlobGas?: undefined | undefined;
1757
+ maxFeePerGas?: undefined | undefined;
1758
+ maxPriorityFeePerGas?: undefined | undefined;
1759
+ } & {
1760
+ accessList: import("viem").TransactionSerializableEIP2930["accessList"];
1761
+ } ? "eip2930" : never) | (request extends ({
1762
+ accessList?: import("viem").AccessList | undefined;
1763
+ authorizationList?: undefined | undefined;
1764
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1765
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1766
+ maxFeePerBlobGas?: bigint | undefined;
1767
+ maxFeePerGas?: bigint | undefined;
1768
+ maxPriorityFeePerGas?: bigint | undefined;
1769
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1770
+ } | {
1771
+ accessList?: import("viem").AccessList | undefined;
1772
+ authorizationList?: undefined | undefined;
1773
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1774
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1775
+ maxFeePerBlobGas?: bigint | undefined;
1776
+ maxFeePerGas?: bigint | undefined;
1777
+ maxPriorityFeePerGas?: bigint | undefined;
1778
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1779
+ }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
1780
+ blobs: import("viem").TransactionSerializableEIP4844["blobs"];
1781
+ } | {
1782
+ blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
1783
+ } | {
1784
+ sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
1785
+ }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
1786
+ accessList?: import("viem").AccessList | undefined;
1787
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
1788
+ blobs?: undefined | undefined;
1789
+ blobVersionedHashes?: undefined | undefined;
1790
+ gasPrice?: undefined | undefined;
1791
+ maxFeePerBlobGas?: undefined | undefined;
1792
+ maxFeePerGas?: bigint | undefined;
1793
+ maxPriorityFeePerGas?: bigint | undefined;
1794
+ sidecars?: undefined | undefined;
1795
+ } | {
1796
+ accessList?: import("viem").AccessList | undefined;
1797
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
1798
+ blobs?: undefined | undefined;
1799
+ blobVersionedHashes?: undefined | undefined;
1800
+ gasPrice?: undefined | undefined;
1801
+ maxFeePerBlobGas?: undefined | undefined;
1802
+ maxFeePerGas?: bigint | undefined;
1803
+ maxPriorityFeePerGas?: bigint | undefined;
1804
+ sidecars?: undefined | undefined;
1805
+ }) & {
1806
+ authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
1807
+ } ? "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"] : import("viem").GetTransactionType<request, (request extends {
1808
+ accessList?: undefined | undefined;
1809
+ authorizationList?: undefined | undefined;
1810
+ blobs?: undefined | undefined;
1811
+ blobVersionedHashes?: undefined | undefined;
1812
+ gasPrice?: bigint | undefined;
1813
+ sidecars?: undefined | undefined;
1814
+ } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
1815
+ accessList?: import("viem").AccessList | undefined;
1816
+ authorizationList?: undefined | undefined;
1817
+ blobs?: undefined | undefined;
1818
+ blobVersionedHashes?: undefined | undefined;
1819
+ gasPrice?: undefined | undefined;
1820
+ maxFeePerBlobGas?: undefined | undefined;
1821
+ maxFeePerGas?: bigint | undefined;
1822
+ maxPriorityFeePerGas?: bigint | undefined;
1823
+ sidecars?: undefined | undefined;
1824
+ } & (import("viem").OneOf<{
1825
+ maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
1826
+ } | {
1827
+ maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
1828
+ }, import("viem").FeeValuesEIP1559> & {
1829
+ accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
1830
+ }) ? "eip1559" : never) | (request extends {
1831
+ accessList?: import("viem").AccessList | undefined;
1832
+ authorizationList?: undefined | undefined;
1833
+ blobs?: undefined | undefined;
1834
+ blobVersionedHashes?: undefined | undefined;
1835
+ gasPrice?: bigint | undefined;
1836
+ sidecars?: undefined | undefined;
1837
+ maxFeePerBlobGas?: undefined | undefined;
1838
+ maxFeePerGas?: undefined | undefined;
1839
+ maxPriorityFeePerGas?: undefined | undefined;
1840
+ } & {
1841
+ accessList: import("viem").TransactionSerializableEIP2930["accessList"];
1842
+ } ? "eip2930" : never) | (request extends ({
1843
+ accessList?: import("viem").AccessList | undefined;
1844
+ authorizationList?: undefined | undefined;
1845
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1846
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1847
+ maxFeePerBlobGas?: bigint | undefined;
1848
+ maxFeePerGas?: bigint | undefined;
1849
+ maxPriorityFeePerGas?: bigint | undefined;
1850
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1851
+ } | {
1852
+ accessList?: import("viem").AccessList | undefined;
1853
+ authorizationList?: undefined | undefined;
1854
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1855
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1856
+ maxFeePerBlobGas?: bigint | undefined;
1857
+ maxFeePerGas?: bigint | undefined;
1858
+ maxPriorityFeePerGas?: bigint | undefined;
1859
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1860
+ }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
1861
+ blobs: import("viem").TransactionSerializableEIP4844["blobs"];
1862
+ } | {
1863
+ blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
1864
+ } | {
1865
+ sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
1866
+ }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
1867
+ accessList?: import("viem").AccessList | undefined;
1868
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
1869
+ blobs?: undefined | undefined;
1870
+ blobVersionedHashes?: undefined | undefined;
1871
+ gasPrice?: undefined | undefined;
1872
+ maxFeePerBlobGas?: undefined | undefined;
1873
+ maxFeePerGas?: bigint | undefined;
1874
+ maxPriorityFeePerGas?: bigint | undefined;
1875
+ sidecars?: undefined | undefined;
1876
+ } | {
1877
+ accessList?: import("viem").AccessList | undefined;
1878
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
1879
+ blobs?: undefined | undefined;
1880
+ blobVersionedHashes?: undefined | undefined;
1881
+ gasPrice?: undefined | undefined;
1882
+ maxFeePerBlobGas?: undefined | undefined;
1883
+ maxFeePerGas?: bigint | undefined;
1884
+ maxPriorityFeePerGas?: bigint | undefined;
1885
+ sidecars?: undefined | undefined;
1886
+ }) & {
1887
+ authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
1888
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
1889
+ accessList?: undefined | undefined;
1890
+ authorizationList?: undefined | undefined;
1891
+ blobs?: undefined | undefined;
1892
+ blobVersionedHashes?: undefined | undefined;
1893
+ gasPrice?: bigint | undefined;
1894
+ sidecars?: undefined | undefined;
1895
+ } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
1896
+ accessList?: import("viem").AccessList | undefined;
1897
+ authorizationList?: undefined | undefined;
1898
+ blobs?: undefined | undefined;
1899
+ blobVersionedHashes?: undefined | undefined;
1900
+ gasPrice?: undefined | undefined;
1901
+ maxFeePerBlobGas?: undefined | undefined;
1902
+ maxFeePerGas?: bigint | undefined;
1903
+ maxPriorityFeePerGas?: bigint | undefined;
1904
+ sidecars?: undefined | undefined;
1905
+ } & (import("viem").OneOf<{
1906
+ maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
1907
+ } | {
1908
+ maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
1909
+ }, import("viem").FeeValuesEIP1559> & {
1910
+ accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
1911
+ }) ? "eip1559" : never) | (request extends {
1912
+ accessList?: import("viem").AccessList | undefined;
1913
+ authorizationList?: undefined | undefined;
1914
+ blobs?: undefined | undefined;
1915
+ blobVersionedHashes?: undefined | undefined;
1916
+ gasPrice?: bigint | undefined;
1917
+ sidecars?: undefined | undefined;
1918
+ maxFeePerBlobGas?: undefined | undefined;
1919
+ maxFeePerGas?: undefined | undefined;
1920
+ maxPriorityFeePerGas?: undefined | undefined;
1921
+ } & {
1922
+ accessList: import("viem").TransactionSerializableEIP2930["accessList"];
1923
+ } ? "eip2930" : never) | (request extends ({
1924
+ accessList?: import("viem").AccessList | undefined;
1925
+ authorizationList?: undefined | undefined;
1926
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1927
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1928
+ maxFeePerBlobGas?: bigint | undefined;
1929
+ maxFeePerGas?: bigint | undefined;
1930
+ maxPriorityFeePerGas?: bigint | undefined;
1931
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1932
+ } | {
1933
+ accessList?: import("viem").AccessList | undefined;
1934
+ authorizationList?: undefined | undefined;
1935
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1936
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1937
+ maxFeePerBlobGas?: bigint | undefined;
1938
+ maxFeePerGas?: bigint | undefined;
1939
+ maxPriorityFeePerGas?: bigint | undefined;
1940
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1941
+ }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
1942
+ blobs: import("viem").TransactionSerializableEIP4844["blobs"];
1943
+ } | {
1944
+ blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
1945
+ } | {
1946
+ sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
1947
+ }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
1948
+ accessList?: import("viem").AccessList | undefined;
1949
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
1950
+ blobs?: undefined | undefined;
1951
+ blobVersionedHashes?: undefined | undefined;
1952
+ gasPrice?: undefined | undefined;
1953
+ maxFeePerBlobGas?: undefined | undefined;
1954
+ maxFeePerGas?: bigint | undefined;
1955
+ maxPriorityFeePerGas?: bigint | undefined;
1956
+ sidecars?: undefined | undefined;
1957
+ } | {
1958
+ accessList?: import("viem").AccessList | undefined;
1959
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
1960
+ blobs?: undefined | undefined;
1961
+ blobVersionedHashes?: undefined | undefined;
1962
+ gasPrice?: undefined | undefined;
1963
+ maxFeePerBlobGas?: undefined | undefined;
1964
+ maxFeePerGas?: bigint | undefined;
1965
+ maxPriorityFeePerGas?: bigint | undefined;
1966
+ sidecars?: undefined | undefined;
1967
+ }) & {
1968
+ authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
1969
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_7 extends "eip7702" ? import("viem").TransactionRequestEIP7702 : never : never : never)> extends true ? unknown : import("viem").ExactPartial<((request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
1970
+ accessList?: undefined | undefined;
1971
+ authorizationList?: undefined | undefined;
1972
+ blobs?: undefined | undefined;
1973
+ blobVersionedHashes?: undefined | undefined;
1974
+ gasPrice?: bigint | undefined;
1975
+ sidecars?: undefined | undefined;
1976
+ } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
1977
+ accessList?: import("viem").AccessList | undefined;
1978
+ authorizationList?: undefined | undefined;
1979
+ blobs?: undefined | undefined;
1980
+ blobVersionedHashes?: undefined | undefined;
1981
+ gasPrice?: undefined | undefined;
1982
+ maxFeePerBlobGas?: undefined | undefined;
1983
+ maxFeePerGas?: bigint | undefined;
1984
+ maxPriorityFeePerGas?: bigint | undefined;
1985
+ sidecars?: undefined | undefined;
1986
+ } & (import("viem").OneOf<{
1987
+ maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
1988
+ } | {
1989
+ maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
1990
+ }, import("viem").FeeValuesEIP1559> & {
1991
+ accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
1992
+ }) ? "eip1559" : never) | (request extends {
1993
+ accessList?: import("viem").AccessList | undefined;
1994
+ authorizationList?: undefined | undefined;
1995
+ blobs?: undefined | undefined;
1996
+ blobVersionedHashes?: undefined | undefined;
1997
+ gasPrice?: bigint | undefined;
1998
+ sidecars?: undefined | undefined;
1999
+ maxFeePerBlobGas?: undefined | undefined;
2000
+ maxFeePerGas?: undefined | undefined;
2001
+ maxPriorityFeePerGas?: undefined | undefined;
2002
+ } & {
2003
+ accessList: import("viem").TransactionSerializableEIP2930["accessList"];
2004
+ } ? "eip2930" : never) | (request extends ({
2005
+ accessList?: import("viem").AccessList | undefined;
2006
+ authorizationList?: undefined | undefined;
2007
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
2008
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2009
+ maxFeePerBlobGas?: bigint | undefined;
2010
+ maxFeePerGas?: bigint | undefined;
2011
+ maxPriorityFeePerGas?: bigint | undefined;
2012
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2013
+ } | {
2014
+ accessList?: import("viem").AccessList | undefined;
2015
+ authorizationList?: undefined | undefined;
2016
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
2017
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2018
+ maxFeePerBlobGas?: bigint | undefined;
2019
+ maxFeePerGas?: bigint | undefined;
2020
+ maxPriorityFeePerGas?: bigint | undefined;
2021
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2022
+ }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
2023
+ blobs: import("viem").TransactionSerializableEIP4844["blobs"];
2024
+ } | {
2025
+ blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
2026
+ } | {
2027
+ sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
2028
+ }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
2029
+ accessList?: import("viem").AccessList | undefined;
2030
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
2031
+ blobs?: undefined | undefined;
2032
+ blobVersionedHashes?: undefined | undefined;
2033
+ gasPrice?: undefined | undefined;
2034
+ maxFeePerBlobGas?: undefined | undefined;
2035
+ maxFeePerGas?: bigint | undefined;
2036
+ maxPriorityFeePerGas?: bigint | undefined;
2037
+ sidecars?: undefined | undefined;
2038
+ } | {
2039
+ accessList?: import("viem").AccessList | undefined;
2040
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
2041
+ blobs?: undefined | undefined;
2042
+ blobVersionedHashes?: undefined | undefined;
2043
+ gasPrice?: undefined | undefined;
2044
+ maxFeePerBlobGas?: undefined | undefined;
2045
+ maxFeePerGas?: bigint | undefined;
2046
+ maxPriorityFeePerGas?: bigint | undefined;
2047
+ sidecars?: undefined | undefined;
2048
+ }) & {
2049
+ authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
2050
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
2051
+ accessList?: undefined | undefined;
2052
+ authorizationList?: undefined | undefined;
2053
+ blobs?: undefined | undefined;
2054
+ blobVersionedHashes?: undefined | undefined;
2055
+ gasPrice?: bigint | undefined;
2056
+ sidecars?: undefined | undefined;
2057
+ } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
2058
+ accessList?: import("viem").AccessList | undefined;
2059
+ authorizationList?: undefined | undefined;
2060
+ blobs?: undefined | undefined;
2061
+ blobVersionedHashes?: undefined | undefined;
2062
+ gasPrice?: undefined | undefined;
2063
+ maxFeePerBlobGas?: undefined | undefined;
2064
+ maxFeePerGas?: bigint | undefined;
2065
+ maxPriorityFeePerGas?: bigint | undefined;
2066
+ sidecars?: undefined | undefined;
2067
+ } & (import("viem").OneOf<{
2068
+ maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
2069
+ } | {
2070
+ maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
2071
+ }, import("viem").FeeValuesEIP1559> & {
2072
+ accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
2073
+ }) ? "eip1559" : never) | (request extends {
2074
+ accessList?: import("viem").AccessList | undefined;
2075
+ authorizationList?: undefined | undefined;
2076
+ blobs?: undefined | undefined;
2077
+ blobVersionedHashes?: undefined | undefined;
2078
+ gasPrice?: bigint | undefined;
2079
+ sidecars?: undefined | undefined;
2080
+ maxFeePerBlobGas?: undefined | undefined;
2081
+ maxFeePerGas?: undefined | undefined;
2082
+ maxPriorityFeePerGas?: undefined | undefined;
2083
+ } & {
2084
+ accessList: import("viem").TransactionSerializableEIP2930["accessList"];
2085
+ } ? "eip2930" : never) | (request extends ({
2086
+ accessList?: import("viem").AccessList | undefined;
2087
+ authorizationList?: undefined | undefined;
2088
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
2089
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2090
+ maxFeePerBlobGas?: bigint | undefined;
2091
+ maxFeePerGas?: bigint | undefined;
2092
+ maxPriorityFeePerGas?: bigint | undefined;
2093
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2094
+ } | {
2095
+ accessList?: import("viem").AccessList | undefined;
2096
+ authorizationList?: undefined | undefined;
2097
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
2098
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2099
+ maxFeePerBlobGas?: bigint | undefined;
2100
+ maxFeePerGas?: bigint | undefined;
2101
+ maxPriorityFeePerGas?: bigint | undefined;
2102
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2103
+ }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
2104
+ blobs: import("viem").TransactionSerializableEIP4844["blobs"];
2105
+ } | {
2106
+ blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
2107
+ } | {
2108
+ sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
2109
+ }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
2110
+ accessList?: import("viem").AccessList | undefined;
2111
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
2112
+ blobs?: undefined | undefined;
2113
+ blobVersionedHashes?: undefined | undefined;
2114
+ gasPrice?: undefined | undefined;
2115
+ maxFeePerBlobGas?: undefined | undefined;
2116
+ maxFeePerGas?: bigint | undefined;
2117
+ maxPriorityFeePerGas?: bigint | undefined;
2118
+ sidecars?: undefined | undefined;
2119
+ } | {
2120
+ accessList?: import("viem").AccessList | undefined;
2121
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
2122
+ blobs?: undefined | undefined;
2123
+ blobVersionedHashes?: undefined | undefined;
2124
+ gasPrice?: undefined | undefined;
2125
+ maxFeePerBlobGas?: undefined | undefined;
2126
+ maxFeePerGas?: bigint | undefined;
2127
+ maxPriorityFeePerGas?: bigint | undefined;
2128
+ sidecars?: undefined | undefined;
2129
+ }) & {
2130
+ authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
2131
+ } ? "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"] : import("viem").GetTransactionType<request, (request extends {
2132
+ accessList?: undefined | undefined;
2133
+ authorizationList?: undefined | undefined;
2134
+ blobs?: undefined | undefined;
2135
+ blobVersionedHashes?: undefined | undefined;
2136
+ gasPrice?: bigint | undefined;
2137
+ sidecars?: undefined | undefined;
2138
+ } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
2139
+ accessList?: import("viem").AccessList | undefined;
2140
+ authorizationList?: undefined | undefined;
2141
+ blobs?: undefined | undefined;
2142
+ blobVersionedHashes?: undefined | undefined;
2143
+ gasPrice?: undefined | undefined;
2144
+ maxFeePerBlobGas?: undefined | undefined;
2145
+ maxFeePerGas?: bigint | undefined;
2146
+ maxPriorityFeePerGas?: bigint | undefined;
2147
+ sidecars?: undefined | undefined;
2148
+ } & (import("viem").OneOf<{
2149
+ maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
2150
+ } | {
2151
+ maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
2152
+ }, import("viem").FeeValuesEIP1559> & {
2153
+ accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
2154
+ }) ? "eip1559" : never) | (request extends {
2155
+ accessList?: import("viem").AccessList | undefined;
2156
+ authorizationList?: undefined | undefined;
2157
+ blobs?: undefined | undefined;
2158
+ blobVersionedHashes?: undefined | undefined;
2159
+ gasPrice?: bigint | undefined;
2160
+ sidecars?: undefined | undefined;
2161
+ maxFeePerBlobGas?: undefined | undefined;
2162
+ maxFeePerGas?: undefined | undefined;
2163
+ maxPriorityFeePerGas?: undefined | undefined;
2164
+ } & {
2165
+ accessList: import("viem").TransactionSerializableEIP2930["accessList"];
2166
+ } ? "eip2930" : never) | (request extends ({
2167
+ accessList?: import("viem").AccessList | undefined;
2168
+ authorizationList?: undefined | undefined;
2169
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
2170
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2171
+ maxFeePerBlobGas?: bigint | undefined;
2172
+ maxFeePerGas?: bigint | undefined;
2173
+ maxPriorityFeePerGas?: bigint | undefined;
2174
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2175
+ } | {
2176
+ accessList?: import("viem").AccessList | undefined;
2177
+ authorizationList?: undefined | undefined;
2178
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
2179
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2180
+ maxFeePerBlobGas?: bigint | undefined;
2181
+ maxFeePerGas?: bigint | undefined;
2182
+ maxPriorityFeePerGas?: bigint | undefined;
2183
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2184
+ }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
2185
+ blobs: import("viem").TransactionSerializableEIP4844["blobs"];
2186
+ } | {
2187
+ blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
2188
+ } | {
2189
+ sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
2190
+ }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
2191
+ accessList?: import("viem").AccessList | undefined;
2192
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
2193
+ blobs?: undefined | undefined;
2194
+ blobVersionedHashes?: undefined | undefined;
2195
+ gasPrice?: undefined | undefined;
2196
+ maxFeePerBlobGas?: undefined | undefined;
2197
+ maxFeePerGas?: bigint | undefined;
2198
+ maxPriorityFeePerGas?: bigint | undefined;
2199
+ sidecars?: undefined | undefined;
2200
+ } | {
2201
+ accessList?: import("viem").AccessList | undefined;
2202
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
2203
+ blobs?: undefined | undefined;
2204
+ blobVersionedHashes?: undefined | undefined;
2205
+ gasPrice?: undefined | undefined;
2206
+ maxFeePerBlobGas?: undefined | undefined;
2207
+ maxFeePerGas?: bigint | undefined;
2208
+ maxPriorityFeePerGas?: bigint | undefined;
2209
+ sidecars?: undefined | undefined;
2210
+ }) & {
2211
+ authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
2212
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
2213
+ accessList?: undefined | undefined;
2214
+ authorizationList?: undefined | undefined;
2215
+ blobs?: undefined | undefined;
2216
+ blobVersionedHashes?: undefined | undefined;
2217
+ gasPrice?: bigint | undefined;
2218
+ sidecars?: undefined | undefined;
2219
+ } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
2220
+ accessList?: import("viem").AccessList | undefined;
2221
+ authorizationList?: undefined | undefined;
2222
+ blobs?: undefined | undefined;
2223
+ blobVersionedHashes?: undefined | undefined;
2224
+ gasPrice?: undefined | undefined;
2225
+ maxFeePerBlobGas?: undefined | undefined;
2226
+ maxFeePerGas?: bigint | undefined;
2227
+ maxPriorityFeePerGas?: bigint | undefined;
2228
+ sidecars?: undefined | undefined;
2229
+ } & (import("viem").OneOf<{
2230
+ maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
2231
+ } | {
2232
+ maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
2233
+ }, import("viem").FeeValuesEIP1559> & {
2234
+ accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
2235
+ }) ? "eip1559" : never) | (request extends {
2236
+ accessList?: import("viem").AccessList | undefined;
2237
+ authorizationList?: undefined | undefined;
2238
+ blobs?: undefined | undefined;
2239
+ blobVersionedHashes?: undefined | undefined;
2240
+ gasPrice?: bigint | undefined;
2241
+ sidecars?: undefined | undefined;
2242
+ maxFeePerBlobGas?: undefined | undefined;
2243
+ maxFeePerGas?: undefined | undefined;
2244
+ maxPriorityFeePerGas?: undefined | undefined;
2245
+ } & {
2246
+ accessList: import("viem").TransactionSerializableEIP2930["accessList"];
2247
+ } ? "eip2930" : never) | (request extends ({
2248
+ accessList?: import("viem").AccessList | undefined;
2249
+ authorizationList?: undefined | undefined;
2250
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
2251
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2252
+ maxFeePerBlobGas?: bigint | undefined;
2253
+ maxFeePerGas?: bigint | undefined;
2254
+ maxPriorityFeePerGas?: bigint | undefined;
2255
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2256
+ } | {
2257
+ accessList?: import("viem").AccessList | undefined;
2258
+ authorizationList?: undefined | undefined;
2259
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
2260
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2261
+ maxFeePerBlobGas?: bigint | undefined;
2262
+ maxFeePerGas?: bigint | undefined;
2263
+ maxPriorityFeePerGas?: bigint | undefined;
2264
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2265
+ }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
2266
+ blobs: import("viem").TransactionSerializableEIP4844["blobs"];
2267
+ } | {
2268
+ blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
2269
+ } | {
2270
+ sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
2271
+ }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
2272
+ accessList?: import("viem").AccessList | undefined;
2273
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
2274
+ blobs?: undefined | undefined;
2275
+ blobVersionedHashes?: undefined | undefined;
2276
+ gasPrice?: undefined | undefined;
2277
+ maxFeePerBlobGas?: undefined | undefined;
2278
+ maxFeePerGas?: bigint | undefined;
2279
+ maxPriorityFeePerGas?: bigint | undefined;
2280
+ sidecars?: undefined | undefined;
2281
+ } | {
2282
+ accessList?: import("viem").AccessList | undefined;
2283
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
2284
+ blobs?: undefined | undefined;
2285
+ blobVersionedHashes?: undefined | undefined;
2286
+ gasPrice?: undefined | undefined;
2287
+ maxFeePerBlobGas?: undefined | undefined;
2288
+ maxFeePerGas?: bigint | undefined;
2289
+ maxPriorityFeePerGas?: bigint | undefined;
2290
+ sidecars?: undefined | undefined;
2291
+ }) & {
2292
+ authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
2293
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_8 extends "legacy" ? import("viem").TransactionRequestLegacy : never : never : never) | ((request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
2294
+ accessList?: undefined | undefined;
2295
+ authorizationList?: undefined | undefined;
2296
+ blobs?: undefined | undefined;
2297
+ blobVersionedHashes?: undefined | undefined;
2298
+ gasPrice?: bigint | undefined;
2299
+ sidecars?: undefined | undefined;
2300
+ } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
2301
+ accessList?: import("viem").AccessList | undefined;
2302
+ authorizationList?: undefined | undefined;
2303
+ blobs?: undefined | undefined;
2304
+ blobVersionedHashes?: undefined | undefined;
2305
+ gasPrice?: undefined | undefined;
2306
+ maxFeePerBlobGas?: undefined | undefined;
2307
+ maxFeePerGas?: bigint | undefined;
2308
+ maxPriorityFeePerGas?: bigint | undefined;
2309
+ sidecars?: undefined | undefined;
2310
+ } & (import("viem").OneOf<{
2311
+ maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
2312
+ } | {
2313
+ maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
2314
+ }, import("viem").FeeValuesEIP1559> & {
2315
+ accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
2316
+ }) ? "eip1559" : never) | (request extends {
2317
+ accessList?: import("viem").AccessList | undefined;
2318
+ authorizationList?: undefined | undefined;
2319
+ blobs?: undefined | undefined;
2320
+ blobVersionedHashes?: undefined | undefined;
2321
+ gasPrice?: bigint | undefined;
2322
+ sidecars?: undefined | undefined;
2323
+ maxFeePerBlobGas?: undefined | undefined;
2324
+ maxFeePerGas?: undefined | undefined;
2325
+ maxPriorityFeePerGas?: undefined | undefined;
2326
+ } & {
2327
+ accessList: import("viem").TransactionSerializableEIP2930["accessList"];
2328
+ } ? "eip2930" : never) | (request extends ({
2329
+ accessList?: import("viem").AccessList | undefined;
2330
+ authorizationList?: undefined | undefined;
2331
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
2332
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2333
+ maxFeePerBlobGas?: bigint | undefined;
2334
+ maxFeePerGas?: bigint | undefined;
2335
+ maxPriorityFeePerGas?: bigint | undefined;
2336
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2337
+ } | {
2338
+ accessList?: import("viem").AccessList | undefined;
2339
+ authorizationList?: undefined | undefined;
2340
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
2341
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2342
+ maxFeePerBlobGas?: bigint | undefined;
2343
+ maxFeePerGas?: bigint | undefined;
2344
+ maxPriorityFeePerGas?: bigint | undefined;
2345
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2346
+ }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
2347
+ blobs: import("viem").TransactionSerializableEIP4844["blobs"];
2348
+ } | {
2349
+ blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
2350
+ } | {
2351
+ sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
2352
+ }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
2353
+ accessList?: import("viem").AccessList | undefined;
2354
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
2355
+ blobs?: undefined | undefined;
2356
+ blobVersionedHashes?: undefined | undefined;
2357
+ gasPrice?: undefined | undefined;
2358
+ maxFeePerBlobGas?: undefined | undefined;
2359
+ maxFeePerGas?: bigint | undefined;
2360
+ maxPriorityFeePerGas?: bigint | undefined;
2361
+ sidecars?: undefined | undefined;
2362
+ } | {
2363
+ accessList?: import("viem").AccessList | undefined;
2364
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
2365
+ blobs?: undefined | undefined;
2366
+ blobVersionedHashes?: undefined | undefined;
2367
+ gasPrice?: undefined | undefined;
2368
+ maxFeePerBlobGas?: undefined | undefined;
2369
+ maxFeePerGas?: bigint | undefined;
2370
+ maxPriorityFeePerGas?: bigint | undefined;
2371
+ sidecars?: undefined | undefined;
2372
+ }) & {
2373
+ authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
2374
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
2375
+ accessList?: undefined | undefined;
2376
+ authorizationList?: undefined | undefined;
2377
+ blobs?: undefined | undefined;
2378
+ blobVersionedHashes?: undefined | undefined;
2379
+ gasPrice?: bigint | undefined;
2380
+ sidecars?: undefined | undefined;
2381
+ } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
2382
+ accessList?: import("viem").AccessList | undefined;
2383
+ authorizationList?: undefined | undefined;
2384
+ blobs?: undefined | undefined;
2385
+ blobVersionedHashes?: undefined | undefined;
2386
+ gasPrice?: undefined | undefined;
2387
+ maxFeePerBlobGas?: undefined | undefined;
2388
+ maxFeePerGas?: bigint | undefined;
2389
+ maxPriorityFeePerGas?: bigint | undefined;
2390
+ sidecars?: undefined | undefined;
2391
+ } & (import("viem").OneOf<{
2392
+ maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
2393
+ } | {
2394
+ maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
2395
+ }, import("viem").FeeValuesEIP1559> & {
2396
+ accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
2397
+ }) ? "eip1559" : never) | (request extends {
2398
+ accessList?: import("viem").AccessList | undefined;
2399
+ authorizationList?: undefined | undefined;
2400
+ blobs?: undefined | undefined;
2401
+ blobVersionedHashes?: undefined | undefined;
2402
+ gasPrice?: bigint | undefined;
2403
+ sidecars?: undefined | undefined;
2404
+ maxFeePerBlobGas?: undefined | undefined;
2405
+ maxFeePerGas?: undefined | undefined;
2406
+ maxPriorityFeePerGas?: undefined | undefined;
2407
+ } & {
2408
+ accessList: import("viem").TransactionSerializableEIP2930["accessList"];
2409
+ } ? "eip2930" : never) | (request extends ({
2410
+ accessList?: import("viem").AccessList | undefined;
2411
+ authorizationList?: undefined | undefined;
2412
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
2413
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2414
+ maxFeePerBlobGas?: bigint | undefined;
2415
+ maxFeePerGas?: bigint | undefined;
2416
+ maxPriorityFeePerGas?: bigint | undefined;
2417
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2418
+ } | {
2419
+ accessList?: import("viem").AccessList | undefined;
2420
+ authorizationList?: undefined | undefined;
2421
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
2422
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2423
+ maxFeePerBlobGas?: bigint | undefined;
2424
+ maxFeePerGas?: bigint | undefined;
2425
+ maxPriorityFeePerGas?: bigint | undefined;
2426
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2427
+ }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
2428
+ blobs: import("viem").TransactionSerializableEIP4844["blobs"];
2429
+ } | {
2430
+ blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
2431
+ } | {
2432
+ sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
2433
+ }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
2434
+ accessList?: import("viem").AccessList | undefined;
2435
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
2436
+ blobs?: undefined | undefined;
2437
+ blobVersionedHashes?: undefined | undefined;
2438
+ gasPrice?: undefined | undefined;
2439
+ maxFeePerBlobGas?: undefined | undefined;
2440
+ maxFeePerGas?: bigint | undefined;
2441
+ maxPriorityFeePerGas?: bigint | undefined;
2442
+ sidecars?: undefined | undefined;
2443
+ } | {
2444
+ accessList?: import("viem").AccessList | undefined;
2445
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
2446
+ blobs?: undefined | undefined;
2447
+ blobVersionedHashes?: undefined | undefined;
2448
+ gasPrice?: undefined | undefined;
2449
+ maxFeePerBlobGas?: undefined | undefined;
2450
+ maxFeePerGas?: bigint | undefined;
2451
+ maxPriorityFeePerGas?: bigint | undefined;
2452
+ sidecars?: undefined | undefined;
2453
+ }) & {
2454
+ authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
2455
+ } ? "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"] : import("viem").GetTransactionType<request, (request extends {
2456
+ accessList?: undefined | undefined;
2457
+ authorizationList?: undefined | undefined;
2458
+ blobs?: undefined | undefined;
2459
+ blobVersionedHashes?: undefined | undefined;
2460
+ gasPrice?: bigint | undefined;
2461
+ sidecars?: undefined | undefined;
2462
+ } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
2463
+ accessList?: import("viem").AccessList | undefined;
2464
+ authorizationList?: undefined | undefined;
2465
+ blobs?: undefined | undefined;
2466
+ blobVersionedHashes?: undefined | undefined;
2467
+ gasPrice?: undefined | undefined;
2468
+ maxFeePerBlobGas?: undefined | undefined;
2469
+ maxFeePerGas?: bigint | undefined;
2470
+ maxPriorityFeePerGas?: bigint | undefined;
2471
+ sidecars?: undefined | undefined;
2472
+ } & (import("viem").OneOf<{
2473
+ maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
2474
+ } | {
2475
+ maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
2476
+ }, import("viem").FeeValuesEIP1559> & {
2477
+ accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
2478
+ }) ? "eip1559" : never) | (request extends {
2479
+ accessList?: import("viem").AccessList | undefined;
2480
+ authorizationList?: undefined | undefined;
2481
+ blobs?: undefined | undefined;
2482
+ blobVersionedHashes?: undefined | undefined;
2483
+ gasPrice?: bigint | undefined;
2484
+ sidecars?: undefined | undefined;
2485
+ maxFeePerBlobGas?: undefined | undefined;
2486
+ maxFeePerGas?: undefined | undefined;
2487
+ maxPriorityFeePerGas?: undefined | undefined;
2488
+ } & {
2489
+ accessList: import("viem").TransactionSerializableEIP2930["accessList"];
2490
+ } ? "eip2930" : never) | (request extends ({
2491
+ accessList?: import("viem").AccessList | undefined;
2492
+ authorizationList?: undefined | undefined;
2493
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
2494
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2495
+ maxFeePerBlobGas?: bigint | undefined;
2496
+ maxFeePerGas?: bigint | undefined;
2497
+ maxPriorityFeePerGas?: bigint | undefined;
2498
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2499
+ } | {
2500
+ accessList?: import("viem").AccessList | undefined;
2501
+ authorizationList?: undefined | undefined;
2502
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
2503
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2504
+ maxFeePerBlobGas?: bigint | undefined;
2505
+ maxFeePerGas?: bigint | undefined;
2506
+ maxPriorityFeePerGas?: bigint | undefined;
2507
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2508
+ }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
2509
+ blobs: import("viem").TransactionSerializableEIP4844["blobs"];
2510
+ } | {
2511
+ blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
2512
+ } | {
2513
+ sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
2514
+ }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
2515
+ accessList?: import("viem").AccessList | undefined;
2516
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
2517
+ blobs?: undefined | undefined;
2518
+ blobVersionedHashes?: undefined | undefined;
2519
+ gasPrice?: undefined | undefined;
2520
+ maxFeePerBlobGas?: undefined | undefined;
2521
+ maxFeePerGas?: bigint | undefined;
2522
+ maxPriorityFeePerGas?: bigint | undefined;
2523
+ sidecars?: undefined | undefined;
2524
+ } | {
2525
+ accessList?: import("viem").AccessList | undefined;
2526
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
2527
+ blobs?: undefined | undefined;
2528
+ blobVersionedHashes?: undefined | undefined;
2529
+ gasPrice?: undefined | undefined;
2530
+ maxFeePerBlobGas?: undefined | undefined;
2531
+ maxFeePerGas?: bigint | undefined;
2532
+ maxPriorityFeePerGas?: bigint | undefined;
2533
+ sidecars?: undefined | undefined;
2534
+ }) & {
2535
+ authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
2536
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
2537
+ accessList?: undefined | undefined;
2538
+ authorizationList?: undefined | undefined;
2539
+ blobs?: undefined | undefined;
2540
+ blobVersionedHashes?: undefined | undefined;
2541
+ gasPrice?: bigint | undefined;
2542
+ sidecars?: undefined | undefined;
2543
+ } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
2544
+ accessList?: import("viem").AccessList | undefined;
2545
+ authorizationList?: undefined | undefined;
2546
+ blobs?: undefined | undefined;
2547
+ blobVersionedHashes?: undefined | undefined;
2548
+ gasPrice?: undefined | undefined;
2549
+ maxFeePerBlobGas?: undefined | undefined;
2550
+ maxFeePerGas?: bigint | undefined;
2551
+ maxPriorityFeePerGas?: bigint | undefined;
2552
+ sidecars?: undefined | undefined;
2553
+ } & (import("viem").OneOf<{
2554
+ maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
2555
+ } | {
2556
+ maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
2557
+ }, import("viem").FeeValuesEIP1559> & {
2558
+ accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
2559
+ }) ? "eip1559" : never) | (request extends {
2560
+ accessList?: import("viem").AccessList | undefined;
2561
+ authorizationList?: undefined | undefined;
2562
+ blobs?: undefined | undefined;
2563
+ blobVersionedHashes?: undefined | undefined;
2564
+ gasPrice?: bigint | undefined;
2565
+ sidecars?: undefined | undefined;
2566
+ maxFeePerBlobGas?: undefined | undefined;
2567
+ maxFeePerGas?: undefined | undefined;
2568
+ maxPriorityFeePerGas?: undefined | undefined;
2569
+ } & {
2570
+ accessList: import("viem").TransactionSerializableEIP2930["accessList"];
2571
+ } ? "eip2930" : never) | (request extends ({
2572
+ accessList?: import("viem").AccessList | undefined;
2573
+ authorizationList?: undefined | undefined;
2574
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
2575
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2576
+ maxFeePerBlobGas?: bigint | undefined;
2577
+ maxFeePerGas?: bigint | undefined;
2578
+ maxPriorityFeePerGas?: bigint | undefined;
2579
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2580
+ } | {
2581
+ accessList?: import("viem").AccessList | undefined;
2582
+ authorizationList?: undefined | undefined;
2583
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
2584
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2585
+ maxFeePerBlobGas?: bigint | undefined;
2586
+ maxFeePerGas?: bigint | undefined;
2587
+ maxPriorityFeePerGas?: bigint | undefined;
2588
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2589
+ }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
2590
+ blobs: import("viem").TransactionSerializableEIP4844["blobs"];
2591
+ } | {
2592
+ blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
2593
+ } | {
2594
+ sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
2595
+ }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
2596
+ accessList?: import("viem").AccessList | undefined;
2597
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
2598
+ blobs?: undefined | undefined;
2599
+ blobVersionedHashes?: undefined | undefined;
2600
+ gasPrice?: undefined | undefined;
2601
+ maxFeePerBlobGas?: undefined | undefined;
2602
+ maxFeePerGas?: bigint | undefined;
2603
+ maxPriorityFeePerGas?: bigint | undefined;
2604
+ sidecars?: undefined | undefined;
2605
+ } | {
2606
+ accessList?: import("viem").AccessList | undefined;
2607
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
2608
+ blobs?: undefined | undefined;
2609
+ blobVersionedHashes?: undefined | undefined;
2610
+ gasPrice?: undefined | undefined;
2611
+ maxFeePerBlobGas?: undefined | undefined;
2612
+ maxFeePerGas?: bigint | undefined;
2613
+ maxPriorityFeePerGas?: bigint | undefined;
2614
+ sidecars?: undefined | undefined;
2615
+ }) & {
2616
+ authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
2617
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_9 extends "eip1559" ? import("viem").TransactionRequestEIP1559 : never : never : never) | ((request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
2618
+ accessList?: undefined | undefined;
2619
+ authorizationList?: undefined | undefined;
2620
+ blobs?: undefined | undefined;
2621
+ blobVersionedHashes?: undefined | undefined;
2622
+ gasPrice?: bigint | undefined;
2623
+ sidecars?: undefined | undefined;
2624
+ } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
2625
+ accessList?: import("viem").AccessList | undefined;
2626
+ authorizationList?: undefined | undefined;
2627
+ blobs?: undefined | undefined;
2628
+ blobVersionedHashes?: undefined | undefined;
2629
+ gasPrice?: undefined | undefined;
2630
+ maxFeePerBlobGas?: undefined | undefined;
2631
+ maxFeePerGas?: bigint | undefined;
2632
+ maxPriorityFeePerGas?: bigint | undefined;
2633
+ sidecars?: undefined | undefined;
2634
+ } & (import("viem").OneOf<{
2635
+ maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
2636
+ } | {
2637
+ maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
2638
+ }, import("viem").FeeValuesEIP1559> & {
2639
+ accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
2640
+ }) ? "eip1559" : never) | (request extends {
2641
+ accessList?: import("viem").AccessList | undefined;
2642
+ authorizationList?: undefined | undefined;
2643
+ blobs?: undefined | undefined;
2644
+ blobVersionedHashes?: undefined | undefined;
2645
+ gasPrice?: bigint | undefined;
2646
+ sidecars?: undefined | undefined;
2647
+ maxFeePerBlobGas?: undefined | undefined;
2648
+ maxFeePerGas?: undefined | undefined;
2649
+ maxPriorityFeePerGas?: undefined | undefined;
2650
+ } & {
2651
+ accessList: import("viem").TransactionSerializableEIP2930["accessList"];
2652
+ } ? "eip2930" : never) | (request extends ({
2653
+ accessList?: import("viem").AccessList | undefined;
2654
+ authorizationList?: undefined | undefined;
2655
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
2656
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2657
+ maxFeePerBlobGas?: bigint | undefined;
2658
+ maxFeePerGas?: bigint | undefined;
2659
+ maxPriorityFeePerGas?: bigint | undefined;
2660
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2661
+ } | {
2662
+ accessList?: import("viem").AccessList | undefined;
2663
+ authorizationList?: undefined | undefined;
2664
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
2665
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2666
+ maxFeePerBlobGas?: bigint | undefined;
2667
+ maxFeePerGas?: bigint | undefined;
2668
+ maxPriorityFeePerGas?: bigint | undefined;
2669
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2670
+ }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
2671
+ blobs: import("viem").TransactionSerializableEIP4844["blobs"];
2672
+ } | {
2673
+ blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
2674
+ } | {
2675
+ sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
2676
+ }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
2677
+ accessList?: import("viem").AccessList | undefined;
2678
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
2679
+ blobs?: undefined | undefined;
2680
+ blobVersionedHashes?: undefined | undefined;
2681
+ gasPrice?: undefined | undefined;
2682
+ maxFeePerBlobGas?: undefined | undefined;
2683
+ maxFeePerGas?: bigint | undefined;
2684
+ maxPriorityFeePerGas?: bigint | undefined;
2685
+ sidecars?: undefined | undefined;
2686
+ } | {
2687
+ accessList?: import("viem").AccessList | undefined;
2688
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
2689
+ blobs?: undefined | undefined;
2690
+ blobVersionedHashes?: undefined | undefined;
2691
+ gasPrice?: undefined | undefined;
2692
+ maxFeePerBlobGas?: undefined | undefined;
2693
+ maxFeePerGas?: bigint | undefined;
2694
+ maxPriorityFeePerGas?: bigint | undefined;
2695
+ sidecars?: undefined | undefined;
2696
+ }) & {
2697
+ authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
2698
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
2699
+ accessList?: undefined | undefined;
2700
+ authorizationList?: undefined | undefined;
2701
+ blobs?: undefined | undefined;
2702
+ blobVersionedHashes?: undefined | undefined;
2703
+ gasPrice?: bigint | undefined;
2704
+ sidecars?: undefined | undefined;
2705
+ } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
2706
+ accessList?: import("viem").AccessList | undefined;
2707
+ authorizationList?: undefined | undefined;
2708
+ blobs?: undefined | undefined;
2709
+ blobVersionedHashes?: undefined | undefined;
2710
+ gasPrice?: undefined | undefined;
2711
+ maxFeePerBlobGas?: undefined | undefined;
2712
+ maxFeePerGas?: bigint | undefined;
2713
+ maxPriorityFeePerGas?: bigint | undefined;
2714
+ sidecars?: undefined | undefined;
2715
+ } & (import("viem").OneOf<{
2716
+ maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
2717
+ } | {
2718
+ maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
2719
+ }, import("viem").FeeValuesEIP1559> & {
2720
+ accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
2721
+ }) ? "eip1559" : never) | (request extends {
2722
+ accessList?: import("viem").AccessList | undefined;
2723
+ authorizationList?: undefined | undefined;
2724
+ blobs?: undefined | undefined;
2725
+ blobVersionedHashes?: undefined | undefined;
2726
+ gasPrice?: bigint | undefined;
2727
+ sidecars?: undefined | undefined;
2728
+ maxFeePerBlobGas?: undefined | undefined;
2729
+ maxFeePerGas?: undefined | undefined;
2730
+ maxPriorityFeePerGas?: undefined | undefined;
2731
+ } & {
2732
+ accessList: import("viem").TransactionSerializableEIP2930["accessList"];
2733
+ } ? "eip2930" : never) | (request extends ({
2734
+ accessList?: import("viem").AccessList | undefined;
2735
+ authorizationList?: undefined | undefined;
2736
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
2737
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2738
+ maxFeePerBlobGas?: bigint | undefined;
2739
+ maxFeePerGas?: bigint | undefined;
2740
+ maxPriorityFeePerGas?: bigint | undefined;
2741
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2742
+ } | {
2743
+ accessList?: import("viem").AccessList | undefined;
2744
+ authorizationList?: undefined | undefined;
2745
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
2746
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2747
+ maxFeePerBlobGas?: bigint | undefined;
2748
+ maxFeePerGas?: bigint | undefined;
2749
+ maxPriorityFeePerGas?: bigint | undefined;
2750
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2751
+ }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
2752
+ blobs: import("viem").TransactionSerializableEIP4844["blobs"];
2753
+ } | {
2754
+ blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
2755
+ } | {
2756
+ sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
2757
+ }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
2758
+ accessList?: import("viem").AccessList | undefined;
2759
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
2760
+ blobs?: undefined | undefined;
2761
+ blobVersionedHashes?: undefined | undefined;
2762
+ gasPrice?: undefined | undefined;
2763
+ maxFeePerBlobGas?: undefined | undefined;
2764
+ maxFeePerGas?: bigint | undefined;
2765
+ maxPriorityFeePerGas?: bigint | undefined;
2766
+ sidecars?: undefined | undefined;
2767
+ } | {
2768
+ accessList?: import("viem").AccessList | undefined;
2769
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
2770
+ blobs?: undefined | undefined;
2771
+ blobVersionedHashes?: undefined | undefined;
2772
+ gasPrice?: undefined | undefined;
2773
+ maxFeePerBlobGas?: undefined | undefined;
2774
+ maxFeePerGas?: bigint | undefined;
2775
+ maxPriorityFeePerGas?: bigint | undefined;
2776
+ sidecars?: undefined | undefined;
2777
+ }) & {
2778
+ authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
2779
+ } ? "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"] : import("viem").GetTransactionType<request, (request extends {
2780
+ accessList?: undefined | undefined;
2781
+ authorizationList?: undefined | undefined;
2782
+ blobs?: undefined | undefined;
2783
+ blobVersionedHashes?: undefined | undefined;
2784
+ gasPrice?: bigint | undefined;
2785
+ sidecars?: undefined | undefined;
2786
+ } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
2787
+ accessList?: import("viem").AccessList | undefined;
2788
+ authorizationList?: undefined | undefined;
2789
+ blobs?: undefined | undefined;
2790
+ blobVersionedHashes?: undefined | undefined;
2791
+ gasPrice?: undefined | undefined;
2792
+ maxFeePerBlobGas?: undefined | undefined;
2793
+ maxFeePerGas?: bigint | undefined;
2794
+ maxPriorityFeePerGas?: bigint | undefined;
2795
+ sidecars?: undefined | undefined;
2796
+ } & (import("viem").OneOf<{
2797
+ maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
2798
+ } | {
2799
+ maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
2800
+ }, import("viem").FeeValuesEIP1559> & {
2801
+ accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
2802
+ }) ? "eip1559" : never) | (request extends {
2803
+ accessList?: import("viem").AccessList | undefined;
2804
+ authorizationList?: undefined | undefined;
2805
+ blobs?: undefined | undefined;
2806
+ blobVersionedHashes?: undefined | undefined;
2807
+ gasPrice?: bigint | undefined;
2808
+ sidecars?: undefined | undefined;
2809
+ maxFeePerBlobGas?: undefined | undefined;
2810
+ maxFeePerGas?: undefined | undefined;
2811
+ maxPriorityFeePerGas?: undefined | undefined;
2812
+ } & {
2813
+ accessList: import("viem").TransactionSerializableEIP2930["accessList"];
2814
+ } ? "eip2930" : never) | (request extends ({
2815
+ accessList?: import("viem").AccessList | undefined;
2816
+ authorizationList?: undefined | undefined;
2817
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
2818
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2819
+ maxFeePerBlobGas?: bigint | undefined;
2820
+ maxFeePerGas?: bigint | undefined;
2821
+ maxPriorityFeePerGas?: bigint | undefined;
2822
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2823
+ } | {
2824
+ accessList?: import("viem").AccessList | undefined;
2825
+ authorizationList?: undefined | undefined;
2826
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
2827
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2828
+ maxFeePerBlobGas?: bigint | undefined;
2829
+ maxFeePerGas?: bigint | undefined;
2830
+ maxPriorityFeePerGas?: bigint | undefined;
2831
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2832
+ }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
2833
+ blobs: import("viem").TransactionSerializableEIP4844["blobs"];
2834
+ } | {
2835
+ blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
2836
+ } | {
2837
+ sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
2838
+ }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
2839
+ accessList?: import("viem").AccessList | undefined;
2840
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
2841
+ blobs?: undefined | undefined;
2842
+ blobVersionedHashes?: undefined | undefined;
2843
+ gasPrice?: undefined | undefined;
2844
+ maxFeePerBlobGas?: undefined | undefined;
2845
+ maxFeePerGas?: bigint | undefined;
2846
+ maxPriorityFeePerGas?: bigint | undefined;
2847
+ sidecars?: undefined | undefined;
2848
+ } | {
2849
+ accessList?: import("viem").AccessList | undefined;
2850
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
2851
+ blobs?: undefined | undefined;
2852
+ blobVersionedHashes?: undefined | undefined;
2853
+ gasPrice?: undefined | undefined;
2854
+ maxFeePerBlobGas?: undefined | undefined;
2855
+ maxFeePerGas?: bigint | undefined;
2856
+ maxPriorityFeePerGas?: bigint | undefined;
2857
+ sidecars?: undefined | undefined;
2858
+ }) & {
2859
+ authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
2860
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
2861
+ accessList?: undefined | undefined;
2862
+ authorizationList?: undefined | undefined;
2863
+ blobs?: undefined | undefined;
2864
+ blobVersionedHashes?: undefined | undefined;
2865
+ gasPrice?: bigint | undefined;
2866
+ sidecars?: undefined | undefined;
2867
+ } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
2868
+ accessList?: import("viem").AccessList | undefined;
2869
+ authorizationList?: undefined | undefined;
2870
+ blobs?: undefined | undefined;
2871
+ blobVersionedHashes?: undefined | undefined;
2872
+ gasPrice?: undefined | undefined;
2873
+ maxFeePerBlobGas?: undefined | undefined;
2874
+ maxFeePerGas?: bigint | undefined;
2875
+ maxPriorityFeePerGas?: bigint | undefined;
2876
+ sidecars?: undefined | undefined;
2877
+ } & (import("viem").OneOf<{
2878
+ maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
2879
+ } | {
2880
+ maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
2881
+ }, import("viem").FeeValuesEIP1559> & {
2882
+ accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
2883
+ }) ? "eip1559" : never) | (request extends {
2884
+ accessList?: import("viem").AccessList | undefined;
2885
+ authorizationList?: undefined | undefined;
2886
+ blobs?: undefined | undefined;
2887
+ blobVersionedHashes?: undefined | undefined;
2888
+ gasPrice?: bigint | undefined;
2889
+ sidecars?: undefined | undefined;
2890
+ maxFeePerBlobGas?: undefined | undefined;
2891
+ maxFeePerGas?: undefined | undefined;
2892
+ maxPriorityFeePerGas?: undefined | undefined;
2893
+ } & {
2894
+ accessList: import("viem").TransactionSerializableEIP2930["accessList"];
2895
+ } ? "eip2930" : never) | (request extends ({
2896
+ accessList?: import("viem").AccessList | undefined;
2897
+ authorizationList?: undefined | undefined;
2898
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
2899
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2900
+ maxFeePerBlobGas?: bigint | undefined;
2901
+ maxFeePerGas?: bigint | undefined;
2902
+ maxPriorityFeePerGas?: bigint | undefined;
2903
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2904
+ } | {
2905
+ accessList?: import("viem").AccessList | undefined;
2906
+ authorizationList?: undefined | undefined;
2907
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
2908
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2909
+ maxFeePerBlobGas?: bigint | undefined;
2910
+ maxFeePerGas?: bigint | undefined;
2911
+ maxPriorityFeePerGas?: bigint | undefined;
2912
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2913
+ }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
2914
+ blobs: import("viem").TransactionSerializableEIP4844["blobs"];
2915
+ } | {
2916
+ blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
2917
+ } | {
2918
+ sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
2919
+ }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
2920
+ accessList?: import("viem").AccessList | undefined;
2921
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
2922
+ blobs?: undefined | undefined;
2923
+ blobVersionedHashes?: undefined | undefined;
2924
+ gasPrice?: undefined | undefined;
2925
+ maxFeePerBlobGas?: undefined | undefined;
2926
+ maxFeePerGas?: bigint | undefined;
2927
+ maxPriorityFeePerGas?: bigint | undefined;
2928
+ sidecars?: undefined | undefined;
2929
+ } | {
2930
+ accessList?: import("viem").AccessList | undefined;
2931
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
2932
+ blobs?: undefined | undefined;
2933
+ blobVersionedHashes?: undefined | undefined;
2934
+ gasPrice?: undefined | undefined;
2935
+ maxFeePerBlobGas?: undefined | undefined;
2936
+ maxFeePerGas?: bigint | undefined;
2937
+ maxPriorityFeePerGas?: bigint | undefined;
2938
+ sidecars?: undefined | undefined;
2939
+ }) & {
2940
+ authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
2941
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_10 extends "eip2930" ? import("viem").TransactionRequestEIP2930 : never : never : never) | ((request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
2942
+ accessList?: undefined | undefined;
2943
+ authorizationList?: undefined | undefined;
2944
+ blobs?: undefined | undefined;
2945
+ blobVersionedHashes?: undefined | undefined;
2946
+ gasPrice?: bigint | undefined;
2947
+ sidecars?: undefined | undefined;
2948
+ } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
2949
+ accessList?: import("viem").AccessList | undefined;
2950
+ authorizationList?: undefined | undefined;
2951
+ blobs?: undefined | undefined;
2952
+ blobVersionedHashes?: undefined | undefined;
2953
+ gasPrice?: undefined | undefined;
2954
+ maxFeePerBlobGas?: undefined | undefined;
2955
+ maxFeePerGas?: bigint | undefined;
2956
+ maxPriorityFeePerGas?: bigint | undefined;
2957
+ sidecars?: undefined | undefined;
2958
+ } & (import("viem").OneOf<{
2959
+ maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
2960
+ } | {
2961
+ maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
2962
+ }, import("viem").FeeValuesEIP1559> & {
2963
+ accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
2964
+ }) ? "eip1559" : never) | (request extends {
2965
+ accessList?: import("viem").AccessList | undefined;
2966
+ authorizationList?: undefined | undefined;
2967
+ blobs?: undefined | undefined;
2968
+ blobVersionedHashes?: undefined | undefined;
2969
+ gasPrice?: bigint | undefined;
2970
+ sidecars?: undefined | undefined;
2971
+ maxFeePerBlobGas?: undefined | undefined;
2972
+ maxFeePerGas?: undefined | undefined;
2973
+ maxPriorityFeePerGas?: undefined | undefined;
2974
+ } & {
2975
+ accessList: import("viem").TransactionSerializableEIP2930["accessList"];
2976
+ } ? "eip2930" : never) | (request extends ({
2977
+ accessList?: import("viem").AccessList | undefined;
2978
+ authorizationList?: undefined | undefined;
2979
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
2980
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2981
+ maxFeePerBlobGas?: bigint | undefined;
2982
+ maxFeePerGas?: bigint | undefined;
2983
+ maxPriorityFeePerGas?: bigint | undefined;
2984
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2985
+ } | {
2986
+ accessList?: import("viem").AccessList | undefined;
2987
+ authorizationList?: undefined | undefined;
2988
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
2989
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
2990
+ maxFeePerBlobGas?: bigint | undefined;
2991
+ maxFeePerGas?: bigint | undefined;
2992
+ maxPriorityFeePerGas?: bigint | undefined;
2993
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
2994
+ }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
2995
+ blobs: import("viem").TransactionSerializableEIP4844["blobs"];
2996
+ } | {
2997
+ blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
2998
+ } | {
2999
+ sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
3000
+ }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
3001
+ accessList?: import("viem").AccessList | undefined;
3002
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
3003
+ blobs?: undefined | undefined;
3004
+ blobVersionedHashes?: undefined | undefined;
3005
+ gasPrice?: undefined | undefined;
3006
+ maxFeePerBlobGas?: undefined | undefined;
3007
+ maxFeePerGas?: bigint | undefined;
3008
+ maxPriorityFeePerGas?: bigint | undefined;
3009
+ sidecars?: undefined | undefined;
3010
+ } | {
3011
+ accessList?: import("viem").AccessList | undefined;
3012
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
3013
+ blobs?: undefined | undefined;
3014
+ blobVersionedHashes?: undefined | undefined;
3015
+ gasPrice?: undefined | undefined;
3016
+ maxFeePerBlobGas?: undefined | undefined;
3017
+ maxFeePerGas?: bigint | undefined;
3018
+ maxPriorityFeePerGas?: bigint | undefined;
3019
+ sidecars?: undefined | undefined;
3020
+ }) & {
3021
+ authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
3022
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
3023
+ accessList?: undefined | undefined;
3024
+ authorizationList?: undefined | undefined;
3025
+ blobs?: undefined | undefined;
3026
+ blobVersionedHashes?: undefined | undefined;
3027
+ gasPrice?: bigint | undefined;
3028
+ sidecars?: undefined | undefined;
3029
+ } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
3030
+ accessList?: import("viem").AccessList | undefined;
3031
+ authorizationList?: undefined | undefined;
3032
+ blobs?: undefined | undefined;
3033
+ blobVersionedHashes?: undefined | undefined;
3034
+ gasPrice?: undefined | undefined;
3035
+ maxFeePerBlobGas?: undefined | undefined;
3036
+ maxFeePerGas?: bigint | undefined;
3037
+ maxPriorityFeePerGas?: bigint | undefined;
3038
+ sidecars?: undefined | undefined;
3039
+ } & (import("viem").OneOf<{
3040
+ maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
3041
+ } | {
3042
+ maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
3043
+ }, import("viem").FeeValuesEIP1559> & {
3044
+ accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
3045
+ }) ? "eip1559" : never) | (request extends {
3046
+ accessList?: import("viem").AccessList | undefined;
3047
+ authorizationList?: undefined | undefined;
3048
+ blobs?: undefined | undefined;
3049
+ blobVersionedHashes?: undefined | undefined;
3050
+ gasPrice?: bigint | undefined;
3051
+ sidecars?: undefined | undefined;
3052
+ maxFeePerBlobGas?: undefined | undefined;
3053
+ maxFeePerGas?: undefined | undefined;
3054
+ maxPriorityFeePerGas?: undefined | undefined;
3055
+ } & {
3056
+ accessList: import("viem").TransactionSerializableEIP2930["accessList"];
3057
+ } ? "eip2930" : never) | (request extends ({
3058
+ accessList?: import("viem").AccessList | undefined;
3059
+ authorizationList?: undefined | undefined;
3060
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
3061
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3062
+ maxFeePerBlobGas?: bigint | undefined;
3063
+ maxFeePerGas?: bigint | undefined;
3064
+ maxPriorityFeePerGas?: bigint | undefined;
3065
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
3066
+ } | {
3067
+ accessList?: import("viem").AccessList | undefined;
3068
+ authorizationList?: undefined | undefined;
3069
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
3070
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3071
+ maxFeePerBlobGas?: bigint | undefined;
3072
+ maxFeePerGas?: bigint | undefined;
3073
+ maxPriorityFeePerGas?: bigint | undefined;
3074
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
3075
+ }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
3076
+ blobs: import("viem").TransactionSerializableEIP4844["blobs"];
3077
+ } | {
3078
+ blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
3079
+ } | {
3080
+ sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
3081
+ }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
3082
+ accessList?: import("viem").AccessList | undefined;
3083
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
3084
+ blobs?: undefined | undefined;
3085
+ blobVersionedHashes?: undefined | undefined;
3086
+ gasPrice?: undefined | undefined;
3087
+ maxFeePerBlobGas?: undefined | undefined;
3088
+ maxFeePerGas?: bigint | undefined;
3089
+ maxPriorityFeePerGas?: bigint | undefined;
3090
+ sidecars?: undefined | undefined;
3091
+ } | {
3092
+ accessList?: import("viem").AccessList | undefined;
3093
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
3094
+ blobs?: undefined | undefined;
3095
+ blobVersionedHashes?: undefined | undefined;
3096
+ gasPrice?: undefined | undefined;
3097
+ maxFeePerBlobGas?: undefined | undefined;
3098
+ maxFeePerGas?: bigint | undefined;
3099
+ maxPriorityFeePerGas?: bigint | undefined;
3100
+ sidecars?: undefined | undefined;
3101
+ }) & {
3102
+ authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
3103
+ } ? "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"] : import("viem").GetTransactionType<request, (request extends {
3104
+ accessList?: undefined | undefined;
3105
+ authorizationList?: undefined | undefined;
3106
+ blobs?: undefined | undefined;
3107
+ blobVersionedHashes?: undefined | undefined;
3108
+ gasPrice?: bigint | undefined;
3109
+ sidecars?: undefined | undefined;
3110
+ } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
3111
+ accessList?: import("viem").AccessList | undefined;
3112
+ authorizationList?: undefined | undefined;
3113
+ blobs?: undefined | undefined;
3114
+ blobVersionedHashes?: undefined | undefined;
3115
+ gasPrice?: undefined | undefined;
3116
+ maxFeePerBlobGas?: undefined | undefined;
3117
+ maxFeePerGas?: bigint | undefined;
3118
+ maxPriorityFeePerGas?: bigint | undefined;
3119
+ sidecars?: undefined | undefined;
3120
+ } & (import("viem").OneOf<{
3121
+ maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
3122
+ } | {
3123
+ maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
3124
+ }, import("viem").FeeValuesEIP1559> & {
3125
+ accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
3126
+ }) ? "eip1559" : never) | (request extends {
3127
+ accessList?: import("viem").AccessList | undefined;
3128
+ authorizationList?: undefined | undefined;
3129
+ blobs?: undefined | undefined;
3130
+ blobVersionedHashes?: undefined | undefined;
3131
+ gasPrice?: bigint | undefined;
3132
+ sidecars?: undefined | undefined;
3133
+ maxFeePerBlobGas?: undefined | undefined;
3134
+ maxFeePerGas?: undefined | undefined;
3135
+ maxPriorityFeePerGas?: undefined | undefined;
3136
+ } & {
3137
+ accessList: import("viem").TransactionSerializableEIP2930["accessList"];
3138
+ } ? "eip2930" : never) | (request extends ({
3139
+ accessList?: import("viem").AccessList | undefined;
3140
+ authorizationList?: undefined | undefined;
3141
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
3142
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3143
+ maxFeePerBlobGas?: bigint | undefined;
3144
+ maxFeePerGas?: bigint | undefined;
3145
+ maxPriorityFeePerGas?: bigint | undefined;
3146
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
3147
+ } | {
3148
+ accessList?: import("viem").AccessList | undefined;
3149
+ authorizationList?: undefined | undefined;
3150
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
3151
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3152
+ maxFeePerBlobGas?: bigint | undefined;
3153
+ maxFeePerGas?: bigint | undefined;
3154
+ maxPriorityFeePerGas?: bigint | undefined;
3155
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
3156
+ }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
3157
+ blobs: import("viem").TransactionSerializableEIP4844["blobs"];
3158
+ } | {
3159
+ blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
3160
+ } | {
3161
+ sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
3162
+ }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
3163
+ accessList?: import("viem").AccessList | undefined;
3164
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
3165
+ blobs?: undefined | undefined;
3166
+ blobVersionedHashes?: undefined | undefined;
3167
+ gasPrice?: undefined | undefined;
3168
+ maxFeePerBlobGas?: undefined | undefined;
3169
+ maxFeePerGas?: bigint | undefined;
3170
+ maxPriorityFeePerGas?: bigint | undefined;
3171
+ sidecars?: undefined | undefined;
3172
+ } | {
3173
+ accessList?: import("viem").AccessList | undefined;
3174
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
3175
+ blobs?: undefined | undefined;
3176
+ blobVersionedHashes?: undefined | undefined;
3177
+ gasPrice?: undefined | undefined;
3178
+ maxFeePerBlobGas?: undefined | undefined;
3179
+ maxFeePerGas?: bigint | undefined;
3180
+ maxPriorityFeePerGas?: bigint | undefined;
3181
+ sidecars?: undefined | undefined;
3182
+ }) & {
3183
+ authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
3184
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
3185
+ accessList?: undefined | undefined;
3186
+ authorizationList?: undefined | undefined;
3187
+ blobs?: undefined | undefined;
3188
+ blobVersionedHashes?: undefined | undefined;
3189
+ gasPrice?: bigint | undefined;
3190
+ sidecars?: undefined | undefined;
3191
+ } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
3192
+ accessList?: import("viem").AccessList | undefined;
3193
+ authorizationList?: undefined | undefined;
3194
+ blobs?: undefined | undefined;
3195
+ blobVersionedHashes?: undefined | undefined;
3196
+ gasPrice?: undefined | undefined;
3197
+ maxFeePerBlobGas?: undefined | undefined;
3198
+ maxFeePerGas?: bigint | undefined;
3199
+ maxPriorityFeePerGas?: bigint | undefined;
3200
+ sidecars?: undefined | undefined;
3201
+ } & (import("viem").OneOf<{
3202
+ maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
3203
+ } | {
3204
+ maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
3205
+ }, import("viem").FeeValuesEIP1559> & {
3206
+ accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
3207
+ }) ? "eip1559" : never) | (request extends {
3208
+ accessList?: import("viem").AccessList | undefined;
3209
+ authorizationList?: undefined | undefined;
3210
+ blobs?: undefined | undefined;
3211
+ blobVersionedHashes?: undefined | undefined;
3212
+ gasPrice?: bigint | undefined;
3213
+ sidecars?: undefined | undefined;
3214
+ maxFeePerBlobGas?: undefined | undefined;
3215
+ maxFeePerGas?: undefined | undefined;
3216
+ maxPriorityFeePerGas?: undefined | undefined;
3217
+ } & {
3218
+ accessList: import("viem").TransactionSerializableEIP2930["accessList"];
3219
+ } ? "eip2930" : never) | (request extends ({
3220
+ accessList?: import("viem").AccessList | undefined;
3221
+ authorizationList?: undefined | undefined;
3222
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
3223
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3224
+ maxFeePerBlobGas?: bigint | undefined;
3225
+ maxFeePerGas?: bigint | undefined;
3226
+ maxPriorityFeePerGas?: bigint | undefined;
3227
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
3228
+ } | {
3229
+ accessList?: import("viem").AccessList | undefined;
3230
+ authorizationList?: undefined | undefined;
3231
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
3232
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3233
+ maxFeePerBlobGas?: bigint | undefined;
3234
+ maxFeePerGas?: bigint | undefined;
3235
+ maxPriorityFeePerGas?: bigint | undefined;
3236
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
3237
+ }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
3238
+ blobs: import("viem").TransactionSerializableEIP4844["blobs"];
3239
+ } | {
3240
+ blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
3241
+ } | {
3242
+ sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
3243
+ }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
3244
+ accessList?: import("viem").AccessList | undefined;
3245
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
3246
+ blobs?: undefined | undefined;
3247
+ blobVersionedHashes?: undefined | undefined;
3248
+ gasPrice?: undefined | undefined;
3249
+ maxFeePerBlobGas?: undefined | undefined;
3250
+ maxFeePerGas?: bigint | undefined;
3251
+ maxPriorityFeePerGas?: bigint | undefined;
3252
+ sidecars?: undefined | undefined;
3253
+ } | {
3254
+ accessList?: import("viem").AccessList | undefined;
3255
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
3256
+ blobs?: undefined | undefined;
3257
+ blobVersionedHashes?: undefined | undefined;
3258
+ gasPrice?: undefined | undefined;
3259
+ maxFeePerBlobGas?: undefined | undefined;
3260
+ maxFeePerGas?: bigint | undefined;
3261
+ maxPriorityFeePerGas?: bigint | undefined;
3262
+ sidecars?: undefined | undefined;
3263
+ }) & {
3264
+ authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
3265
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_11 extends "eip4844" ? import("viem").TransactionRequestEIP4844 : never : never : never) | ((request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
3266
+ accessList?: undefined | undefined;
3267
+ authorizationList?: undefined | undefined;
3268
+ blobs?: undefined | undefined;
3269
+ blobVersionedHashes?: undefined | undefined;
3270
+ gasPrice?: bigint | undefined;
3271
+ sidecars?: undefined | undefined;
3272
+ } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
3273
+ accessList?: import("viem").AccessList | undefined;
3274
+ authorizationList?: undefined | undefined;
3275
+ blobs?: undefined | undefined;
3276
+ blobVersionedHashes?: undefined | undefined;
3277
+ gasPrice?: undefined | undefined;
3278
+ maxFeePerBlobGas?: undefined | undefined;
3279
+ maxFeePerGas?: bigint | undefined;
3280
+ maxPriorityFeePerGas?: bigint | undefined;
3281
+ sidecars?: undefined | undefined;
3282
+ } & (import("viem").OneOf<{
3283
+ maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
3284
+ } | {
3285
+ maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
3286
+ }, import("viem").FeeValuesEIP1559> & {
3287
+ accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
3288
+ }) ? "eip1559" : never) | (request extends {
3289
+ accessList?: import("viem").AccessList | undefined;
3290
+ authorizationList?: undefined | undefined;
3291
+ blobs?: undefined | undefined;
3292
+ blobVersionedHashes?: undefined | undefined;
3293
+ gasPrice?: bigint | undefined;
3294
+ sidecars?: undefined | undefined;
3295
+ maxFeePerBlobGas?: undefined | undefined;
3296
+ maxFeePerGas?: undefined | undefined;
3297
+ maxPriorityFeePerGas?: undefined | undefined;
3298
+ } & {
3299
+ accessList: import("viem").TransactionSerializableEIP2930["accessList"];
3300
+ } ? "eip2930" : never) | (request extends ({
3301
+ accessList?: import("viem").AccessList | undefined;
3302
+ authorizationList?: undefined | undefined;
3303
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
3304
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3305
+ maxFeePerBlobGas?: bigint | undefined;
3306
+ maxFeePerGas?: bigint | undefined;
3307
+ maxPriorityFeePerGas?: bigint | undefined;
3308
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
3309
+ } | {
3310
+ accessList?: import("viem").AccessList | undefined;
3311
+ authorizationList?: undefined | undefined;
3312
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
3313
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3314
+ maxFeePerBlobGas?: bigint | undefined;
3315
+ maxFeePerGas?: bigint | undefined;
3316
+ maxPriorityFeePerGas?: bigint | undefined;
3317
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
3318
+ }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
3319
+ blobs: import("viem").TransactionSerializableEIP4844["blobs"];
3320
+ } | {
3321
+ blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
3322
+ } | {
3323
+ sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
3324
+ }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
3325
+ accessList?: import("viem").AccessList | undefined;
3326
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
3327
+ blobs?: undefined | undefined;
3328
+ blobVersionedHashes?: undefined | undefined;
3329
+ gasPrice?: undefined | undefined;
3330
+ maxFeePerBlobGas?: undefined | undefined;
3331
+ maxFeePerGas?: bigint | undefined;
3332
+ maxPriorityFeePerGas?: bigint | undefined;
3333
+ sidecars?: undefined | undefined;
3334
+ } | {
3335
+ accessList?: import("viem").AccessList | undefined;
3336
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
3337
+ blobs?: undefined | undefined;
3338
+ blobVersionedHashes?: undefined | undefined;
3339
+ gasPrice?: undefined | undefined;
3340
+ maxFeePerBlobGas?: undefined | undefined;
3341
+ maxFeePerGas?: bigint | undefined;
3342
+ maxPriorityFeePerGas?: bigint | undefined;
3343
+ sidecars?: undefined | undefined;
3344
+ }) & {
3345
+ authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
3346
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
3347
+ accessList?: undefined | undefined;
3348
+ authorizationList?: undefined | undefined;
3349
+ blobs?: undefined | undefined;
3350
+ blobVersionedHashes?: undefined | undefined;
3351
+ gasPrice?: bigint | undefined;
3352
+ sidecars?: undefined | undefined;
3353
+ } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
3354
+ accessList?: import("viem").AccessList | undefined;
3355
+ authorizationList?: undefined | undefined;
3356
+ blobs?: undefined | undefined;
3357
+ blobVersionedHashes?: undefined | undefined;
3358
+ gasPrice?: undefined | undefined;
3359
+ maxFeePerBlobGas?: undefined | undefined;
3360
+ maxFeePerGas?: bigint | undefined;
3361
+ maxPriorityFeePerGas?: bigint | undefined;
3362
+ sidecars?: undefined | undefined;
3363
+ } & (import("viem").OneOf<{
3364
+ maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
3365
+ } | {
3366
+ maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
3367
+ }, import("viem").FeeValuesEIP1559> & {
3368
+ accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
3369
+ }) ? "eip1559" : never) | (request extends {
3370
+ accessList?: import("viem").AccessList | undefined;
3371
+ authorizationList?: undefined | undefined;
3372
+ blobs?: undefined | undefined;
3373
+ blobVersionedHashes?: undefined | undefined;
3374
+ gasPrice?: bigint | undefined;
3375
+ sidecars?: undefined | undefined;
3376
+ maxFeePerBlobGas?: undefined | undefined;
3377
+ maxFeePerGas?: undefined | undefined;
3378
+ maxPriorityFeePerGas?: undefined | undefined;
3379
+ } & {
3380
+ accessList: import("viem").TransactionSerializableEIP2930["accessList"];
3381
+ } ? "eip2930" : never) | (request extends ({
3382
+ accessList?: import("viem").AccessList | undefined;
3383
+ authorizationList?: undefined | undefined;
3384
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
3385
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3386
+ maxFeePerBlobGas?: bigint | undefined;
3387
+ maxFeePerGas?: bigint | undefined;
3388
+ maxPriorityFeePerGas?: bigint | undefined;
3389
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
3390
+ } | {
3391
+ accessList?: import("viem").AccessList | undefined;
3392
+ authorizationList?: undefined | undefined;
3393
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
3394
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3395
+ maxFeePerBlobGas?: bigint | undefined;
3396
+ maxFeePerGas?: bigint | undefined;
3397
+ maxPriorityFeePerGas?: bigint | undefined;
3398
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
3399
+ }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
3400
+ blobs: import("viem").TransactionSerializableEIP4844["blobs"];
3401
+ } | {
3402
+ blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
3403
+ } | {
3404
+ sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
3405
+ }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
3406
+ accessList?: import("viem").AccessList | undefined;
3407
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
3408
+ blobs?: undefined | undefined;
3409
+ blobVersionedHashes?: undefined | undefined;
3410
+ gasPrice?: undefined | undefined;
3411
+ maxFeePerBlobGas?: undefined | undefined;
3412
+ maxFeePerGas?: bigint | undefined;
3413
+ maxPriorityFeePerGas?: bigint | undefined;
3414
+ sidecars?: undefined | undefined;
3415
+ } | {
3416
+ accessList?: import("viem").AccessList | undefined;
3417
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
3418
+ blobs?: undefined | undefined;
3419
+ blobVersionedHashes?: undefined | undefined;
3420
+ gasPrice?: undefined | undefined;
3421
+ maxFeePerBlobGas?: undefined | undefined;
3422
+ maxFeePerGas?: bigint | undefined;
3423
+ maxPriorityFeePerGas?: bigint | undefined;
3424
+ sidecars?: undefined | undefined;
3425
+ }) & {
3426
+ authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
3427
+ } ? "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"] : import("viem").GetTransactionType<request, (request extends {
3428
+ accessList?: undefined | undefined;
3429
+ authorizationList?: undefined | undefined;
3430
+ blobs?: undefined | undefined;
3431
+ blobVersionedHashes?: undefined | undefined;
3432
+ gasPrice?: bigint | undefined;
3433
+ sidecars?: undefined | undefined;
3434
+ } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
3435
+ accessList?: import("viem").AccessList | undefined;
3436
+ authorizationList?: undefined | undefined;
3437
+ blobs?: undefined | undefined;
3438
+ blobVersionedHashes?: undefined | undefined;
3439
+ gasPrice?: undefined | undefined;
3440
+ maxFeePerBlobGas?: undefined | undefined;
3441
+ maxFeePerGas?: bigint | undefined;
3442
+ maxPriorityFeePerGas?: bigint | undefined;
3443
+ sidecars?: undefined | undefined;
3444
+ } & (import("viem").OneOf<{
3445
+ maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
3446
+ } | {
3447
+ maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
3448
+ }, import("viem").FeeValuesEIP1559> & {
3449
+ accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
3450
+ }) ? "eip1559" : never) | (request extends {
3451
+ accessList?: import("viem").AccessList | undefined;
3452
+ authorizationList?: undefined | undefined;
3453
+ blobs?: undefined | undefined;
3454
+ blobVersionedHashes?: undefined | undefined;
3455
+ gasPrice?: bigint | undefined;
3456
+ sidecars?: undefined | undefined;
3457
+ maxFeePerBlobGas?: undefined | undefined;
3458
+ maxFeePerGas?: undefined | undefined;
3459
+ maxPriorityFeePerGas?: undefined | undefined;
3460
+ } & {
3461
+ accessList: import("viem").TransactionSerializableEIP2930["accessList"];
3462
+ } ? "eip2930" : never) | (request extends ({
3463
+ accessList?: import("viem").AccessList | undefined;
3464
+ authorizationList?: undefined | undefined;
3465
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
3466
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3467
+ maxFeePerBlobGas?: bigint | undefined;
3468
+ maxFeePerGas?: bigint | undefined;
3469
+ maxPriorityFeePerGas?: bigint | undefined;
3470
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
3471
+ } | {
3472
+ accessList?: import("viem").AccessList | undefined;
3473
+ authorizationList?: undefined | undefined;
3474
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
3475
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3476
+ maxFeePerBlobGas?: bigint | undefined;
3477
+ maxFeePerGas?: bigint | undefined;
3478
+ maxPriorityFeePerGas?: bigint | undefined;
3479
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
3480
+ }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
3481
+ blobs: import("viem").TransactionSerializableEIP4844["blobs"];
3482
+ } | {
3483
+ blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
3484
+ } | {
3485
+ sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
3486
+ }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
3487
+ accessList?: import("viem").AccessList | undefined;
3488
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
3489
+ blobs?: undefined | undefined;
3490
+ blobVersionedHashes?: undefined | undefined;
3491
+ gasPrice?: undefined | undefined;
3492
+ maxFeePerBlobGas?: undefined | undefined;
3493
+ maxFeePerGas?: bigint | undefined;
3494
+ maxPriorityFeePerGas?: bigint | undefined;
3495
+ sidecars?: undefined | undefined;
3496
+ } | {
3497
+ accessList?: import("viem").AccessList | undefined;
3498
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
3499
+ blobs?: undefined | undefined;
3500
+ blobVersionedHashes?: undefined | undefined;
3501
+ gasPrice?: undefined | undefined;
3502
+ maxFeePerBlobGas?: undefined | undefined;
3503
+ maxFeePerGas?: bigint | undefined;
3504
+ maxPriorityFeePerGas?: bigint | undefined;
3505
+ sidecars?: undefined | undefined;
3506
+ }) & {
3507
+ authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
3508
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
3509
+ accessList?: undefined | undefined;
3510
+ authorizationList?: undefined | undefined;
3511
+ blobs?: undefined | undefined;
3512
+ blobVersionedHashes?: undefined | undefined;
3513
+ gasPrice?: bigint | undefined;
3514
+ sidecars?: undefined | undefined;
3515
+ } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
3516
+ accessList?: import("viem").AccessList | undefined;
3517
+ authorizationList?: undefined | undefined;
3518
+ blobs?: undefined | undefined;
3519
+ blobVersionedHashes?: undefined | undefined;
3520
+ gasPrice?: undefined | undefined;
3521
+ maxFeePerBlobGas?: undefined | undefined;
3522
+ maxFeePerGas?: bigint | undefined;
3523
+ maxPriorityFeePerGas?: bigint | undefined;
3524
+ sidecars?: undefined | undefined;
3525
+ } & (import("viem").OneOf<{
3526
+ maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
3527
+ } | {
3528
+ maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
3529
+ }, import("viem").FeeValuesEIP1559> & {
3530
+ accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
3531
+ }) ? "eip1559" : never) | (request extends {
3532
+ accessList?: import("viem").AccessList | undefined;
3533
+ authorizationList?: undefined | undefined;
3534
+ blobs?: undefined | undefined;
3535
+ blobVersionedHashes?: undefined | undefined;
3536
+ gasPrice?: bigint | undefined;
3537
+ sidecars?: undefined | undefined;
3538
+ maxFeePerBlobGas?: undefined | undefined;
3539
+ maxFeePerGas?: undefined | undefined;
3540
+ maxPriorityFeePerGas?: undefined | undefined;
3541
+ } & {
3542
+ accessList: import("viem").TransactionSerializableEIP2930["accessList"];
3543
+ } ? "eip2930" : never) | (request extends ({
3544
+ accessList?: import("viem").AccessList | undefined;
3545
+ authorizationList?: undefined | undefined;
3546
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
3547
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3548
+ maxFeePerBlobGas?: bigint | undefined;
3549
+ maxFeePerGas?: bigint | undefined;
3550
+ maxPriorityFeePerGas?: bigint | undefined;
3551
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
3552
+ } | {
3553
+ accessList?: import("viem").AccessList | undefined;
3554
+ authorizationList?: undefined | undefined;
3555
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
3556
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
3557
+ maxFeePerBlobGas?: bigint | undefined;
3558
+ maxFeePerGas?: bigint | undefined;
3559
+ maxPriorityFeePerGas?: bigint | undefined;
3560
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
3561
+ }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
3562
+ blobs: import("viem").TransactionSerializableEIP4844["blobs"];
3563
+ } | {
3564
+ blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
3565
+ } | {
3566
+ sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
3567
+ }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
3568
+ accessList?: import("viem").AccessList | undefined;
3569
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
3570
+ blobs?: undefined | undefined;
3571
+ blobVersionedHashes?: undefined | undefined;
3572
+ gasPrice?: undefined | undefined;
3573
+ maxFeePerBlobGas?: undefined | undefined;
3574
+ maxFeePerGas?: bigint | undefined;
3575
+ maxPriorityFeePerGas?: bigint | undefined;
3576
+ sidecars?: undefined | undefined;
3577
+ } | {
3578
+ accessList?: import("viem").AccessList | undefined;
3579
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
3580
+ blobs?: undefined | undefined;
3581
+ blobVersionedHashes?: undefined | undefined;
3582
+ gasPrice?: undefined | undefined;
3583
+ maxFeePerBlobGas?: undefined | undefined;
3584
+ maxFeePerGas?: bigint | undefined;
3585
+ maxPriorityFeePerGas?: bigint | undefined;
3586
+ sidecars?: undefined | undefined;
3587
+ }) & {
3588
+ authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
3589
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_12 extends "eip7702" ? import("viem").TransactionRequestEIP7702 : never : never : never)>> & {
3590
+ chainId?: number | undefined;
3591
+ }, (request["parameters"] extends readonly import("viem").PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "type" | "nonce" | "chainId" | "gas" | "blobVersionedHashes" | "fees") extends infer T_13 ? T_13 extends (request["parameters"] extends readonly import("viem").PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "type" | "nonce" | "chainId" | "gas" | "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>;
3592
+ readContract: <const abi extends import("abitype").Abi | readonly unknown[], functionName extends import("viem").ContractFunctionName<abi, "pure" | "view">, const args extends import("viem").ContractFunctionArgs<abi, "pure" | "view", functionName>>(args: import("viem").ReadContractParameters<abi, functionName, args>) => Promise<import("viem").ReadContractReturnType<abi, functionName, args>>;
3593
+ sendRawTransaction: (args: import("viem").SendRawTransactionParameters) => Promise<import("viem").SendRawTransactionReturnType>;
3594
+ simulate: <const calls extends readonly unknown[]>(args: import("viem").SimulateBlocksParameters<calls>) => Promise<import("viem").SimulateBlocksReturnType<calls>>;
3595
+ simulateBlocks: <const calls extends readonly unknown[]>(args: import("viem").SimulateBlocksParameters<calls>) => Promise<import("viem").SimulateBlocksReturnType<calls>>;
3596
+ simulateCalls: <const calls extends readonly unknown[]>(args: import("viem").SimulateCallsParameters<calls>) => Promise<import("viem").SimulateCallsReturnType<calls>>;
3597
+ simulateContract: <const abi extends import("abitype").Abi | readonly unknown[], functionName extends import("viem").ContractFunctionName<abi, "nonpayable" | "payable">, const args_1 extends import("viem").ContractFunctionArgs<abi, "nonpayable" | "payable", functionName>, chainOverride extends import("viem").Chain | undefined, accountOverride extends import("viem").Account | import("abitype").Address | undefined = undefined>(args: import("viem").SimulateContractParameters<abi, functionName, args_1, import("viem").Chain, chainOverride, accountOverride>) => Promise<import("viem").SimulateContractReturnType<abi, functionName, args_1, import("viem").Chain, import("viem").Account | undefined, chainOverride, accountOverride>>;
3598
+ verifyMessage: (args: import("viem").VerifyMessageActionParameters) => Promise<import("viem").VerifyMessageActionReturnType>;
3599
+ verifySiweMessage: (args: import("viem/siwe").VerifySiweMessageParameters) => Promise<import("viem/siwe").VerifySiweMessageReturnType>;
3600
+ verifyTypedData: (args: import("viem").VerifyTypedDataActionParameters) => Promise<import("viem").VerifyTypedDataActionReturnType>;
3601
+ uninstallFilter: (args: import("viem").UninstallFilterParameters) => Promise<import("viem").UninstallFilterReturnType>;
3602
+ waitForTransactionReceipt: (args: import("viem").WaitForTransactionReceiptParameters<import("viem").Chain>) => Promise<import("viem").TransactionReceipt>;
3603
+ watchBlockNumber: (args: import("viem").WatchBlockNumberParameters) => import("viem").WatchBlockNumberReturnType;
3604
+ watchBlocks: <includeTransactions extends boolean = false, blockTag extends import("viem").BlockTag = "latest">(args: import("viem").WatchBlocksParameters<import("wagmi").Transport<string, Record<string, any>, import("viem").EIP1193RequestFn>, import("viem").Chain, includeTransactions, blockTag>) => import("viem").WatchBlocksReturnType;
3605
+ watchContractEvent: <const abi extends import("abitype").Abi | readonly unknown[], eventName extends import("viem").ContractEventName<abi>, strict extends boolean | undefined = undefined>(args: import("viem").WatchContractEventParameters<abi, eventName, strict, import("wagmi").Transport<string, Record<string, any>, import("viem").EIP1193RequestFn>>) => import("viem").WatchContractEventReturnType;
3606
+ watchEvent: <const abiEvent extends import("abitype").AbiEvent | undefined = undefined, const abiEvents extends readonly import("abitype").AbiEvent[] | readonly unknown[] | undefined = abiEvent extends import("abitype").AbiEvent ? [abiEvent] : undefined, strict extends boolean | undefined = undefined>(args: import("viem").WatchEventParameters<abiEvent, abiEvents, strict, import("wagmi").Transport<string, Record<string, any>, import("viem").EIP1193RequestFn>>) => import("viem").WatchEventReturnType;
3607
+ watchPendingTransactions: (args: import("viem").WatchPendingTransactionsParameters<import("wagmi").Transport<string, Record<string, any>, import("viem").EIP1193RequestFn>>) => import("viem").WatchPendingTransactionsReturnType;
3608
+ extend: <const client extends {
3609
+ [x: string]: unknown;
3610
+ account?: undefined;
3611
+ batch?: undefined;
3612
+ cacheTime?: undefined;
3613
+ ccipRead?: undefined;
3614
+ chain?: undefined;
3615
+ experimental_blockTag?: undefined;
3616
+ key?: undefined;
3617
+ name?: undefined;
3618
+ pollingInterval?: undefined;
3619
+ request?: undefined;
3620
+ transport?: undefined;
3621
+ type?: undefined;
3622
+ uid?: undefined;
3623
+ } & import("viem").ExactPartial<Pick<import("viem").PublicActions<import("wagmi").Transport<string, Record<string, any>, import("viem").EIP1193RequestFn>, import("viem").Chain, 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<import("viem").WalletActions<import("viem").Chain, undefined>, "sendTransaction" | "writeContract">>>(fn: (client: import("viem").Client<import("wagmi").Transport<string, Record<string, any>, import("viem").EIP1193RequestFn>, import("viem").Chain, undefined, import("viem").PublicRpcSchema, import("viem").PublicActions<import("wagmi").Transport<string, Record<string, any>, import("viem").EIP1193RequestFn>, import("viem").Chain>>) => client) => import("viem").Client<import("wagmi").Transport<string, Record<string, any>, import("viem").EIP1193RequestFn>, import("viem").Chain, undefined, import("viem").PublicRpcSchema, { [K in keyof client]: client[K]; } & import("viem").PublicActions<import("wagmi").Transport<string, Record<string, any>, import("viem").EIP1193RequestFn>, import("viem").Chain>>;
3624
+ } | undefined;