@marigoldlabs/web3-tester 0.4.1 → 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 (59) hide show
  1. package/README.md +317 -11
  2. package/dist/anvil.d.ts.map +1 -1
  3. package/dist/anvil.js.map +1 -1
  4. package/dist/benchmark.d.ts +55 -0
  5. package/dist/benchmark.d.ts.map +1 -0
  6. package/dist/benchmark.js +168 -0
  7. package/dist/benchmark.js.map +1 -0
  8. package/dist/fixtures.js +2 -2
  9. package/dist/fixtures.js.map +1 -1
  10. package/dist/index.d.ts +13 -4
  11. package/dist/index.d.ts.map +1 -1
  12. package/dist/index.js +5 -1
  13. package/dist/index.js.map +1 -1
  14. package/dist/injected-provider.d.ts.map +1 -1
  15. package/dist/injected-provider.js +748 -25
  16. package/dist/injected-provider.js.map +1 -1
  17. package/dist/mock-wallet-controller.d.ts +150 -2
  18. package/dist/mock-wallet-controller.d.ts.map +1 -1
  19. package/dist/mock-wallet-controller.js +613 -24
  20. package/dist/mock-wallet-controller.js.map +1 -1
  21. package/dist/private-key-rpc-client.d.ts +144 -132
  22. package/dist/private-key-rpc-client.d.ts.map +1 -1
  23. package/dist/private-key-rpc-client.js +142 -20
  24. package/dist/private-key-rpc-client.js.map +1 -1
  25. package/dist/real-wallet-cache.d.ts +38 -0
  26. package/dist/real-wallet-cache.d.ts.map +1 -1
  27. package/dist/real-wallet-cache.js +143 -57
  28. package/dist/real-wallet-cache.js.map +1 -1
  29. package/dist/real-wallet-extension-fixtures.d.ts +35 -0
  30. package/dist/real-wallet-extension-fixtures.d.ts.map +1 -0
  31. package/dist/real-wallet-extension-fixtures.js +96 -0
  32. package/dist/real-wallet-extension-fixtures.js.map +1 -0
  33. package/dist/real-wallet-extension.d.ts +86 -0
  34. package/dist/real-wallet-extension.d.ts.map +1 -0
  35. package/dist/real-wallet-extension.js +245 -0
  36. package/dist/real-wallet-extension.js.map +1 -0
  37. package/dist/real-wallet-fixtures.d.ts.map +1 -1
  38. package/dist/real-wallet-fixtures.js +46 -31
  39. package/dist/real-wallet-fixtures.js.map +1 -1
  40. package/dist/real-wallet.d.ts +5 -14
  41. package/dist/real-wallet.d.ts.map +1 -1
  42. package/dist/real-wallet.js +668 -435
  43. package/dist/real-wallet.js.map +1 -1
  44. package/dist/safe.d.ts +311 -0
  45. package/dist/safe.d.ts.map +1 -0
  46. package/dist/safe.js +743 -0
  47. package/dist/safe.js.map +1 -0
  48. package/dist/types.d.ts +35 -1
  49. package/dist/types.d.ts.map +1 -1
  50. package/dist/wallet-personas.d.ts +99 -0
  51. package/dist/wallet-personas.d.ts.map +1 -0
  52. package/dist/wallet-personas.js +666 -0
  53. package/dist/wallet-personas.js.map +1 -0
  54. package/dist/walletconnect.d.ts +176 -9
  55. package/dist/walletconnect.d.ts.map +1 -1
  56. package/dist/walletconnect.js +514 -74
  57. package/dist/walletconnect.js.map +1 -1
  58. package/examples/playwright.config.ts +8 -0
  59. package/package.json +29 -3
@@ -1,4 +1,4 @@
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;
@@ -7,14 +7,24 @@ export type PrivateKeyRpcClientOptions = {
7
7
  /** Opt in to signing on production (non-testnet) chains. */
8
8
  allowMainnet?: boolean;
9
9
  };
