@marigoldlabs/web3-tester 0.1.2 → 0.4.2

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