@marigoldlabs/web3-tester 0.1.2 → 0.4.1

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 (75) hide show
  1. package/.env.example +26 -17
  2. package/LICENSE +21 -0
  3. package/README.md +167 -41
  4. package/dist/anvil.d.ts +90 -2
  5. package/dist/anvil.d.ts.map +1 -1
  6. package/dist/anvil.js +215 -13
  7. package/dist/anvil.js.map +1 -1
  8. package/dist/contracts/test-erc20.d.ts +227 -0
  9. package/dist/contracts/test-erc20.d.ts.map +1 -0
  10. package/dist/contracts/test-erc20.js +8 -0
  11. package/dist/contracts/test-erc20.js.map +1 -0
  12. package/dist/erc20.d.ts +38 -0
  13. package/dist/erc20.d.ts.map +1 -0
  14. package/dist/erc20.js +229 -0
  15. package/dist/erc20.js.map +1 -0
  16. package/dist/fixtures.d.ts +44 -2
  17. package/dist/fixtures.d.ts.map +1 -1
  18. package/dist/fixtures.js +162 -17
  19. package/dist/fixtures.js.map +1 -1
  20. package/dist/index.d.ts +17 -5
  21. package/dist/index.d.ts.map +1 -1
  22. package/dist/index.js +7 -1
  23. package/dist/index.js.map +1 -1
  24. package/dist/injected-provider.d.ts.map +1 -1
  25. package/dist/injected-provider.js +142 -79
  26. package/dist/injected-provider.js.map +1 -1
  27. package/dist/live-fixtures.d.ts +32 -3
  28. package/dist/live-fixtures.d.ts.map +1 -1
  29. package/dist/live-fixtures.js +64 -27
  30. package/dist/live-fixtures.js.map +1 -1
  31. package/dist/matchers.d.ts +90 -0
  32. package/dist/matchers.d.ts.map +1 -0
  33. package/dist/matchers.js +268 -0
  34. package/dist/matchers.js.map +1 -0
  35. package/dist/metamask-extension.d.ts +34 -0
  36. package/dist/metamask-extension.d.ts.map +1 -0
  37. package/dist/metamask-extension.js +97 -0
  38. package/dist/metamask-extension.js.map +1 -0
  39. package/dist/mock-wallet-controller.d.ts +205 -3
  40. package/dist/mock-wallet-controller.d.ts.map +1 -1
  41. package/dist/mock-wallet-controller.js +843 -46
  42. package/dist/mock-wallet-controller.js.map +1 -1
  43. package/dist/private-key-rpc-client.d.ts +1730 -0
  44. package/dist/private-key-rpc-client.d.ts.map +1 -1
  45. package/dist/private-key-rpc-client.js +105 -12
  46. package/dist/private-key-rpc-client.js.map +1 -1
  47. package/dist/real-wallet-cache.d.ts +65 -0
  48. package/dist/real-wallet-cache.d.ts.map +1 -0
  49. package/dist/real-wallet-cache.js +245 -0
  50. package/dist/real-wallet-cache.js.map +1 -0
  51. package/dist/real-wallet-fixtures.d.ts +52 -0
  52. package/dist/real-wallet-fixtures.d.ts.map +1 -0
  53. package/dist/real-wallet-fixtures.js +73 -0
  54. package/dist/real-wallet-fixtures.js.map +1 -0
  55. package/dist/real-wallet.d.ts +123 -14
  56. package/dist/real-wallet.d.ts.map +1 -1
  57. package/dist/real-wallet.js +1336 -57
  58. package/dist/real-wallet.js.map +1 -1
  59. package/dist/transactions.d.ts +118 -0
  60. package/dist/transactions.d.ts.map +1 -0
  61. package/dist/transactions.js +207 -0
  62. package/dist/transactions.js.map +1 -0
  63. package/dist/types.d.ts +1 -0
  64. package/dist/types.d.ts.map +1 -1
  65. package/dist/walletconnect.d.ts +206 -0
  66. package/dist/walletconnect.d.ts.map +1 -0
  67. package/dist/walletconnect.js +359 -0
  68. package/dist/walletconnect.js.map +1 -0
  69. package/examples/live-sepolia.spec.ts +20 -1
  70. package/package.json +62 -6
  71. package/docs/API.md +0 -223
  72. package/docs/ARCHITECTURE.md +0 -81
  73. package/docs/CONSUMING_FROM_FJORD.md +0 -123
  74. package/docs/FJORD_LIVE_QA.md +0 -87
  75. package/docs/RELEASE_CHECKLIST.md +0 -55
@@ -4,6 +4,8 @@ export type PrivateKeyRpcClientOptions = {
4
4
  privateKey: Hex;
5
5
  chain?: Chain;
6
6
  rpcUrl?: string;
7
+ /** Opt in to signing on production (non-testnet) chains. */
8
+ allowMainnet?: boolean;
7
9
  };