10
+ type KnownTransactionType = 'legacy' | 'eip2930' | 'eip1559' | 'eip4844' | 'eip7702';
10
11
  export declare class PrivateKeyRpcClient implements RpcClient {
11
12
  readonly account: Account;
12
13
  readonly chain: Chain;
13
14
  readonly sentTransactions: Hex[];
14
15
  readonly sentTransactionRequests: Array<{
16
+ accessList?: AccessList;
17
+ from?: Address;
18
+ gas?: string;
19
+ gasPrice?: string;
15
20
  hash: Hex;
16
- to?: Hex;
21
+ maxFeePerBlobGas?: string;
22
+ maxFeePerGas?: string;
23
+ maxPriorityFeePerGas?: string;
24
+ nonce?: number;
25
+ to?: Address | null;
17
26
  data?: Hex;
27
+ type?: KnownTransactionType;
18
28
  value?: string;
19
29
  }>;
20
30
  private readonly publicClient;
@@ -47,7 +57,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
47
57
  uid: string;
48
58
  call: (parameters: import("viem").CallParameters<Chain>) => Promise<import("viem").CallReturnType>;
49
59
  createAccessList: (parameters: import("viem").CreateAccessListParameters<Chain>) => Promise<{
50
- accessList: import("viem").AccessList;
60
+ accessList: AccessList;
51
61
  gasUsed: bigint;
52
62
  }>;
53
63
  createBlockFilter: () => Promise<import("viem").CreateBlockFilterReturnType>;
@@ -56,7 +66,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
56
66
  createPendingTransactionFilter: () => Promise<import("viem").CreatePendingTransactionFilterReturnType>;
57
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>;
58
68
  estimateGas: (args: import("viem").EstimateGasParameters<Chain>) => Promise<import("viem").EstimateGasReturnType>;
59
- fillTransaction: <chainOverride extends Chain | undefined = undefined, accountOverride extends Account | import("viem").Address | undefined = undefined>(args: import("viem").FillTransactionParameters<Chain, Account | undefined, chainOverride, accountOverride>) => Promise<import("viem").FillTransactionReturnType<Chain, chainOverride>>;
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>>;
60
70
  getBalance: (args: import("viem").GetBalanceParameters) => Promise<import("viem").GetBalanceReturnType>;
61
71
  getBlobBaseFee: () => Promise<import("viem").GetBlobBaseFeeReturnType>;
62
72
  getBlock: <includeTransactions extends boolean = false, blockTag extends import("viem").BlockTag = "latest">(args?: import("viem").GetBlockParameters<includeTransactions, blockTag> | undefined) => Promise<{
@@ -72,7 +82,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
72
82
  extraData: Hex;
73
83
  gasLimit: bigint;
74
84
  gasUsed: bigint;
75
- miner: import("viem").Address;
85
+ miner: Address;
76
86
  mixHash: import("viem").Hash;
77
87
  parentBeaconBlockRoot?: `0x${string}` | undefined;
78
88
  parentHash: import("viem").Hash;
@@ -88,8 +98,8 @@ export declare class PrivateKeyRpcClient implements RpcClient {
88
98
  withdrawalsRoot?: `0x${string}` | undefined;
89
99
  transactions: includeTransactions extends true ? ({
90
100
  value: bigint;
91
- from: import("viem").Address;
92
- to: import("viem").Address | null;
101
+ from: Address;
102
+ to: Address | null;
93
103
  type: "legacy";
94
104
  blockTimestamp?: bigint | undefined;
95
105
  hash: import("viem").Hash;
@@ -114,8 +124,8 @@ export declare class PrivateKeyRpcClient implements RpcClient {
114
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;
115
125
  } | {
116
126
  value: bigint;
117
- from: import("viem").Address;
118
- to: import("viem").Address | null;
127
+ from: Address;
128
+ to: Address | null;
119
129
  type: "eip2930";
120
130
  blockTimestamp?: bigint | undefined;
121
131
  hash: import("viem").Hash;
@@ -131,7 +141,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
131
141
  maxFeePerBlobGas?: undefined | undefined;
132
142
  maxFeePerGas?: undefined | undefined;
133
143
  maxPriorityFeePerGas?: undefined | undefined;
134
- accessList: import("viem").AccessList;
144
+ accessList: AccessList;
135
145
  authorizationList?: undefined | undefined;
136
146
  input: Hex;
137
147
  typeHex: Hex | null;
@@ -140,8 +150,8 @@ export declare class PrivateKeyRpcClient implements RpcClient {
140
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;
141
151
  } | {
142
152
  value: bigint;
143
- from: import("viem").Address;
144
- to: import("viem").Address | null;
153
+ from: Address;
154
+ to: Address | null;
145
155
  type: "eip1559";
146
156
  blockTimestamp?: bigint | undefined;
147
157
  hash: import("viem").Hash;
@@ -157,7 +167,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
157
167
  maxFeePerBlobGas?: undefined | undefined;
158
168
  maxFeePerGas: bigint;
159
169
  maxPriorityFeePerGas: bigint;
160
- accessList: import("viem").AccessList;
170
+ accessList: AccessList;
161
171
  authorizationList?: undefined | undefined;
162
172
  input: Hex;
163
173
  typeHex: Hex | null;
@@ -166,8 +176,8 @@ export declare class PrivateKeyRpcClient implements RpcClient {
166
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;
167
177
  } | {
168
178
  value: bigint;
169
- from: import("viem").Address;
170
- to: import("viem").Address | null;
179
+ from: Address;
180
+ to: Address | null;
171
181
  type: "eip4844";
172
182
  blockTimestamp?: bigint | undefined;
173
183
  hash: import("viem").Hash;
@@ -183,7 +193,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
183
193
  maxFeePerBlobGas: bigint;
184
194
  maxFeePerGas: bigint;
185
195
  maxPriorityFeePerGas: bigint;
186
- accessList: import("viem").AccessList;
196
+ accessList: AccessList;
187
197
  authorizationList?: undefined | undefined;
188
198
  input: Hex;
189
199
  typeHex: Hex | null;
@@ -192,8 +202,8 @@ export declare class PrivateKeyRpcClient implements RpcClient {
192
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;
193
203
  } | {
194
204
  value: bigint;
195
- from: import("viem").Address;
196
- to: import("viem").Address | null;
205
+ from: Address;
206
+ to: Address | null;
197
207
  type: "eip7702";
198
208
  blockTimestamp?: bigint | undefined;
199
209
  hash: import("viem").Hash;
@@ -209,7 +219,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
209
219
  maxFeePerBlobGas?: undefined | undefined;
210
220
  maxFeePerGas: bigint;
211
221
  maxPriorityFeePerGas: bigint;
212
- accessList: import("viem").AccessList;
222
+ accessList: AccessList;
213
223
  authorizationList: import("viem").SignedAuthorizationList;
214
224
  input: Hex;
215
225
  typeHex: Hex | null;
@@ -245,8 +255,8 @@ export declare class PrivateKeyRpcClient implements RpcClient {
245
255
  getStorageAt: (args: import("viem").GetStorageAtParameters) => Promise<import("viem").GetStorageAtReturnType>;
246
256
  getTransaction: <blockTag extends import("viem").BlockTag = "latest">(args: import("viem").GetTransactionParameters<blockTag>) => Promise<{
247
257
  value: bigint;
248
- from: import("viem").Address;
249
- to: import("viem").Address | null;
258
+ from: Address;
259
+ to: Address | null;
250
260
  type: "legacy";
251
261
  blockTimestamp?: bigint | undefined;
252
262
  hash: import("viem").Hash;
@@ -271,8 +281,8 @@ export declare class PrivateKeyRpcClient implements RpcClient {
271
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;
272
282
  } | {
273
283
  value: bigint;
274
- from: import("viem").Address;
275
- to: import("viem").Address | null;
284
+ from: Address;
285
+ to: Address | null;
276
286
  type: "eip2930";
277
287
  blockTimestamp?: bigint | undefined;
278
288
  hash: import("viem").Hash;
@@ -288,7 +298,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
288
298
  maxFeePerBlobGas?: undefined | undefined;
289
299
  maxFeePerGas?: undefined | undefined;
290
300
  maxPriorityFeePerGas?: undefined | undefined;
291
- accessList: import("viem").AccessList;
301
+ accessList: AccessList;
292
302
  authorizationList?: undefined | undefined;
293
303
  input: Hex;
294
304
  typeHex: Hex | null;
@@ -297,8 +307,8 @@ export declare class PrivateKeyRpcClient implements RpcClient {
297
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;
298
308
  } | {
299
309
  value: bigint;
300
- from: import("viem").Address;
301
- to: import("viem").Address | null;
310
+ from: Address;
311
+ to: Address | null;
302
312
  type: "eip1559";
303
313
  blockTimestamp?: bigint | undefined;
304
314
  hash: import("viem").Hash;
@@ -314,7 +324,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
314
324
  maxFeePerBlobGas?: undefined | undefined;
315
325
  maxFeePerGas: bigint;
316
326
  maxPriorityFeePerGas: bigint;
317
- accessList: import("viem").AccessList;
327
+ accessList: AccessList;
318
328
  authorizationList?: undefined | undefined;
319
329
  input: Hex;
320
330
  typeHex: Hex | null;
@@ -323,8 +333,8 @@ export declare class PrivateKeyRpcClient implements RpcClient {
323
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;
324
334
  } | {
325
335
  value: bigint;
326
- from: import("viem").Address;
327
- to: import("viem").Address | null;
336
+ from: Address;
337
+ to: Address | null;
328
338
  type: "eip4844";
329
339
  blockTimestamp?: bigint | undefined;
330
340
  hash: import("viem").Hash;
@@ -340,7 +350,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
340
350
  maxFeePerBlobGas: bigint;
341
351
  maxFeePerGas: bigint;
342
352
  maxPriorityFeePerGas: bigint;
343
- accessList: import("viem").AccessList;
353
+ accessList: AccessList;
344
354
  authorizationList?: undefined | undefined;
345
355
  input: Hex;
346
356
  typeHex: Hex | null;
@@ -349,8 +359,8 @@ export declare class PrivateKeyRpcClient implements RpcClient {
349
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;
350
360
  } | {
351
361
  value: bigint;
352
- from: import("viem").Address;
353
- to: import("viem").Address | null;
362
+ from: Address;
363
+ to: Address | null;
354
364
  type: "eip7702";
355
365
  blockTimestamp?: bigint | undefined;
356
366
  hash: import("viem").Hash;
@@ -366,7 +376,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
366
376
  maxFeePerBlobGas?: undefined | undefined;
367
377
  maxFeePerGas: bigint;
368
378
  maxPriorityFeePerGas: bigint;
369
- accessList: import("viem").AccessList;
379
+ accessList: AccessList;
370
380
  authorizationList: import("viem").SignedAuthorizationList;
371
381
  input: Hex;
372
382
  typeHex: Hex | null;
@@ -378,13 +388,13 @@ export declare class PrivateKeyRpcClient implements RpcClient {
378
388
  getTransactionCount: (args: import("viem").GetTransactionCountParameters) => Promise<import("viem").GetTransactionCountReturnType>;
379
389
  getTransactionReceipt: (args: import("viem").GetTransactionReceiptParameters) => Promise<import("viem").TransactionReceipt>;
380
390
  multicall: <const contracts extends readonly unknown[], allowFailure extends boolean = true>(args: import("viem").MulticallParameters<contracts, allowFailure>) => Promise<import("viem").MulticallReturnType<contracts, allowFailure>>;
381
- prepareTransactionRequest: <const request extends import("viem").PrepareTransactionRequestRequest<Chain, chainOverride>, chainOverride extends Chain | undefined = undefined, accountOverride extends Account | import("viem").Address | undefined = undefined>(args: import("viem").PrepareTransactionRequestParameters<Chain, Account | undefined, chainOverride, accountOverride, request>) => Promise<import("viem").UnionRequiredBy<Extract<import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<Chain, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> & (import("viem").DeriveChain<Chain, chainOverride> extends infer T_1 ? T_1 extends import("viem").DeriveChain<Chain, chainOverride> ? T_1 extends Chain ? {
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 ? {
382
392
  chain: T_1;
383
393
  } : {
384
394
  chain?: undefined;
385
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 ? {
386
396
  account: T_2;
387
- from: import("viem").Address;
397
+ from: Address;
388
398
  } : {
389
399
  account?: undefined;
390
400
  from?: undefined;
@@ -397,7 +407,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
397
407
  gasPrice?: bigint | undefined;
398
408
  sidecars?: undefined | undefined;
399
409
  } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
400
- accessList?: import("viem").AccessList | undefined;
410
+ accessList?: AccessList | undefined;
401
411
  authorizationList?: undefined | undefined;
402
412
  blobs?: undefined | undefined;
403
413
  blobVersionedHashes?: undefined | undefined;
@@ -413,7 +423,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
413
423
  }, import("viem").FeeValuesEIP1559> & {
414
424
  accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
415
425
  }) ? "eip1559" : never) | (request extends {
416
- accessList?: import("viem").AccessList | undefined;
426
+ accessList?: AccessList | undefined;
417
427
  authorizationList?: undefined | undefined;
418
428
  blobs?: undefined | undefined;
419
429
  blobVersionedHashes?: undefined | undefined;
@@ -425,7 +435,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
425
435
  } & {
426
436
  accessList: import("viem").TransactionSerializableEIP2930["accessList"];
427
437
  } ? "eip2930" : never) | (request extends ({
428
- accessList?: import("viem").AccessList | undefined;
438
+ accessList?: AccessList | undefined;
429
439
  authorizationList?: undefined | undefined;
430
440
  blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
431
441
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
@@ -434,7 +444,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
434
444
  maxPriorityFeePerGas?: bigint | undefined;
435
445
  sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
436
446
  } | {
437
- accessList?: import("viem").AccessList | undefined;
447
+ accessList?: AccessList | undefined;
438
448
  authorizationList?: undefined | undefined;
439
449
  blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
440
450
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
@@ -449,7 +459,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
449
459
  } | {
450
460
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
451
461
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
452
- accessList?: import("viem").AccessList | undefined;
462
+ accessList?: AccessList | undefined;
453
463
  authorizationList?: import("viem").SignedAuthorizationList | undefined;
454
464
  blobs?: undefined | undefined;
455
465
  blobVersionedHashes?: undefined | undefined;
@@ -459,7 +469,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
459
469
  maxPriorityFeePerGas?: bigint | undefined;
460
470
  sidecars?: undefined | undefined;
461
471
  } | {
462
- accessList?: import("viem").AccessList | undefined;
472
+ accessList?: AccessList | undefined;
463
473
  authorizationList?: import("viem").SignedAuthorizationList | undefined;
464
474
  blobs?: undefined | undefined;
465
475
  blobVersionedHashes?: undefined | undefined;
@@ -478,7 +488,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
478
488
  gasPrice?: bigint | undefined;
479
489
  sidecars?: undefined | undefined;
480
490
  } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
481
- accessList?: import("viem").AccessList | undefined;
491
+ accessList?: AccessList | undefined;
482
492
  authorizationList?: undefined | undefined;
483
493
  blobs?: undefined | undefined;
484
494
  blobVersionedHashes?: undefined | undefined;
@@ -494,7 +504,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
494
504
  }, import("viem").FeeValuesEIP1559> & {
495
505
  accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
496
506
  }) ? "eip1559" : never) | (request extends {
497
- accessList?: import("viem").AccessList | undefined;
507
+ accessList?: AccessList | undefined;
498
508
  authorizationList?: undefined | undefined;
499
509
  blobs?: undefined | undefined;
500
510
  blobVersionedHashes?: undefined | undefined;
@@ -506,7 +516,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
506
516
  } & {
507
517
  accessList: import("viem").TransactionSerializableEIP2930["accessList"];
508
518
  } ? "eip2930" : never) | (request extends ({
509
- accessList?: import("viem").AccessList | undefined;
519
+ accessList?: AccessList | undefined;
510
520
  authorizationList?: undefined | undefined;
511
521
  blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
512
522
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
@@ -515,7 +525,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
515
525
  maxPriorityFeePerGas?: bigint | undefined;
516
526
  sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
517
527
  } | {
518
- accessList?: import("viem").AccessList | undefined;
528
+ accessList?: AccessList | undefined;
519
529
  authorizationList?: undefined | undefined;
520
530
  blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
521
531
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
@@ -530,7 +540,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
530
540
  } | {
531
541
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
532
542
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
533
- accessList?: import("viem").AccessList | undefined;
543
+ accessList?: AccessList | undefined;
534
544
  authorizationList?: import("viem").SignedAuthorizationList | undefined;
535
545
  blobs?: undefined | undefined;
536
546
  blobVersionedHashes?: undefined | undefined;
@@ -540,7 +550,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
540
550
  maxPriorityFeePerGas?: bigint | undefined;
541
551
  sidecars?: undefined | undefined;
542
552
  } | {
543
- accessList?: import("viem").AccessList | undefined;
553
+ accessList?: AccessList | undefined;
544
554
  authorizationList?: import("viem").SignedAuthorizationList | undefined;
545
555
  blobs?: undefined | undefined;
546
556
  blobVersionedHashes?: undefined | undefined;
@@ -559,7 +569,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
559
569
  gasPrice?: bigint | undefined;
560
570
  sidecars?: undefined | undefined;
561
571
  } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
562
- accessList?: import("viem").AccessList | undefined;
572
+ accessList?: AccessList | undefined;
563
573
  authorizationList?: undefined | undefined;
564
574
  blobs?: undefined | undefined;
565
575
  blobVersionedHashes?: undefined | undefined;
@@ -575,7 +585,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
575
585
  }, import("viem").FeeValuesEIP1559> & {
576
586
  accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
577
587
  }) ? "eip1559" : never) | (request extends {
578
- accessList?: import("viem").AccessList | undefined;
588
+ accessList?: AccessList | undefined;
579
589
  authorizationList?: undefined | undefined;
580
590
  blobs?: undefined | undefined;
581
591
  blobVersionedHashes?: undefined | undefined;
@@ -587,7 +597,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
587
597
  } & {
588
598
  accessList: import("viem").TransactionSerializableEIP2930["accessList"];
589
599
  } ? "eip2930" : never) | (request extends ({
590
- accessList?: import("viem").AccessList | undefined;
600
+ accessList?: AccessList | undefined;
591
601
  authorizationList?: undefined | undefined;
592
602
  blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
593
603
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
@@ -596,7 +606,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
596
606
  maxPriorityFeePerGas?: bigint | undefined;
597
607
  sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
598
608
  } | {
599
- accessList?: import("viem").AccessList | undefined;
609
+ accessList?: AccessList | undefined;
600
610
  authorizationList?: undefined | undefined;
601
611
  blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
602
612
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
@@ -611,7 +621,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
611
621
  } | {
612
622
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
613
623
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
614
- accessList?: import("viem").AccessList | undefined;
624
+ accessList?: AccessList | undefined;
615
625
  authorizationList?: import("viem").SignedAuthorizationList | undefined;
616
626
  blobs?: undefined | undefined;
617
627
  blobVersionedHashes?: undefined | undefined;
@@ -621,7 +631,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
621
631
  maxPriorityFeePerGas?: bigint | undefined;
622
632
  sidecars?: undefined | undefined;
623
633
  } | {
624
- accessList?: import("viem").AccessList | undefined;
634
+ accessList?: AccessList | undefined;
625
635
  authorizationList?: import("viem").SignedAuthorizationList | undefined;
626
636
  blobs?: undefined | undefined;
627
637
  blobVersionedHashes?: undefined | undefined;
@@ -640,7 +650,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
640
650
  gasPrice?: bigint | undefined;
641
651
  sidecars?: undefined | undefined;
642
652
  } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
643
- accessList?: import("viem").AccessList | undefined;
653
+ accessList?: AccessList | undefined;
644
654
  authorizationList?: undefined | undefined;
645
655
  blobs?: undefined | undefined;
646
656
  blobVersionedHashes?: undefined | undefined;
@@ -656,7 +666,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
656
666
  }, import("viem").FeeValuesEIP1559> & {
657
667
  accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
658
668
  }) ? "eip1559" : never) | (request extends {
659
- accessList?: import("viem").AccessList | undefined;
669
+ accessList?: AccessList | undefined;
660
670
  authorizationList?: undefined | undefined;
661
671
  blobs?: undefined | undefined;
662
672
  blobVersionedHashes?: undefined | undefined;
@@ -668,7 +678,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
668
678
  } & {
669
679
  accessList: import("viem").TransactionSerializableEIP2930["accessList"];
670
680
  } ? "eip2930" : never) | (request extends ({
671
- accessList?: import("viem").AccessList | undefined;
681
+ accessList?: AccessList | undefined;
672
682
  authorizationList?: undefined | undefined;
673
683
  blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
674
684
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
@@ -677,7 +687,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
677
687
  maxPriorityFeePerGas?: bigint | undefined;
678
688
  sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
679
689
  } | {
680
- accessList?: import("viem").AccessList | undefined;
690
+ accessList?: AccessList | undefined;
681
691
  authorizationList?: undefined | undefined;
682
692
  blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
683
693
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
@@ -692,7 +702,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
692
702
  } | {
693
703
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
694
704
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
695
- accessList?: import("viem").AccessList | undefined;
705
+ accessList?: AccessList | undefined;
696
706
  authorizationList?: import("viem").SignedAuthorizationList | undefined;
697
707
  blobs?: undefined | undefined;
698
708
  blobVersionedHashes?: undefined | undefined;
@@ -702,7 +712,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
702
712
  maxPriorityFeePerGas?: bigint | undefined;
703
713
  sidecars?: undefined | undefined;
704
714
  } | {
705
- accessList?: import("viem").AccessList | undefined;
715
+ accessList?: AccessList | undefined;
706
716
  authorizationList?: import("viem").SignedAuthorizationList | undefined;
707
717
  blobs?: undefined | undefined;
708
718
  blobVersionedHashes?: undefined | undefined;
@@ -722,7 +732,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
722
732
  gasPrice?: bigint | undefined;
723
733
  sidecars?: undefined | undefined;
724
734
  } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
725
- accessList?: import("viem").AccessList | undefined;
735
+ accessList?: AccessList | undefined;
726
736
  authorizationList?: undefined | undefined;
727
737
  blobs?: undefined | undefined;
728
738
  blobVersionedHashes?: undefined | undefined;
@@ -738,7 +748,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
738
748
  }, import("viem").FeeValuesEIP1559> & {
739
749
  accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
740
750
  }) ? "eip1559" : never) | (request extends {
741
- accessList?: import("viem").AccessList | undefined;
751
+ accessList?: AccessList | undefined;
742
752
  authorizationList?: undefined | undefined;
743
753
  blobs?: undefined | undefined;
744
754
  blobVersionedHashes?: undefined | undefined;
@@ -750,7 +760,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
750
760
  } & {
751
761
  accessList: import("viem").TransactionSerializableEIP2930["accessList"];
752
762
  } ? "eip2930" : never) | (request extends ({
753
- accessList?: import("viem").AccessList | undefined;
763
+ accessList?: AccessList | undefined;
754
764
  authorizationList?: undefined | undefined;
755
765
  blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
756
766
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
@@ -759,7 +769,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
759
769
  maxPriorityFeePerGas?: bigint | undefined;
760
770
  sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
761
771
  } | {
762
- accessList?: import("viem").AccessList | undefined;
772
+ accessList?: AccessList | undefined;
763
773
  authorizationList?: undefined | undefined;
764
774
  blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
765
775
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
@@ -774,7 +784,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
774
784
  } | {
775
785
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
776
786
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
777
- accessList?: import("viem").AccessList | undefined;
787
+ accessList?: AccessList | undefined;
778
788
  authorizationList?: import("viem").SignedAuthorizationList | undefined;
779
789
  blobs?: undefined | undefined;
780
790
  blobVersionedHashes?: undefined | undefined;
@@ -784,7 +794,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
784
794
  maxPriorityFeePerGas?: bigint | undefined;
785
795
  sidecars?: undefined | undefined;
786
796
  } | {
787
- accessList?: import("viem").AccessList | undefined;
797
+ accessList?: AccessList | undefined;
788
798
  authorizationList?: import("viem").SignedAuthorizationList | undefined;
789
799
  blobs?: undefined | undefined;
790
800
  blobVersionedHashes?: undefined | undefined;
@@ -803,7 +813,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
803
813
  gasPrice?: bigint | undefined;
804
814
  sidecars?: undefined | undefined;
805
815
  } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
806
- accessList?: import("viem").AccessList | undefined;
816
+ accessList?: AccessList | undefined;
807
817
  authorizationList?: undefined | undefined;
808
818
  blobs?: undefined | undefined;
809
819
  blobVersionedHashes?: undefined | undefined;
@@ -819,7 +829,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
819
829
  }, import("viem").FeeValuesEIP1559> & {
820
830
  accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
821
831
  }) ? "eip1559" : never) | (request extends {
822
- accessList?: import("viem").AccessList | undefined;
832
+ accessList?: AccessList | undefined;
823
833
  authorizationList?: undefined | undefined;
824
834
  blobs?: undefined | undefined;
825
835
  blobVersionedHashes?: undefined | undefined;
@@ -831,7 +841,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
831
841
  } & {
832
842
  accessList: import("viem").TransactionSerializableEIP2930["accessList"];
833
843
  } ? "eip2930" : never) | (request extends ({
834
- accessList?: import("viem").AccessList | undefined;
844
+ accessList?: AccessList | undefined;
835
845
  authorizationList?: undefined | undefined;
836
846
  blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
837
847
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
@@ -840,7 +850,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
840
850
  maxPriorityFeePerGas?: bigint | undefined;
841
851
  sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
842
852
  } | {
843
- accessList?: import("viem").AccessList | undefined;
853
+ accessList?: AccessList | undefined;
844
854
  authorizationList?: undefined | undefined;
845
855
  blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
846
856
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
@@ -855,7 +865,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
855
865
  } | {
856
866
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
857
867
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
858
- accessList?: import("viem").AccessList | undefined;
868
+ accessList?: AccessList | undefined;
859
869
  authorizationList?: import("viem").SignedAuthorizationList | undefined;
860
870
  blobs?: undefined | undefined;
861
871
  blobVersionedHashes?: undefined | undefined;
@@ -865,7 +875,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
865
875
  maxPriorityFeePerGas?: bigint | undefined;
866
876
  sidecars?: undefined | undefined;
867
877
  } | {
868
- accessList?: import("viem").AccessList | undefined;
878
+ accessList?: AccessList | undefined;
869
879
  authorizationList?: import("viem").SignedAuthorizationList | undefined;
870
880
  blobs?: undefined | undefined;
871
881
  blobVersionedHashes?: undefined | undefined;
@@ -884,7 +894,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
884
894
  gasPrice?: bigint | undefined;
885
895
  sidecars?: undefined | undefined;
886
896
  } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
887
- accessList?: import("viem").AccessList | undefined;
897
+ accessList?: AccessList | undefined;
888
898
  authorizationList?: undefined | undefined;
889
899
  blobs?: undefined | undefined;
890
900
  blobVersionedHashes?: undefined | undefined;
@@ -900,7 +910,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
900
910
  }, import("viem").FeeValuesEIP1559> & {
901
911
  accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
902
912
  }) ? "eip1559" : never) | (request extends {
903
- accessList?: import("viem").AccessList | undefined;
913
+ accessList?: AccessList | undefined;
904
914
  authorizationList?: undefined | undefined;
905
915
  blobs?: undefined | undefined;
906
916
  blobVersionedHashes?: undefined | undefined;
@@ -912,7 +922,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
912
922
  } & {
913
923
  accessList: import("viem").TransactionSerializableEIP2930["accessList"];
914
924
  } ? "eip2930" : never) | (request extends ({
915
- accessList?: import("viem").AccessList | undefined;
925
+ accessList?: AccessList | undefined;
916
926
  authorizationList?: undefined | undefined;
917
927
  blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
918
928
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
@@ -921,7 +931,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
921
931
  maxPriorityFeePerGas?: bigint | undefined;
922
932
  sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
923
933
  } | {
924
- accessList?: import("viem").AccessList | undefined;
934
+ accessList?: AccessList | undefined;
925
935
  authorizationList?: undefined | undefined;
926
936
  blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
927
937
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
@@ -936,7 +946,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
936
946
  } | {
937
947
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
938
948
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
939
- accessList?: import("viem").AccessList | undefined;
949
+ accessList?: AccessList | undefined;
940
950
  authorizationList?: import("viem").SignedAuthorizationList | undefined;
941
951
  blobs?: undefined | undefined;
942
952
  blobVersionedHashes?: undefined | undefined;
@@ -946,7 +956,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
946
956
  maxPriorityFeePerGas?: bigint | undefined;
947
957
  sidecars?: undefined | undefined;
948
958
  } | {
949
- accessList?: import("viem").AccessList | undefined;
959
+ accessList?: AccessList | undefined;
950
960
  authorizationList?: import("viem").SignedAuthorizationList | undefined;
951
961
  blobs?: undefined | undefined;
952
962
  blobVersionedHashes?: undefined | undefined;
@@ -965,7 +975,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
965
975
  gasPrice?: bigint | undefined;
966
976
  sidecars?: undefined | undefined;
967
977
  } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
968
- accessList?: import("viem").AccessList | undefined;
978
+ accessList?: AccessList | undefined;
969
979
  authorizationList?: undefined | undefined;
970
980
  blobs?: undefined | undefined;
971
981
  blobVersionedHashes?: undefined | undefined;
@@ -981,7 +991,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
981
991
  }, import("viem").FeeValuesEIP1559> & {
982
992
  accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
983
993
  }) ? "eip1559" : never) | (request extends {
984
- accessList?: import("viem").AccessList | undefined;
994
+ accessList?: AccessList | undefined;
985
995
  authorizationList?: undefined | undefined;
986
996
  blobs?: undefined | undefined;
987
997
  blobVersionedHashes?: undefined | undefined;
@@ -993,7 +1003,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
993
1003
  } & {
994
1004
  accessList: import("viem").TransactionSerializableEIP2930["accessList"];
995
1005
  } ? "eip2930" : never) | (request extends ({
996
- accessList?: import("viem").AccessList | undefined;
1006
+ accessList?: AccessList | undefined;
997
1007
  authorizationList?: undefined | undefined;
998
1008
  blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
999
1009
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
@@ -1002,7 +1012,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
1002
1012
  maxPriorityFeePerGas?: bigint | undefined;
1003
1013
  sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1004
1014
  } | {
1005
- accessList?: import("viem").AccessList | undefined;
1015
+ accessList?: AccessList | undefined;
1006
1016
  authorizationList?: undefined | undefined;
1007
1017
  blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1008
1018
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
@@ -1017,7 +1027,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
1017
1027
  } | {
1018
1028
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
1019
1029
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
1020
- accessList?: import("viem").AccessList | undefined;
1030
+ accessList?: AccessList | undefined;
1021
1031
  authorizationList?: import("viem").SignedAuthorizationList | undefined;
1022
1032
  blobs?: undefined | undefined;
1023
1033
  blobVersionedHashes?: undefined | undefined;
@@ -1027,7 +1037,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
1027
1037
  maxPriorityFeePerGas?: bigint | undefined;
1028
1038
  sidecars?: undefined | undefined;
1029
1039
  } | {
1030
- accessList?: import("viem").AccessList | undefined;
1040
+ accessList?: AccessList | undefined;
1031
1041
  authorizationList?: import("viem").SignedAuthorizationList | undefined;
1032
1042
  blobs?: undefined | undefined;
1033
1043
  blobVersionedHashes?: undefined | undefined;
@@ -1047,7 +1057,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
1047
1057
  gasPrice?: bigint | undefined;
1048
1058
  sidecars?: undefined | undefined;
1049
1059
  } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
1050
- accessList?: import("viem").AccessList | undefined;
1060
+ accessList?: AccessList | undefined;
1051
1061
  authorizationList?: undefined | undefined;
1052
1062
  blobs?: undefined | undefined;
1053
1063
  blobVersionedHashes?: undefined | undefined;
@@ -1063,7 +1073,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
1063
1073
  }, import("viem").FeeValuesEIP1559> & {
1064
1074
  accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
1065
1075
  }) ? "eip1559" : never) | (request extends {
1066
- accessList?: import("viem").AccessList | undefined;
1076
+ accessList?: AccessList | undefined;
1067
1077
  authorizationList?: undefined | undefined;
1068
1078
  blobs?: undefined | undefined;
1069
1079
  blobVersionedHashes?: undefined | undefined;
@@ -1075,7 +1085,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
1075
1085
  } & {
1076
1086
  accessList: import("viem").TransactionSerializableEIP2930["accessList"];
1077
1087
  } ? "eip2930" : never) | (request extends ({
1078
- accessList?: import("viem").AccessList | undefined;
1088
+ accessList?: AccessList | undefined;
1079
1089
  authorizationList?: undefined | undefined;
1080
1090
  blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1081
1091
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
@@ -1084,7 +1094,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
1084
1094
  maxPriorityFeePerGas?: bigint | undefined;
1085
1095
  sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1086
1096
  } | {
1087
- accessList?: import("viem").AccessList | undefined;
1097
+ accessList?: AccessList | undefined;
1088
1098
  authorizationList?: undefined | undefined;
1089
1099
  blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1090
1100
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
@@ -1099,7 +1109,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
1099
1109
  } | {
1100
1110
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
1101
1111
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
1102
- accessList?: import("viem").AccessList | undefined;
1112
+ accessList?: AccessList | undefined;
1103
1113
  authorizationList?: import("viem").SignedAuthorizationList | undefined;
1104
1114
  blobs?: undefined | undefined;
1105
1115
  blobVersionedHashes?: undefined | undefined;
@@ -1109,7 +1119,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
1109
1119
  maxPriorityFeePerGas?: bigint | undefined;
1110
1120
  sidecars?: undefined | undefined;
1111
1121
  } | {
1112
- accessList?: import("viem").AccessList | undefined;
1122
+ accessList?: AccessList | undefined;
1113
1123
  authorizationList?: import("viem").SignedAuthorizationList | undefined;
1114
1124
  blobs?: undefined | undefined;
1115
1125
  blobVersionedHashes?: undefined | undefined;
@@ -1128,7 +1138,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
1128
1138
  gasPrice?: bigint | undefined;
1129
1139
  sidecars?: undefined | undefined;
1130
1140
  } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
1131
- accessList?: import("viem").AccessList | undefined;
1141
+ accessList?: AccessList | undefined;
1132
1142
  authorizationList?: undefined | undefined;
1133
1143
  blobs?: undefined | undefined;
1134
1144
  blobVersionedHashes?: undefined | undefined;
@@ -1144,7 +1154,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
1144
1154
  }, import("viem").FeeValuesEIP1559> & {
1145
1155
  accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
1146
1156
  }) ? "eip1559" : never) | (request extends {
1147
- accessList?: import("viem").AccessList | undefined;
1157
+ accessList?: AccessList | undefined;
1148
1158
  authorizationList?: undefined | undefined;
1149
1159
  blobs?: undefined | undefined;
1150
1160
  blobVersionedHashes?: undefined | undefined;
@@ -1156,7 +1166,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
1156
1166
  } & {
1157
1167
  accessList: import("viem").TransactionSerializableEIP2930["accessList"];
1158
1168
  } ? "eip2930" : never) | (request extends ({
1159
- accessList?: import("viem").AccessList | undefined;
1169
+ accessList?: AccessList | undefined;
1160
1170
  authorizationList?: undefined | undefined;
1161
1171
  blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1162
1172
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
@@ -1165,7 +1175,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
1165
1175
  maxPriorityFeePerGas?: bigint | undefined;
1166
1176
  sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1167
1177
  } | {
1168
- accessList?: import("viem").AccessList | undefined;
1178
+ accessList?: AccessList | undefined;
1169
1179
  authorizationList?: undefined | undefined;
1170
1180
  blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1171
1181
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
@@ -1180,7 +1190,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
1180
1190
  } | {
1181
1191
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
1182
1192
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
1183
- accessList?: import("viem").AccessList | undefined;
1193
+ accessList?: AccessList | undefined;
1184
1194
  authorizationList?: import("viem").SignedAuthorizationList | undefined;
1185
1195
  blobs?: undefined | undefined;
1186
1196
  blobVersionedHashes?: undefined | undefined;
@@ -1190,7 +1200,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
1190
1200
  maxPriorityFeePerGas?: bigint | undefined;
1191
1201
  sidecars?: undefined | undefined;
1192
1202
  } | {
1193
- accessList?: import("viem").AccessList | undefined;
1203
+ accessList?: AccessList | undefined;
1194
1204
  authorizationList?: import("viem").SignedAuthorizationList | undefined;
1195
1205
  blobs?: undefined | undefined;
1196
1206
  blobVersionedHashes?: undefined | undefined;
@@ -1209,7 +1219,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
1209
1219
  gasPrice?: bigint | undefined;
1210
1220
  sidecars?: undefined | undefined;
1211
1221
  } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
1212
- accessList?: import("viem").AccessList | undefined;
1222
+ accessList?: AccessList | undefined;
1213
1223
  authorizationList?: undefined | undefined;
1214
1224
  blobs?: undefined | undefined;
1215
1225
  blobVersionedHashes?: undefined | undefined;
@@ -1225,7 +1235,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
1225
1235
  }, import("viem").FeeValuesEIP1559> & {
1226
1236
  accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
1227
1237
  }) ? "eip1559" : never) | (request extends {
1228
- accessList?: import("viem").AccessList | undefined;
1238
+ accessList?: AccessList | undefined;
1229
1239
  authorizationList?: undefined | undefined;
1230
1240
  blobs?: undefined | undefined;
1231
1241
  blobVersionedHashes?: undefined | undefined;
@@ -1237,7 +1247,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
1237
1247
  } & {
1238
1248
  accessList: import("viem").TransactionSerializableEIP2930["accessList"];
1239
1249
  } ? "eip2930" : never) | (request extends ({
1240
- accessList?: import("viem").AccessList | undefined;
1250
+ accessList?: AccessList | undefined;
1241
1251
  authorizationList?: undefined | undefined;
1242
1252
  blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1243
1253
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
@@ -1246,7 +1256,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
1246
1256
  maxPriorityFeePerGas?: bigint | undefined;
1247
1257
  sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1248
1258
  } | {
1249
- accessList?: import("viem").AccessList | undefined;
1259
+ accessList?: AccessList | undefined;
1250
1260
  authorizationList?: undefined | undefined;
1251
1261
  blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1252
1262
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
@@ -1261,7 +1271,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
1261
1271
  } | {
1262
1272
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
1263
1273
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
1264
- accessList?: import("viem").AccessList | undefined;
1274
+ accessList?: AccessList | undefined;
1265
1275
  authorizationList?: import("viem").SignedAuthorizationList | undefined;
1266
1276
  blobs?: undefined | undefined;
1267
1277
  blobVersionedHashes?: undefined | undefined;
@@ -1271,7 +1281,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
1271
1281
  maxPriorityFeePerGas?: bigint | undefined;
1272
1282
  sidecars?: undefined | undefined;
1273
1283
  } | {
1274
- accessList?: import("viem").AccessList | undefined;
1284
+ accessList?: AccessList | undefined;
1275
1285
  authorizationList?: import("viem").SignedAuthorizationList | undefined;
1276
1286
  blobs?: undefined | undefined;
1277
1287
  blobVersionedHashes?: undefined | undefined;
@@ -1290,7 +1300,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
1290
1300
  gasPrice?: bigint | undefined;
1291
1301
  sidecars?: undefined | undefined;
1292
1302
  } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
1293
- accessList?: import("viem").AccessList | undefined;
1303
+ accessList?: AccessList | undefined;
1294
1304
  authorizationList?: undefined | undefined;
1295
1305
  blobs?: undefined | undefined;
1296
1306
  blobVersionedHashes?: undefined | undefined;
@@ -1306,7 +1316,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
1306
1316
  }, import("viem").FeeValuesEIP1559> & {
1307
1317
  accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
1308
1318
  }) ? "eip1559" : never) | (request extends {
1309
- accessList?: import("viem").AccessList | undefined;
1319
+ accessList?: AccessList | undefined;
1310
1320
  authorizationList?: undefined | undefined;
1311
1321
  blobs?: undefined | undefined;
1312
1322
  blobVersionedHashes?: undefined | undefined;
@@ -1318,7 +1328,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
1318
1328
  } & {
1319
1329
  accessList: import("viem").TransactionSerializableEIP2930["accessList"];
1320
1330
  } ? "eip2930" : never) | (request extends ({
1321
- accessList?: import("viem").AccessList | undefined;
1331
+ accessList?: AccessList | undefined;
1322
1332
  authorizationList?: undefined | undefined;
1323
1333
  blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1324
1334
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
@@ -1327,7 +1337,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
1327
1337
  maxPriorityFeePerGas?: bigint | undefined;
1328
1338
  sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1329
1339
  } | {
1330
- accessList?: import("viem").AccessList | undefined;
1340
+ accessList?: AccessList | undefined;
1331
1341
  authorizationList?: undefined | undefined;
1332
1342
  blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1333
1343
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
@@ -1342,7 +1352,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
1342
1352
  } | {
1343
1353
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
1344
1354
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
1345
- accessList?: import("viem").AccessList | undefined;
1355
+ accessList?: AccessList | undefined;
1346
1356
  authorizationList?: import("viem").SignedAuthorizationList | undefined;
1347
1357
  blobs?: undefined | undefined;
1348
1358
  blobVersionedHashes?: undefined | undefined;
@@ -1352,7 +1362,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
1352
1362
  maxPriorityFeePerGas?: bigint | undefined;
1353
1363
  sidecars?: undefined | undefined;
1354
1364
  } | {
1355
- accessList?: import("viem").AccessList | undefined;
1365
+ accessList?: AccessList | undefined;
1356
1366
  authorizationList?: import("viem").SignedAuthorizationList | undefined;
1357
1367
  blobs?: undefined | undefined;
1358
1368
  blobVersionedHashes?: undefined | undefined;
@@ -1372,7 +1382,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
1372
1382
  gasPrice?: bigint | undefined;
1373
1383
  sidecars?: undefined | undefined;
1374
1384
  } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
1375
- accessList?: import("viem").AccessList | undefined;
1385
+ accessList?: AccessList | undefined;
1376
1386
  authorizationList?: undefined | undefined;
1377
1387
  blobs?: undefined | undefined;
1378
1388
  blobVersionedHashes?: undefined | undefined;
@@ -1388,7 +1398,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
1388
1398
  }, import("viem").FeeValuesEIP1559> & {
1389
1399
  accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
1390
1400
  }) ? "eip1559" : never) | (request extends {
1391
- accessList?: import("viem").AccessList | undefined;
1401
+ accessList?: AccessList | undefined;
1392
1402
  authorizationList?: undefined | undefined;
1393
1403
  blobs?: undefined | undefined;
1394
1404
  blobVersionedHashes?: undefined | undefined;
@@ -1400,7 +1410,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
1400
1410
  } & {
1401
1411
  accessList: import("viem").TransactionSerializableEIP2930["accessList"];
1402
1412
  } ? "eip2930" : never) | (request extends ({
1403
- accessList?: import("viem").AccessList | undefined;
1413
+ accessList?: AccessList | undefined;
1404
1414
  authorizationList?: undefined | undefined;
1405
1415
  blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1406
1416
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
@@ -1409,7 +1419,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
1409
1419
  maxPriorityFeePerGas?: bigint | undefined;
1410
1420
  sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1411
1421
  } | {
1412
- accessList?: import("viem").AccessList | undefined;
1422
+ accessList?: AccessList | undefined;
1413
1423
  authorizationList?: undefined | undefined;
1414
1424
  blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1415
1425
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
@@ -1424,7 +1434,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
1424
1434
  } | {
1425
1435
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
1426
1436
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
1427
- accessList?: import("viem").AccessList | undefined;
1437
+ accessList?: AccessList | undefined;
1428
1438
  authorizationList?: import("viem").SignedAuthorizationList | undefined;
1429
1439
  blobs?: undefined | undefined;
1430
1440
  blobVersionedHashes?: undefined | undefined;
@@ -1434,7 +1444,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
1434
1444
  maxPriorityFeePerGas?: bigint | undefined;
1435
1445
  sidecars?: undefined | undefined;
1436
1446
  } | {
1437
- accessList?: import("viem").AccessList | undefined;
1447
+ accessList?: AccessList | undefined;
1438
1448
  authorizationList?: import("viem").SignedAuthorizationList | undefined;
1439
1449
  blobs?: undefined | undefined;
1440
1450
  blobVersionedHashes?: undefined | undefined;
@@ -1453,7 +1463,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
1453
1463
  gasPrice?: bigint | undefined;
1454
1464
  sidecars?: undefined | undefined;
1455
1465
  } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
1456
- accessList?: import("viem").AccessList | undefined;
1466
+ accessList?: AccessList | undefined;
1457
1467
  authorizationList?: undefined | undefined;
1458
1468
  blobs?: undefined | undefined;
1459
1469
  blobVersionedHashes?: undefined | undefined;
@@ -1469,7 +1479,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
1469
1479
  }, import("viem").FeeValuesEIP1559> & {
1470
1480
  accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
1471
1481
  }) ? "eip1559" : never) | (request extends {
1472
- accessList?: import("viem").AccessList | undefined;
1482
+ accessList?: AccessList | undefined;
1473
1483
  authorizationList?: undefined | undefined;
1474
1484
  blobs?: undefined | undefined;
1475
1485
  blobVersionedHashes?: undefined | undefined;
@@ -1481,7 +1491,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
1481
1491
  } & {
1482
1492
  accessList: import("viem").TransactionSerializableEIP2930["accessList"];
1483
1493
  } ? "eip2930" : never) | (request extends ({
1484
- accessList?: import("viem").AccessList | undefined;
1494
+ accessList?: AccessList | undefined;
1485
1495
  authorizationList?: undefined | undefined;
1486
1496
  blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1487
1497
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
@@ -1490,7 +1500,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
1490
1500
  maxPriorityFeePerGas?: bigint | undefined;
1491
1501
  sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1492
1502
  } | {
1493
- accessList?: import("viem").AccessList | undefined;
1503
+ accessList?: AccessList | undefined;
1494
1504
  authorizationList?: undefined | undefined;
1495
1505
  blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1496
1506
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
@@ -1505,7 +1515,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
1505
1515
  } | {
1506
1516
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
1507
1517
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
1508
- accessList?: import("viem").AccessList | undefined;
1518
+ accessList?: AccessList | undefined;
1509
1519
  authorizationList?: import("viem").SignedAuthorizationList | undefined;
1510
1520
  blobs?: undefined | undefined;
1511
1521
  blobVersionedHashes?: undefined | undefined;
@@ -1515,7 +1525,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
1515
1525
  maxPriorityFeePerGas?: bigint | undefined;
1516
1526
  sidecars?: undefined | undefined;
1517
1527
  } | {
1518
- accessList?: import("viem").AccessList | undefined;
1528
+ accessList?: AccessList | undefined;
1519
1529
  authorizationList?: import("viem").SignedAuthorizationList | undefined;
1520
1530
  blobs?: undefined | undefined;
1521
1531
  blobVersionedHashes?: undefined | undefined;
@@ -1534,7 +1544,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
1534
1544
  gasPrice?: bigint | undefined;
1535
1545
  sidecars?: undefined | undefined;
1536
1546
  } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
1537
- accessList?: import("viem").AccessList | undefined;
1547
+ accessList?: AccessList | undefined;
1538
1548
  authorizationList?: undefined | undefined;
1539
1549
  blobs?: undefined | undefined;
1540
1550
  blobVersionedHashes?: undefined | undefined;
@@ -1550,7 +1560,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
1550
1560
  }, import("viem").FeeValuesEIP1559> & {
1551
1561
  accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
1552
1562
  }) ? "eip1559" : never) | (request extends {
1553
- accessList?: import("viem").AccessList | undefined;
1563
+ accessList?: AccessList | undefined;
1554
1564
  authorizationList?: undefined | undefined;
1555
1565
  blobs?: undefined | undefined;
1556
1566
  blobVersionedHashes?: undefined | undefined;
@@ -1562,7 +1572,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
1562
1572
  } & {
1563
1573
  accessList: import("viem").TransactionSerializableEIP2930["accessList"];
1564
1574
  } ? "eip2930" : never) | (request extends ({
1565
- accessList?: import("viem").AccessList | undefined;
1575
+ accessList?: AccessList | undefined;
1566
1576
  authorizationList?: undefined | undefined;
1567
1577
  blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1568
1578
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
@@ -1571,7 +1581,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
1571
1581
  maxPriorityFeePerGas?: bigint | undefined;
1572
1582
  sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1573
1583
  } | {
1574
- accessList?: import("viem").AccessList | undefined;
1584
+ accessList?: AccessList | undefined;
1575
1585
  authorizationList?: undefined | undefined;
1576
1586
  blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1577
1587
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
@@ -1586,7 +1596,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
1586
1596
  } | {
1587
1597
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
1588
1598
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
1589
- accessList?: import("viem").AccessList | undefined;
1599
+ accessList?: AccessList | undefined;
1590
1600
  authorizationList?: import("viem").SignedAuthorizationList | undefined;
1591
1601
  blobs?: undefined | undefined;
1592
1602
  blobVersionedHashes?: undefined | undefined;
@@ -1596,7 +1606,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
1596
1606
  maxPriorityFeePerGas?: bigint | undefined;
1597
1607
  sidecars?: undefined | undefined;
1598
1608
  } | {
1599
- accessList?: import("viem").AccessList | undefined;
1609
+ accessList?: AccessList | undefined;
1600
1610
  authorizationList?: import("viem").SignedAuthorizationList | undefined;
1601
1611
  blobs?: undefined | undefined;
1602
1612
  blobVersionedHashes?: undefined | undefined;
@@ -1615,7 +1625,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
1615
1625
  gasPrice?: bigint | undefined;
1616
1626
  sidecars?: undefined | undefined;
1617
1627
  } & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
1618
- accessList?: import("viem").AccessList | undefined;
1628
+ accessList?: AccessList | undefined;
1619
1629
  authorizationList?: undefined | undefined;
1620
1630
  blobs?: undefined | undefined;
1621
1631
  blobVersionedHashes?: undefined | undefined;
@@ -1631,7 +1641,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
1631
1641
  }, import("viem").FeeValuesEIP1559> & {
1632
1642
  accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
1633
1643
  }) ? "eip1559" : never) | (request extends {
1634
- accessList?: import("viem").AccessList | undefined;
1644
+ accessList?: AccessList | undefined;
1635
1645
  authorizationList?: undefined | undefined;
1636
1646
  blobs?: undefined | undefined;
1637
1647
  blobVersionedHashes?: undefined | undefined;
@@ -1643,7 +1653,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
1643
1653
  } & {
1644
1654
  accessList: import("viem").TransactionSerializableEIP2930["accessList"];
1645
1655
  } ? "eip2930" : never) | (request extends ({
1646
- accessList?: import("viem").AccessList | undefined;
1656
+ accessList?: AccessList | undefined;
1647
1657
  authorizationList?: undefined | undefined;
1648
1658
  blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1649
1659
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
@@ -1652,7 +1662,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
1652
1662
  maxPriorityFeePerGas?: bigint | undefined;
1653
1663
  sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
1654
1664
  } | {
1655
- accessList?: import("viem").AccessList | undefined;
1665
+ accessList?: AccessList | undefined;
1656
1666
  authorizationList?: undefined | undefined;
1657
1667
  blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
1658
1668
  blobVersionedHashes?: readonly `0x${string}`[] | undefined;
@@ -1667,7 +1677,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
1667
1677
  } | {
1668
1678
  sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
1669
1679
  }, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
1670
- accessList?: import("viem").AccessList | undefined;
1680
+ accessList?: AccessList | undefined;
1671
1681
  authorizationList?: import("viem").SignedAuthorizationList | undefined;
1672
1682
  blobs?: undefined | undefined;
1673
1683
  blobVersionedHashes?: undefined | undefined;
@@ -1677,7 +1687,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
1677
1687
  maxPriorityFeePerGas?: bigint | undefined;
1678
1688
  sidecars?: undefined | undefined;
1679
1689
  } | {
1680
- accessList?: import("viem").AccessList | undefined;
1690
+ accessList?: AccessList | undefined;
1681
1691
  authorizationList?: import("viem").SignedAuthorizationList | undefined;
1682
1692
  blobs?: undefined | undefined;
1683
1693
  blobVersionedHashes?: undefined | undefined;
@@ -1701,7 +1711,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
1701
1711
  simulate: <const calls extends readonly unknown[]>(args: import("viem").SimulateBlocksParameters<calls>) => Promise<import("viem").SimulateBlocksReturnType<calls>>;
1702
1712
  simulateBlocks: <const calls extends readonly unknown[]>(args: import("viem").SimulateBlocksParameters<calls>) => Promise<import("viem").SimulateBlocksReturnType<calls>>;
1703
1713
  simulateCalls: <const calls extends readonly unknown[]>(args: import("viem").SimulateCallsParameters<calls>) => Promise<import("viem").SimulateCallsReturnType<calls>>;
1704
- simulateContract: <const abi extends import("viem").Abi | readonly unknown[], functionName extends import("viem").ContractFunctionName<abi, "nonpayable" | "payable">, const args_1 extends import("viem").ContractFunctionArgs<abi, "nonpayable" | "payable", functionName>, chainOverride extends Chain | undefined, accountOverride extends Account | import("viem").Address | undefined = undefined>(args: import("viem").SimulateContractParameters<abi, functionName, args_1, Chain, chainOverride, accountOverride>) => Promise<import("viem").SimulateContractReturnType<abi, functionName, args_1, Chain, Account | undefined, chainOverride, accountOverride>>;
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>>;
1705
1715
  verifyHash: (args: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>;
1706
1716
  verifyMessage: (args: import("viem").VerifyMessageActionParameters) => Promise<import("viem").VerifyMessageActionReturnType>;
1707
1717
  verifySiweMessage: (args: {
@@ -1749,5 +1759,7 @@ export declare class PrivateKeyRpcClient implements RpcClient {
1749
1759
  executor?: 'self';
1750
1760
  }): Promise<import("viem").SignAuthorizationReturnType>;
1751
1761
  private assertRpcChainMatches;
1762
+ private toSendTransactionRequest;
1752
1763
  }
1764
+ export {};
1753
1765
  //# sourceMappingURL=private-key-rpc-client.d.ts.map