8
10
  export declare class PrivateKeyRpcClient implements RpcClient {
9
11
  readonly account: Account;
@@ -17,7 +19,1735 @@ export declare class PrivateKeyRpcClient implements RpcClient {
17
19
  }>;
18
20
  private readonly publicClient;
19
21
  private readonly walletClient;
22
+ private rpcChainVerified;
20
23
  constructor(options: PrivateKeyRpcClientOptions);
21
24
  request(request: JsonRpcRequest): Promise<unknown>;
25
+ /** Read-only viem public client backing this wallet (matchers, receipt waits). */
26
+ get client(): {
27
+ account: undefined;
28
+ batch?: {
29
+ multicall?: boolean | import("viem").Prettify<import("viem").MulticallBatchOptions> | undefined;
30
+ } | undefined;
31
+ cacheTime: number;
32
+ ccipRead?: false | {
33
+ request?: (parameters: import("viem").CcipRequestParameters) => Promise<`0x${string}`>;
34
+ } | undefined;
35
+ chain: Chain;
36
+ dataSuffix?: import("viem").DataSuffix | undefined;
37
+ experimental_blockTag?: import("viem").BlockTag | undefined;
38
+ key: string;
39
+ name: string;
40
+ pollingInterval: number;
41
+ request: import("viem").EIP1193RequestFn<import("viem").PublicRpcSchema>;
42
+ transport: import("viem").TransportConfig<"http", import("viem").EIP1193RequestFn> & {
43
+ fetchOptions?: import("viem").HttpTransportConfig["fetchOptions"] | undefined;
44
+ url?: string | undefined;
45
+ };
46
+ type: string;
47
+ uid: string;
48
+ call: (parameters: import("viem").CallParameters<Chain>) => Promise<import("viem").CallReturnType>;
49
+ createAccessList: (parameters: import("viem").CreateAccessListParameters<Chain>) => Promise<{
50
+ accessList: import("viem").AccessList;
51
+ gasUsed: bigint;
52
+ }>;
53
+ createBlockFilter: () => Promise<import("viem").CreateBlockFilterReturnType>;
54
+ createContractEventFilter: <const abi extends import("viem").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>>;
55
+ createEventFilter: <const abiEvent extends import("viem").AbiEvent | undefined = undefined, const abiEvents extends readonly import("viem").AbiEvent[] | readonly unknown[] | undefined = abiEvent extends import("viem").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>>;
56
+ createPendingTransactionFilter: () => Promise<import("viem").CreatePendingTransactionFilterReturnType>;
57
+ estimateContractGas: <chain extends Chain | undefined, const abi extends import("viem").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>;
58
+ estimateGas: (args: import("viem").EstimateGasParameters<Chain>) => Promise<import("viem").EstimateGasReturnType>;
59
+ fillTransaction: <chainOverride extends Chain | undefined = undefined, accountOverride extends Account | import("viem").Address | undefined = undefined>(args: import("viem").FillTransactionParameters<Chain, Account | undefined, chainOverride, accountOverride>) => Promise<import("viem").FillTransactionReturnType<Chain, chainOverride>>;
60
+ getBalance: (args: import("viem").GetBalanceParameters) => Promise<import("viem").GetBalanceReturnType>;
61
+ getBlobBaseFee: () => Promise<import("viem").GetBlobBaseFeeReturnType>;
62
+ getBlock: <includeTransactions extends boolean = false, blockTag extends import("viem").BlockTag = "latest">(args?: import("viem").GetBlockParameters<includeTransactions, blockTag> | undefined) => Promise<{
63
+ number: blockTag extends "pending" ? null : bigint;
64
+ size: bigint;
65
+ hash: blockTag extends "pending" ? null : `0x${string}`;
66
+ nonce: blockTag extends "pending" ? null : `0x${string}`;
67
+ logsBloom: blockTag extends "pending" ? null : `0x${string}`;
68
+ baseFeePerGas: bigint | null;
69
+ blobGasUsed: bigint;
70
+ difficulty: bigint;
71
+ excessBlobGas: bigint;
72
+ extraData: Hex;
73
+ gasLimit: bigint;
74
+ gasUsed: bigint;
75
+ miner: import("viem").Address;
76
+ mixHash: import("viem").Hash;
77
+ parentBeaconBlockRoot?: `0x${string}` | undefined;
78
+ parentHash: import("viem").Hash;
79
+ receiptsRoot: Hex;
80
+ sealFields: Hex[];
81
+ sha3Uncles: import("viem").Hash;
82
+ stateRoot: import("viem").Hash;
83
+ timestamp: bigint;
84
+ totalDifficulty: bigint | null;
85
+ transactionsRoot: import("viem").Hash;
86
+ uncles: import("viem").Hash[];
87
+ withdrawals?: import("viem").Withdrawal[] | undefined | undefined;
88
+ withdrawalsRoot?: `0x${string}` | undefined;
89
+ transactions: includeTransactions extends true ? ({
90
+ value: bigint;
91
+ from: import("viem").Address;
92
+ to: import("viem").Address | null;
93
+ type: "legacy";
94
+ blockTimestamp?: bigint | undefined;
95
+ hash: import("viem").Hash;
96
+ gas: bigint;
97
+ chainId?: number | undefined;
98
+ nonce: number;
99
+ r: Hex;
100
+ s: Hex;
101
+ v: bigint;
102
+ yParity?: undefined | undefined;
103
+ blobVersionedHashes?: undefined | undefined;
104
+ gasPrice: bigint;
105
+ maxFeePerBlobGas?: undefined | undefined;
106
+ maxFeePerGas?: undefined | undefined;
107
+ maxPriorityFeePerGas?: undefined | undefined;
108
+ accessList?: undefined | undefined;
109
+ authorizationList?: undefined | undefined;
110
+ input: Hex;
111
+ typeHex: Hex | null;
112
+ blockHash: (blockTag extends "pending" ? true : false) extends infer T ? T extends (blockTag extends "pending" ? true : false) ? T extends true ? null : `0x${string}` : never : never;
113
+ blockNumber: (blockTag extends "pending" ? true : false) extends infer T_1 ? T_1 extends (blockTag extends "pending" ? true : false) ? T_1 extends true ? null : bigint : never : never;
114
+ 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;
115
+ } | {
116
+ value: bigint;
117
+ from: import("viem").Address;
118
+ to: import("viem").Address | null;
119
+ type: "eip2930";
120
+ blockTimestamp?: bigint | undefined;
121
+ hash: import("viem").Hash;
122
+ gas: bigint;
123
+ chainId: number;
124
+ nonce: number;
125
+ r: Hex;
126
+ s: Hex;
127
+ v: bigint;
128
+ yParity: number;
129
+ blobVersionedHashes?: undefined | undefined;
130
+ gasPrice: bigint;
131
+ maxFeePerBlobGas?: undefined | undefined;
132
+ maxFeePerGas?: undefined | undefined;
133
+ maxPriorityFeePerGas?: undefined | undefined;
134
+ accessList: import("viem").AccessList;
135
+ authorizationList?: undefined | undefined;
136
+ input: Hex;
137
+ typeHex: Hex | null;
138
+ blockHash: (blockTag extends "pending" ? true : false) extends infer T_3 ? T_3 extends (blockTag extends "pending" ? true : false) ? T_3 extends true ? null : `0x${string}` : never : never;
139
+ blockNumber: (blockTag extends "pending" ? true : false) extends infer T_4 ? T_4 extends (blockTag extends "pending" ? true : false) ? T_4 extends true ? null : bigint : never : never;
140
+ 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;
141
+ } | {
142
+ value: bigint;
143
+ from: import("viem").Address;
144
+ to: import("viem").Address | null;
145
+ type: "eip1559";
146
+ blockTimestamp?: bigint | undefined;
147
+ hash: import("viem").Hash;
148
+ gas: bigint;
149
+ chainId: number;
150
+ nonce: number;
151
+ r: Hex;
152
+ s: Hex;
153
+ v: bigint;
154
+ yParity: number;
155
+ blobVersionedHashes?: undefined | undefined;
156
+ gasPrice?: undefined | undefined;
157
+ maxFeePerBlobGas?: undefined | undefined;
158
+ maxFeePerGas: bigint;
159
+ maxPriorityFeePerGas: bigint;
160
+ accessList: import("viem").AccessList;
161
+ authorizationList?: undefined | undefined;
162
+ input: Hex;
163
+ typeHex: Hex | null;
164
+ blockHash: (blockTag extends "pending" ? true : false) extends infer T_6 ? T_6 extends (blockTag extends "pending" ? true : false) ? T_6 extends true ? null : `0x${string}` : never : never;
165
+ blockNumber: (blockTag extends "pending" ? true : false) extends infer T_7 ? T_7 extends (blockTag extends "pending" ? true : false) ? T_7 extends true ? null : bigint : never : never;
166
+ 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;
167
+ } | {
168
+ value: bigint;
169
+ from: import("viem").Address;
170
+ to: import("viem").Address | null;
171
+ type: "eip4844";
172
+ blockTimestamp?: bigint | undefined;
173
+ hash: import("viem").Hash;
174
+ gas: bigint;
175
+ chainId: number;
176
+ nonce: number;
177
+ r: Hex;
178
+ s: Hex;
179
+ v: bigint;
180
+ yParity: number;
181
+ blobVersionedHashes: readonly Hex[];
182
+ gasPrice?: undefined | undefined;
183
+ maxFeePerBlobGas: bigint;
184
+ maxFeePerGas: bigint;
185
+ maxPriorityFeePerGas: bigint;
186
+ accessList: import("viem").AccessList;
187
+ authorizationList?: undefined | undefined;
188
+ input: Hex;
189
+ typeHex: Hex | null;
190
+ blockHash: (blockTag extends "pending" ? true : false) extends infer T_9 ? T_9 extends (blockTag extends "pending" ? true : false) ? T_9 extends true ? null : `0x${string}` : never : never;
191
+ blockNumber: (blockTag extends "pending" ? true : false) extends infer T_10 ? T_10 extends (blockTag extends "pending" ? true : false) ? T_10 extends true ? null : bigint : never : never;
192
+ 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;
193
+ } | {
194
+ value: bigint;
195
+ from: import("viem").Address;
196
+ to: import("viem").Address | null;
197
+ type: "eip7702";
198
+ blockTimestamp?: bigint | undefined;
199
+ hash: import("viem").Hash;
200
+ gas: bigint;
201
+ chainId: number;
202
+ nonce: number;
203
+ r: Hex;
204
+ s: Hex;
205
+ v: bigint;
206
+ yParity: number;
207
+ blobVersionedHashes?: undefined | undefined;
208
+ gasPrice?: undefined | undefined;
209
+ maxFeePerBlobGas?: undefined | undefined;
210
+ maxFeePerGas: bigint;
211
+ maxPriorityFeePerGas: bigint;
212
+ accessList: import("viem").AccessList;
213
+ authorizationList: import("viem").SignedAuthorizationList;
214
+ input: Hex;
215
+ typeHex: Hex | null;
216
+ blockHash: (blockTag extends "pending" ? true : false) extends infer T_12 ? T_12 extends (blockTag extends "pending" ? true : false) ? T_12 extends true ? null : `0x${string}` : never : never;
217
+ blockNumber: (blockTag extends "pending" ? true : false) extends infer T_13 ? T_13 extends (blockTag extends "pending" ? true : false) ? T_13 extends true ? null : bigint : never : never;
218
+ 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;
219
+ })[] : `0x${string}`[];
220
+ }>;
221
+ getBlockReceipts: (args?: import("viem").GetBlockReceiptsParameters | undefined) => Promise<import("viem").GetBlockReceiptsReturnType<Chain>>;
222
+ getBlockNumber: (args?: import("viem").GetBlockNumberParameters | undefined) => Promise<import("viem").GetBlockNumberReturnType>;
223
+ getBlockTransactionCount: (args?: import("viem").GetBlockTransactionCountParameters | undefined) => Promise<import("viem").GetBlockTransactionCountReturnType>;
224
+ getBytecode: (args: import("viem").GetBytecodeParameters) => Promise<import("viem").GetBytecodeReturnType>;
225
+ getChainId: () => Promise<import("viem").GetChainIdReturnType>;
226
+ getCode: (args: import("viem").GetBytecodeParameters) => Promise<import("viem").GetBytecodeReturnType>;
227
+ getContractEvents: <const abi extends import("viem").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>>;
228
+ getDelegation: (args: import("viem").GetDelegationParameters) => Promise<import("viem").GetDelegationReturnType>;
229
+ getEip712Domain: (args: import("viem").GetEip712DomainParameters) => Promise<import("viem").GetEip712DomainReturnType>;
230
+ getEnsAddress: (args: import("viem").GetEnsAddressParameters) => Promise<import("viem").GetEnsAddressReturnType>;
231
+ getEnsAvatar: (args: import("viem").GetEnsAvatarParameters) => Promise<import("viem").GetEnsAvatarReturnType>;
232
+ getEnsName: (args: import("viem").GetEnsNameParameters) => Promise<import("viem").GetEnsNameReturnType>;
233
+ getEnsResolver: (args: import("viem").GetEnsResolverParameters) => Promise<import("viem").GetEnsResolverReturnType>;
234
+ getEnsText: (args: import("viem").GetEnsTextParameters) => Promise<import("viem").GetEnsTextReturnType>;
235
+ getFeeHistory: (args: import("viem").GetFeeHistoryParameters) => Promise<import("viem").GetFeeHistoryReturnType>;
236
+ estimateFeesPerGas: <chainOverride extends Chain | undefined = undefined, type extends import("viem").FeeValuesType = "eip1559">(args?: import("viem").EstimateFeesPerGasParameters<Chain, chainOverride, type> | undefined) => Promise<import("viem").EstimateFeesPerGasReturnType<type>>;
237
+ getFilterChanges: <filterType extends import("viem").FilterType, const abi extends import("viem").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>>;
238
+ getFilterLogs: <const abi extends import("viem").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>>;
239
+ getGasPrice: () => Promise<import("viem").GetGasPriceReturnType>;
240
+ getLogs: <const abiEvent extends import("viem").AbiEvent | undefined = undefined, const abiEvents extends readonly import("viem").AbiEvent[] | readonly unknown[] | undefined = abiEvent extends import("viem").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>>;
241
+ getProof: (args: import("viem").GetProofParameters) => Promise<import("viem").GetProofReturnType>;
242
+ estimateMaxPriorityFeePerGas: <chainOverride extends Chain | undefined = undefined>(args?: {
243
+ chain?: chainOverride | null | undefined;
244
+ } | undefined) => Promise<import("viem").EstimateMaxPriorityFeePerGasReturnType>;
245
+ getStorageAt: (args: import("viem").GetStorageAtParameters) => Promise<import("viem").GetStorageAtReturnType>;
246
+ getTransaction: <blockTag extends import("viem").BlockTag = "latest">(args: import("viem").GetTransactionParameters<blockTag>) => Promise<{
247
+ value: bigint;
248
+ from: import("viem").Address;
249
+ to: import("viem").Address | null;
250
+ type: "legacy";
251
+ blockTimestamp?: bigint | undefined;
252
+ hash: import("viem").Hash;
253
+ gas: bigint;
254
+ chainId?: number | undefined;
255
+ nonce: number;
256
+ r: Hex;
257
+ s: Hex;
258
+ v: bigint;
259
+ yParity?: undefined | undefined;
260
+ blobVersionedHashes?: undefined | undefined;
261
+ gasPrice: bigint;
262
+ maxFeePerBlobGas?: undefined | undefined;
263
+ maxFeePerGas?: undefined | undefined;
264
+ maxPriorityFeePerGas?: undefined | undefined;
265
+ accessList?: undefined | undefined;
266
+ authorizationList?: undefined | undefined;
267
+ input: Hex;
268
+ typeHex: Hex | null;
269
+ blockHash: (blockTag extends "pending" ? true : false) extends infer T ? T extends (blockTag extends "pending" ? true : false) ? T extends true ? null : `0x${string}` : never : never;
270
+ blockNumber: (blockTag extends "pending" ? true : false) extends infer T_1 ? T_1 extends (blockTag extends "pending" ? true : false) ? T_1 extends true ? null : bigint : never : never;
271
+ 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;
272
+ } | {
273
+ value: bigint;
274
+ from: import("viem").Address;
275
+ to: import("viem").Address | null;
276
+ type: "eip2930";
277
+ blockTimestamp?: bigint | undefined;
278
+ hash: import("viem").Hash;
279
+ gas: bigint;
280
+ chainId: number;
281
+ nonce: number;
282
+ r: Hex;
283
+ s: Hex;
284
+ v: bigint;
285
+ yParity: number;
286
+ blobVersionedHashes?: undefined | undefined;
287
+ gasPrice: bigint;
288
+ maxFeePerBlobGas?: undefined | undefined;
289
+ maxFeePerGas?: undefined | undefined;
290
+ maxPriorityFeePerGas?: undefined | undefined;
291
+ accessList: import("viem").AccessList;
292
+ authorizationList?: undefined | undefined;
293
+ input: Hex;
294
+ typeHex: Hex | null;
295
+ blockHash: (blockTag extends "pending" ? true : false) extends infer T_3 ? T_3 extends (blockTag extends "pending" ? true : false) ? T_3 extends true ? null : `0x${string}` : never : never;
296
+ blockNumber: (blockTag extends "pending" ? true : false) extends infer T_4 ? T_4 extends (blockTag extends "pending" ? true : false) ? T_4 extends true ? null : bigint : never : never;
297
+ 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;
298
+ } | {
299
+ value: bigint;
300
+ from: import("viem").Address;
301
+ to: import("viem").Address | null;
302
+ type: "eip1559";
303
+ blockTimestamp?: bigint | undefined;
304
+ hash: import("viem").Hash;
305
+ gas: bigint;
306
+ chainId: number;
307
+ nonce: number;
308
+ r: Hex;
309
+ s: Hex;
310
+ v: bigint;
311
+ yParity: number;
312
+ blobVersionedHashes?: undefined | undefined;
313
+ gasPrice?: undefined | undefined;
314
+ maxFeePerBlobGas?: undefined | undefined;
315
+ maxFeePerGas: bigint;
316
+ maxPriorityFeePerGas: bigint;
317
+ accessList: import("viem").AccessList;
318
+ authorizationList?: undefined | undefined;
319
+ input: Hex;
320
+ typeHex: Hex | null;
321
+ blockHash: (blockTag extends "pending" ? true : false) extends infer T_6 ? T_6 extends (blockTag extends "pending" ? true : false) ? T_6 extends true ? null : `0x${string}` : never : never;
322
+ blockNumber: (blockTag extends "pending" ? true : false) extends infer T_7 ? T_7 extends (blockTag extends "pending" ? true : false) ? T_7 extends true ? null : bigint : never : never;
323
+ 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;
324
+ } | {
325
+ value: bigint;
326
+ from: import("viem").Address;
327
+ to: import("viem").Address | null;
328
+ type: "eip4844";
329
+ blockTimestamp?: bigint | undefined;
330
+ hash: import("viem").Hash;
331
+ gas: bigint;
332
+ chainId: number;
333
+ nonce: number;
334
+ r: Hex;
335
+ s: Hex;
336
+ v: bigint;
337
+ yParity: number;
338
+ blobVersionedHashes: readonly Hex[];
339
+ gasPrice?: undefined | undefined;
340
+ maxFeePerBlobGas: bigint;
341
+ maxFeePerGas: bigint;
342
+ maxPriorityFeePerGas: bigint;
343
+ accessList: import("viem").AccessList;
344
+ authorizationList?: undefined | undefined;
345
+ input: Hex;
346
+ typeHex: Hex | null;
347
+ blockHash: (blockTag extends "pending" ? true : false) extends infer T_9 ? T_9 extends (blockTag extends "pending" ? true : false) ? T_9 extends true ? null : `0x${string}` : never : never;
348
+ blockNumber: (blockTag extends "pending" ? true : false) extends infer T_10 ? T_10 extends (blockTag extends "pending" ? true : false) ? T_10 extends true ? null : bigint : never : never;
349
+ 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;
350
+ } | {
351
+ value: bigint;
352
+ from: import("viem").Address;
353
+ to: import("viem").Address | null;
354
+ type: "eip7702";
355
+ blockTimestamp?: bigint | undefined;
356
+ hash: import("viem").Hash;
357
+ gas: bigint;
358
+ chainId: number;
359
+ nonce: number;
360
+ r: Hex;
361
+ s: Hex;
362
+ v: bigint;
363
+ yParity: number;
364
+ blobVersionedHashes?: undefined | undefined;
365
+ gasPrice?: undefined | undefined;
366
+ maxFeePerBlobGas?: undefined | undefined;
367
+ maxFeePerGas: bigint;
368
+ maxPriorityFeePerGas: bigint;
369
+ accessList: import("viem").AccessList;
370
+ authorizationList: import("viem").SignedAuthorizationList;
371
+ input: Hex;
372
+ typeHex: Hex | null;
373
+ blockHash: (blockTag extends "pending" ? true : false) extends infer T_12 ? T_12 extends (blockTag extends "pending" ? true : false) ? T_12 extends true ? null : `0x${string}` : never : never;
374
+ blockNumber: (blockTag extends "pending" ? true : false) extends infer T_13 ? T_13 extends (blockTag extends "pending" ? true : false) ? T_13 extends true ? null : bigint : never : never;
375
+ 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;
376
+ }>;
377
+ getTransactionConfirmations: (args: import("viem").GetTransactionConfirmationsParameters<Chain>) => Promise<import("viem").GetTransactionConfirmationsReturnType>;
378
+ getTransactionCount: (args: import("viem").GetTransactionCountParameters) => Promise<import("viem").GetTransactionCountReturnType>;
379
+ getTransactionReceipt: (args: import("viem").GetTransactionReceiptParameters) => Promise<import("viem").TransactionReceipt>;
380
+ multicall: <const contracts extends readonly unknown[], allowFailure extends boolean = true>(args: import("viem").MulticallParameters<contracts, allowFailure>) => Promise<import("viem").MulticallReturnType<contracts, allowFailure>>;
381
+ prepareTransactionRequest: <const request extends import("viem").PrepareTransactionRequestRequest<Chain, chainOverride>, chainOverride extends Chain | undefined = undefined, accountOverride extends Account | import("viem").Address | undefined = undefined>(args: import("viem").PrepareTransactionRequestParameters<Chain, Account | undefined, chainOverride, accountOverride, request>) => Promise<import("viem").UnionRequiredBy<Extract<import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<Chain, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> & (import("viem").DeriveChain<Chain, chainOverride> extends infer T_1 ? T_1 extends import("viem").DeriveChain<Chain, chainOverride> ? T_1 extends Chain ? {
382
+ chain: T_1;
383
+ } : {
384
+ chain?: undefined;
385
+ } : never : never) & (import("viem").DeriveAccount<Account | undefined, accountOverride> extends infer T_2 ? T_2 extends import("viem").DeriveAccount<Account | undefined, accountOverride> ? T_2 extends Account ? {
386
+ account: T_2;
387
+ from: import("viem").Address;
388
+ } : {
389
+ account?: undefined;
390
+ from?: undefined;
391
+ } : never : never), import("viem").IsNever<import("viem").ExtractFormattedTransactionRequest<import("viem").DeriveChain<Chain, chainOverride>, {
392
+ type?: ((request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
393
+ accessList?: undefined | undefined;
394
+ authorizationList?: undefined | undefined;
395
+ blobs?: undefined | undefined;
396
+ blobVersionedHashes?: undefined | undefined;
397
+ gasPrice?: bigint | undefined;
398
+ sidecars?: undefined | undefined;
399
+ } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
400
+ accessList?: import("viem").AccessList | undefined;
401
+ authorizationList?: undefined | undefined;
402
+ blobs?: undefined | undefined;
403
+ blobVersionedHashes?: undefined | undefined;
404
+ gasPrice?: undefined | undefined;
405
+ maxFeePerBlobGas?: undefined | undefined;
406
+ maxFeePerGas?: bigint | undefined;
407
+ maxPriorityFeePerGas?: bigint | undefined;
408
+ sidecars?: undefined | undefined;
409
+ } & (import("viem").OneOf<{
410
+ maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
411
+ } | {
412
+ maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
413
+ }, import("viem").FeeValuesEIP1559> & {
414
+ accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
415
+ }) ? "eip1559" : never) | (request extends {
416
+ accessList?: import("viem").AccessList | undefined;
417
+ authorizationList?: undefined | undefined;
418
+ blobs?: undefined | undefined;
419
+ blobVersionedHashes?: undefined | undefined;
420
+ gasPrice?: bigint | undefined;
421
+ sidecars?: undefined | undefined;
422
+ maxFeePerBlobGas?: undefined | undefined;
423
+ maxFeePerGas?: undefined | undefined;
424
+ maxPriorityFeePerGas?: undefined | undefined;
425
+ } & {
426
+ accessList: import("viem").TransactionSerializableEIP2930["accessList"];
427
+ } ? "eip2930" : never) | (request extends ({
428
+ accessList?: import("viem").AccessList | undefined;
429
+ authorizationList?: undefined | undefined;
430
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
431
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
432
+ maxFeePerBlobGas?: bigint | undefined;
433
+ maxFeePerGas?: bigint | undefined;
434
+ maxPriorityFeePerGas?: bigint | undefined;
435
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
436
+ } | {
437
+ accessList?: import("viem").AccessList | undefined;
438
+ authorizationList?: undefined | undefined;
439
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
440
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
441
+ maxFeePerBlobGas?: bigint | undefined;
442
+ maxFeePerGas?: bigint | undefined;
443
+ maxPriorityFeePerGas?: bigint | undefined;
444
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
445
+ }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
446
+ blobs: import("viem").TransactionSerializableEIP4844["blobs"];
447
+ } | {
448
+ blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
449
+ } | {
450
+ sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
451
+ }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
452
+ accessList?: import("viem").AccessList | undefined;
453
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
454
+ blobs?: undefined | undefined;
455
+ blobVersionedHashes?: undefined | undefined;
456
+ gasPrice?: undefined | undefined;
457
+ maxFeePerBlobGas?: undefined | undefined;
458
+ maxFeePerGas?: bigint | undefined;
459
+ maxPriorityFeePerGas?: bigint | undefined;
460
+ sidecars?: undefined | undefined;
461
+ } | {
462
+ accessList?: import("viem").AccessList | undefined;
463
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
464
+ blobs?: undefined | undefined;
465
+ blobVersionedHashes?: undefined | undefined;
466
+ gasPrice?: undefined | undefined;
467
+ maxFeePerBlobGas?: undefined | undefined;
468
+ maxFeePerGas?: bigint | undefined;
469
+ maxPriorityFeePerGas?: bigint | undefined;
470
+ sidecars?: undefined | undefined;
471
+ }) & {
472
+ authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
473
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
474
+ accessList?: undefined | undefined;
475
+ authorizationList?: undefined | undefined;
476
+ blobs?: undefined | undefined;
477
+ blobVersionedHashes?: undefined | undefined;
478
+ gasPrice?: bigint | undefined;
479
+ sidecars?: undefined | undefined;
480
+ } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
481
+ accessList?: import("viem").AccessList | undefined;
482
+ authorizationList?: undefined | undefined;
483
+ blobs?: undefined | undefined;
484
+ blobVersionedHashes?: undefined | undefined;
485
+ gasPrice?: undefined | undefined;
486
+ maxFeePerBlobGas?: undefined | undefined;
487
+ maxFeePerGas?: bigint | undefined;
488
+ maxPriorityFeePerGas?: bigint | undefined;
489
+ sidecars?: undefined | undefined;
490
+ } & (import("viem").OneOf<{
491
+ maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
492
+ } | {
493
+ maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
494
+ }, import("viem").FeeValuesEIP1559> & {
495
+ accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
496
+ }) ? "eip1559" : never) | (request extends {
497
+ accessList?: import("viem").AccessList | undefined;
498
+ authorizationList?: undefined | undefined;
499
+ blobs?: undefined | undefined;
500
+ blobVersionedHashes?: undefined | undefined;
501
+ gasPrice?: bigint | undefined;
502
+ sidecars?: undefined | undefined;
503
+ maxFeePerBlobGas?: undefined | undefined;
504
+ maxFeePerGas?: undefined | undefined;
505
+ maxPriorityFeePerGas?: undefined | undefined;
506
+ } & {
507
+ accessList: import("viem").TransactionSerializableEIP2930["accessList"];
508
+ } ? "eip2930" : never) | (request extends ({
509
+ accessList?: import("viem").AccessList | undefined;
510
+ authorizationList?: undefined | undefined;
511
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
512
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
513
+ maxFeePerBlobGas?: bigint | undefined;
514
+ maxFeePerGas?: bigint | undefined;
515
+ maxPriorityFeePerGas?: bigint | undefined;
516
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
517
+ } | {
518
+ accessList?: import("viem").AccessList | undefined;
519
+ authorizationList?: undefined | undefined;
520
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
521
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
522
+ maxFeePerBlobGas?: bigint | undefined;
523
+ maxFeePerGas?: bigint | undefined;
524
+ maxPriorityFeePerGas?: bigint | undefined;
525
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
526
+ }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
527
+ blobs: import("viem").TransactionSerializableEIP4844["blobs"];
528
+ } | {
529
+ blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
530
+ } | {
531
+ sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
532
+ }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
533
+ accessList?: import("viem").AccessList | undefined;
534
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
535
+ blobs?: undefined | undefined;
536
+ blobVersionedHashes?: undefined | undefined;
537
+ gasPrice?: undefined | undefined;
538
+ maxFeePerBlobGas?: undefined | undefined;
539
+ maxFeePerGas?: bigint | undefined;
540
+ maxPriorityFeePerGas?: bigint | undefined;
541
+ sidecars?: undefined | undefined;
542
+ } | {
543
+ accessList?: import("viem").AccessList | undefined;
544
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
545
+ blobs?: undefined | undefined;
546
+ blobVersionedHashes?: undefined | undefined;
547
+ gasPrice?: undefined | undefined;
548
+ maxFeePerBlobGas?: undefined | undefined;
549
+ maxFeePerGas?: bigint | undefined;
550
+ maxPriorityFeePerGas?: bigint | undefined;
551
+ sidecars?: undefined | undefined;
552
+ }) & {
553
+ authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
554
+ } ? "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 {
555
+ accessList?: undefined | undefined;
556
+ authorizationList?: undefined | undefined;
557
+ blobs?: undefined | undefined;
558
+ blobVersionedHashes?: undefined | undefined;
559
+ gasPrice?: bigint | undefined;
560
+ sidecars?: undefined | undefined;
561
+ } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
562
+ accessList?: import("viem").AccessList | undefined;
563
+ authorizationList?: undefined | undefined;
564
+ blobs?: undefined | undefined;
565
+ blobVersionedHashes?: undefined | undefined;
566
+ gasPrice?: undefined | undefined;
567
+ maxFeePerBlobGas?: undefined | undefined;
568
+ maxFeePerGas?: bigint | undefined;
569
+ maxPriorityFeePerGas?: bigint | undefined;
570
+ sidecars?: undefined | undefined;
571
+ } & (import("viem").OneOf<{
572
+ maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
573
+ } | {
574
+ maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
575
+ }, import("viem").FeeValuesEIP1559> & {
576
+ accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
577
+ }) ? "eip1559" : never) | (request extends {
578
+ accessList?: import("viem").AccessList | undefined;
579
+ authorizationList?: undefined | undefined;
580
+ blobs?: undefined | undefined;
581
+ blobVersionedHashes?: undefined | undefined;
582
+ gasPrice?: bigint | undefined;
583
+ sidecars?: undefined | undefined;
584
+ maxFeePerBlobGas?: undefined | undefined;
585
+ maxFeePerGas?: undefined | undefined;
586
+ maxPriorityFeePerGas?: undefined | undefined;
587
+ } & {
588
+ accessList: import("viem").TransactionSerializableEIP2930["accessList"];
589
+ } ? "eip2930" : never) | (request extends ({
590
+ accessList?: import("viem").AccessList | undefined;
591
+ authorizationList?: undefined | undefined;
592
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
593
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
594
+ maxFeePerBlobGas?: bigint | undefined;
595
+ maxFeePerGas?: bigint | undefined;
596
+ maxPriorityFeePerGas?: bigint | undefined;
597
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
598
+ } | {
599
+ accessList?: import("viem").AccessList | undefined;
600
+ authorizationList?: undefined | undefined;
601
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
602
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
603
+ maxFeePerBlobGas?: bigint | undefined;
604
+ maxFeePerGas?: bigint | undefined;
605
+ maxPriorityFeePerGas?: bigint | undefined;
606
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
607
+ }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
608
+ blobs: import("viem").TransactionSerializableEIP4844["blobs"];
609
+ } | {
610
+ blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
611
+ } | {
612
+ sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
613
+ }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
614
+ accessList?: import("viem").AccessList | undefined;
615
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
616
+ blobs?: undefined | undefined;
617
+ blobVersionedHashes?: undefined | undefined;
618
+ gasPrice?: undefined | undefined;
619
+ maxFeePerBlobGas?: undefined | undefined;
620
+ maxFeePerGas?: bigint | undefined;
621
+ maxPriorityFeePerGas?: bigint | undefined;
622
+ sidecars?: undefined | undefined;
623
+ } | {
624
+ accessList?: import("viem").AccessList | undefined;
625
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
626
+ blobs?: undefined | undefined;
627
+ blobVersionedHashes?: undefined | undefined;
628
+ gasPrice?: undefined | undefined;
629
+ maxFeePerBlobGas?: undefined | undefined;
630
+ maxFeePerGas?: bigint | undefined;
631
+ maxPriorityFeePerGas?: bigint | undefined;
632
+ sidecars?: undefined | undefined;
633
+ }) & {
634
+ authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
635
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
636
+ accessList?: undefined | undefined;
637
+ authorizationList?: undefined | undefined;
638
+ blobs?: undefined | undefined;
639
+ blobVersionedHashes?: undefined | undefined;
640
+ gasPrice?: bigint | undefined;
641
+ sidecars?: undefined | undefined;
642
+ } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
643
+ accessList?: import("viem").AccessList | undefined;
644
+ authorizationList?: undefined | undefined;
645
+ blobs?: undefined | undefined;
646
+ blobVersionedHashes?: undefined | undefined;
647
+ gasPrice?: undefined | undefined;
648
+ maxFeePerBlobGas?: undefined | undefined;
649
+ maxFeePerGas?: bigint | undefined;
650
+ maxPriorityFeePerGas?: bigint | undefined;
651
+ sidecars?: undefined | undefined;
652
+ } & (import("viem").OneOf<{
653
+ maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
654
+ } | {
655
+ maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
656
+ }, import("viem").FeeValuesEIP1559> & {
657
+ accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
658
+ }) ? "eip1559" : never) | (request extends {
659
+ accessList?: import("viem").AccessList | undefined;
660
+ authorizationList?: undefined | undefined;
661
+ blobs?: undefined | undefined;
662
+ blobVersionedHashes?: undefined | undefined;
663
+ gasPrice?: bigint | undefined;
664
+ sidecars?: undefined | undefined;
665
+ maxFeePerBlobGas?: undefined | undefined;
666
+ maxFeePerGas?: undefined | undefined;
667
+ maxPriorityFeePerGas?: undefined | undefined;
668
+ } & {
669
+ accessList: import("viem").TransactionSerializableEIP2930["accessList"];
670
+ } ? "eip2930" : never) | (request extends ({
671
+ accessList?: import("viem").AccessList | undefined;
672
+ authorizationList?: undefined | undefined;
673
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
674
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
675
+ maxFeePerBlobGas?: bigint | undefined;
676
+ maxFeePerGas?: bigint | undefined;
677
+ maxPriorityFeePerGas?: bigint | undefined;
678
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
679
+ } | {
680
+ accessList?: import("viem").AccessList | undefined;
681
+ authorizationList?: undefined | undefined;
682
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
683
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
684
+ maxFeePerBlobGas?: bigint | undefined;
685
+ maxFeePerGas?: bigint | undefined;
686
+ maxPriorityFeePerGas?: bigint | undefined;
687
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
688
+ }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
689
+ blobs: import("viem").TransactionSerializableEIP4844["blobs"];
690
+ } | {
691
+ blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
692
+ } | {
693
+ sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
694
+ }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
695
+ accessList?: import("viem").AccessList | undefined;
696
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
697
+ blobs?: undefined | undefined;
698
+ blobVersionedHashes?: undefined | undefined;
699
+ gasPrice?: undefined | undefined;
700
+ maxFeePerBlobGas?: undefined | undefined;
701
+ maxFeePerGas?: bigint | undefined;
702
+ maxPriorityFeePerGas?: bigint | undefined;
703
+ sidecars?: undefined | undefined;
704
+ } | {
705
+ accessList?: import("viem").AccessList | undefined;
706
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
707
+ blobs?: undefined | undefined;
708
+ blobVersionedHashes?: undefined | undefined;
709
+ gasPrice?: undefined | undefined;
710
+ maxFeePerBlobGas?: undefined | undefined;
711
+ maxFeePerGas?: bigint | undefined;
712
+ maxPriorityFeePerGas?: bigint | undefined;
713
+ sidecars?: undefined | undefined;
714
+ }) & {
715
+ authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
716
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_3 extends string ? T_3 : undefined : never : never) | undefined;
717
+ }, import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<Chain, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from">, ((request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
718
+ accessList?: undefined | undefined;
719
+ authorizationList?: undefined | undefined;
720
+ blobs?: undefined | undefined;
721
+ blobVersionedHashes?: undefined | undefined;
722
+ gasPrice?: bigint | undefined;
723
+ sidecars?: undefined | undefined;
724
+ } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
725
+ accessList?: import("viem").AccessList | undefined;
726
+ authorizationList?: undefined | undefined;
727
+ blobs?: undefined | undefined;
728
+ blobVersionedHashes?: undefined | undefined;
729
+ gasPrice?: undefined | undefined;
730
+ maxFeePerBlobGas?: undefined | undefined;
731
+ maxFeePerGas?: bigint | undefined;
732
+ maxPriorityFeePerGas?: bigint | undefined;
733
+ sidecars?: undefined | undefined;
734
+ } & (import("viem").OneOf<{
735
+ maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
736
+ } | {
737
+ maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
738
+ }, import("viem").FeeValuesEIP1559> & {
739
+ accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
740
+ }) ? "eip1559" : never) | (request extends {
741
+ accessList?: import("viem").AccessList | undefined;
742
+ authorizationList?: undefined | undefined;
743
+ blobs?: undefined | undefined;
744
+ blobVersionedHashes?: undefined | undefined;
745
+ gasPrice?: bigint | undefined;
746
+ sidecars?: undefined | undefined;
747
+ maxFeePerBlobGas?: undefined | undefined;
748
+ maxFeePerGas?: undefined | undefined;
749
+ maxPriorityFeePerGas?: undefined | undefined;
750
+ } & {
751
+ accessList: import("viem").TransactionSerializableEIP2930["accessList"];
752
+ } ? "eip2930" : never) | (request extends ({
753
+ accessList?: import("viem").AccessList | undefined;
754
+ authorizationList?: undefined | undefined;
755
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
756
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
757
+ maxFeePerBlobGas?: bigint | undefined;
758
+ maxFeePerGas?: bigint | undefined;
759
+ maxPriorityFeePerGas?: bigint | undefined;
760
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
761
+ } | {
762
+ accessList?: import("viem").AccessList | undefined;
763
+ authorizationList?: undefined | undefined;
764
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
765
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
766
+ maxFeePerBlobGas?: bigint | undefined;
767
+ maxFeePerGas?: bigint | undefined;
768
+ maxPriorityFeePerGas?: bigint | undefined;
769
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
770
+ }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
771
+ blobs: import("viem").TransactionSerializableEIP4844["blobs"];
772
+ } | {
773
+ blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
774
+ } | {
775
+ sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
776
+ }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
777
+ accessList?: import("viem").AccessList | undefined;
778
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
779
+ blobs?: undefined | undefined;
780
+ blobVersionedHashes?: undefined | undefined;
781
+ gasPrice?: undefined | undefined;
782
+ maxFeePerBlobGas?: undefined | undefined;
783
+ maxFeePerGas?: bigint | undefined;
784
+ maxPriorityFeePerGas?: bigint | undefined;
785
+ sidecars?: undefined | undefined;
786
+ } | {
787
+ accessList?: import("viem").AccessList | undefined;
788
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
789
+ blobs?: undefined | undefined;
790
+ blobVersionedHashes?: undefined | undefined;
791
+ gasPrice?: undefined | undefined;
792
+ maxFeePerBlobGas?: undefined | undefined;
793
+ maxFeePerGas?: bigint | undefined;
794
+ maxPriorityFeePerGas?: bigint | undefined;
795
+ sidecars?: undefined | undefined;
796
+ }) & {
797
+ authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
798
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
799
+ accessList?: undefined | undefined;
800
+ authorizationList?: undefined | undefined;
801
+ blobs?: undefined | undefined;
802
+ blobVersionedHashes?: undefined | undefined;
803
+ gasPrice?: bigint | undefined;
804
+ sidecars?: undefined | undefined;
805
+ } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
806
+ accessList?: import("viem").AccessList | undefined;
807
+ authorizationList?: undefined | undefined;
808
+ blobs?: undefined | undefined;
809
+ blobVersionedHashes?: undefined | undefined;
810
+ gasPrice?: undefined | undefined;
811
+ maxFeePerBlobGas?: undefined | undefined;
812
+ maxFeePerGas?: bigint | undefined;
813
+ maxPriorityFeePerGas?: bigint | undefined;
814
+ sidecars?: undefined | undefined;
815
+ } & (import("viem").OneOf<{
816
+ maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
817
+ } | {
818
+ maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
819
+ }, import("viem").FeeValuesEIP1559> & {
820
+ accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
821
+ }) ? "eip1559" : never) | (request extends {
822
+ accessList?: import("viem").AccessList | undefined;
823
+ authorizationList?: undefined | undefined;
824
+ blobs?: undefined | undefined;
825
+ blobVersionedHashes?: undefined | undefined;
826
+ gasPrice?: bigint | undefined;
827
+ sidecars?: undefined | undefined;
828
+ maxFeePerBlobGas?: undefined | undefined;
829
+ maxFeePerGas?: undefined | undefined;
830
+ maxPriorityFeePerGas?: undefined | undefined;
831
+ } & {
832
+ accessList: import("viem").TransactionSerializableEIP2930["accessList"];
833
+ } ? "eip2930" : never) | (request extends ({
834
+ accessList?: import("viem").AccessList | undefined;
835
+ authorizationList?: undefined | undefined;
836
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
837
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
838
+ maxFeePerBlobGas?: bigint | undefined;
839
+ maxFeePerGas?: bigint | undefined;
840
+ maxPriorityFeePerGas?: bigint | undefined;
841
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
842
+ } | {
843
+ accessList?: import("viem").AccessList | undefined;
844
+ authorizationList?: undefined | undefined;
845
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
846
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
847
+ maxFeePerBlobGas?: bigint | undefined;
848
+ maxFeePerGas?: bigint | undefined;
849
+ maxPriorityFeePerGas?: bigint | undefined;
850
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
851
+ }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
852
+ blobs: import("viem").TransactionSerializableEIP4844["blobs"];
853
+ } | {
854
+ blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
855
+ } | {
856
+ sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
857
+ }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
858
+ accessList?: import("viem").AccessList | undefined;
859
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
860
+ blobs?: undefined | undefined;
861
+ blobVersionedHashes?: undefined | undefined;
862
+ gasPrice?: undefined | undefined;
863
+ maxFeePerBlobGas?: undefined | undefined;
864
+ maxFeePerGas?: bigint | undefined;
865
+ maxPriorityFeePerGas?: bigint | undefined;
866
+ sidecars?: undefined | undefined;
867
+ } | {
868
+ accessList?: import("viem").AccessList | undefined;
869
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
870
+ blobs?: undefined | undefined;
871
+ blobVersionedHashes?: undefined | undefined;
872
+ gasPrice?: undefined | undefined;
873
+ maxFeePerBlobGas?: undefined | undefined;
874
+ maxFeePerGas?: bigint | undefined;
875
+ maxPriorityFeePerGas?: bigint | undefined;
876
+ sidecars?: undefined | undefined;
877
+ }) & {
878
+ authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
879
+ } ? "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 {
880
+ accessList?: undefined | undefined;
881
+ authorizationList?: undefined | undefined;
882
+ blobs?: undefined | undefined;
883
+ blobVersionedHashes?: undefined | undefined;
884
+ gasPrice?: bigint | undefined;
885
+ sidecars?: undefined | undefined;
886
+ } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
887
+ accessList?: import("viem").AccessList | undefined;
888
+ authorizationList?: undefined | undefined;
889
+ blobs?: undefined | undefined;
890
+ blobVersionedHashes?: undefined | undefined;
891
+ gasPrice?: undefined | undefined;
892
+ maxFeePerBlobGas?: undefined | undefined;
893
+ maxFeePerGas?: bigint | undefined;
894
+ maxPriorityFeePerGas?: bigint | undefined;
895
+ sidecars?: undefined | undefined;
896
+ } & (import("viem").OneOf<{
897
+ maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
898
+ } | {
899
+ maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
900
+ }, import("viem").FeeValuesEIP1559> & {
901
+ accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
902
+ }) ? "eip1559" : never) | (request extends {
903
+ accessList?: import("viem").AccessList | undefined;
904
+ authorizationList?: undefined | undefined;
905
+ blobs?: undefined | undefined;
906
+ blobVersionedHashes?: undefined | undefined;
907
+ gasPrice?: bigint | undefined;
908
+ sidecars?: undefined | undefined;
909
+ maxFeePerBlobGas?: undefined | undefined;
910
+ maxFeePerGas?: undefined | undefined;
911
+ maxPriorityFeePerGas?: undefined | undefined;
912
+ } & {
913
+ accessList: import("viem").TransactionSerializableEIP2930["accessList"];
914
+ } ? "eip2930" : never) | (request extends ({
915
+ accessList?: import("viem").AccessList | undefined;
916
+ authorizationList?: undefined | undefined;
917
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
918
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
919
+ maxFeePerBlobGas?: bigint | undefined;
920
+ maxFeePerGas?: bigint | undefined;
921
+ maxPriorityFeePerGas?: bigint | undefined;
922
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
923
+ } | {
924
+ accessList?: import("viem").AccessList | undefined;
925
+ authorizationList?: undefined | undefined;
926
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
927
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
928
+ maxFeePerBlobGas?: bigint | undefined;
929
+ maxFeePerGas?: bigint | undefined;
930
+ maxPriorityFeePerGas?: bigint | undefined;
931
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
932
+ }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
933
+ blobs: import("viem").TransactionSerializableEIP4844["blobs"];
934
+ } | {
935
+ blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
936
+ } | {
937
+ sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
938
+ }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
939
+ accessList?: import("viem").AccessList | undefined;
940
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
941
+ blobs?: undefined | undefined;
942
+ blobVersionedHashes?: undefined | undefined;
943
+ gasPrice?: undefined | undefined;
944
+ maxFeePerBlobGas?: undefined | undefined;
945
+ maxFeePerGas?: bigint | undefined;
946
+ maxPriorityFeePerGas?: bigint | undefined;
947
+ sidecars?: undefined | undefined;
948
+ } | {
949
+ accessList?: import("viem").AccessList | undefined;
950
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
951
+ blobs?: undefined | undefined;
952
+ blobVersionedHashes?: undefined | undefined;
953
+ gasPrice?: undefined | undefined;
954
+ maxFeePerBlobGas?: undefined | undefined;
955
+ maxFeePerGas?: bigint | undefined;
956
+ maxPriorityFeePerGas?: bigint | undefined;
957
+ sidecars?: undefined | undefined;
958
+ }) & {
959
+ authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
960
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
961
+ accessList?: undefined | undefined;
962
+ authorizationList?: undefined | undefined;
963
+ blobs?: undefined | undefined;
964
+ blobVersionedHashes?: undefined | undefined;
965
+ gasPrice?: bigint | undefined;
966
+ sidecars?: undefined | undefined;
967
+ } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
968
+ accessList?: import("viem").AccessList | undefined;
969
+ authorizationList?: undefined | undefined;
970
+ blobs?: undefined | undefined;
971
+ blobVersionedHashes?: undefined | undefined;
972
+ gasPrice?: undefined | undefined;
973
+ maxFeePerBlobGas?: undefined | undefined;
974
+ maxFeePerGas?: bigint | undefined;
975
+ maxPriorityFeePerGas?: bigint | undefined;
976
+ sidecars?: undefined | undefined;
977
+ } & (import("viem").OneOf<{
978
+ maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
979
+ } | {
980
+ maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
981
+ }, import("viem").FeeValuesEIP1559> & {
982
+ accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
983
+ }) ? "eip1559" : never) | (request extends {
984
+ accessList?: import("viem").AccessList | undefined;
985
+ authorizationList?: undefined | undefined;
986
+ blobs?: undefined | undefined;
987
+ blobVersionedHashes?: undefined | undefined;
988
+ gasPrice?: bigint | undefined;
989
+ sidecars?: undefined | undefined;
990
+ maxFeePerBlobGas?: undefined | undefined;
991
+ maxFeePerGas?: undefined | undefined;
992
+ maxPriorityFeePerGas?: undefined | undefined;
993
+ } & {
994
+ accessList: import("viem").TransactionSerializableEIP2930["accessList"];
995
+ } ? "eip2930" : never) | (request extends ({
996
+ accessList?: import("viem").AccessList | undefined;
997
+ authorizationList?: undefined | undefined;
998
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
999
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1000
+ maxFeePerBlobGas?: bigint | undefined;
1001
+ maxFeePerGas?: bigint | undefined;
1002
+ maxPriorityFeePerGas?: bigint | undefined;
1003
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1004
+ } | {
1005
+ accessList?: import("viem").AccessList | undefined;
1006
+ authorizationList?: undefined | undefined;
1007
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1008
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1009
+ maxFeePerBlobGas?: bigint | undefined;
1010
+ maxFeePerGas?: bigint | undefined;
1011
+ maxPriorityFeePerGas?: bigint | undefined;
1012
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1013
+ }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
1014
+ blobs: import("viem").TransactionSerializableEIP4844["blobs"];
1015
+ } | {
1016
+ blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
1017
+ } | {
1018
+ sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
1019
+ }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
1020
+ accessList?: import("viem").AccessList | undefined;
1021
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
1022
+ blobs?: undefined | undefined;
1023
+ blobVersionedHashes?: undefined | undefined;
1024
+ gasPrice?: undefined | undefined;
1025
+ maxFeePerBlobGas?: undefined | undefined;
1026
+ maxFeePerGas?: bigint | undefined;
1027
+ maxPriorityFeePerGas?: bigint | undefined;
1028
+ sidecars?: undefined | undefined;
1029
+ } | {
1030
+ accessList?: import("viem").AccessList | undefined;
1031
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
1032
+ blobs?: undefined | undefined;
1033
+ blobVersionedHashes?: undefined | undefined;
1034
+ gasPrice?: undefined | undefined;
1035
+ maxFeePerBlobGas?: undefined | undefined;
1036
+ maxFeePerGas?: bigint | undefined;
1037
+ maxPriorityFeePerGas?: bigint | undefined;
1038
+ sidecars?: undefined | undefined;
1039
+ }) & {
1040
+ authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
1041
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_4 extends string ? T_4 : undefined : never : never) | undefined>> extends true ? unknown : import("viem").ExactPartial<import("viem").ExtractFormattedTransactionRequest<import("viem").DeriveChain<Chain, chainOverride>, {
1042
+ type?: ((request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
1043
+ accessList?: undefined | undefined;
1044
+ authorizationList?: undefined | undefined;
1045
+ blobs?: undefined | undefined;
1046
+ blobVersionedHashes?: undefined | undefined;
1047
+ gasPrice?: bigint | undefined;
1048
+ sidecars?: undefined | undefined;
1049
+ } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
1050
+ accessList?: import("viem").AccessList | undefined;
1051
+ authorizationList?: undefined | undefined;
1052
+ blobs?: undefined | undefined;
1053
+ blobVersionedHashes?: undefined | undefined;
1054
+ gasPrice?: undefined | undefined;
1055
+ maxFeePerBlobGas?: undefined | undefined;
1056
+ maxFeePerGas?: bigint | undefined;
1057
+ maxPriorityFeePerGas?: bigint | undefined;
1058
+ sidecars?: undefined | undefined;
1059
+ } & (import("viem").OneOf<{
1060
+ maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
1061
+ } | {
1062
+ maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
1063
+ }, import("viem").FeeValuesEIP1559> & {
1064
+ accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
1065
+ }) ? "eip1559" : never) | (request extends {
1066
+ accessList?: import("viem").AccessList | undefined;
1067
+ authorizationList?: undefined | undefined;
1068
+ blobs?: undefined | undefined;
1069
+ blobVersionedHashes?: undefined | undefined;
1070
+ gasPrice?: bigint | undefined;
1071
+ sidecars?: undefined | undefined;
1072
+ maxFeePerBlobGas?: undefined | undefined;
1073
+ maxFeePerGas?: undefined | undefined;
1074
+ maxPriorityFeePerGas?: undefined | undefined;
1075
+ } & {
1076
+ accessList: import("viem").TransactionSerializableEIP2930["accessList"];
1077
+ } ? "eip2930" : never) | (request extends ({
1078
+ accessList?: import("viem").AccessList | undefined;
1079
+ authorizationList?: undefined | undefined;
1080
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1081
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1082
+ maxFeePerBlobGas?: bigint | undefined;
1083
+ maxFeePerGas?: bigint | undefined;
1084
+ maxPriorityFeePerGas?: bigint | undefined;
1085
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1086
+ } | {
1087
+ accessList?: import("viem").AccessList | undefined;
1088
+ authorizationList?: undefined | undefined;
1089
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1090
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1091
+ maxFeePerBlobGas?: bigint | undefined;
1092
+ maxFeePerGas?: bigint | undefined;
1093
+ maxPriorityFeePerGas?: bigint | undefined;
1094
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1095
+ }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
1096
+ blobs: import("viem").TransactionSerializableEIP4844["blobs"];
1097
+ } | {
1098
+ blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
1099
+ } | {
1100
+ sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
1101
+ }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
1102
+ accessList?: import("viem").AccessList | undefined;
1103
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
1104
+ blobs?: undefined | undefined;
1105
+ blobVersionedHashes?: undefined | undefined;
1106
+ gasPrice?: undefined | undefined;
1107
+ maxFeePerBlobGas?: undefined | undefined;
1108
+ maxFeePerGas?: bigint | undefined;
1109
+ maxPriorityFeePerGas?: bigint | undefined;
1110
+ sidecars?: undefined | undefined;
1111
+ } | {
1112
+ accessList?: import("viem").AccessList | undefined;
1113
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
1114
+ blobs?: undefined | undefined;
1115
+ blobVersionedHashes?: undefined | undefined;
1116
+ gasPrice?: undefined | undefined;
1117
+ maxFeePerBlobGas?: undefined | undefined;
1118
+ maxFeePerGas?: bigint | undefined;
1119
+ maxPriorityFeePerGas?: bigint | undefined;
1120
+ sidecars?: undefined | undefined;
1121
+ }) & {
1122
+ authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
1123
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
1124
+ accessList?: undefined | undefined;
1125
+ authorizationList?: undefined | undefined;
1126
+ blobs?: undefined | undefined;
1127
+ blobVersionedHashes?: undefined | undefined;
1128
+ gasPrice?: bigint | undefined;
1129
+ sidecars?: undefined | undefined;
1130
+ } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
1131
+ accessList?: import("viem").AccessList | undefined;
1132
+ authorizationList?: undefined | undefined;
1133
+ blobs?: undefined | undefined;
1134
+ blobVersionedHashes?: undefined | undefined;
1135
+ gasPrice?: undefined | undefined;
1136
+ maxFeePerBlobGas?: undefined | undefined;
1137
+ maxFeePerGas?: bigint | undefined;
1138
+ maxPriorityFeePerGas?: bigint | undefined;
1139
+ sidecars?: undefined | undefined;
1140
+ } & (import("viem").OneOf<{
1141
+ maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
1142
+ } | {
1143
+ maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
1144
+ }, import("viem").FeeValuesEIP1559> & {
1145
+ accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
1146
+ }) ? "eip1559" : never) | (request extends {
1147
+ accessList?: import("viem").AccessList | undefined;
1148
+ authorizationList?: undefined | undefined;
1149
+ blobs?: undefined | undefined;
1150
+ blobVersionedHashes?: undefined | undefined;
1151
+ gasPrice?: bigint | undefined;
1152
+ sidecars?: undefined | undefined;
1153
+ maxFeePerBlobGas?: undefined | undefined;
1154
+ maxFeePerGas?: undefined | undefined;
1155
+ maxPriorityFeePerGas?: undefined | undefined;
1156
+ } & {
1157
+ accessList: import("viem").TransactionSerializableEIP2930["accessList"];
1158
+ } ? "eip2930" : never) | (request extends ({
1159
+ accessList?: import("viem").AccessList | undefined;
1160
+ authorizationList?: undefined | undefined;
1161
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1162
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1163
+ maxFeePerBlobGas?: bigint | undefined;
1164
+ maxFeePerGas?: bigint | undefined;
1165
+ maxPriorityFeePerGas?: bigint | undefined;
1166
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1167
+ } | {
1168
+ accessList?: import("viem").AccessList | undefined;
1169
+ authorizationList?: undefined | undefined;
1170
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1171
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1172
+ maxFeePerBlobGas?: bigint | undefined;
1173
+ maxFeePerGas?: bigint | undefined;
1174
+ maxPriorityFeePerGas?: bigint | undefined;
1175
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1176
+ }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
1177
+ blobs: import("viem").TransactionSerializableEIP4844["blobs"];
1178
+ } | {
1179
+ blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
1180
+ } | {
1181
+ sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
1182
+ }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
1183
+ accessList?: import("viem").AccessList | undefined;
1184
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
1185
+ blobs?: undefined | undefined;
1186
+ blobVersionedHashes?: undefined | undefined;
1187
+ gasPrice?: undefined | undefined;
1188
+ maxFeePerBlobGas?: undefined | undefined;
1189
+ maxFeePerGas?: bigint | undefined;
1190
+ maxPriorityFeePerGas?: bigint | undefined;
1191
+ sidecars?: undefined | undefined;
1192
+ } | {
1193
+ accessList?: import("viem").AccessList | undefined;
1194
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
1195
+ blobs?: undefined | undefined;
1196
+ blobVersionedHashes?: undefined | undefined;
1197
+ gasPrice?: undefined | undefined;
1198
+ maxFeePerBlobGas?: undefined | undefined;
1199
+ maxFeePerGas?: bigint | undefined;
1200
+ maxPriorityFeePerGas?: bigint | undefined;
1201
+ sidecars?: undefined | undefined;
1202
+ }) & {
1203
+ authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
1204
+ } ? "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 {
1205
+ accessList?: undefined | undefined;
1206
+ authorizationList?: undefined | undefined;
1207
+ blobs?: undefined | undefined;
1208
+ blobVersionedHashes?: undefined | undefined;
1209
+ gasPrice?: bigint | undefined;
1210
+ sidecars?: undefined | undefined;
1211
+ } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
1212
+ accessList?: import("viem").AccessList | undefined;
1213
+ authorizationList?: undefined | undefined;
1214
+ blobs?: undefined | undefined;
1215
+ blobVersionedHashes?: undefined | undefined;
1216
+ gasPrice?: undefined | undefined;
1217
+ maxFeePerBlobGas?: undefined | undefined;
1218
+ maxFeePerGas?: bigint | undefined;
1219
+ maxPriorityFeePerGas?: bigint | undefined;
1220
+ sidecars?: undefined | undefined;
1221
+ } & (import("viem").OneOf<{
1222
+ maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
1223
+ } | {
1224
+ maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
1225
+ }, import("viem").FeeValuesEIP1559> & {
1226
+ accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
1227
+ }) ? "eip1559" : never) | (request extends {
1228
+ accessList?: import("viem").AccessList | undefined;
1229
+ authorizationList?: undefined | undefined;
1230
+ blobs?: undefined | undefined;
1231
+ blobVersionedHashes?: undefined | undefined;
1232
+ gasPrice?: bigint | undefined;
1233
+ sidecars?: undefined | undefined;
1234
+ maxFeePerBlobGas?: undefined | undefined;
1235
+ maxFeePerGas?: undefined | undefined;
1236
+ maxPriorityFeePerGas?: undefined | undefined;
1237
+ } & {
1238
+ accessList: import("viem").TransactionSerializableEIP2930["accessList"];
1239
+ } ? "eip2930" : never) | (request extends ({
1240
+ accessList?: import("viem").AccessList | undefined;
1241
+ authorizationList?: undefined | undefined;
1242
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1243
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1244
+ maxFeePerBlobGas?: bigint | undefined;
1245
+ maxFeePerGas?: bigint | undefined;
1246
+ maxPriorityFeePerGas?: bigint | undefined;
1247
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1248
+ } | {
1249
+ accessList?: import("viem").AccessList | undefined;
1250
+ authorizationList?: undefined | undefined;
1251
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1252
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1253
+ maxFeePerBlobGas?: bigint | undefined;
1254
+ maxFeePerGas?: bigint | undefined;
1255
+ maxPriorityFeePerGas?: bigint | undefined;
1256
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1257
+ }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
1258
+ blobs: import("viem").TransactionSerializableEIP4844["blobs"];
1259
+ } | {
1260
+ blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
1261
+ } | {
1262
+ sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
1263
+ }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
1264
+ accessList?: import("viem").AccessList | undefined;
1265
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
1266
+ blobs?: undefined | undefined;
1267
+ blobVersionedHashes?: undefined | undefined;
1268
+ gasPrice?: undefined | undefined;
1269
+ maxFeePerBlobGas?: undefined | undefined;
1270
+ maxFeePerGas?: bigint | undefined;
1271
+ maxPriorityFeePerGas?: bigint | undefined;
1272
+ sidecars?: undefined | undefined;
1273
+ } | {
1274
+ accessList?: import("viem").AccessList | undefined;
1275
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
1276
+ blobs?: undefined | undefined;
1277
+ blobVersionedHashes?: undefined | undefined;
1278
+ gasPrice?: undefined | undefined;
1279
+ maxFeePerBlobGas?: undefined | undefined;
1280
+ maxFeePerGas?: bigint | undefined;
1281
+ maxPriorityFeePerGas?: bigint | undefined;
1282
+ sidecars?: undefined | undefined;
1283
+ }) & {
1284
+ authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
1285
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
1286
+ accessList?: undefined | undefined;
1287
+ authorizationList?: undefined | undefined;
1288
+ blobs?: undefined | undefined;
1289
+ blobVersionedHashes?: undefined | undefined;
1290
+ gasPrice?: bigint | undefined;
1291
+ sidecars?: undefined | undefined;
1292
+ } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
1293
+ accessList?: import("viem").AccessList | undefined;
1294
+ authorizationList?: undefined | undefined;
1295
+ blobs?: undefined | undefined;
1296
+ blobVersionedHashes?: undefined | undefined;
1297
+ gasPrice?: undefined | undefined;
1298
+ maxFeePerBlobGas?: undefined | undefined;
1299
+ maxFeePerGas?: bigint | undefined;
1300
+ maxPriorityFeePerGas?: bigint | undefined;
1301
+ sidecars?: undefined | undefined;
1302
+ } & (import("viem").OneOf<{
1303
+ maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
1304
+ } | {
1305
+ maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
1306
+ }, import("viem").FeeValuesEIP1559> & {
1307
+ accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
1308
+ }) ? "eip1559" : never) | (request extends {
1309
+ accessList?: import("viem").AccessList | undefined;
1310
+ authorizationList?: undefined | undefined;
1311
+ blobs?: undefined | undefined;
1312
+ blobVersionedHashes?: undefined | undefined;
1313
+ gasPrice?: bigint | undefined;
1314
+ sidecars?: undefined | undefined;
1315
+ maxFeePerBlobGas?: undefined | undefined;
1316
+ maxFeePerGas?: undefined | undefined;
1317
+ maxPriorityFeePerGas?: undefined | undefined;
1318
+ } & {
1319
+ accessList: import("viem").TransactionSerializableEIP2930["accessList"];
1320
+ } ? "eip2930" : never) | (request extends ({
1321
+ accessList?: import("viem").AccessList | undefined;
1322
+ authorizationList?: undefined | undefined;
1323
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1324
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1325
+ maxFeePerBlobGas?: bigint | undefined;
1326
+ maxFeePerGas?: bigint | undefined;
1327
+ maxPriorityFeePerGas?: bigint | undefined;
1328
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1329
+ } | {
1330
+ accessList?: import("viem").AccessList | undefined;
1331
+ authorizationList?: undefined | undefined;
1332
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1333
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1334
+ maxFeePerBlobGas?: bigint | undefined;
1335
+ maxFeePerGas?: bigint | undefined;
1336
+ maxPriorityFeePerGas?: bigint | undefined;
1337
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1338
+ }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
1339
+ blobs: import("viem").TransactionSerializableEIP4844["blobs"];
1340
+ } | {
1341
+ blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
1342
+ } | {
1343
+ sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
1344
+ }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
1345
+ accessList?: import("viem").AccessList | undefined;
1346
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
1347
+ blobs?: undefined | undefined;
1348
+ blobVersionedHashes?: undefined | undefined;
1349
+ gasPrice?: undefined | undefined;
1350
+ maxFeePerBlobGas?: undefined | undefined;
1351
+ maxFeePerGas?: bigint | undefined;
1352
+ maxPriorityFeePerGas?: bigint | undefined;
1353
+ sidecars?: undefined | undefined;
1354
+ } | {
1355
+ accessList?: import("viem").AccessList | undefined;
1356
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
1357
+ blobs?: undefined | undefined;
1358
+ blobVersionedHashes?: undefined | undefined;
1359
+ gasPrice?: undefined | undefined;
1360
+ maxFeePerBlobGas?: undefined | undefined;
1361
+ maxFeePerGas?: bigint | undefined;
1362
+ maxPriorityFeePerGas?: bigint | undefined;
1363
+ sidecars?: undefined | undefined;
1364
+ }) & {
1365
+ authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
1366
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_5 extends string ? T_5 : undefined : never : never) | undefined;
1367
+ }, import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<Chain, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from">, ((request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
1368
+ accessList?: undefined | undefined;
1369
+ authorizationList?: undefined | undefined;
1370
+ blobs?: undefined | undefined;
1371
+ blobVersionedHashes?: undefined | undefined;
1372
+ gasPrice?: bigint | undefined;
1373
+ sidecars?: undefined | undefined;
1374
+ } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
1375
+ accessList?: import("viem").AccessList | undefined;
1376
+ authorizationList?: undefined | undefined;
1377
+ blobs?: undefined | undefined;
1378
+ blobVersionedHashes?: undefined | undefined;
1379
+ gasPrice?: undefined | undefined;
1380
+ maxFeePerBlobGas?: undefined | undefined;
1381
+ maxFeePerGas?: bigint | undefined;
1382
+ maxPriorityFeePerGas?: bigint | undefined;
1383
+ sidecars?: undefined | undefined;
1384
+ } & (import("viem").OneOf<{
1385
+ maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
1386
+ } | {
1387
+ maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
1388
+ }, import("viem").FeeValuesEIP1559> & {
1389
+ accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
1390
+ }) ? "eip1559" : never) | (request extends {
1391
+ accessList?: import("viem").AccessList | undefined;
1392
+ authorizationList?: undefined | undefined;
1393
+ blobs?: undefined | undefined;
1394
+ blobVersionedHashes?: undefined | undefined;
1395
+ gasPrice?: bigint | undefined;
1396
+ sidecars?: undefined | undefined;
1397
+ maxFeePerBlobGas?: undefined | undefined;
1398
+ maxFeePerGas?: undefined | undefined;
1399
+ maxPriorityFeePerGas?: undefined | undefined;
1400
+ } & {
1401
+ accessList: import("viem").TransactionSerializableEIP2930["accessList"];
1402
+ } ? "eip2930" : never) | (request extends ({
1403
+ accessList?: import("viem").AccessList | undefined;
1404
+ authorizationList?: undefined | undefined;
1405
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1406
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1407
+ maxFeePerBlobGas?: bigint | undefined;
1408
+ maxFeePerGas?: bigint | undefined;
1409
+ maxPriorityFeePerGas?: bigint | undefined;
1410
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1411
+ } | {
1412
+ accessList?: import("viem").AccessList | undefined;
1413
+ authorizationList?: undefined | undefined;
1414
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1415
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1416
+ maxFeePerBlobGas?: bigint | undefined;
1417
+ maxFeePerGas?: bigint | undefined;
1418
+ maxPriorityFeePerGas?: bigint | undefined;
1419
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1420
+ }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
1421
+ blobs: import("viem").TransactionSerializableEIP4844["blobs"];
1422
+ } | {
1423
+ blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
1424
+ } | {
1425
+ sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
1426
+ }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
1427
+ accessList?: import("viem").AccessList | undefined;
1428
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
1429
+ blobs?: undefined | undefined;
1430
+ blobVersionedHashes?: undefined | undefined;
1431
+ gasPrice?: undefined | undefined;
1432
+ maxFeePerBlobGas?: undefined | undefined;
1433
+ maxFeePerGas?: bigint | undefined;
1434
+ maxPriorityFeePerGas?: bigint | undefined;
1435
+ sidecars?: undefined | undefined;
1436
+ } | {
1437
+ accessList?: import("viem").AccessList | undefined;
1438
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
1439
+ blobs?: undefined | undefined;
1440
+ blobVersionedHashes?: undefined | undefined;
1441
+ gasPrice?: undefined | undefined;
1442
+ maxFeePerBlobGas?: undefined | undefined;
1443
+ maxFeePerGas?: bigint | undefined;
1444
+ maxPriorityFeePerGas?: bigint | undefined;
1445
+ sidecars?: undefined | undefined;
1446
+ }) & {
1447
+ authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
1448
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
1449
+ accessList?: undefined | undefined;
1450
+ authorizationList?: undefined | undefined;
1451
+ blobs?: undefined | undefined;
1452
+ blobVersionedHashes?: undefined | undefined;
1453
+ gasPrice?: bigint | undefined;
1454
+ sidecars?: undefined | undefined;
1455
+ } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
1456
+ accessList?: import("viem").AccessList | undefined;
1457
+ authorizationList?: undefined | undefined;
1458
+ blobs?: undefined | undefined;
1459
+ blobVersionedHashes?: undefined | undefined;
1460
+ gasPrice?: undefined | undefined;
1461
+ maxFeePerBlobGas?: undefined | undefined;
1462
+ maxFeePerGas?: bigint | undefined;
1463
+ maxPriorityFeePerGas?: bigint | undefined;
1464
+ sidecars?: undefined | undefined;
1465
+ } & (import("viem").OneOf<{
1466
+ maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
1467
+ } | {
1468
+ maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
1469
+ }, import("viem").FeeValuesEIP1559> & {
1470
+ accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
1471
+ }) ? "eip1559" : never) | (request extends {
1472
+ accessList?: import("viem").AccessList | undefined;
1473
+ authorizationList?: undefined | undefined;
1474
+ blobs?: undefined | undefined;
1475
+ blobVersionedHashes?: undefined | undefined;
1476
+ gasPrice?: bigint | undefined;
1477
+ sidecars?: undefined | undefined;
1478
+ maxFeePerBlobGas?: undefined | undefined;
1479
+ maxFeePerGas?: undefined | undefined;
1480
+ maxPriorityFeePerGas?: undefined | undefined;
1481
+ } & {
1482
+ accessList: import("viem").TransactionSerializableEIP2930["accessList"];
1483
+ } ? "eip2930" : never) | (request extends ({
1484
+ accessList?: import("viem").AccessList | undefined;
1485
+ authorizationList?: undefined | undefined;
1486
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1487
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1488
+ maxFeePerBlobGas?: bigint | undefined;
1489
+ maxFeePerGas?: bigint | undefined;
1490
+ maxPriorityFeePerGas?: bigint | undefined;
1491
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1492
+ } | {
1493
+ accessList?: import("viem").AccessList | undefined;
1494
+ authorizationList?: undefined | undefined;
1495
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1496
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1497
+ maxFeePerBlobGas?: bigint | undefined;
1498
+ maxFeePerGas?: bigint | undefined;
1499
+ maxPriorityFeePerGas?: bigint | undefined;
1500
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1501
+ }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
1502
+ blobs: import("viem").TransactionSerializableEIP4844["blobs"];
1503
+ } | {
1504
+ blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
1505
+ } | {
1506
+ sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
1507
+ }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
1508
+ accessList?: import("viem").AccessList | undefined;
1509
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
1510
+ blobs?: undefined | undefined;
1511
+ blobVersionedHashes?: undefined | undefined;
1512
+ gasPrice?: undefined | undefined;
1513
+ maxFeePerBlobGas?: undefined | undefined;
1514
+ maxFeePerGas?: bigint | undefined;
1515
+ maxPriorityFeePerGas?: bigint | undefined;
1516
+ sidecars?: undefined | undefined;
1517
+ } | {
1518
+ accessList?: import("viem").AccessList | undefined;
1519
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
1520
+ blobs?: undefined | undefined;
1521
+ blobVersionedHashes?: undefined | undefined;
1522
+ gasPrice?: undefined | undefined;
1523
+ maxFeePerBlobGas?: undefined | undefined;
1524
+ maxFeePerGas?: bigint | undefined;
1525
+ maxPriorityFeePerGas?: bigint | undefined;
1526
+ sidecars?: undefined | undefined;
1527
+ }) & {
1528
+ authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
1529
+ } ? "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 {
1530
+ accessList?: undefined | undefined;
1531
+ authorizationList?: undefined | undefined;
1532
+ blobs?: undefined | undefined;
1533
+ blobVersionedHashes?: undefined | undefined;
1534
+ gasPrice?: bigint | undefined;
1535
+ sidecars?: undefined | undefined;
1536
+ } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
1537
+ accessList?: import("viem").AccessList | undefined;
1538
+ authorizationList?: undefined | undefined;
1539
+ blobs?: undefined | undefined;
1540
+ blobVersionedHashes?: undefined | undefined;
1541
+ gasPrice?: undefined | undefined;
1542
+ maxFeePerBlobGas?: undefined | undefined;
1543
+ maxFeePerGas?: bigint | undefined;
1544
+ maxPriorityFeePerGas?: bigint | undefined;
1545
+ sidecars?: undefined | undefined;
1546
+ } & (import("viem").OneOf<{
1547
+ maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
1548
+ } | {
1549
+ maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
1550
+ }, import("viem").FeeValuesEIP1559> & {
1551
+ accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
1552
+ }) ? "eip1559" : never) | (request extends {
1553
+ accessList?: import("viem").AccessList | undefined;
1554
+ authorizationList?: undefined | undefined;
1555
+ blobs?: undefined | undefined;
1556
+ blobVersionedHashes?: undefined | undefined;
1557
+ gasPrice?: bigint | undefined;
1558
+ sidecars?: undefined | undefined;
1559
+ maxFeePerBlobGas?: undefined | undefined;
1560
+ maxFeePerGas?: undefined | undefined;
1561
+ maxPriorityFeePerGas?: undefined | undefined;
1562
+ } & {
1563
+ accessList: import("viem").TransactionSerializableEIP2930["accessList"];
1564
+ } ? "eip2930" : never) | (request extends ({
1565
+ accessList?: import("viem").AccessList | undefined;
1566
+ authorizationList?: undefined | undefined;
1567
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1568
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1569
+ maxFeePerBlobGas?: bigint | undefined;
1570
+ maxFeePerGas?: bigint | undefined;
1571
+ maxPriorityFeePerGas?: bigint | undefined;
1572
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1573
+ } | {
1574
+ accessList?: import("viem").AccessList | undefined;
1575
+ authorizationList?: undefined | undefined;
1576
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1577
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1578
+ maxFeePerBlobGas?: bigint | undefined;
1579
+ maxFeePerGas?: bigint | undefined;
1580
+ maxPriorityFeePerGas?: bigint | undefined;
1581
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1582
+ }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
1583
+ blobs: import("viem").TransactionSerializableEIP4844["blobs"];
1584
+ } | {
1585
+ blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
1586
+ } | {
1587
+ sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
1588
+ }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
1589
+ accessList?: import("viem").AccessList | undefined;
1590
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
1591
+ blobs?: undefined | undefined;
1592
+ blobVersionedHashes?: undefined | undefined;
1593
+ gasPrice?: undefined | undefined;
1594
+ maxFeePerBlobGas?: undefined | undefined;
1595
+ maxFeePerGas?: bigint | undefined;
1596
+ maxPriorityFeePerGas?: bigint | undefined;
1597
+ sidecars?: undefined | undefined;
1598
+ } | {
1599
+ accessList?: import("viem").AccessList | undefined;
1600
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
1601
+ blobs?: undefined | undefined;
1602
+ blobVersionedHashes?: undefined | undefined;
1603
+ gasPrice?: undefined | undefined;
1604
+ maxFeePerBlobGas?: undefined | undefined;
1605
+ maxFeePerGas?: bigint | undefined;
1606
+ maxPriorityFeePerGas?: bigint | undefined;
1607
+ sidecars?: undefined | undefined;
1608
+ }) & {
1609
+ authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
1610
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
1611
+ accessList?: undefined | undefined;
1612
+ authorizationList?: undefined | undefined;
1613
+ blobs?: undefined | undefined;
1614
+ blobVersionedHashes?: undefined | undefined;
1615
+ gasPrice?: bigint | undefined;
1616
+ sidecars?: undefined | undefined;
1617
+ } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
1618
+ accessList?: import("viem").AccessList | undefined;
1619
+ authorizationList?: undefined | undefined;
1620
+ blobs?: undefined | undefined;
1621
+ blobVersionedHashes?: undefined | undefined;
1622
+ gasPrice?: undefined | undefined;
1623
+ maxFeePerBlobGas?: undefined | undefined;
1624
+ maxFeePerGas?: bigint | undefined;
1625
+ maxPriorityFeePerGas?: bigint | undefined;
1626
+ sidecars?: undefined | undefined;
1627
+ } & (import("viem").OneOf<{
1628
+ maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
1629
+ } | {
1630
+ maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
1631
+ }, import("viem").FeeValuesEIP1559> & {
1632
+ accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
1633
+ }) ? "eip1559" : never) | (request extends {
1634
+ accessList?: import("viem").AccessList | undefined;
1635
+ authorizationList?: undefined | undefined;
1636
+ blobs?: undefined | undefined;
1637
+ blobVersionedHashes?: undefined | undefined;
1638
+ gasPrice?: bigint | undefined;
1639
+ sidecars?: undefined | undefined;
1640
+ maxFeePerBlobGas?: undefined | undefined;
1641
+ maxFeePerGas?: undefined | undefined;
1642
+ maxPriorityFeePerGas?: undefined | undefined;
1643
+ } & {
1644
+ accessList: import("viem").TransactionSerializableEIP2930["accessList"];
1645
+ } ? "eip2930" : never) | (request extends ({
1646
+ accessList?: import("viem").AccessList | undefined;
1647
+ authorizationList?: undefined | undefined;
1648
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1649
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1650
+ maxFeePerBlobGas?: bigint | undefined;
1651
+ maxFeePerGas?: bigint | undefined;
1652
+ maxPriorityFeePerGas?: bigint | undefined;
1653
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1654
+ } | {
1655
+ accessList?: import("viem").AccessList | undefined;
1656
+ authorizationList?: undefined | undefined;
1657
+ blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1658
+ blobVersionedHashes?: readonly `0x${string}`[] | undefined;
1659
+ maxFeePerBlobGas?: bigint | undefined;
1660
+ maxFeePerGas?: bigint | undefined;
1661
+ maxPriorityFeePerGas?: bigint | undefined;
1662
+ sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1663
+ }) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
1664
+ blobs: import("viem").TransactionSerializableEIP4844["blobs"];
1665
+ } | {
1666
+ blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
1667
+ } | {
1668
+ sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
1669
+ }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
1670
+ accessList?: import("viem").AccessList | undefined;
1671
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
1672
+ blobs?: undefined | undefined;
1673
+ blobVersionedHashes?: undefined | undefined;
1674
+ gasPrice?: undefined | undefined;
1675
+ maxFeePerBlobGas?: undefined | undefined;
1676
+ maxFeePerGas?: bigint | undefined;
1677
+ maxPriorityFeePerGas?: bigint | undefined;
1678
+ sidecars?: undefined | undefined;
1679
+ } | {
1680
+ accessList?: import("viem").AccessList | undefined;
1681
+ authorizationList?: import("viem").SignedAuthorizationList | undefined;
1682
+ blobs?: undefined | undefined;
1683
+ blobVersionedHashes?: undefined | undefined;
1684
+ gasPrice?: undefined | undefined;
1685
+ maxFeePerBlobGas?: undefined | undefined;
1686
+ maxFeePerGas?: bigint | undefined;
1687
+ maxPriorityFeePerGas?: bigint | undefined;
1688
+ sidecars?: undefined | undefined;
1689
+ }) & {
1690
+ authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
1691
+ } ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_6 extends string ? T_6 : undefined : never : never) | undefined>>> & {
1692
+ chainId?: number | undefined;
1693
+ }, (request["parameters"] extends readonly import("viem").PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "type" | "gas" | "chainId" | "nonce" | "blobVersionedHashes" | "fees") extends infer T_7 ? T_7 extends (request["parameters"] extends readonly import("viem").PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "type" | "gas" | "chainId" | "nonce" | "blobVersionedHashes" | "fees") ? T_7 extends "fees" ? "gasPrice" | "maxFeePerGas" | "maxPriorityFeePerGas" : T_7 : never : never> & (unknown extends request["kzg"] ? {} : Pick<request, "kzg">) & {
1694
+ _capabilities?: {
1695
+ [x: string]: any;
1696
+ } | undefined;
1697
+ } extends infer T ? { [K in keyof T]: T[K]; } : never>;
1698
+ readContract: <const abi extends import("viem").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>>;
1699
+ sendRawTransaction: (args: import("viem").SendRawTransactionParameters) => Promise<import("viem").SendRawTransactionReturnType>;
1700
+ sendRawTransactionSync: (args: import("viem").SendRawTransactionSyncParameters) => Promise<import("viem").TransactionReceipt>;
1701
+ simulate: <const calls extends readonly unknown[]>(args: import("viem").SimulateBlocksParameters<calls>) => Promise<import("viem").SimulateBlocksReturnType<calls>>;
1702
+ simulateBlocks: <const calls extends readonly unknown[]>(args: import("viem").SimulateBlocksParameters<calls>) => Promise<import("viem").SimulateBlocksReturnType<calls>>;
1703
+ simulateCalls: <const calls extends readonly unknown[]>(args: import("viem").SimulateCallsParameters<calls>) => Promise<import("viem").SimulateCallsReturnType<calls>>;
1704
+ simulateContract: <const abi extends import("viem").Abi | readonly unknown[], functionName extends import("viem").ContractFunctionName<abi, "nonpayable" | "payable">, const args_1 extends import("viem").ContractFunctionArgs<abi, "nonpayable" | "payable", functionName>, chainOverride extends Chain | undefined, accountOverride extends Account | import("viem").Address | undefined = undefined>(args: import("viem").SimulateContractParameters<abi, functionName, args_1, Chain, chainOverride, accountOverride>) => Promise<import("viem").SimulateContractReturnType<abi, functionName, args_1, Chain, Account | undefined, chainOverride, accountOverride>>;
1705
+ verifyHash: (args: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>;
1706
+ verifyMessage: (args: import("viem").VerifyMessageActionParameters) => Promise<import("viem").VerifyMessageActionReturnType>;
1707
+ verifySiweMessage: (args: {
1708
+ blockNumber?: bigint | undefined | undefined;
1709
+ blockTag?: import("viem").BlockTag | undefined;
1710
+ address?: `0x${string}` | undefined;
1711
+ nonce?: string | undefined | undefined;
1712
+ domain?: string | undefined | undefined;
1713
+ scheme?: string | undefined | undefined;
1714
+ time?: Date | undefined;
1715
+ message: string;
1716
+ signature: Hex;
1717
+ }) => Promise<boolean>;
1718
+ verifyTypedData: (args: import("viem").VerifyTypedDataActionParameters) => Promise<import("viem").VerifyTypedDataActionReturnType>;
1719
+ uninstallFilter: (args: import("viem").UninstallFilterParameters) => Promise<import("viem").UninstallFilterReturnType>;
1720
+ waitForTransactionReceipt: (args: import("viem").WaitForTransactionReceiptParameters<Chain>) => Promise<import("viem").TransactionReceipt>;
1721
+ watchBlockNumber: (args: import("viem").WatchBlockNumberParameters) => import("viem").WatchBlockNumberReturnType;
1722
+ watchBlocks: <includeTransactions extends boolean = false, blockTag extends import("viem").BlockTag = "latest">(args: import("viem").WatchBlocksParameters<import("viem").HttpTransport<undefined, false>, Chain, includeTransactions, blockTag>) => import("viem").WatchBlocksReturnType;
1723
+ watchContractEvent: <const abi extends import("viem").Abi | readonly unknown[], eventName extends import("viem").ContractEventName<abi>, strict extends boolean | undefined = undefined>(args: import("viem").WatchContractEventParameters<abi, eventName, strict, import("viem").HttpTransport<undefined, false>>) => import("viem").WatchContractEventReturnType;
1724
+ watchEvent: <const abiEvent extends import("viem").AbiEvent | undefined = undefined, const abiEvents extends readonly import("viem").AbiEvent[] | readonly unknown[] | undefined = abiEvent extends import("viem").AbiEvent ? [abiEvent] : undefined, strict extends boolean | undefined = undefined>(args: import("viem").WatchEventParameters<abiEvent, abiEvents, strict, import("viem").HttpTransport<undefined, false>>) => import("viem").WatchEventReturnType;
1725
+ watchPendingTransactions: (args: import("viem").WatchPendingTransactionsParameters<import("viem").HttpTransport<undefined, false>>) => import("viem").WatchPendingTransactionsReturnType;
1726
+ extend: <const client extends {
1727
+ [x: string]: unknown;
1728
+ account?: undefined;
1729
+ batch?: undefined;
1730
+ cacheTime?: undefined;
1731
+ ccipRead?: undefined;
1732
+ chain?: undefined;
1733
+ dataSuffix?: undefined;
1734
+ experimental_blockTag?: undefined;
1735
+ key?: undefined;
1736
+ name?: undefined;
1737
+ pollingInterval?: undefined;
1738
+ request?: undefined;
1739
+ transport?: undefined;
1740
+ type?: undefined;
1741
+ uid?: undefined;
1742
+ } & import("viem").ExactPartial<Pick<import("viem").PublicActions<import("viem").HttpTransport<undefined, false>, Chain, undefined>, "prepareTransactionRequest" | "call" | "createContractEventFilter" | "createEventFilter" | "estimateContractGas" | "estimateGas" | "getBlock" | "getBlockNumber" | "getChainId" | "getContractEvents" | "getEnsText" | "getFilterChanges" | "getGasPrice" | "getLogs" | "getTransaction" | "getTransactionCount" | "getTransactionReceipt" | "readContract" | "sendRawTransaction" | "simulateContract" | "uninstallFilter" | "watchBlockNumber" | "watchContractEvent"> & Pick<import("viem").WalletActions<Chain, undefined>, "sendTransaction" | "writeContract">>>(fn: (client: import("viem").Client<import("viem").HttpTransport<undefined, false>, Chain, undefined, import("viem").PublicRpcSchema, import("viem").PublicActions<import("viem").HttpTransport<undefined, false>, Chain>>) => client) => import("viem").Client<import("viem").HttpTransport<undefined, false>, Chain, undefined, import("viem").PublicRpcSchema, { [K in keyof client]: client[K]; } & import("viem").PublicActions<import("viem").HttpTransport<undefined, false>, Chain>>;
1743
+ };
1744
+ /** Signs an EIP-7702 authorization with this client's local account. */
1745
+ signAuthorization(options: {
1746
+ contractAddress: Hex;
1747
+ chainId?: number;
1748
+ nonce?: number;
1749
+ executor?: 'self';
1750
+ }): Promise<import("viem").SignAuthorizationReturnType>;
1751
+ private assertRpcChainMatches;
22
1752
  }
23
1753
  //# sourceMappingURL=private-key-rpc-client.d.ts.map