@defisaver/positions-sdk 2.1.136 → 2.1.137-audit-dev
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.
- package/cjs/config/contracts.d.ts +0 -938
- package/cjs/config/contracts.js +1 -8
- package/cjs/contracts.d.ts +3823 -27499
- package/cjs/contracts.js +2 -3
- package/cjs/helpers/index.d.ts +0 -1
- package/cjs/helpers/index.js +1 -2
- package/cjs/index.d.ts +1 -2
- package/cjs/index.js +1 -3
- package/cjs/markets/index.d.ts +0 -1
- package/cjs/markets/index.js +1 -3
- package/cjs/markets/morphoBlue/index.d.ts +4 -0
- package/cjs/markets/morphoBlue/index.js +36 -2
- package/cjs/portfolio/discovery.d.ts +1 -1
- package/cjs/portfolio/discovery.js +1 -1
- package/cjs/portfolio/index.js +0 -32
- package/cjs/savings/morphoVaults/index.js +19 -2
- package/cjs/services/viem.d.ts +918 -2679
- package/cjs/staking/staking.js +1 -2
- package/cjs/types/index.d.ts +0 -1
- package/cjs/types/index.js +0 -1
- package/cjs/types/morphoBlue.d.ts +2 -0
- package/cjs/types/morphoBlue.js +2 -0
- package/cjs/types/portfolio.d.ts +0 -4
- package/esm/config/contracts.d.ts +0 -938
- package/esm/config/contracts.js +0 -6
- package/esm/contracts.d.ts +3823 -27499
- package/esm/contracts.js +0 -1
- package/esm/helpers/index.d.ts +0 -1
- package/esm/helpers/index.js +0 -1
- package/esm/index.d.ts +1 -2
- package/esm/index.js +1 -2
- package/esm/markets/index.d.ts +0 -1
- package/esm/markets/index.js +0 -1
- package/esm/markets/morphoBlue/index.d.ts +4 -0
- package/esm/markets/morphoBlue/index.js +32 -0
- package/esm/portfolio/discovery.d.ts +1 -1
- package/esm/portfolio/discovery.js +1 -1
- package/esm/portfolio/index.js +1 -33
- package/esm/savings/morphoVaults/index.js +19 -2
- package/esm/services/viem.d.ts +916 -2667
- package/esm/staking/staking.js +1 -2
- package/esm/types/index.d.ts +0 -1
- package/esm/types/index.js +0 -1
- package/esm/types/morphoBlue.d.ts +2 -0
- package/esm/types/morphoBlue.js +2 -0
- package/esm/types/portfolio.d.ts +0 -4
- package/package.json +9 -2
- package/src/config/contracts.ts +0 -6
- package/src/contracts.ts +2 -3
- package/src/helpers/index.ts +0 -1
- package/src/index.ts +0 -2
- package/src/markets/index.ts +0 -1
- package/src/markets/morphoBlue/index.ts +32 -0
- package/src/portfolio/discovery.ts +1 -1
- package/src/portfolio/index.ts +0 -33
- package/src/savings/morphoVaults/index.ts +18 -2
- package/src/staking/staking.ts +1 -2
- package/src/types/index.ts +0 -1
- package/src/types/morphoBlue.ts +2 -0
- package/src/types/portfolio.ts +0 -4
- package/cjs/eulerV2/index.d.ts +0 -47
- package/cjs/eulerV2/index.js +0 -225
- package/cjs/helpers/eulerHelpers/index.d.ts +0 -22
- package/cjs/helpers/eulerHelpers/index.js +0 -231
- package/cjs/markets/euler/index.d.ts +0 -8
- package/cjs/markets/euler/index.js +0 -30
- package/cjs/types/euler.d.ts +0 -153
- package/cjs/types/euler.js +0 -14
- package/esm/eulerV2/index.d.ts +0 -47
- package/esm/eulerV2/index.js +0 -215
- package/esm/helpers/eulerHelpers/index.d.ts +0 -22
- package/esm/helpers/eulerHelpers/index.js +0 -218
- package/esm/markets/euler/index.d.ts +0 -8
- package/esm/markets/euler/index.js +0 -24
- package/esm/types/euler.d.ts +0 -153
- package/esm/types/euler.js +0 -11
- package/src/eulerV2/index.ts +0 -331
- package/src/helpers/eulerHelpers/index.ts +0 -232
- package/src/markets/euler/index.ts +0 -27
- package/src/types/euler.ts +0 -178
package/cjs/services/viem.d.ts
CHANGED
|
@@ -30,15 +30,27 @@ export declare const getViemChain: (network: NetworkNumber) => {
|
|
|
30
30
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
31
31
|
rpcUrls: {
|
|
32
32
|
readonly default: {
|
|
33
|
-
readonly http: readonly ["https://
|
|
33
|
+
readonly http: readonly ["https://ethereum.reth.rs/rpc"];
|
|
34
34
|
};
|
|
35
35
|
};
|
|
36
36
|
sourceId?: number | undefined | undefined;
|
|
37
|
+
supportsTransactionReplacementDetection?: boolean | undefined | undefined;
|
|
37
38
|
testnet?: boolean | undefined | undefined;
|
|
38
39
|
custom?: Record<string, unknown> | undefined;
|
|
40
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
39
41
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
40
42
|
formatters?: undefined;
|
|
43
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
44
|
+
client: import("viem").Client;
|
|
45
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
46
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
47
|
+
client: import("viem").Client;
|
|
48
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
49
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
50
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
51
|
+
}] | undefined;
|
|
41
52
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
53
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
42
54
|
} | {
|
|
43
55
|
blockExplorers: {
|
|
44
56
|
readonly default: {
|
|
@@ -107,13 +119,15 @@ export declare const getViemChain: (network: NetworkNumber) => {
|
|
|
107
119
|
};
|
|
108
120
|
};
|
|
109
121
|
sourceId: 1;
|
|
122
|
+
supportsTransactionReplacementDetection?: boolean | undefined | undefined;
|
|
110
123
|
testnet?: boolean | undefined | undefined;
|
|
111
124
|
custom?: Record<string, unknown> | undefined;
|
|
125
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
112
126
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
113
127
|
formatters: {
|
|
114
128
|
readonly block: {
|
|
115
129
|
exclude: [] | undefined;
|
|
116
|
-
format: (args: import("viem/chains").OpStackRpcBlock) => {
|
|
130
|
+
format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
|
|
117
131
|
baseFeePerGas: bigint | null;
|
|
118
132
|
blobGasUsed: bigint;
|
|
119
133
|
difficulty: bigint;
|
|
@@ -146,9 +160,10 @@ export declare const getViemChain: (network: NetworkNumber) => {
|
|
|
146
160
|
};
|
|
147
161
|
readonly transaction: {
|
|
148
162
|
exclude: [] | undefined;
|
|
149
|
-
format: (args: import("viem/chains").OpStackRpcTransaction) => ({
|
|
163
|
+
format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
|
|
150
164
|
blockHash: `0x${string}` | null;
|
|
151
165
|
blockNumber: bigint | null;
|
|
166
|
+
blockTimestamp?: bigint | undefined;
|
|
152
167
|
from: import("viem").Address;
|
|
153
168
|
gas: bigint;
|
|
154
169
|
hash: import("viem").Hash;
|
|
@@ -174,16 +189,17 @@ export declare const getViemChain: (network: NetworkNumber) => {
|
|
|
174
189
|
r: import("viem").Hex;
|
|
175
190
|
s: import("viem").Hex;
|
|
176
191
|
v: bigint;
|
|
177
|
-
value: bigint;
|
|
178
|
-
gas: bigint;
|
|
179
192
|
to: import("viem").Address | null;
|
|
180
193
|
from: import("viem").Address;
|
|
194
|
+
gas: bigint;
|
|
181
195
|
nonce: number;
|
|
196
|
+
value: bigint;
|
|
182
197
|
blockHash: `0x${string}` | null;
|
|
183
198
|
blockNumber: bigint | null;
|
|
184
|
-
|
|
199
|
+
blockTimestamp?: bigint | undefined;
|
|
185
200
|
hash: import("viem").Hash;
|
|
186
201
|
input: import("viem").Hex;
|
|
202
|
+
transactionIndex: number | null;
|
|
187
203
|
typeHex: import("viem").Hex | null;
|
|
188
204
|
accessList?: undefined | undefined;
|
|
189
205
|
authorizationList?: undefined | undefined;
|
|
@@ -201,6 +217,7 @@ export declare const getViemChain: (network: NetworkNumber) => {
|
|
|
201
217
|
} | {
|
|
202
218
|
blockHash: `0x${string}` | null;
|
|
203
219
|
blockNumber: bigint | null;
|
|
220
|
+
blockTimestamp?: bigint | undefined;
|
|
204
221
|
from: import("viem").Address;
|
|
205
222
|
gas: bigint;
|
|
206
223
|
hash: import("viem").Hash;
|
|
@@ -229,6 +246,7 @@ export declare const getViemChain: (network: NetworkNumber) => {
|
|
|
229
246
|
} | {
|
|
230
247
|
blockHash: `0x${string}` | null;
|
|
231
248
|
blockNumber: bigint | null;
|
|
249
|
+
blockTimestamp?: bigint | undefined;
|
|
232
250
|
from: import("viem").Address;
|
|
233
251
|
gas: bigint;
|
|
234
252
|
hash: import("viem").Hash;
|
|
@@ -257,6 +275,7 @@ export declare const getViemChain: (network: NetworkNumber) => {
|
|
|
257
275
|
} | {
|
|
258
276
|
blockHash: `0x${string}` | null;
|
|
259
277
|
blockNumber: bigint | null;
|
|
278
|
+
blockTimestamp?: bigint | undefined;
|
|
260
279
|
from: import("viem").Address;
|
|
261
280
|
gas: bigint;
|
|
262
281
|
hash: import("viem").Hash;
|
|
@@ -285,6 +304,7 @@ export declare const getViemChain: (network: NetworkNumber) => {
|
|
|
285
304
|
} | {
|
|
286
305
|
blockHash: `0x${string}` | null;
|
|
287
306
|
blockNumber: bigint | null;
|
|
307
|
+
blockTimestamp?: bigint | undefined;
|
|
288
308
|
from: import("viem").Address;
|
|
289
309
|
gas: bigint;
|
|
290
310
|
hash: import("viem").Hash;
|
|
@@ -315,11 +335,12 @@ export declare const getViemChain: (network: NetworkNumber) => {
|
|
|
315
335
|
};
|
|
316
336
|
readonly transactionReceipt: {
|
|
317
337
|
exclude: [] | undefined;
|
|
318
|
-
format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
|
|
338
|
+
format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
|
|
319
339
|
blobGasPrice?: bigint | undefined;
|
|
320
340
|
blobGasUsed?: bigint | undefined;
|
|
321
341
|
blockHash: import("viem").Hash;
|
|
322
342
|
blockNumber: bigint;
|
|
343
|
+
blockTimestamp?: bigint | undefined;
|
|
323
344
|
contractAddress: import("viem").Address | null | undefined;
|
|
324
345
|
cumulativeGasUsed: bigint;
|
|
325
346
|
effectiveGasPrice: bigint;
|
|
@@ -333,6 +354,8 @@ export declare const getViemChain: (network: NetworkNumber) => {
|
|
|
333
354
|
transactionHash: import("viem").Hash;
|
|
334
355
|
transactionIndex: number;
|
|
335
356
|
type: import("viem").TransactionType;
|
|
357
|
+
depositNonce?: bigint | undefined | undefined;
|
|
358
|
+
depositReceiptVersion?: number | undefined | undefined;
|
|
336
359
|
l1GasPrice: bigint | null;
|
|
337
360
|
l1GasUsed: bigint | null;
|
|
338
361
|
l1Fee: bigint | null;
|
|
@@ -341,9 +364,19 @@ export declare const getViemChain: (network: NetworkNumber) => {
|
|
|
341
364
|
type: "transactionReceipt";
|
|
342
365
|
};
|
|
343
366
|
};
|
|
367
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
368
|
+
client: import("viem").Client;
|
|
369
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
370
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
371
|
+
client: import("viem").Client;
|
|
372
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
373
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
374
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
375
|
+
}] | undefined;
|
|
344
376
|
serializers: {
|
|
345
377
|
readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
|
|
346
378
|
};
|
|
379
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
347
380
|
} | {
|
|
348
381
|
blockExplorers: {
|
|
349
382
|
readonly default: {
|
|
@@ -374,11 +407,23 @@ export declare const getViemChain: (network: NetworkNumber) => {
|
|
|
374
407
|
};
|
|
375
408
|
};
|
|
376
409
|
sourceId?: number | undefined | undefined;
|
|
410
|
+
supportsTransactionReplacementDetection?: boolean | undefined | undefined;
|
|
377
411
|
testnet?: boolean | undefined | undefined;
|
|
378
412
|
custom?: Record<string, unknown> | undefined;
|
|
413
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
379
414
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
380
415
|
formatters?: undefined;
|
|
416
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
417
|
+
client: import("viem").Client;
|
|
418
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
419
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
420
|
+
client: import("viem").Client;
|
|
421
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
422
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
423
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
424
|
+
}] | undefined;
|
|
381
425
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
426
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
382
427
|
} | {
|
|
383
428
|
blockExplorers: {
|
|
384
429
|
readonly default: {
|
|
@@ -449,13 +494,15 @@ export declare const getViemChain: (network: NetworkNumber) => {
|
|
|
449
494
|
};
|
|
450
495
|
};
|
|
451
496
|
sourceId: 1;
|
|
497
|
+
supportsTransactionReplacementDetection?: boolean | undefined | undefined;
|
|
452
498
|
testnet?: boolean | undefined | undefined;
|
|
453
499
|
custom?: Record<string, unknown> | undefined;
|
|
500
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
454
501
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
455
502
|
formatters: {
|
|
456
503
|
readonly block: {
|
|
457
504
|
exclude: [] | undefined;
|
|
458
|
-
format: (args: import("viem/chains").OpStackRpcBlock) => {
|
|
505
|
+
format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
|
|
459
506
|
baseFeePerGas: bigint | null;
|
|
460
507
|
blobGasUsed: bigint;
|
|
461
508
|
difficulty: bigint;
|
|
@@ -488,9 +535,10 @@ export declare const getViemChain: (network: NetworkNumber) => {
|
|
|
488
535
|
};
|
|
489
536
|
readonly transaction: {
|
|
490
537
|
exclude: [] | undefined;
|
|
491
|
-
format: (args: import("viem/chains").OpStackRpcTransaction) => ({
|
|
538
|
+
format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
|
|
492
539
|
blockHash: `0x${string}` | null;
|
|
493
540
|
blockNumber: bigint | null;
|
|
541
|
+
blockTimestamp?: bigint | undefined;
|
|
494
542
|
from: import("viem").Address;
|
|
495
543
|
gas: bigint;
|
|
496
544
|
hash: import("viem").Hash;
|
|
@@ -516,16 +564,17 @@ export declare const getViemChain: (network: NetworkNumber) => {
|
|
|
516
564
|
r: import("viem").Hex;
|
|
517
565
|
s: import("viem").Hex;
|
|
518
566
|
v: bigint;
|
|
519
|
-
value: bigint;
|
|
520
|
-
gas: bigint;
|
|
521
567
|
to: import("viem").Address | null;
|
|
522
568
|
from: import("viem").Address;
|
|
569
|
+
gas: bigint;
|
|
523
570
|
nonce: number;
|
|
571
|
+
value: bigint;
|
|
524
572
|
blockHash: `0x${string}` | null;
|
|
525
573
|
blockNumber: bigint | null;
|
|
526
|
-
|
|
574
|
+
blockTimestamp?: bigint | undefined;
|
|
527
575
|
hash: import("viem").Hash;
|
|
528
576
|
input: import("viem").Hex;
|
|
577
|
+
transactionIndex: number | null;
|
|
529
578
|
typeHex: import("viem").Hex | null;
|
|
530
579
|
accessList?: undefined | undefined;
|
|
531
580
|
authorizationList?: undefined | undefined;
|
|
@@ -543,6 +592,7 @@ export declare const getViemChain: (network: NetworkNumber) => {
|
|
|
543
592
|
} | {
|
|
544
593
|
blockHash: `0x${string}` | null;
|
|
545
594
|
blockNumber: bigint | null;
|
|
595
|
+
blockTimestamp?: bigint | undefined;
|
|
546
596
|
from: import("viem").Address;
|
|
547
597
|
gas: bigint;
|
|
548
598
|
hash: import("viem").Hash;
|
|
@@ -571,6 +621,7 @@ export declare const getViemChain: (network: NetworkNumber) => {
|
|
|
571
621
|
} | {
|
|
572
622
|
blockHash: `0x${string}` | null;
|
|
573
623
|
blockNumber: bigint | null;
|
|
624
|
+
blockTimestamp?: bigint | undefined;
|
|
574
625
|
from: import("viem").Address;
|
|
575
626
|
gas: bigint;
|
|
576
627
|
hash: import("viem").Hash;
|
|
@@ -599,6 +650,7 @@ export declare const getViemChain: (network: NetworkNumber) => {
|
|
|
599
650
|
} | {
|
|
600
651
|
blockHash: `0x${string}` | null;
|
|
601
652
|
blockNumber: bigint | null;
|
|
653
|
+
blockTimestamp?: bigint | undefined;
|
|
602
654
|
from: import("viem").Address;
|
|
603
655
|
gas: bigint;
|
|
604
656
|
hash: import("viem").Hash;
|
|
@@ -627,6 +679,7 @@ export declare const getViemChain: (network: NetworkNumber) => {
|
|
|
627
679
|
} | {
|
|
628
680
|
blockHash: `0x${string}` | null;
|
|
629
681
|
blockNumber: bigint | null;
|
|
682
|
+
blockTimestamp?: bigint | undefined;
|
|
630
683
|
from: import("viem").Address;
|
|
631
684
|
gas: bigint;
|
|
632
685
|
hash: import("viem").Hash;
|
|
@@ -657,11 +710,12 @@ export declare const getViemChain: (network: NetworkNumber) => {
|
|
|
657
710
|
};
|
|
658
711
|
readonly transactionReceipt: {
|
|
659
712
|
exclude: [] | undefined;
|
|
660
|
-
format: (args: import("viem/chains").OpStackRpcTransactionReceipt) => {
|
|
713
|
+
format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
|
|
661
714
|
blobGasPrice?: bigint | undefined;
|
|
662
715
|
blobGasUsed?: bigint | undefined;
|
|
663
716
|
blockHash: import("viem").Hash;
|
|
664
717
|
blockNumber: bigint;
|
|
718
|
+
blockTimestamp?: bigint | undefined;
|
|
665
719
|
contractAddress: import("viem").Address | null | undefined;
|
|
666
720
|
cumulativeGasUsed: bigint;
|
|
667
721
|
effectiveGasPrice: bigint;
|
|
@@ -675,6 +729,8 @@ export declare const getViemChain: (network: NetworkNumber) => {
|
|
|
675
729
|
transactionHash: import("viem").Hash;
|
|
676
730
|
transactionIndex: number;
|
|
677
731
|
type: import("viem").TransactionType;
|
|
732
|
+
depositNonce?: bigint | undefined | undefined;
|
|
733
|
+
depositReceiptVersion?: number | undefined | undefined;
|
|
678
734
|
l1GasPrice: bigint | null;
|
|
679
735
|
l1GasUsed: bigint | null;
|
|
680
736
|
l1Fee: bigint | null;
|
|
@@ -683,9 +739,19 @@ export declare const getViemChain: (network: NetworkNumber) => {
|
|
|
683
739
|
type: "transactionReceipt";
|
|
684
740
|
};
|
|
685
741
|
};
|
|
742
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
743
|
+
client: import("viem").Client;
|
|
744
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
745
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
746
|
+
client: import("viem").Client;
|
|
747
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
748
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
749
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
750
|
+
}] | undefined;
|
|
686
751
|
serializers: {
|
|
687
752
|
readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
|
|
688
753
|
};
|
|
754
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
689
755
|
} | {
|
|
690
756
|
blockExplorers: {
|
|
691
757
|
readonly default: {
|
|
@@ -694,7 +760,7 @@ export declare const getViemChain: (network: NetworkNumber) => {
|
|
|
694
760
|
readonly apiUrl: "https://api.lineascan.build/api";
|
|
695
761
|
};
|
|
696
762
|
};
|
|
697
|
-
blockTime
|
|
763
|
+
blockTime: 2000;
|
|
698
764
|
contracts: {
|
|
699
765
|
readonly multicall3: {
|
|
700
766
|
readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
|
|
@@ -725,14 +791,26 @@ export declare const getViemChain: (network: NetworkNumber) => {
|
|
|
725
791
|
};
|
|
726
792
|
};
|
|
727
793
|
sourceId?: number | undefined | undefined;
|
|
794
|
+
supportsTransactionReplacementDetection?: boolean | undefined | undefined;
|
|
728
795
|
testnet: false;
|
|
729
796
|
custom?: Record<string, unknown> | undefined;
|
|
797
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
730
798
|
fees: {
|
|
731
799
|
readonly estimateFeesPerGas: ({ client, multiply, request, type, }: Parameters<import("viem").ChainEstimateFeesPerGasFn>[0]) => ReturnType<import("viem").ChainEstimateFeesPerGasFn>;
|
|
732
800
|
readonly maxPriorityFeePerGas: ({ block, client, request }: import("viem").ChainFeesFnParameters<import("viem").ChainFormatters | undefined>) => Promise<bigint | null>;
|
|
733
801
|
};
|
|
734
802
|
formatters?: undefined;
|
|
803
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
804
|
+
client: import("viem").Client;
|
|
805
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
806
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
807
|
+
client: import("viem").Client;
|
|
808
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
809
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
810
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
811
|
+
}] | undefined;
|
|
735
812
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
813
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
736
814
|
} | {
|
|
737
815
|
blockExplorers: {
|
|
738
816
|
readonly default: {
|
|
@@ -740,7 +818,7 @@ export declare const getViemChain: (network: NetworkNumber) => {
|
|
|
740
818
|
readonly url: "https://plasmascan.to";
|
|
741
819
|
};
|
|
742
820
|
};
|
|
743
|
-
blockTime
|
|
821
|
+
blockTime: 1000;
|
|
744
822
|
contracts: {
|
|
745
823
|
readonly multicall3: {
|
|
746
824
|
readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
|
|
@@ -762,11 +840,23 @@ export declare const getViemChain: (network: NetworkNumber) => {
|
|
|
762
840
|
};
|
|
763
841
|
};
|
|
764
842
|
sourceId?: number | undefined | undefined;
|
|
843
|
+
supportsTransactionReplacementDetection?: boolean | undefined | undefined;
|
|
765
844
|
testnet?: boolean | undefined | undefined;
|
|
766
845
|
custom?: Record<string, unknown> | undefined;
|
|
846
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
767
847
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
768
848
|
formatters?: undefined;
|
|
849
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
850
|
+
client: import("viem").Client;
|
|
851
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
852
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
853
|
+
client: import("viem").Client;
|
|
854
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
855
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
856
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
857
|
+
}] | undefined;
|
|
769
858
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
859
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
770
860
|
};
|
|
771
861
|
export declare const getViemProvider: (provider: EthereumProvider, network: NetworkNumber, options?: any) => {
|
|
772
862
|
account: undefined;
|
|
@@ -775,14 +865,16 @@ export declare const getViemProvider: (provider: EthereumProvider, network: Netw
|
|
|
775
865
|
} | undefined;
|
|
776
866
|
cacheTime: number;
|
|
777
867
|
ccipRead?: false | {
|
|
778
|
-
request?: (parameters: import("viem").CcipRequestParameters) => Promise
|
|
868
|
+
request?: (parameters: import("viem").CcipRequestParameters) => Promise<import("viem/_types/utils/ccip").CcipRequestReturnType>;
|
|
779
869
|
} | undefined;
|
|
780
870
|
chain: undefined;
|
|
871
|
+
dataSuffix?: import("viem").DataSuffix | undefined;
|
|
781
872
|
experimental_blockTag?: import("viem").BlockTag | undefined;
|
|
782
873
|
key: string;
|
|
783
874
|
name: string;
|
|
784
875
|
pollingInterval: number;
|
|
785
876
|
request: import("viem").EIP1193RequestFn<import("viem").PublicRpcSchema>;
|
|
877
|
+
tokens: undefined;
|
|
786
878
|
transport: import("viem").TransportConfig<string, import("viem").EIP1193RequestFn> & Record<string, any>;
|
|
787
879
|
type: string;
|
|
788
880
|
uid: string;
|
|
@@ -797,6 +889,7 @@ export declare const getViemProvider: (provider: EthereumProvider, network: Netw
|
|
|
797
889
|
createPendingTransactionFilter: () => Promise<import("viem").CreatePendingTransactionFilterReturnType>;
|
|
798
890
|
estimateContractGas: <chain extends import("viem").Chain | undefined, const abi extends 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>;
|
|
799
891
|
estimateGas: (args: import("viem").EstimateGasParameters<undefined>) => Promise<import("viem").EstimateGasReturnType>;
|
|
892
|
+
fillTransaction: <chainOverride extends import("viem").Chain | undefined = undefined, accountOverride extends import("viem").Account | import("viem").Address | undefined = undefined>(args: import("viem").FillTransactionParameters<undefined, undefined, chainOverride, accountOverride>) => Promise<import("viem").FillTransactionReturnType<undefined, chainOverride>>;
|
|
800
893
|
getBalance: (args: import("viem").GetBalanceParameters) => Promise<import("viem").GetBalanceReturnType>;
|
|
801
894
|
getBlobBaseFee: () => Promise<import("viem").GetBlobBaseFeeReturnType>;
|
|
802
895
|
getBlock: <includeTransactions extends boolean = false, blockTag extends import("viem").BlockTag = "latest">(args?: import("viem").GetBlockParameters<includeTransactions, blockTag> | undefined) => Promise<{
|
|
@@ -836,20 +929,21 @@ export declare const getViemProvider: (provider: EthereumProvider, network: Netw
|
|
|
836
929
|
type: "legacy";
|
|
837
930
|
gas: bigint;
|
|
838
931
|
nonce: number;
|
|
839
|
-
|
|
932
|
+
blobVersionedHashes?: undefined | undefined;
|
|
840
933
|
gasPrice: bigint;
|
|
934
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
841
935
|
maxFeePerGas?: undefined | undefined;
|
|
842
936
|
maxPriorityFeePerGas?: undefined | undefined;
|
|
843
937
|
accessList?: undefined | undefined;
|
|
844
|
-
blobVersionedHashes?: undefined | undefined;
|
|
845
938
|
authorizationList?: undefined | undefined;
|
|
846
939
|
hash: import("viem").Hash;
|
|
847
940
|
yParity?: undefined | undefined;
|
|
941
|
+
chainId?: number | undefined;
|
|
942
|
+
blockTimestamp?: bigint | undefined;
|
|
848
943
|
input: import("viem").Hex;
|
|
849
944
|
typeHex: import("viem").Hex | null;
|
|
850
|
-
|
|
851
|
-
blockNumber: (blockTag extends "pending" ? true : false) extends infer
|
|
852
|
-
blockHash: (blockTag extends "pending" ? true : false) extends infer T_1 ? T_1 extends (blockTag extends "pending" ? true : false) ? T_1 extends true ? null : `0x${string}` : never : never;
|
|
945
|
+
blockHash: (blockTag extends "pending" ? true : false) extends infer T ? T extends (blockTag extends "pending" ? true : false) ? T extends true ? null : `0x${string}` : never : never;
|
|
946
|
+
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;
|
|
853
947
|
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;
|
|
854
948
|
} | {
|
|
855
949
|
to: import("viem").Address | null;
|
|
@@ -861,20 +955,21 @@ export declare const getViemProvider: (provider: EthereumProvider, network: Netw
|
|
|
861
955
|
type: "eip2930";
|
|
862
956
|
gas: bigint;
|
|
863
957
|
nonce: number;
|
|
864
|
-
|
|
958
|
+
blobVersionedHashes?: undefined | undefined;
|
|
865
959
|
gasPrice: bigint;
|
|
960
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
866
961
|
maxFeePerGas?: undefined | undefined;
|
|
867
962
|
maxPriorityFeePerGas?: undefined | undefined;
|
|
868
963
|
accessList: import("viem").AccessList;
|
|
869
|
-
blobVersionedHashes?: undefined | undefined;
|
|
870
964
|
authorizationList?: undefined | undefined;
|
|
871
965
|
hash: import("viem").Hash;
|
|
872
966
|
yParity: number;
|
|
967
|
+
chainId: number;
|
|
968
|
+
blockTimestamp?: bigint | undefined;
|
|
873
969
|
input: import("viem").Hex;
|
|
874
970
|
typeHex: import("viem").Hex | null;
|
|
875
|
-
|
|
876
|
-
blockNumber: (blockTag extends "pending" ? true : false) extends infer
|
|
877
|
-
blockHash: (blockTag extends "pending" ? true : false) extends infer T_4 ? T_4 extends (blockTag extends "pending" ? true : false) ? T_4 extends true ? null : `0x${string}` : never : never;
|
|
971
|
+
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;
|
|
972
|
+
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;
|
|
878
973
|
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;
|
|
879
974
|
} | {
|
|
880
975
|
to: import("viem").Address | null;
|
|
@@ -886,20 +981,21 @@ export declare const getViemProvider: (provider: EthereumProvider, network: Netw
|
|
|
886
981
|
type: "eip1559";
|
|
887
982
|
gas: bigint;
|
|
888
983
|
nonce: number;
|
|
889
|
-
|
|
984
|
+
blobVersionedHashes?: undefined | undefined;
|
|
890
985
|
gasPrice?: undefined | undefined;
|
|
986
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
891
987
|
maxFeePerGas: bigint;
|
|
892
988
|
maxPriorityFeePerGas: bigint;
|
|
893
989
|
accessList: import("viem").AccessList;
|
|
894
|
-
blobVersionedHashes?: undefined | undefined;
|
|
895
990
|
authorizationList?: undefined | undefined;
|
|
896
991
|
hash: import("viem").Hash;
|
|
897
992
|
yParity: number;
|
|
993
|
+
chainId: number;
|
|
994
|
+
blockTimestamp?: bigint | undefined;
|
|
898
995
|
input: import("viem").Hex;
|
|
899
996
|
typeHex: import("viem").Hex | null;
|
|
900
|
-
|
|
901
|
-
blockNumber: (blockTag extends "pending" ? true : false) extends infer
|
|
902
|
-
blockHash: (blockTag extends "pending" ? true : false) extends infer T_7 ? T_7 extends (blockTag extends "pending" ? true : false) ? T_7 extends true ? null : `0x${string}` : never : never;
|
|
997
|
+
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;
|
|
998
|
+
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;
|
|
903
999
|
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;
|
|
904
1000
|
} | {
|
|
905
1001
|
to: import("viem").Address | null;
|
|
@@ -911,20 +1007,21 @@ export declare const getViemProvider: (provider: EthereumProvider, network: Netw
|
|
|
911
1007
|
type: "eip4844";
|
|
912
1008
|
gas: bigint;
|
|
913
1009
|
nonce: number;
|
|
914
|
-
|
|
1010
|
+
blobVersionedHashes: readonly import("viem").Hex[];
|
|
915
1011
|
gasPrice?: undefined | undefined;
|
|
1012
|
+
maxFeePerBlobGas: bigint;
|
|
916
1013
|
maxFeePerGas: bigint;
|
|
917
1014
|
maxPriorityFeePerGas: bigint;
|
|
918
1015
|
accessList: import("viem").AccessList;
|
|
919
|
-
blobVersionedHashes: readonly import("viem").Hex[];
|
|
920
1016
|
authorizationList?: undefined | undefined;
|
|
921
1017
|
hash: import("viem").Hash;
|
|
922
1018
|
yParity: number;
|
|
1019
|
+
chainId: number;
|
|
1020
|
+
blockTimestamp?: bigint | undefined;
|
|
923
1021
|
input: import("viem").Hex;
|
|
924
1022
|
typeHex: import("viem").Hex | null;
|
|
925
|
-
|
|
926
|
-
blockNumber: (blockTag extends "pending" ? true : false) extends infer
|
|
927
|
-
blockHash: (blockTag extends "pending" ? true : false) extends infer T_10 ? T_10 extends (blockTag extends "pending" ? true : false) ? T_10 extends true ? null : `0x${string}` : never : never;
|
|
1023
|
+
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;
|
|
1024
|
+
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;
|
|
928
1025
|
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;
|
|
929
1026
|
} | {
|
|
930
1027
|
to: import("viem").Address | null;
|
|
@@ -936,29 +1033,32 @@ export declare const getViemProvider: (provider: EthereumProvider, network: Netw
|
|
|
936
1033
|
type: "eip7702";
|
|
937
1034
|
gas: bigint;
|
|
938
1035
|
nonce: number;
|
|
939
|
-
|
|
1036
|
+
blobVersionedHashes?: undefined | undefined;
|
|
940
1037
|
gasPrice?: undefined | undefined;
|
|
1038
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
941
1039
|
maxFeePerGas: bigint;
|
|
942
1040
|
maxPriorityFeePerGas: bigint;
|
|
943
1041
|
accessList: import("viem").AccessList;
|
|
944
|
-
blobVersionedHashes?: undefined | undefined;
|
|
945
1042
|
authorizationList: import("viem").SignedAuthorizationList;
|
|
946
1043
|
hash: import("viem").Hash;
|
|
947
1044
|
yParity: number;
|
|
1045
|
+
chainId: number;
|
|
1046
|
+
blockTimestamp?: bigint | undefined;
|
|
948
1047
|
input: import("viem").Hex;
|
|
949
1048
|
typeHex: import("viem").Hex | null;
|
|
950
|
-
|
|
951
|
-
blockNumber: (blockTag extends "pending" ? true : false) extends infer
|
|
952
|
-
blockHash: (blockTag extends "pending" ? true : false) extends infer T_13 ? T_13 extends (blockTag extends "pending" ? true : false) ? T_13 extends true ? null : `0x${string}` : never : never;
|
|
1049
|
+
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;
|
|
1050
|
+
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;
|
|
953
1051
|
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;
|
|
954
1052
|
})[] : `0x${string}`[];
|
|
955
1053
|
}>;
|
|
1054
|
+
getBlockReceipts: (args?: import("viem").GetBlockReceiptsParameters | undefined) => Promise<import("viem").GetBlockReceiptsReturnType<undefined>>;
|
|
956
1055
|
getBlockNumber: (args?: import("viem").GetBlockNumberParameters | undefined) => Promise<import("viem").GetBlockNumberReturnType>;
|
|
957
1056
|
getBlockTransactionCount: (args?: import("viem").GetBlockTransactionCountParameters | undefined) => Promise<import("viem").GetBlockTransactionCountReturnType>;
|
|
958
1057
|
getBytecode: (args: import("viem").GetBytecodeParameters) => Promise<import("viem").GetBytecodeReturnType>;
|
|
959
1058
|
getChainId: () => Promise<import("viem").GetChainIdReturnType>;
|
|
960
1059
|
getCode: (args: import("viem").GetBytecodeParameters) => Promise<import("viem").GetBytecodeReturnType>;
|
|
961
1060
|
getContractEvents: <const abi extends 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>>;
|
|
1061
|
+
getDelegation: (args: import("viem").GetDelegationParameters) => Promise<import("viem").GetDelegationReturnType>;
|
|
962
1062
|
getEip712Domain: (args: import("viem").GetEip712DomainParameters) => Promise<import("viem").GetEip712DomainReturnType>;
|
|
963
1063
|
getEnsAddress: (args: import("viem").GetEnsAddressParameters) => Promise<import("viem").GetEnsAddressReturnType>;
|
|
964
1064
|
getEnsAvatar: (args: import("viem").GetEnsAvatarParameters) => Promise<import("viem").GetEnsAvatarReturnType>;
|
|
@@ -975,6 +1075,7 @@ export declare const getViemProvider: (provider: EthereumProvider, network: Netw
|
|
|
975
1075
|
estimateMaxPriorityFeePerGas: <chainOverride extends import("viem").Chain | undefined = undefined>(args?: {
|
|
976
1076
|
chain: chainOverride | null;
|
|
977
1077
|
} | undefined) => Promise<import("viem").EstimateMaxPriorityFeePerGasReturnType>;
|
|
1078
|
+
getRawTransaction: (args: import("viem").GetRawTransactionParameters) => Promise<import("viem").GetRawTransactionReturnType>;
|
|
978
1079
|
getStorageAt: (args: import("viem").GetStorageAtParameters) => Promise<import("viem").GetStorageAtReturnType>;
|
|
979
1080
|
getTransaction: <blockTag extends import("viem").BlockTag = "latest">(args: import("viem").GetTransactionParameters<blockTag>) => Promise<{
|
|
980
1081
|
to: import("viem").Address | null;
|
|
@@ -986,20 +1087,21 @@ export declare const getViemProvider: (provider: EthereumProvider, network: Netw
|
|
|
986
1087
|
type: "legacy";
|
|
987
1088
|
gas: bigint;
|
|
988
1089
|
nonce: number;
|
|
989
|
-
|
|
1090
|
+
blobVersionedHashes?: undefined | undefined;
|
|
990
1091
|
gasPrice: bigint;
|
|
1092
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
991
1093
|
maxFeePerGas?: undefined | undefined;
|
|
992
1094
|
maxPriorityFeePerGas?: undefined | undefined;
|
|
993
1095
|
accessList?: undefined | undefined;
|
|
994
|
-
blobVersionedHashes?: undefined | undefined;
|
|
995
1096
|
authorizationList?: undefined | undefined;
|
|
996
1097
|
hash: import("viem").Hash;
|
|
997
1098
|
yParity?: undefined | undefined;
|
|
1099
|
+
chainId?: number | undefined;
|
|
1100
|
+
blockTimestamp?: bigint | undefined;
|
|
998
1101
|
input: import("viem").Hex;
|
|
999
1102
|
typeHex: import("viem").Hex | null;
|
|
1000
|
-
|
|
1001
|
-
blockNumber: (blockTag extends "pending" ? true : false) extends infer
|
|
1002
|
-
blockHash: (blockTag extends "pending" ? true : false) extends infer T_1 ? T_1 extends (blockTag extends "pending" ? true : false) ? T_1 extends true ? null : `0x${string}` : never : never;
|
|
1103
|
+
blockHash: (blockTag extends "pending" ? true : false) extends infer T ? T extends (blockTag extends "pending" ? true : false) ? T extends true ? null : `0x${string}` : never : never;
|
|
1104
|
+
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;
|
|
1003
1105
|
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;
|
|
1004
1106
|
} | {
|
|
1005
1107
|
to: import("viem").Address | null;
|
|
@@ -1011,20 +1113,21 @@ export declare const getViemProvider: (provider: EthereumProvider, network: Netw
|
|
|
1011
1113
|
type: "eip2930";
|
|
1012
1114
|
gas: bigint;
|
|
1013
1115
|
nonce: number;
|
|
1014
|
-
|
|
1116
|
+
blobVersionedHashes?: undefined | undefined;
|
|
1015
1117
|
gasPrice: bigint;
|
|
1118
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
1016
1119
|
maxFeePerGas?: undefined | undefined;
|
|
1017
1120
|
maxPriorityFeePerGas?: undefined | undefined;
|
|
1018
1121
|
accessList: import("viem").AccessList;
|
|
1019
|
-
blobVersionedHashes?: undefined | undefined;
|
|
1020
1122
|
authorizationList?: undefined | undefined;
|
|
1021
1123
|
hash: import("viem").Hash;
|
|
1022
1124
|
yParity: number;
|
|
1125
|
+
chainId: number;
|
|
1126
|
+
blockTimestamp?: bigint | undefined;
|
|
1023
1127
|
input: import("viem").Hex;
|
|
1024
1128
|
typeHex: import("viem").Hex | null;
|
|
1025
|
-
|
|
1026
|
-
blockNumber: (blockTag extends "pending" ? true : false) extends infer
|
|
1027
|
-
blockHash: (blockTag extends "pending" ? true : false) extends infer T_4 ? T_4 extends (blockTag extends "pending" ? true : false) ? T_4 extends true ? null : `0x${string}` : never : never;
|
|
1129
|
+
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;
|
|
1130
|
+
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;
|
|
1028
1131
|
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;
|
|
1029
1132
|
} | {
|
|
1030
1133
|
to: import("viem").Address | null;
|
|
@@ -1036,20 +1139,21 @@ export declare const getViemProvider: (provider: EthereumProvider, network: Netw
|
|
|
1036
1139
|
type: "eip1559";
|
|
1037
1140
|
gas: bigint;
|
|
1038
1141
|
nonce: number;
|
|
1039
|
-
|
|
1142
|
+
blobVersionedHashes?: undefined | undefined;
|
|
1040
1143
|
gasPrice?: undefined | undefined;
|
|
1144
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
1041
1145
|
maxFeePerGas: bigint;
|
|
1042
1146
|
maxPriorityFeePerGas: bigint;
|
|
1043
1147
|
accessList: import("viem").AccessList;
|
|
1044
|
-
blobVersionedHashes?: undefined | undefined;
|
|
1045
1148
|
authorizationList?: undefined | undefined;
|
|
1046
1149
|
hash: import("viem").Hash;
|
|
1047
1150
|
yParity: number;
|
|
1151
|
+
chainId: number;
|
|
1152
|
+
blockTimestamp?: bigint | undefined;
|
|
1048
1153
|
input: import("viem").Hex;
|
|
1049
1154
|
typeHex: import("viem").Hex | null;
|
|
1050
|
-
|
|
1051
|
-
blockNumber: (blockTag extends "pending" ? true : false) extends infer
|
|
1052
|
-
blockHash: (blockTag extends "pending" ? true : false) extends infer T_7 ? T_7 extends (blockTag extends "pending" ? true : false) ? T_7 extends true ? null : `0x${string}` : never : never;
|
|
1155
|
+
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;
|
|
1156
|
+
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;
|
|
1053
1157
|
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;
|
|
1054
1158
|
} | {
|
|
1055
1159
|
to: import("viem").Address | null;
|
|
@@ -1061,20 +1165,21 @@ export declare const getViemProvider: (provider: EthereumProvider, network: Netw
|
|
|
1061
1165
|
type: "eip4844";
|
|
1062
1166
|
gas: bigint;
|
|
1063
1167
|
nonce: number;
|
|
1064
|
-
|
|
1168
|
+
blobVersionedHashes: readonly import("viem").Hex[];
|
|
1065
1169
|
gasPrice?: undefined | undefined;
|
|
1170
|
+
maxFeePerBlobGas: bigint;
|
|
1066
1171
|
maxFeePerGas: bigint;
|
|
1067
1172
|
maxPriorityFeePerGas: bigint;
|
|
1068
1173
|
accessList: import("viem").AccessList;
|
|
1069
|
-
blobVersionedHashes: readonly import("viem").Hex[];
|
|
1070
1174
|
authorizationList?: undefined | undefined;
|
|
1071
1175
|
hash: import("viem").Hash;
|
|
1072
1176
|
yParity: number;
|
|
1177
|
+
chainId: number;
|
|
1178
|
+
blockTimestamp?: bigint | undefined;
|
|
1073
1179
|
input: import("viem").Hex;
|
|
1074
1180
|
typeHex: import("viem").Hex | null;
|
|
1075
|
-
|
|
1076
|
-
blockNumber: (blockTag extends "pending" ? true : false) extends infer
|
|
1077
|
-
blockHash: (blockTag extends "pending" ? true : false) extends infer T_10 ? T_10 extends (blockTag extends "pending" ? true : false) ? T_10 extends true ? null : `0x${string}` : never : never;
|
|
1181
|
+
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;
|
|
1182
|
+
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;
|
|
1078
1183
|
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;
|
|
1079
1184
|
} | {
|
|
1080
1185
|
to: import("viem").Address | null;
|
|
@@ -1086,37 +1191,388 @@ export declare const getViemProvider: (provider: EthereumProvider, network: Netw
|
|
|
1086
1191
|
type: "eip7702";
|
|
1087
1192
|
gas: bigint;
|
|
1088
1193
|
nonce: number;
|
|
1089
|
-
|
|
1194
|
+
blobVersionedHashes?: undefined | undefined;
|
|
1090
1195
|
gasPrice?: undefined | undefined;
|
|
1196
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
1091
1197
|
maxFeePerGas: bigint;
|
|
1092
1198
|
maxPriorityFeePerGas: bigint;
|
|
1093
1199
|
accessList: import("viem").AccessList;
|
|
1094
|
-
blobVersionedHashes?: undefined | undefined;
|
|
1095
1200
|
authorizationList: import("viem").SignedAuthorizationList;
|
|
1096
1201
|
hash: import("viem").Hash;
|
|
1097
1202
|
yParity: number;
|
|
1203
|
+
chainId: number;
|
|
1204
|
+
blockTimestamp?: bigint | undefined;
|
|
1098
1205
|
input: import("viem").Hex;
|
|
1099
1206
|
typeHex: import("viem").Hex | null;
|
|
1100
|
-
|
|
1101
|
-
blockNumber: (blockTag extends "pending" ? true : false) extends infer
|
|
1102
|
-
blockHash: (blockTag extends "pending" ? true : false) extends infer T_13 ? T_13 extends (blockTag extends "pending" ? true : false) ? T_13 extends true ? null : `0x${string}` : never : never;
|
|
1207
|
+
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;
|
|
1208
|
+
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;
|
|
1103
1209
|
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;
|
|
1104
1210
|
}>;
|
|
1105
1211
|
getTransactionConfirmations: (args: import("viem").GetTransactionConfirmationsParameters<undefined>) => Promise<import("viem").GetTransactionConfirmationsReturnType>;
|
|
1106
1212
|
getTransactionCount: (args: import("viem").GetTransactionCountParameters) => Promise<import("viem").GetTransactionCountReturnType>;
|
|
1107
1213
|
getTransactionReceipt: (args: import("viem").GetTransactionReceiptParameters) => Promise<import("viem").TransactionReceipt>;
|
|
1108
1214
|
multicall: <const contracts extends readonly unknown[], allowFailure extends boolean = true>(args: import("viem").MulticallParameters<contracts, allowFailure>) => Promise<import("viem").MulticallReturnType<contracts, allowFailure>>;
|
|
1109
|
-
prepareTransactionRequest: <const request extends import("viem").PrepareTransactionRequestRequest<undefined, chainOverride>, chainOverride extends import("viem").Chain | undefined = undefined, accountOverride extends import("viem").Account | import("viem").Address | undefined = undefined>(args: import("viem").PrepareTransactionRequestParameters<undefined,
|
|
1215
|
+
prepareTransactionRequest: <const request extends import("viem").PrepareTransactionRequestRequest<undefined, chainOverride>, chainOverride extends import("viem").Chain | undefined = undefined, accountOverride extends import("viem").Account | import("viem").Address | undefined = undefined>(args: import("viem").PrepareTransactionRequestParameters<undefined, undefined, chainOverride, accountOverride, request>) => Promise<import("viem").UnionRequiredBy<Extract<import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<undefined, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> & (import("viem").DeriveChain<undefined, chainOverride> extends infer T_1 ? T_1 extends import("viem").DeriveChain<undefined, chainOverride> ? T_1 extends import("viem").Chain ? {
|
|
1110
1216
|
chain: T_1;
|
|
1111
1217
|
} : {
|
|
1112
1218
|
chain?: undefined;
|
|
1113
|
-
} : never : never) & (import("viem").DeriveAccount<
|
|
1219
|
+
} : never : never) & (import("viem").DeriveAccount<undefined, accountOverride> extends infer T_2 ? T_2 extends import("viem").DeriveAccount<undefined, accountOverride> ? T_2 extends import("viem").Account ? {
|
|
1114
1220
|
account: T_2;
|
|
1115
1221
|
from: import("viem").Address;
|
|
1116
1222
|
} : {
|
|
1117
1223
|
account?: undefined;
|
|
1118
1224
|
from?: undefined;
|
|
1119
|
-
} : never : never), import("viem").IsNever<(
|
|
1225
|
+
} : never : never), import("viem").IsNever<import("viem").ExtractFormattedTransactionRequest<import("viem").DeriveChain<undefined, chainOverride>, {
|
|
1226
|
+
type?: ((request["type"] extends string ? request["type"] : import("viem").IsNever<import("viem").IsNever<Extract<import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<undefined, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> extends infer T_3 ? T_3 extends import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<undefined, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> ? T_3 extends object ? request extends import("viem").ExactPartial<T_3> ? T_3 extends {
|
|
1227
|
+
type?: infer type | undefined;
|
|
1228
|
+
} ? Extract<type, string> : never : never : never : never : never, NonNullable<"legacy" | "eip2930" | "eip1559" | "eip4844" | "eip7702" | undefined>>> extends true ? Exclude<import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<undefined, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> extends infer T_4 ? T_4 extends import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<undefined, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> ? T_4 extends object ? request extends import("viem").ExactPartial<T_4> ? T_4 extends {
|
|
1229
|
+
type?: infer type | undefined;
|
|
1230
|
+
} ? Extract<type, string> : never : never : never : never : never, NonNullable<"legacy" | "eip2930" | "eip1559" | "eip4844" | "eip7702" | undefined>> : never> extends false ? import("viem").IsNever<Extract<import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<undefined, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> extends infer T_5 ? T_5 extends import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<undefined, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> ? T_5 extends object ? request extends import("viem").ExactPartial<T_5> ? T_5 extends {
|
|
1231
|
+
type?: infer type | undefined;
|
|
1232
|
+
} ? Extract<type, string> : never : never : never : never : never, NonNullable<"legacy" | "eip2930" | "eip1559" | "eip4844" | "eip7702" | undefined>>> extends true ? Exclude<import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<undefined, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> extends infer T_6 ? T_6 extends import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<undefined, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> ? T_6 extends object ? request extends import("viem").ExactPartial<T_6> ? T_6 extends {
|
|
1233
|
+
type?: infer type | undefined;
|
|
1234
|
+
} ? Extract<type, string> : never : never : never : never : never, NonNullable<"legacy" | "eip2930" | "eip1559" | "eip4844" | "eip7702" | undefined>> : never : request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
|
|
1235
|
+
accessList?: undefined | undefined;
|
|
1236
|
+
authorizationList?: undefined | undefined;
|
|
1237
|
+
blobs?: undefined | undefined;
|
|
1238
|
+
blobVersionedHashes?: undefined | undefined;
|
|
1239
|
+
gasPrice?: bigint | undefined;
|
|
1240
|
+
sidecars?: undefined | undefined;
|
|
1241
|
+
} & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
1242
|
+
accessList?: import("viem").AccessList | undefined;
|
|
1243
|
+
authorizationList?: undefined | undefined;
|
|
1244
|
+
blobs?: undefined | undefined;
|
|
1245
|
+
blobVersionedHashes?: undefined | undefined;
|
|
1246
|
+
gasPrice?: undefined | undefined;
|
|
1247
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
1248
|
+
maxFeePerGas?: bigint | undefined;
|
|
1249
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
1250
|
+
sidecars?: undefined | undefined;
|
|
1251
|
+
} & (import("viem").OneOf<{
|
|
1252
|
+
maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
|
|
1253
|
+
} | {
|
|
1254
|
+
maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
1255
|
+
}, import("viem").FeeValuesEIP1559> & {
|
|
1256
|
+
accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
|
|
1257
|
+
}) ? "eip1559" : never) | (request extends {
|
|
1258
|
+
accessList?: import("viem").AccessList | undefined;
|
|
1259
|
+
authorizationList?: undefined | undefined;
|
|
1260
|
+
blobs?: undefined | undefined;
|
|
1261
|
+
blobVersionedHashes?: undefined | undefined;
|
|
1262
|
+
gasPrice?: bigint | undefined;
|
|
1263
|
+
sidecars?: undefined | undefined;
|
|
1264
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
1265
|
+
maxFeePerGas?: undefined | undefined;
|
|
1266
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
1267
|
+
} & {
|
|
1268
|
+
accessList: import("viem").TransactionSerializableEIP2930["accessList"];
|
|
1269
|
+
} ? "eip2930" : never) | (request extends ({
|
|
1270
|
+
accessList?: import("viem").AccessList | undefined;
|
|
1271
|
+
authorizationList?: undefined | undefined;
|
|
1272
|
+
blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
|
|
1273
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
1274
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
1275
|
+
maxFeePerGas?: bigint | undefined;
|
|
1276
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
1277
|
+
sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
1278
|
+
} | {
|
|
1279
|
+
accessList?: import("viem").AccessList | undefined;
|
|
1280
|
+
authorizationList?: undefined | undefined;
|
|
1281
|
+
blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
|
|
1282
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
1283
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
1284
|
+
maxFeePerGas?: bigint | undefined;
|
|
1285
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
1286
|
+
sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
1287
|
+
}) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
|
|
1288
|
+
blobs: import("viem").TransactionSerializableEIP4844["blobs"];
|
|
1289
|
+
} | {
|
|
1290
|
+
blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
1291
|
+
} | {
|
|
1292
|
+
sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
|
|
1293
|
+
}, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
1294
|
+
accessList?: import("viem").AccessList | undefined;
|
|
1295
|
+
authorizationList?: import("viem").SignedAuthorizationList | undefined;
|
|
1296
|
+
blobs?: undefined | undefined;
|
|
1297
|
+
blobVersionedHashes?: undefined | undefined;
|
|
1298
|
+
gasPrice?: undefined | undefined;
|
|
1299
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
1300
|
+
maxFeePerGas?: bigint | undefined;
|
|
1301
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
1302
|
+
sidecars?: undefined | undefined;
|
|
1303
|
+
} | {
|
|
1304
|
+
accessList?: import("viem").AccessList | undefined;
|
|
1305
|
+
authorizationList?: import("viem").SignedAuthorizationList | undefined;
|
|
1306
|
+
blobs?: undefined | undefined;
|
|
1307
|
+
blobVersionedHashes?: undefined | undefined;
|
|
1308
|
+
gasPrice?: undefined | undefined;
|
|
1309
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
1310
|
+
maxFeePerGas?: bigint | undefined;
|
|
1311
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
1312
|
+
sidecars?: undefined | undefined;
|
|
1313
|
+
}) & {
|
|
1314
|
+
authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
|
|
1315
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
|
|
1316
|
+
accessList?: undefined | undefined;
|
|
1317
|
+
authorizationList?: undefined | undefined;
|
|
1318
|
+
blobs?: undefined | undefined;
|
|
1319
|
+
blobVersionedHashes?: undefined | undefined;
|
|
1320
|
+
gasPrice?: bigint | undefined;
|
|
1321
|
+
sidecars?: undefined | undefined;
|
|
1322
|
+
} & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
1323
|
+
accessList?: import("viem").AccessList | undefined;
|
|
1324
|
+
authorizationList?: undefined | undefined;
|
|
1325
|
+
blobs?: undefined | undefined;
|
|
1326
|
+
blobVersionedHashes?: undefined | undefined;
|
|
1327
|
+
gasPrice?: undefined | undefined;
|
|
1328
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
1329
|
+
maxFeePerGas?: bigint | undefined;
|
|
1330
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
1331
|
+
sidecars?: undefined | undefined;
|
|
1332
|
+
} & (import("viem").OneOf<{
|
|
1333
|
+
maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
|
|
1334
|
+
} | {
|
|
1335
|
+
maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
1336
|
+
}, import("viem").FeeValuesEIP1559> & {
|
|
1337
|
+
accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
|
|
1338
|
+
}) ? "eip1559" : never) | (request extends {
|
|
1339
|
+
accessList?: import("viem").AccessList | undefined;
|
|
1340
|
+
authorizationList?: undefined | undefined;
|
|
1341
|
+
blobs?: undefined | undefined;
|
|
1342
|
+
blobVersionedHashes?: undefined | undefined;
|
|
1343
|
+
gasPrice?: bigint | undefined;
|
|
1344
|
+
sidecars?: undefined | undefined;
|
|
1345
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
1346
|
+
maxFeePerGas?: undefined | undefined;
|
|
1347
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
1348
|
+
} & {
|
|
1349
|
+
accessList: import("viem").TransactionSerializableEIP2930["accessList"];
|
|
1350
|
+
} ? "eip2930" : never) | (request extends ({
|
|
1351
|
+
accessList?: import("viem").AccessList | undefined;
|
|
1352
|
+
authorizationList?: undefined | undefined;
|
|
1353
|
+
blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
|
|
1354
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
1355
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
1356
|
+
maxFeePerGas?: bigint | undefined;
|
|
1357
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
1358
|
+
sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
1359
|
+
} | {
|
|
1360
|
+
accessList?: import("viem").AccessList | undefined;
|
|
1361
|
+
authorizationList?: undefined | undefined;
|
|
1362
|
+
blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
|
|
1363
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
1364
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
1365
|
+
maxFeePerGas?: bigint | undefined;
|
|
1366
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
1367
|
+
sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
1368
|
+
}) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
|
|
1369
|
+
blobs: import("viem").TransactionSerializableEIP4844["blobs"];
|
|
1370
|
+
} | {
|
|
1371
|
+
blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
1372
|
+
} | {
|
|
1373
|
+
sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
|
|
1374
|
+
}, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
1375
|
+
accessList?: import("viem").AccessList | undefined;
|
|
1376
|
+
authorizationList?: import("viem").SignedAuthorizationList | undefined;
|
|
1377
|
+
blobs?: undefined | undefined;
|
|
1378
|
+
blobVersionedHashes?: undefined | undefined;
|
|
1379
|
+
gasPrice?: undefined | undefined;
|
|
1380
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
1381
|
+
maxFeePerGas?: bigint | undefined;
|
|
1382
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
1383
|
+
sidecars?: undefined | undefined;
|
|
1384
|
+
} | {
|
|
1385
|
+
accessList?: import("viem").AccessList | undefined;
|
|
1386
|
+
authorizationList?: import("viem").SignedAuthorizationList | 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
|
+
}) & {
|
|
1395
|
+
authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
|
|
1396
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) extends infer T_7 ? T_7 extends (request["type"] extends string ? request["type"] : import("viem").IsNever<import("viem").IsNever<Extract<import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<undefined, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> extends infer T_8 ? T_8 extends import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<undefined, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> ? T_8 extends object ? request extends import("viem").ExactPartial<T_8> ? T_8 extends {
|
|
1397
|
+
type?: infer type | undefined;
|
|
1398
|
+
} ? Extract<type, string> : never : never : never : never : never, NonNullable<"legacy" | "eip2930" | "eip1559" | "eip4844" | "eip7702" | undefined>>> extends true ? Exclude<import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<undefined, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> extends infer T_9 ? T_9 extends import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<undefined, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> ? T_9 extends object ? request extends import("viem").ExactPartial<T_9> ? T_9 extends {
|
|
1399
|
+
type?: infer type | undefined;
|
|
1400
|
+
} ? Extract<type, string> : never : never : never : never : never, NonNullable<"legacy" | "eip2930" | "eip1559" | "eip4844" | "eip7702" | undefined>> : never> extends false ? import("viem").IsNever<Extract<import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<undefined, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> extends infer T_10 ? T_10 extends import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<undefined, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> ? T_10 extends object ? request extends import("viem").ExactPartial<T_10> ? T_10 extends {
|
|
1401
|
+
type?: infer type | undefined;
|
|
1402
|
+
} ? Extract<type, string> : never : never : never : never : never, NonNullable<"legacy" | "eip2930" | "eip1559" | "eip4844" | "eip7702" | undefined>>> extends true ? Exclude<import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<undefined, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> extends infer T_11 ? T_11 extends import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<undefined, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> ? T_11 extends object ? request extends import("viem").ExactPartial<T_11> ? T_11 extends {
|
|
1403
|
+
type?: infer type | undefined;
|
|
1404
|
+
} ? Extract<type, string> : never : never : never : never : never, NonNullable<"legacy" | "eip2930" | "eip1559" | "eip4844" | "eip7702" | undefined>> : never : request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
|
|
1405
|
+
accessList?: undefined | undefined;
|
|
1406
|
+
authorizationList?: undefined | undefined;
|
|
1407
|
+
blobs?: undefined | undefined;
|
|
1408
|
+
blobVersionedHashes?: undefined | undefined;
|
|
1409
|
+
gasPrice?: bigint | undefined;
|
|
1410
|
+
sidecars?: undefined | undefined;
|
|
1411
|
+
} & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
1412
|
+
accessList?: import("viem").AccessList | undefined;
|
|
1413
|
+
authorizationList?: undefined | undefined;
|
|
1414
|
+
blobs?: undefined | undefined;
|
|
1415
|
+
blobVersionedHashes?: undefined | undefined;
|
|
1416
|
+
gasPrice?: undefined | undefined;
|
|
1417
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
1418
|
+
maxFeePerGas?: bigint | undefined;
|
|
1419
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
1420
|
+
sidecars?: undefined | undefined;
|
|
1421
|
+
} & (import("viem").OneOf<{
|
|
1422
|
+
maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
|
|
1423
|
+
} | {
|
|
1424
|
+
maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
1425
|
+
}, import("viem").FeeValuesEIP1559> & {
|
|
1426
|
+
accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
|
|
1427
|
+
}) ? "eip1559" : never) | (request extends {
|
|
1428
|
+
accessList?: import("viem").AccessList | undefined;
|
|
1429
|
+
authorizationList?: undefined | undefined;
|
|
1430
|
+
blobs?: undefined | undefined;
|
|
1431
|
+
blobVersionedHashes?: undefined | undefined;
|
|
1432
|
+
gasPrice?: bigint | undefined;
|
|
1433
|
+
sidecars?: undefined | undefined;
|
|
1434
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
1435
|
+
maxFeePerGas?: undefined | undefined;
|
|
1436
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
1437
|
+
} & {
|
|
1438
|
+
accessList: import("viem").TransactionSerializableEIP2930["accessList"];
|
|
1439
|
+
} ? "eip2930" : never) | (request extends ({
|
|
1440
|
+
accessList?: import("viem").AccessList | undefined;
|
|
1441
|
+
authorizationList?: undefined | undefined;
|
|
1442
|
+
blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
|
|
1443
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
1444
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
1445
|
+
maxFeePerGas?: bigint | undefined;
|
|
1446
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
1447
|
+
sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
1448
|
+
} | {
|
|
1449
|
+
accessList?: import("viem").AccessList | undefined;
|
|
1450
|
+
authorizationList?: undefined | undefined;
|
|
1451
|
+
blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
|
|
1452
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
1453
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
1454
|
+
maxFeePerGas?: bigint | undefined;
|
|
1455
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
1456
|
+
sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
1457
|
+
}) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
|
|
1458
|
+
blobs: import("viem").TransactionSerializableEIP4844["blobs"];
|
|
1459
|
+
} | {
|
|
1460
|
+
blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
1461
|
+
} | {
|
|
1462
|
+
sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
|
|
1463
|
+
}, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
1464
|
+
accessList?: import("viem").AccessList | undefined;
|
|
1465
|
+
authorizationList?: import("viem").SignedAuthorizationList | undefined;
|
|
1466
|
+
blobs?: undefined | undefined;
|
|
1467
|
+
blobVersionedHashes?: undefined | undefined;
|
|
1468
|
+
gasPrice?: undefined | undefined;
|
|
1469
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
1470
|
+
maxFeePerGas?: bigint | undefined;
|
|
1471
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
1472
|
+
sidecars?: undefined | undefined;
|
|
1473
|
+
} | {
|
|
1474
|
+
accessList?: import("viem").AccessList | undefined;
|
|
1475
|
+
authorizationList?: import("viem").SignedAuthorizationList | undefined;
|
|
1476
|
+
blobs?: undefined | undefined;
|
|
1477
|
+
blobVersionedHashes?: undefined | undefined;
|
|
1478
|
+
gasPrice?: undefined | undefined;
|
|
1479
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
1480
|
+
maxFeePerGas?: bigint | undefined;
|
|
1481
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
1482
|
+
sidecars?: undefined | undefined;
|
|
1483
|
+
}) & {
|
|
1484
|
+
authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
|
|
1485
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
|
|
1486
|
+
accessList?: undefined | undefined;
|
|
1487
|
+
authorizationList?: undefined | undefined;
|
|
1488
|
+
blobs?: undefined | undefined;
|
|
1489
|
+
blobVersionedHashes?: undefined | undefined;
|
|
1490
|
+
gasPrice?: bigint | undefined;
|
|
1491
|
+
sidecars?: undefined | undefined;
|
|
1492
|
+
} & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
1493
|
+
accessList?: import("viem").AccessList | undefined;
|
|
1494
|
+
authorizationList?: undefined | undefined;
|
|
1495
|
+
blobs?: undefined | undefined;
|
|
1496
|
+
blobVersionedHashes?: undefined | undefined;
|
|
1497
|
+
gasPrice?: undefined | undefined;
|
|
1498
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
1499
|
+
maxFeePerGas?: bigint | undefined;
|
|
1500
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
1501
|
+
sidecars?: undefined | undefined;
|
|
1502
|
+
} & (import("viem").OneOf<{
|
|
1503
|
+
maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
|
|
1504
|
+
} | {
|
|
1505
|
+
maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
1506
|
+
}, import("viem").FeeValuesEIP1559> & {
|
|
1507
|
+
accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
|
|
1508
|
+
}) ? "eip1559" : never) | (request extends {
|
|
1509
|
+
accessList?: import("viem").AccessList | undefined;
|
|
1510
|
+
authorizationList?: undefined | undefined;
|
|
1511
|
+
blobs?: undefined | undefined;
|
|
1512
|
+
blobVersionedHashes?: undefined | undefined;
|
|
1513
|
+
gasPrice?: bigint | undefined;
|
|
1514
|
+
sidecars?: undefined | undefined;
|
|
1515
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
1516
|
+
maxFeePerGas?: undefined | undefined;
|
|
1517
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
1518
|
+
} & {
|
|
1519
|
+
accessList: import("viem").TransactionSerializableEIP2930["accessList"];
|
|
1520
|
+
} ? "eip2930" : never) | (request extends ({
|
|
1521
|
+
accessList?: import("viem").AccessList | undefined;
|
|
1522
|
+
authorizationList?: undefined | undefined;
|
|
1523
|
+
blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
|
|
1524
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
1525
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
1526
|
+
maxFeePerGas?: bigint | undefined;
|
|
1527
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
1528
|
+
sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
1529
|
+
} | {
|
|
1530
|
+
accessList?: import("viem").AccessList | undefined;
|
|
1531
|
+
authorizationList?: undefined | undefined;
|
|
1532
|
+
blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
|
|
1533
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
1534
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
1535
|
+
maxFeePerGas?: bigint | undefined;
|
|
1536
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
1537
|
+
sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
1538
|
+
}) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
|
|
1539
|
+
blobs: import("viem").TransactionSerializableEIP4844["blobs"];
|
|
1540
|
+
} | {
|
|
1541
|
+
blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
1542
|
+
} | {
|
|
1543
|
+
sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
|
|
1544
|
+
}, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
1545
|
+
accessList?: import("viem").AccessList | undefined;
|
|
1546
|
+
authorizationList?: import("viem").SignedAuthorizationList | undefined;
|
|
1547
|
+
blobs?: undefined | undefined;
|
|
1548
|
+
blobVersionedHashes?: undefined | undefined;
|
|
1549
|
+
gasPrice?: undefined | undefined;
|
|
1550
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
1551
|
+
maxFeePerGas?: bigint | undefined;
|
|
1552
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
1553
|
+
sidecars?: undefined | undefined;
|
|
1554
|
+
} | {
|
|
1555
|
+
accessList?: import("viem").AccessList | undefined;
|
|
1556
|
+
authorizationList?: import("viem").SignedAuthorizationList | undefined;
|
|
1557
|
+
blobs?: undefined | undefined;
|
|
1558
|
+
blobVersionedHashes?: undefined | undefined;
|
|
1559
|
+
gasPrice?: undefined | undefined;
|
|
1560
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
1561
|
+
maxFeePerGas?: bigint | undefined;
|
|
1562
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
1563
|
+
sidecars?: undefined | undefined;
|
|
1564
|
+
}) & {
|
|
1565
|
+
authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
|
|
1566
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_7 extends string ? T_7 : undefined : never : never) | undefined;
|
|
1567
|
+
}, import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<undefined, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from">, ((request["type"] extends string ? request["type"] : import("viem").IsNever<import("viem").IsNever<Extract<import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<undefined, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> extends infer T_12 ? T_12 extends import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<undefined, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> ? T_12 extends object ? request extends import("viem").ExactPartial<T_12> ? T_12 extends {
|
|
1568
|
+
type?: infer type | undefined;
|
|
1569
|
+
} ? Extract<type, string> : never : never : never : never : never, NonNullable<"legacy" | "eip2930" | "eip1559" | "eip4844" | "eip7702" | undefined>>> extends true ? Exclude<import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<undefined, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> extends infer T_13 ? T_13 extends import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<undefined, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> ? T_13 extends object ? request extends import("viem").ExactPartial<T_13> ? T_13 extends {
|
|
1570
|
+
type?: infer type | undefined;
|
|
1571
|
+
} ? Extract<type, string> : never : never : never : never : never, NonNullable<"legacy" | "eip2930" | "eip1559" | "eip4844" | "eip7702" | undefined>> : never> extends false ? import("viem").IsNever<Extract<import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<undefined, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> extends infer T_14 ? T_14 extends import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<undefined, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> ? T_14 extends object ? request extends import("viem").ExactPartial<T_14> ? T_14 extends {
|
|
1572
|
+
type?: infer type | undefined;
|
|
1573
|
+
} ? Extract<type, string> : never : never : never : never : never, NonNullable<"legacy" | "eip2930" | "eip1559" | "eip4844" | "eip7702" | undefined>>> extends true ? Exclude<import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<undefined, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> extends infer T_15 ? T_15 extends import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<undefined, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> ? T_15 extends object ? request extends import("viem").ExactPartial<T_15> ? T_15 extends {
|
|
1574
|
+
type?: infer type | undefined;
|
|
1575
|
+
} ? Extract<type, string> : never : never : never : never : never, NonNullable<"legacy" | "eip2930" | "eip1559" | "eip4844" | "eip7702" | undefined>> : never : request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
|
|
1120
1576
|
accessList?: undefined | undefined;
|
|
1121
1577
|
authorizationList?: undefined | undefined;
|
|
1122
1578
|
blobs?: undefined | undefined;
|
|
@@ -1278,7 +1734,15 @@ export declare const getViemProvider: (provider: EthereumProvider, network: Netw
|
|
|
1278
1734
|
sidecars?: undefined | undefined;
|
|
1279
1735
|
}) & {
|
|
1280
1736
|
authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
|
|
1281
|
-
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) extends infer
|
|
1737
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) extends infer T_16 ? T_16 extends (request["type"] extends string ? request["type"] : import("viem").IsNever<import("viem").IsNever<Extract<import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<undefined, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> extends infer T_17 ? T_17 extends import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<undefined, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> ? T_17 extends object ? request extends import("viem").ExactPartial<T_17> ? T_17 extends {
|
|
1738
|
+
type?: infer type | undefined;
|
|
1739
|
+
} ? Extract<type, string> : never : never : never : never : never, NonNullable<"legacy" | "eip2930" | "eip1559" | "eip4844" | "eip7702" | undefined>>> extends true ? Exclude<import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<undefined, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> extends infer T_18 ? T_18 extends import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<undefined, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> ? T_18 extends object ? request extends import("viem").ExactPartial<T_18> ? T_18 extends {
|
|
1740
|
+
type?: infer type | undefined;
|
|
1741
|
+
} ? Extract<type, string> : never : never : never : never : never, NonNullable<"legacy" | "eip2930" | "eip1559" | "eip4844" | "eip7702" | undefined>> : never> extends false ? import("viem").IsNever<Extract<import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<undefined, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> extends infer T_19 ? T_19 extends import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<undefined, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> ? T_19 extends object ? request extends import("viem").ExactPartial<T_19> ? T_19 extends {
|
|
1742
|
+
type?: infer type | undefined;
|
|
1743
|
+
} ? Extract<type, string> : never : never : never : never : never, NonNullable<"legacy" | "eip2930" | "eip1559" | "eip4844" | "eip7702" | undefined>>> extends true ? Exclude<import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<undefined, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> extends infer T_20 ? T_20 extends import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<undefined, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> ? T_20 extends object ? request extends import("viem").ExactPartial<T_20> ? T_20 extends {
|
|
1744
|
+
type?: infer type | undefined;
|
|
1745
|
+
} ? Extract<type, string> : never : never : never : never : never, NonNullable<"legacy" | "eip2930" | "eip1559" | "eip4844" | "eip7702" | undefined>> : never : request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
|
|
1282
1746
|
accessList?: undefined | undefined;
|
|
1283
1747
|
authorizationList?: undefined | undefined;
|
|
1284
1748
|
blobs?: undefined | undefined;
|
|
@@ -1440,2599 +1904,357 @@ export declare const getViemProvider: (provider: EthereumProvider, network: Netw
|
|
|
1440
1904
|
sidecars?: undefined | undefined;
|
|
1441
1905
|
}) & {
|
|
1442
1906
|
authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
|
|
1443
|
-
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ?
|
|
1444
|
-
|
|
1445
|
-
|
|
1446
|
-
|
|
1447
|
-
|
|
1448
|
-
|
|
1449
|
-
|
|
1450
|
-
|
|
1451
|
-
|
|
1452
|
-
|
|
1453
|
-
|
|
1454
|
-
|
|
1455
|
-
|
|
1456
|
-
|
|
1457
|
-
|
|
1458
|
-
|
|
1459
|
-
|
|
1460
|
-
|
|
1461
|
-
|
|
1462
|
-
|
|
1463
|
-
|
|
1464
|
-
|
|
1465
|
-
|
|
1466
|
-
|
|
1467
|
-
|
|
1468
|
-
|
|
1469
|
-
|
|
1470
|
-
|
|
1471
|
-
|
|
1472
|
-
|
|
1473
|
-
|
|
1474
|
-
|
|
1475
|
-
|
|
1476
|
-
|
|
1477
|
-
|
|
1478
|
-
|
|
1479
|
-
|
|
1480
|
-
|
|
1481
|
-
|
|
1482
|
-
|
|
1483
|
-
|
|
1484
|
-
|
|
1485
|
-
|
|
1486
|
-
|
|
1487
|
-
|
|
1488
|
-
|
|
1489
|
-
|
|
1490
|
-
|
|
1491
|
-
|
|
1492
|
-
|
|
1493
|
-
|
|
1494
|
-
|
|
1495
|
-
|
|
1496
|
-
|
|
1497
|
-
|
|
1498
|
-
|
|
1499
|
-
|
|
1500
|
-
|
|
1501
|
-
|
|
1502
|
-
|
|
1503
|
-
|
|
1504
|
-
|
|
1505
|
-
|
|
1506
|
-
|
|
1507
|
-
|
|
1508
|
-
|
|
1509
|
-
|
|
1510
|
-
|
|
1511
|
-
|
|
1512
|
-
|
|
1513
|
-
|
|
1514
|
-
|
|
1515
|
-
|
|
1516
|
-
|
|
1517
|
-
|
|
1518
|
-
|
|
1519
|
-
|
|
1520
|
-
|
|
1521
|
-
|
|
1522
|
-
|
|
1523
|
-
|
|
1524
|
-
|
|
1525
|
-
|
|
1526
|
-
|
|
1527
|
-
|
|
1528
|
-
|
|
1529
|
-
|
|
1530
|
-
|
|
1531
|
-
|
|
1532
|
-
|
|
1533
|
-
|
|
1534
|
-
|
|
1535
|
-
|
|
1536
|
-
|
|
1537
|
-
|
|
1538
|
-
|
|
1539
|
-
|
|
1540
|
-
|
|
1541
|
-
|
|
1542
|
-
|
|
1543
|
-
|
|
1544
|
-
|
|
1545
|
-
|
|
1546
|
-
|
|
1547
|
-
|
|
1548
|
-
|
|
1549
|
-
|
|
1550
|
-
|
|
1551
|
-
|
|
1552
|
-
|
|
1553
|
-
|
|
1554
|
-
|
|
1555
|
-
|
|
1556
|
-
|
|
1557
|
-
|
|
1558
|
-
|
|
1559
|
-
|
|
1560
|
-
|
|
1561
|
-
|
|
1562
|
-
|
|
1563
|
-
|
|
1564
|
-
|
|
1565
|
-
|
|
1566
|
-
|
|
1567
|
-
|
|
1568
|
-
|
|
1569
|
-
|
|
1570
|
-
|
|
1571
|
-
|
|
1572
|
-
|
|
1573
|
-
|
|
1574
|
-
|
|
1575
|
-
|
|
1576
|
-
|
|
1577
|
-
|
|
1578
|
-
|
|
1579
|
-
|
|
1580
|
-
|
|
1581
|
-
|
|
1582
|
-
|
|
1583
|
-
|
|
1584
|
-
|
|
1585
|
-
|
|
1586
|
-
|
|
1587
|
-
|
|
1588
|
-
|
|
1589
|
-
|
|
1590
|
-
|
|
1591
|
-
|
|
1592
|
-
|
|
1593
|
-
|
|
1594
|
-
|
|
1595
|
-
|
|
1596
|
-
|
|
1597
|
-
|
|
1598
|
-
|
|
1599
|
-
|
|
1600
|
-
|
|
1601
|
-
|
|
1602
|
-
|
|
1603
|
-
|
|
1604
|
-
|
|
1605
|
-
|
|
1606
|
-
|
|
1607
|
-
|
|
1608
|
-
|
|
1609
|
-
|
|
1610
|
-
|
|
1611
|
-
|
|
1612
|
-
|
|
1613
|
-
|
|
1614
|
-
|
|
1615
|
-
|
|
1616
|
-
|
|
1617
|
-
|
|
1618
|
-
|
|
1619
|
-
|
|
1620
|
-
|
|
1621
|
-
|
|
1622
|
-
|
|
1623
|
-
|
|
1624
|
-
|
|
1625
|
-
|
|
1626
|
-
|
|
1627
|
-
|
|
1628
|
-
|
|
1629
|
-
|
|
1630
|
-
|
|
1631
|
-
|
|
1632
|
-
|
|
1633
|
-
|
|
1634
|
-
|
|
1635
|
-
|
|
1636
|
-
|
|
1637
|
-
|
|
1638
|
-
|
|
1639
|
-
|
|
1640
|
-
|
|
1641
|
-
|
|
1642
|
-
|
|
1643
|
-
|
|
1644
|
-
|
|
1645
|
-
|
|
1646
|
-
|
|
1647
|
-
|
|
1648
|
-
|
|
1649
|
-
|
|
1650
|
-
|
|
1651
|
-
|
|
1652
|
-
|
|
1653
|
-
|
|
1654
|
-
|
|
1655
|
-
|
|
1656
|
-
|
|
1657
|
-
|
|
1658
|
-
|
|
1659
|
-
|
|
1660
|
-
|
|
1661
|
-
|
|
1662
|
-
|
|
1663
|
-
|
|
1664
|
-
|
|
1665
|
-
|
|
1666
|
-
|
|
1667
|
-
|
|
1668
|
-
|
|
1669
|
-
|
|
1670
|
-
|
|
1671
|
-
|
|
1672
|
-
|
|
1673
|
-
|
|
1674
|
-
|
|
1675
|
-
|
|
1676
|
-
|
|
1677
|
-
|
|
1678
|
-
|
|
1679
|
-
|
|
1680
|
-
|
|
1681
|
-
|
|
1682
|
-
|
|
1683
|
-
|
|
1684
|
-
|
|
1685
|
-
|
|
1686
|
-
|
|
1687
|
-
|
|
1688
|
-
|
|
1689
|
-
|
|
1690
|
-
|
|
1691
|
-
|
|
1692
|
-
|
|
1693
|
-
|
|
1694
|
-
|
|
1695
|
-
|
|
1696
|
-
|
|
1697
|
-
|
|
1698
|
-
|
|
1699
|
-
|
|
1700
|
-
|
|
1701
|
-
|
|
1702
|
-
|
|
1703
|
-
|
|
1704
|
-
|
|
1705
|
-
|
|
1706
|
-
|
|
1707
|
-
|
|
1708
|
-
|
|
1709
|
-
|
|
1710
|
-
|
|
1711
|
-
|
|
1712
|
-
|
|
1713
|
-
|
|
1714
|
-
|
|
1715
|
-
|
|
1716
|
-
|
|
1717
|
-
|
|
1718
|
-
|
|
1719
|
-
|
|
1720
|
-
|
|
1721
|
-
|
|
1722
|
-
|
|
1723
|
-
|
|
1724
|
-
|
|
1725
|
-
|
|
1726
|
-
|
|
1727
|
-
|
|
1728
|
-
|
|
1729
|
-
|
|
1730
|
-
|
|
1731
|
-
|
|
1732
|
-
|
|
1733
|
-
|
|
1734
|
-
|
|
1735
|
-
|
|
1736
|
-
|
|
1737
|
-
|
|
1738
|
-
|
|
1739
|
-
|
|
1740
|
-
|
|
1741
|
-
|
|
1742
|
-
|
|
1743
|
-
|
|
1744
|
-
|
|
1745
|
-
|
|
1746
|
-
|
|
1747
|
-
|
|
1748
|
-
|
|
1749
|
-
|
|
1750
|
-
|
|
1751
|
-
|
|
1752
|
-
|
|
1753
|
-
|
|
1754
|
-
|
|
1755
|
-
|
|
1756
|
-
|
|
1757
|
-
|
|
1758
|
-
|
|
1759
|
-
|
|
1760
|
-
|
|
1761
|
-
|
|
1762
|
-
|
|
1763
|
-
|
|
1764
|
-
|
|
1765
|
-
|
|
1766
|
-
|
|
1767
|
-
|
|
1768
|
-
|
|
1769
|
-
|
|
1770
|
-
|
|
1771
|
-
|
|
1772
|
-
|
|
1773
|
-
|
|
1774
|
-
|
|
1775
|
-
|
|
1776
|
-
|
|
1777
|
-
|
|
1778
|
-
|
|
1779
|
-
|
|
1780
|
-
|
|
1781
|
-
|
|
1782
|
-
|
|
1783
|
-
|
|
1784
|
-
|
|
1785
|
-
|
|
1786
|
-
|
|
1787
|
-
|
|
1788
|
-
|
|
1789
|
-
|
|
1790
|
-
|
|
1791
|
-
|
|
1792
|
-
|
|
1793
|
-
|
|
1794
|
-
blobVersionedHashes?: undefined | undefined;
|
|
1795
|
-
gasPrice?: bigint | undefined;
|
|
1796
|
-
sidecars?: undefined | undefined;
|
|
1797
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
1798
|
-
maxFeePerGas?: undefined | undefined;
|
|
1799
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
1800
|
-
} & {
|
|
1801
|
-
accessList: import("viem").TransactionSerializableEIP2930["accessList"];
|
|
1802
|
-
} ? "eip2930" : never) | (request extends ({
|
|
1803
|
-
accessList?: import("viem").AccessList | undefined;
|
|
1804
|
-
authorizationList?: undefined | undefined;
|
|
1805
|
-
blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
|
|
1806
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
1807
|
-
maxFeePerBlobGas?: bigint | undefined;
|
|
1808
|
-
maxFeePerGas?: bigint | undefined;
|
|
1809
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
1810
|
-
sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
1811
|
-
} | {
|
|
1812
|
-
accessList?: import("viem").AccessList | undefined;
|
|
1813
|
-
authorizationList?: undefined | undefined;
|
|
1814
|
-
blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
|
|
1815
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
1816
|
-
maxFeePerBlobGas?: bigint | undefined;
|
|
1817
|
-
maxFeePerGas?: bigint | undefined;
|
|
1818
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
1819
|
-
sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
1820
|
-
}) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
|
|
1821
|
-
blobs: import("viem").TransactionSerializableEIP4844["blobs"];
|
|
1822
|
-
} | {
|
|
1823
|
-
blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
1824
|
-
} | {
|
|
1825
|
-
sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
|
|
1826
|
-
}, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
1827
|
-
accessList?: import("viem").AccessList | undefined;
|
|
1828
|
-
authorizationList?: import("viem").SignedAuthorizationList | undefined;
|
|
1829
|
-
blobs?: undefined | undefined;
|
|
1830
|
-
blobVersionedHashes?: undefined | undefined;
|
|
1831
|
-
gasPrice?: undefined | undefined;
|
|
1832
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
1833
|
-
maxFeePerGas?: bigint | undefined;
|
|
1834
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
1835
|
-
sidecars?: undefined | undefined;
|
|
1836
|
-
} | {
|
|
1837
|
-
accessList?: import("viem").AccessList | undefined;
|
|
1838
|
-
authorizationList?: import("viem").SignedAuthorizationList | undefined;
|
|
1839
|
-
blobs?: undefined | undefined;
|
|
1840
|
-
blobVersionedHashes?: undefined | undefined;
|
|
1841
|
-
gasPrice?: undefined | undefined;
|
|
1842
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
1843
|
-
maxFeePerGas?: bigint | undefined;
|
|
1844
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
1845
|
-
sidecars?: undefined | undefined;
|
|
1846
|
-
}) & {
|
|
1847
|
-
authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
|
|
1848
|
-
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
|
|
1849
|
-
accessList?: undefined | undefined;
|
|
1850
|
-
authorizationList?: undefined | undefined;
|
|
1851
|
-
blobs?: undefined | undefined;
|
|
1852
|
-
blobVersionedHashes?: undefined | undefined;
|
|
1853
|
-
gasPrice?: bigint | undefined;
|
|
1854
|
-
sidecars?: undefined | undefined;
|
|
1855
|
-
} & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
1856
|
-
accessList?: import("viem").AccessList | undefined;
|
|
1857
|
-
authorizationList?: undefined | undefined;
|
|
1858
|
-
blobs?: undefined | undefined;
|
|
1859
|
-
blobVersionedHashes?: undefined | undefined;
|
|
1860
|
-
gasPrice?: undefined | undefined;
|
|
1861
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
1862
|
-
maxFeePerGas?: bigint | undefined;
|
|
1863
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
1864
|
-
sidecars?: undefined | undefined;
|
|
1865
|
-
} & (import("viem").OneOf<{
|
|
1866
|
-
maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
|
|
1867
|
-
} | {
|
|
1868
|
-
maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
1869
|
-
}, import("viem").FeeValuesEIP1559> & {
|
|
1870
|
-
accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
|
|
1871
|
-
}) ? "eip1559" : never) | (request extends {
|
|
1872
|
-
accessList?: import("viem").AccessList | undefined;
|
|
1873
|
-
authorizationList?: undefined | undefined;
|
|
1874
|
-
blobs?: undefined | undefined;
|
|
1875
|
-
blobVersionedHashes?: undefined | undefined;
|
|
1876
|
-
gasPrice?: bigint | undefined;
|
|
1877
|
-
sidecars?: undefined | undefined;
|
|
1878
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
1879
|
-
maxFeePerGas?: undefined | undefined;
|
|
1880
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
1881
|
-
} & {
|
|
1882
|
-
accessList: import("viem").TransactionSerializableEIP2930["accessList"];
|
|
1883
|
-
} ? "eip2930" : never) | (request extends ({
|
|
1884
|
-
accessList?: import("viem").AccessList | undefined;
|
|
1885
|
-
authorizationList?: undefined | undefined;
|
|
1886
|
-
blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
|
|
1887
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
1888
|
-
maxFeePerBlobGas?: bigint | undefined;
|
|
1889
|
-
maxFeePerGas?: bigint | undefined;
|
|
1890
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
1891
|
-
sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
1892
|
-
} | {
|
|
1893
|
-
accessList?: import("viem").AccessList | undefined;
|
|
1894
|
-
authorizationList?: undefined | undefined;
|
|
1895
|
-
blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
|
|
1896
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
1897
|
-
maxFeePerBlobGas?: bigint | undefined;
|
|
1898
|
-
maxFeePerGas?: bigint | undefined;
|
|
1899
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
1900
|
-
sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
1901
|
-
}) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
|
|
1902
|
-
blobs: import("viem").TransactionSerializableEIP4844["blobs"];
|
|
1903
|
-
} | {
|
|
1904
|
-
blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
1905
|
-
} | {
|
|
1906
|
-
sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
|
|
1907
|
-
}, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
1908
|
-
accessList?: import("viem").AccessList | undefined;
|
|
1909
|
-
authorizationList?: import("viem").SignedAuthorizationList | undefined;
|
|
1910
|
-
blobs?: undefined | undefined;
|
|
1911
|
-
blobVersionedHashes?: undefined | undefined;
|
|
1912
|
-
gasPrice?: undefined | undefined;
|
|
1913
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
1914
|
-
maxFeePerGas?: bigint | undefined;
|
|
1915
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
1916
|
-
sidecars?: undefined | undefined;
|
|
1917
|
-
} | {
|
|
1918
|
-
accessList?: import("viem").AccessList | undefined;
|
|
1919
|
-
authorizationList?: import("viem").SignedAuthorizationList | undefined;
|
|
1920
|
-
blobs?: undefined | undefined;
|
|
1921
|
-
blobVersionedHashes?: undefined | undefined;
|
|
1922
|
-
gasPrice?: undefined | undefined;
|
|
1923
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
1924
|
-
maxFeePerGas?: bigint | undefined;
|
|
1925
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
1926
|
-
sidecars?: undefined | undefined;
|
|
1927
|
-
}) & {
|
|
1928
|
-
authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
|
|
1929
|
-
} ? "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 {
|
|
1930
|
-
accessList?: undefined | undefined;
|
|
1931
|
-
authorizationList?: undefined | undefined;
|
|
1932
|
-
blobs?: undefined | undefined;
|
|
1933
|
-
blobVersionedHashes?: undefined | undefined;
|
|
1934
|
-
gasPrice?: bigint | undefined;
|
|
1935
|
-
sidecars?: undefined | undefined;
|
|
1936
|
-
} & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
1937
|
-
accessList?: import("viem").AccessList | undefined;
|
|
1938
|
-
authorizationList?: undefined | undefined;
|
|
1939
|
-
blobs?: undefined | undefined;
|
|
1940
|
-
blobVersionedHashes?: undefined | undefined;
|
|
1941
|
-
gasPrice?: undefined | undefined;
|
|
1942
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
1943
|
-
maxFeePerGas?: bigint | undefined;
|
|
1944
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
1945
|
-
sidecars?: undefined | undefined;
|
|
1946
|
-
} & (import("viem").OneOf<{
|
|
1947
|
-
maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
|
|
1948
|
-
} | {
|
|
1949
|
-
maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
1950
|
-
}, import("viem").FeeValuesEIP1559> & {
|
|
1951
|
-
accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
|
|
1952
|
-
}) ? "eip1559" : never) | (request extends {
|
|
1953
|
-
accessList?: import("viem").AccessList | undefined;
|
|
1954
|
-
authorizationList?: undefined | undefined;
|
|
1955
|
-
blobs?: undefined | undefined;
|
|
1956
|
-
blobVersionedHashes?: undefined | undefined;
|
|
1957
|
-
gasPrice?: bigint | undefined;
|
|
1958
|
-
sidecars?: undefined | undefined;
|
|
1959
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
1960
|
-
maxFeePerGas?: undefined | undefined;
|
|
1961
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
1962
|
-
} & {
|
|
1963
|
-
accessList: import("viem").TransactionSerializableEIP2930["accessList"];
|
|
1964
|
-
} ? "eip2930" : never) | (request extends ({
|
|
1965
|
-
accessList?: import("viem").AccessList | undefined;
|
|
1966
|
-
authorizationList?: undefined | undefined;
|
|
1967
|
-
blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
|
|
1968
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
1969
|
-
maxFeePerBlobGas?: bigint | undefined;
|
|
1970
|
-
maxFeePerGas?: bigint | undefined;
|
|
1971
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
1972
|
-
sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
1973
|
-
} | {
|
|
1974
|
-
accessList?: import("viem").AccessList | undefined;
|
|
1975
|
-
authorizationList?: undefined | undefined;
|
|
1976
|
-
blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
|
|
1977
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
1978
|
-
maxFeePerBlobGas?: bigint | undefined;
|
|
1979
|
-
maxFeePerGas?: bigint | undefined;
|
|
1980
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
1981
|
-
sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
1982
|
-
}) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
|
|
1983
|
-
blobs: import("viem").TransactionSerializableEIP4844["blobs"];
|
|
1984
|
-
} | {
|
|
1985
|
-
blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
1986
|
-
} | {
|
|
1987
|
-
sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
|
|
1988
|
-
}, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
1989
|
-
accessList?: import("viem").AccessList | undefined;
|
|
1990
|
-
authorizationList?: import("viem").SignedAuthorizationList | undefined;
|
|
1991
|
-
blobs?: undefined | undefined;
|
|
1992
|
-
blobVersionedHashes?: undefined | undefined;
|
|
1993
|
-
gasPrice?: undefined | undefined;
|
|
1994
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
1995
|
-
maxFeePerGas?: bigint | undefined;
|
|
1996
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
1997
|
-
sidecars?: undefined | undefined;
|
|
1998
|
-
} | {
|
|
1999
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2000
|
-
authorizationList?: import("viem").SignedAuthorizationList | undefined;
|
|
2001
|
-
blobs?: undefined | undefined;
|
|
2002
|
-
blobVersionedHashes?: undefined | undefined;
|
|
2003
|
-
gasPrice?: undefined | undefined;
|
|
2004
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
2005
|
-
maxFeePerGas?: bigint | undefined;
|
|
2006
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
2007
|
-
sidecars?: undefined | undefined;
|
|
2008
|
-
}) & {
|
|
2009
|
-
authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
|
|
2010
|
-
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
|
|
2011
|
-
accessList?: undefined | undefined;
|
|
2012
|
-
authorizationList?: undefined | undefined;
|
|
2013
|
-
blobs?: undefined | undefined;
|
|
2014
|
-
blobVersionedHashes?: undefined | undefined;
|
|
2015
|
-
gasPrice?: bigint | undefined;
|
|
2016
|
-
sidecars?: undefined | undefined;
|
|
2017
|
-
} & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
2018
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2019
|
-
authorizationList?: undefined | undefined;
|
|
2020
|
-
blobs?: undefined | undefined;
|
|
2021
|
-
blobVersionedHashes?: undefined | undefined;
|
|
2022
|
-
gasPrice?: undefined | undefined;
|
|
2023
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
2024
|
-
maxFeePerGas?: bigint | undefined;
|
|
2025
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
2026
|
-
sidecars?: undefined | undefined;
|
|
2027
|
-
} & (import("viem").OneOf<{
|
|
2028
|
-
maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
|
|
2029
|
-
} | {
|
|
2030
|
-
maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
2031
|
-
}, import("viem").FeeValuesEIP1559> & {
|
|
2032
|
-
accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
|
|
2033
|
-
}) ? "eip1559" : never) | (request extends {
|
|
2034
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2035
|
-
authorizationList?: undefined | undefined;
|
|
2036
|
-
blobs?: undefined | undefined;
|
|
2037
|
-
blobVersionedHashes?: undefined | undefined;
|
|
2038
|
-
gasPrice?: bigint | undefined;
|
|
2039
|
-
sidecars?: undefined | undefined;
|
|
2040
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
2041
|
-
maxFeePerGas?: undefined | undefined;
|
|
2042
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
2043
|
-
} & {
|
|
2044
|
-
accessList: import("viem").TransactionSerializableEIP2930["accessList"];
|
|
2045
|
-
} ? "eip2930" : never) | (request extends ({
|
|
2046
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2047
|
-
authorizationList?: undefined | undefined;
|
|
2048
|
-
blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
|
|
2049
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
2050
|
-
maxFeePerBlobGas?: bigint | undefined;
|
|
2051
|
-
maxFeePerGas?: bigint | undefined;
|
|
2052
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
2053
|
-
sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
2054
|
-
} | {
|
|
2055
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2056
|
-
authorizationList?: undefined | undefined;
|
|
2057
|
-
blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
|
|
2058
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
2059
|
-
maxFeePerBlobGas?: bigint | undefined;
|
|
2060
|
-
maxFeePerGas?: bigint | undefined;
|
|
2061
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
2062
|
-
sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
2063
|
-
}) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
|
|
2064
|
-
blobs: import("viem").TransactionSerializableEIP4844["blobs"];
|
|
2065
|
-
} | {
|
|
2066
|
-
blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
2067
|
-
} | {
|
|
2068
|
-
sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
|
|
2069
|
-
}, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
2070
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2071
|
-
authorizationList?: import("viem").SignedAuthorizationList | undefined;
|
|
2072
|
-
blobs?: undefined | undefined;
|
|
2073
|
-
blobVersionedHashes?: undefined | undefined;
|
|
2074
|
-
gasPrice?: undefined | undefined;
|
|
2075
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
2076
|
-
maxFeePerGas?: bigint | undefined;
|
|
2077
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
2078
|
-
sidecars?: undefined | undefined;
|
|
2079
|
-
} | {
|
|
2080
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2081
|
-
authorizationList?: import("viem").SignedAuthorizationList | undefined;
|
|
2082
|
-
blobs?: undefined | undefined;
|
|
2083
|
-
blobVersionedHashes?: undefined | undefined;
|
|
2084
|
-
gasPrice?: undefined | undefined;
|
|
2085
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
2086
|
-
maxFeePerGas?: bigint | undefined;
|
|
2087
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
2088
|
-
sidecars?: undefined | undefined;
|
|
2089
|
-
}) & {
|
|
2090
|
-
authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
|
|
2091
|
-
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_5 extends "eip2930" ? import("viem").TransactionRequestEIP2930 : never : never : never) | ((request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
|
|
2092
|
-
accessList?: undefined | undefined;
|
|
2093
|
-
authorizationList?: undefined | undefined;
|
|
2094
|
-
blobs?: undefined | undefined;
|
|
2095
|
-
blobVersionedHashes?: undefined | undefined;
|
|
2096
|
-
gasPrice?: bigint | undefined;
|
|
2097
|
-
sidecars?: undefined | undefined;
|
|
2098
|
-
} & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
2099
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2100
|
-
authorizationList?: undefined | undefined;
|
|
2101
|
-
blobs?: undefined | undefined;
|
|
2102
|
-
blobVersionedHashes?: undefined | undefined;
|
|
2103
|
-
gasPrice?: undefined | undefined;
|
|
2104
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
2105
|
-
maxFeePerGas?: bigint | undefined;
|
|
2106
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
2107
|
-
sidecars?: undefined | undefined;
|
|
2108
|
-
} & (import("viem").OneOf<{
|
|
2109
|
-
maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
|
|
2110
|
-
} | {
|
|
2111
|
-
maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
2112
|
-
}, import("viem").FeeValuesEIP1559> & {
|
|
2113
|
-
accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
|
|
2114
|
-
}) ? "eip1559" : never) | (request extends {
|
|
2115
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2116
|
-
authorizationList?: undefined | undefined;
|
|
2117
|
-
blobs?: undefined | undefined;
|
|
2118
|
-
blobVersionedHashes?: undefined | undefined;
|
|
2119
|
-
gasPrice?: bigint | undefined;
|
|
2120
|
-
sidecars?: undefined | undefined;
|
|
2121
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
2122
|
-
maxFeePerGas?: undefined | undefined;
|
|
2123
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
2124
|
-
} & {
|
|
2125
|
-
accessList: import("viem").TransactionSerializableEIP2930["accessList"];
|
|
2126
|
-
} ? "eip2930" : never) | (request extends ({
|
|
2127
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2128
|
-
authorizationList?: undefined | undefined;
|
|
2129
|
-
blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
|
|
2130
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
2131
|
-
maxFeePerBlobGas?: bigint | undefined;
|
|
2132
|
-
maxFeePerGas?: bigint | undefined;
|
|
2133
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
2134
|
-
sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
2135
|
-
} | {
|
|
2136
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2137
|
-
authorizationList?: undefined | undefined;
|
|
2138
|
-
blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
|
|
2139
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
2140
|
-
maxFeePerBlobGas?: bigint | undefined;
|
|
2141
|
-
maxFeePerGas?: bigint | undefined;
|
|
2142
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
2143
|
-
sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
2144
|
-
}) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
|
|
2145
|
-
blobs: import("viem").TransactionSerializableEIP4844["blobs"];
|
|
2146
|
-
} | {
|
|
2147
|
-
blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
2148
|
-
} | {
|
|
2149
|
-
sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
|
|
2150
|
-
}, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
2151
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2152
|
-
authorizationList?: import("viem").SignedAuthorizationList | undefined;
|
|
2153
|
-
blobs?: undefined | undefined;
|
|
2154
|
-
blobVersionedHashes?: undefined | undefined;
|
|
2155
|
-
gasPrice?: undefined | undefined;
|
|
2156
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
2157
|
-
maxFeePerGas?: bigint | undefined;
|
|
2158
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
2159
|
-
sidecars?: undefined | undefined;
|
|
2160
|
-
} | {
|
|
2161
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2162
|
-
authorizationList?: import("viem").SignedAuthorizationList | undefined;
|
|
2163
|
-
blobs?: undefined | undefined;
|
|
2164
|
-
blobVersionedHashes?: undefined | undefined;
|
|
2165
|
-
gasPrice?: undefined | undefined;
|
|
2166
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
2167
|
-
maxFeePerGas?: bigint | undefined;
|
|
2168
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
2169
|
-
sidecars?: undefined | undefined;
|
|
2170
|
-
}) & {
|
|
2171
|
-
authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
|
|
2172
|
-
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
|
|
2173
|
-
accessList?: undefined | undefined;
|
|
2174
|
-
authorizationList?: undefined | undefined;
|
|
2175
|
-
blobs?: undefined | undefined;
|
|
2176
|
-
blobVersionedHashes?: undefined | undefined;
|
|
2177
|
-
gasPrice?: bigint | undefined;
|
|
2178
|
-
sidecars?: undefined | undefined;
|
|
2179
|
-
} & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
2180
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2181
|
-
authorizationList?: undefined | undefined;
|
|
2182
|
-
blobs?: undefined | undefined;
|
|
2183
|
-
blobVersionedHashes?: undefined | undefined;
|
|
2184
|
-
gasPrice?: undefined | undefined;
|
|
2185
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
2186
|
-
maxFeePerGas?: bigint | undefined;
|
|
2187
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
2188
|
-
sidecars?: undefined | undefined;
|
|
2189
|
-
} & (import("viem").OneOf<{
|
|
2190
|
-
maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
|
|
2191
|
-
} | {
|
|
2192
|
-
maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
2193
|
-
}, import("viem").FeeValuesEIP1559> & {
|
|
2194
|
-
accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
|
|
2195
|
-
}) ? "eip1559" : never) | (request extends {
|
|
2196
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2197
|
-
authorizationList?: undefined | undefined;
|
|
2198
|
-
blobs?: undefined | undefined;
|
|
2199
|
-
blobVersionedHashes?: undefined | undefined;
|
|
2200
|
-
gasPrice?: bigint | undefined;
|
|
2201
|
-
sidecars?: undefined | undefined;
|
|
2202
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
2203
|
-
maxFeePerGas?: undefined | undefined;
|
|
2204
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
2205
|
-
} & {
|
|
2206
|
-
accessList: import("viem").TransactionSerializableEIP2930["accessList"];
|
|
2207
|
-
} ? "eip2930" : never) | (request extends ({
|
|
2208
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2209
|
-
authorizationList?: undefined | undefined;
|
|
2210
|
-
blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
|
|
2211
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
2212
|
-
maxFeePerBlobGas?: bigint | undefined;
|
|
2213
|
-
maxFeePerGas?: bigint | undefined;
|
|
2214
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
2215
|
-
sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
2216
|
-
} | {
|
|
2217
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2218
|
-
authorizationList?: undefined | undefined;
|
|
2219
|
-
blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
|
|
2220
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
2221
|
-
maxFeePerBlobGas?: bigint | undefined;
|
|
2222
|
-
maxFeePerGas?: bigint | undefined;
|
|
2223
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
2224
|
-
sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
2225
|
-
}) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
|
|
2226
|
-
blobs: import("viem").TransactionSerializableEIP4844["blobs"];
|
|
2227
|
-
} | {
|
|
2228
|
-
blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
2229
|
-
} | {
|
|
2230
|
-
sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
|
|
2231
|
-
}, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
2232
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2233
|
-
authorizationList?: import("viem").SignedAuthorizationList | undefined;
|
|
2234
|
-
blobs?: undefined | undefined;
|
|
2235
|
-
blobVersionedHashes?: undefined | undefined;
|
|
2236
|
-
gasPrice?: undefined | undefined;
|
|
2237
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
2238
|
-
maxFeePerGas?: bigint | undefined;
|
|
2239
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
2240
|
-
sidecars?: undefined | undefined;
|
|
2241
|
-
} | {
|
|
2242
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2243
|
-
authorizationList?: import("viem").SignedAuthorizationList | undefined;
|
|
2244
|
-
blobs?: undefined | undefined;
|
|
2245
|
-
blobVersionedHashes?: undefined | undefined;
|
|
2246
|
-
gasPrice?: undefined | undefined;
|
|
2247
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
2248
|
-
maxFeePerGas?: bigint | undefined;
|
|
2249
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
2250
|
-
sidecars?: undefined | undefined;
|
|
2251
|
-
}) & {
|
|
2252
|
-
authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
|
|
2253
|
-
} ? "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 {
|
|
2254
|
-
accessList?: undefined | undefined;
|
|
2255
|
-
authorizationList?: undefined | undefined;
|
|
2256
|
-
blobs?: undefined | undefined;
|
|
2257
|
-
blobVersionedHashes?: undefined | undefined;
|
|
2258
|
-
gasPrice?: bigint | undefined;
|
|
2259
|
-
sidecars?: undefined | undefined;
|
|
2260
|
-
} & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
2261
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2262
|
-
authorizationList?: undefined | undefined;
|
|
2263
|
-
blobs?: undefined | undefined;
|
|
2264
|
-
blobVersionedHashes?: undefined | undefined;
|
|
2265
|
-
gasPrice?: undefined | undefined;
|
|
2266
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
2267
|
-
maxFeePerGas?: bigint | undefined;
|
|
2268
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
2269
|
-
sidecars?: undefined | undefined;
|
|
2270
|
-
} & (import("viem").OneOf<{
|
|
2271
|
-
maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
|
|
2272
|
-
} | {
|
|
2273
|
-
maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
2274
|
-
}, import("viem").FeeValuesEIP1559> & {
|
|
2275
|
-
accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
|
|
2276
|
-
}) ? "eip1559" : never) | (request extends {
|
|
2277
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2278
|
-
authorizationList?: undefined | undefined;
|
|
2279
|
-
blobs?: undefined | undefined;
|
|
2280
|
-
blobVersionedHashes?: undefined | undefined;
|
|
2281
|
-
gasPrice?: bigint | undefined;
|
|
2282
|
-
sidecars?: undefined | undefined;
|
|
2283
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
2284
|
-
maxFeePerGas?: undefined | undefined;
|
|
2285
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
2286
|
-
} & {
|
|
2287
|
-
accessList: import("viem").TransactionSerializableEIP2930["accessList"];
|
|
2288
|
-
} ? "eip2930" : never) | (request extends ({
|
|
2289
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2290
|
-
authorizationList?: undefined | undefined;
|
|
2291
|
-
blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
|
|
2292
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
2293
|
-
maxFeePerBlobGas?: bigint | undefined;
|
|
2294
|
-
maxFeePerGas?: bigint | undefined;
|
|
2295
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
2296
|
-
sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
2297
|
-
} | {
|
|
2298
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2299
|
-
authorizationList?: undefined | undefined;
|
|
2300
|
-
blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
|
|
2301
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
2302
|
-
maxFeePerBlobGas?: bigint | undefined;
|
|
2303
|
-
maxFeePerGas?: bigint | undefined;
|
|
2304
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
2305
|
-
sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
2306
|
-
}) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
|
|
2307
|
-
blobs: import("viem").TransactionSerializableEIP4844["blobs"];
|
|
2308
|
-
} | {
|
|
2309
|
-
blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
2310
|
-
} | {
|
|
2311
|
-
sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
|
|
2312
|
-
}, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
2313
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2314
|
-
authorizationList?: import("viem").SignedAuthorizationList | undefined;
|
|
2315
|
-
blobs?: undefined | undefined;
|
|
2316
|
-
blobVersionedHashes?: undefined | undefined;
|
|
2317
|
-
gasPrice?: undefined | undefined;
|
|
2318
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
2319
|
-
maxFeePerGas?: bigint | undefined;
|
|
2320
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
2321
|
-
sidecars?: undefined | undefined;
|
|
2322
|
-
} | {
|
|
2323
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2324
|
-
authorizationList?: import("viem").SignedAuthorizationList | undefined;
|
|
2325
|
-
blobs?: undefined | undefined;
|
|
2326
|
-
blobVersionedHashes?: undefined | undefined;
|
|
2327
|
-
gasPrice?: undefined | undefined;
|
|
2328
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
2329
|
-
maxFeePerGas?: bigint | undefined;
|
|
2330
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
2331
|
-
sidecars?: undefined | undefined;
|
|
2332
|
-
}) & {
|
|
2333
|
-
authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
|
|
2334
|
-
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
|
|
2335
|
-
accessList?: undefined | undefined;
|
|
2336
|
-
authorizationList?: undefined | undefined;
|
|
2337
|
-
blobs?: undefined | undefined;
|
|
2338
|
-
blobVersionedHashes?: undefined | undefined;
|
|
2339
|
-
gasPrice?: bigint | undefined;
|
|
2340
|
-
sidecars?: undefined | undefined;
|
|
2341
|
-
} & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
2342
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2343
|
-
authorizationList?: undefined | undefined;
|
|
2344
|
-
blobs?: undefined | undefined;
|
|
2345
|
-
blobVersionedHashes?: undefined | undefined;
|
|
2346
|
-
gasPrice?: undefined | undefined;
|
|
2347
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
2348
|
-
maxFeePerGas?: bigint | undefined;
|
|
2349
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
2350
|
-
sidecars?: undefined | undefined;
|
|
2351
|
-
} & (import("viem").OneOf<{
|
|
2352
|
-
maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
|
|
2353
|
-
} | {
|
|
2354
|
-
maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
2355
|
-
}, import("viem").FeeValuesEIP1559> & {
|
|
2356
|
-
accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
|
|
2357
|
-
}) ? "eip1559" : never) | (request extends {
|
|
2358
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2359
|
-
authorizationList?: undefined | undefined;
|
|
2360
|
-
blobs?: undefined | undefined;
|
|
2361
|
-
blobVersionedHashes?: undefined | undefined;
|
|
2362
|
-
gasPrice?: bigint | undefined;
|
|
2363
|
-
sidecars?: undefined | undefined;
|
|
2364
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
2365
|
-
maxFeePerGas?: undefined | undefined;
|
|
2366
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
2367
|
-
} & {
|
|
2368
|
-
accessList: import("viem").TransactionSerializableEIP2930["accessList"];
|
|
2369
|
-
} ? "eip2930" : never) | (request extends ({
|
|
2370
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2371
|
-
authorizationList?: undefined | undefined;
|
|
2372
|
-
blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
|
|
2373
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
2374
|
-
maxFeePerBlobGas?: bigint | undefined;
|
|
2375
|
-
maxFeePerGas?: bigint | undefined;
|
|
2376
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
2377
|
-
sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
2378
|
-
} | {
|
|
2379
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2380
|
-
authorizationList?: undefined | undefined;
|
|
2381
|
-
blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
|
|
2382
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
2383
|
-
maxFeePerBlobGas?: bigint | undefined;
|
|
2384
|
-
maxFeePerGas?: bigint | undefined;
|
|
2385
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
2386
|
-
sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
2387
|
-
}) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
|
|
2388
|
-
blobs: import("viem").TransactionSerializableEIP4844["blobs"];
|
|
2389
|
-
} | {
|
|
2390
|
-
blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
2391
|
-
} | {
|
|
2392
|
-
sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
|
|
2393
|
-
}, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
2394
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2395
|
-
authorizationList?: import("viem").SignedAuthorizationList | undefined;
|
|
2396
|
-
blobs?: undefined | undefined;
|
|
2397
|
-
blobVersionedHashes?: undefined | undefined;
|
|
2398
|
-
gasPrice?: undefined | undefined;
|
|
2399
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
2400
|
-
maxFeePerGas?: bigint | undefined;
|
|
2401
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
2402
|
-
sidecars?: undefined | undefined;
|
|
2403
|
-
} | {
|
|
2404
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2405
|
-
authorizationList?: import("viem").SignedAuthorizationList | undefined;
|
|
2406
|
-
blobs?: undefined | undefined;
|
|
2407
|
-
blobVersionedHashes?: undefined | undefined;
|
|
2408
|
-
gasPrice?: undefined | undefined;
|
|
2409
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
2410
|
-
maxFeePerGas?: bigint | undefined;
|
|
2411
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
2412
|
-
sidecars?: undefined | undefined;
|
|
2413
|
-
}) & {
|
|
2414
|
-
authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
|
|
2415
|
-
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_6 extends "eip4844" ? import("viem").TransactionRequestEIP4844 : never : never : never) | ((request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
|
|
2416
|
-
accessList?: undefined | undefined;
|
|
2417
|
-
authorizationList?: undefined | undefined;
|
|
2418
|
-
blobs?: undefined | undefined;
|
|
2419
|
-
blobVersionedHashes?: undefined | undefined;
|
|
2420
|
-
gasPrice?: bigint | undefined;
|
|
2421
|
-
sidecars?: undefined | undefined;
|
|
2422
|
-
} & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
2423
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2424
|
-
authorizationList?: undefined | undefined;
|
|
2425
|
-
blobs?: undefined | undefined;
|
|
2426
|
-
blobVersionedHashes?: undefined | undefined;
|
|
2427
|
-
gasPrice?: undefined | undefined;
|
|
2428
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
2429
|
-
maxFeePerGas?: bigint | undefined;
|
|
2430
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
2431
|
-
sidecars?: undefined | undefined;
|
|
2432
|
-
} & (import("viem").OneOf<{
|
|
2433
|
-
maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
|
|
2434
|
-
} | {
|
|
2435
|
-
maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
2436
|
-
}, import("viem").FeeValuesEIP1559> & {
|
|
2437
|
-
accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
|
|
2438
|
-
}) ? "eip1559" : never) | (request extends {
|
|
2439
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2440
|
-
authorizationList?: undefined | undefined;
|
|
2441
|
-
blobs?: undefined | undefined;
|
|
2442
|
-
blobVersionedHashes?: undefined | undefined;
|
|
2443
|
-
gasPrice?: bigint | undefined;
|
|
2444
|
-
sidecars?: undefined | undefined;
|
|
2445
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
2446
|
-
maxFeePerGas?: undefined | undefined;
|
|
2447
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
2448
|
-
} & {
|
|
2449
|
-
accessList: import("viem").TransactionSerializableEIP2930["accessList"];
|
|
2450
|
-
} ? "eip2930" : never) | (request extends ({
|
|
2451
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2452
|
-
authorizationList?: undefined | undefined;
|
|
2453
|
-
blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
|
|
2454
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
2455
|
-
maxFeePerBlobGas?: bigint | undefined;
|
|
2456
|
-
maxFeePerGas?: bigint | undefined;
|
|
2457
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
2458
|
-
sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
2459
|
-
} | {
|
|
2460
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2461
|
-
authorizationList?: undefined | undefined;
|
|
2462
|
-
blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
|
|
2463
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
2464
|
-
maxFeePerBlobGas?: bigint | undefined;
|
|
2465
|
-
maxFeePerGas?: bigint | undefined;
|
|
2466
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
2467
|
-
sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
2468
|
-
}) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
|
|
2469
|
-
blobs: import("viem").TransactionSerializableEIP4844["blobs"];
|
|
2470
|
-
} | {
|
|
2471
|
-
blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
2472
|
-
} | {
|
|
2473
|
-
sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
|
|
2474
|
-
}, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
2475
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2476
|
-
authorizationList?: import("viem").SignedAuthorizationList | undefined;
|
|
2477
|
-
blobs?: undefined | undefined;
|
|
2478
|
-
blobVersionedHashes?: undefined | undefined;
|
|
2479
|
-
gasPrice?: undefined | undefined;
|
|
2480
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
2481
|
-
maxFeePerGas?: bigint | undefined;
|
|
2482
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
2483
|
-
sidecars?: undefined | undefined;
|
|
2484
|
-
} | {
|
|
2485
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2486
|
-
authorizationList?: import("viem").SignedAuthorizationList | undefined;
|
|
2487
|
-
blobs?: undefined | undefined;
|
|
2488
|
-
blobVersionedHashes?: undefined | undefined;
|
|
2489
|
-
gasPrice?: undefined | undefined;
|
|
2490
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
2491
|
-
maxFeePerGas?: bigint | undefined;
|
|
2492
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
2493
|
-
sidecars?: undefined | undefined;
|
|
2494
|
-
}) & {
|
|
2495
|
-
authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
|
|
2496
|
-
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
|
|
2497
|
-
accessList?: undefined | undefined;
|
|
2498
|
-
authorizationList?: undefined | undefined;
|
|
2499
|
-
blobs?: undefined | undefined;
|
|
2500
|
-
blobVersionedHashes?: undefined | undefined;
|
|
2501
|
-
gasPrice?: bigint | undefined;
|
|
2502
|
-
sidecars?: undefined | undefined;
|
|
2503
|
-
} & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
2504
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2505
|
-
authorizationList?: undefined | undefined;
|
|
2506
|
-
blobs?: undefined | undefined;
|
|
2507
|
-
blobVersionedHashes?: undefined | undefined;
|
|
2508
|
-
gasPrice?: undefined | undefined;
|
|
2509
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
2510
|
-
maxFeePerGas?: bigint | undefined;
|
|
2511
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
2512
|
-
sidecars?: undefined | undefined;
|
|
2513
|
-
} & (import("viem").OneOf<{
|
|
2514
|
-
maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
|
|
2515
|
-
} | {
|
|
2516
|
-
maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
2517
|
-
}, import("viem").FeeValuesEIP1559> & {
|
|
2518
|
-
accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
|
|
2519
|
-
}) ? "eip1559" : never) | (request extends {
|
|
2520
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2521
|
-
authorizationList?: undefined | undefined;
|
|
2522
|
-
blobs?: undefined | undefined;
|
|
2523
|
-
blobVersionedHashes?: undefined | undefined;
|
|
2524
|
-
gasPrice?: bigint | undefined;
|
|
2525
|
-
sidecars?: undefined | undefined;
|
|
2526
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
2527
|
-
maxFeePerGas?: undefined | undefined;
|
|
2528
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
2529
|
-
} & {
|
|
2530
|
-
accessList: import("viem").TransactionSerializableEIP2930["accessList"];
|
|
2531
|
-
} ? "eip2930" : never) | (request extends ({
|
|
2532
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2533
|
-
authorizationList?: undefined | undefined;
|
|
2534
|
-
blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
|
|
2535
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
2536
|
-
maxFeePerBlobGas?: bigint | undefined;
|
|
2537
|
-
maxFeePerGas?: bigint | undefined;
|
|
2538
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
2539
|
-
sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
2540
|
-
} | {
|
|
2541
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2542
|
-
authorizationList?: undefined | undefined;
|
|
2543
|
-
blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
|
|
2544
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
2545
|
-
maxFeePerBlobGas?: bigint | undefined;
|
|
2546
|
-
maxFeePerGas?: bigint | undefined;
|
|
2547
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
2548
|
-
sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
2549
|
-
}) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
|
|
2550
|
-
blobs: import("viem").TransactionSerializableEIP4844["blobs"];
|
|
2551
|
-
} | {
|
|
2552
|
-
blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
2553
|
-
} | {
|
|
2554
|
-
sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
|
|
2555
|
-
}, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
2556
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2557
|
-
authorizationList?: import("viem").SignedAuthorizationList | undefined;
|
|
2558
|
-
blobs?: undefined | undefined;
|
|
2559
|
-
blobVersionedHashes?: undefined | undefined;
|
|
2560
|
-
gasPrice?: undefined | undefined;
|
|
2561
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
2562
|
-
maxFeePerGas?: bigint | undefined;
|
|
2563
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
2564
|
-
sidecars?: undefined | undefined;
|
|
2565
|
-
} | {
|
|
2566
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2567
|
-
authorizationList?: import("viem").SignedAuthorizationList | undefined;
|
|
2568
|
-
blobs?: undefined | undefined;
|
|
2569
|
-
blobVersionedHashes?: undefined | undefined;
|
|
2570
|
-
gasPrice?: undefined | undefined;
|
|
2571
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
2572
|
-
maxFeePerGas?: bigint | undefined;
|
|
2573
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
2574
|
-
sidecars?: undefined | undefined;
|
|
2575
|
-
}) & {
|
|
2576
|
-
authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
|
|
2577
|
-
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) extends infer T_7 ? T_7 extends (request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
|
|
2578
|
-
accessList?: undefined | undefined;
|
|
2579
|
-
authorizationList?: undefined | undefined;
|
|
2580
|
-
blobs?: undefined | undefined;
|
|
2581
|
-
blobVersionedHashes?: undefined | undefined;
|
|
2582
|
-
gasPrice?: bigint | undefined;
|
|
2583
|
-
sidecars?: undefined | undefined;
|
|
2584
|
-
} & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
2585
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2586
|
-
authorizationList?: undefined | undefined;
|
|
2587
|
-
blobs?: undefined | undefined;
|
|
2588
|
-
blobVersionedHashes?: undefined | undefined;
|
|
2589
|
-
gasPrice?: undefined | undefined;
|
|
2590
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
2591
|
-
maxFeePerGas?: bigint | undefined;
|
|
2592
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
2593
|
-
sidecars?: undefined | undefined;
|
|
2594
|
-
} & (import("viem").OneOf<{
|
|
2595
|
-
maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
|
|
2596
|
-
} | {
|
|
2597
|
-
maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
2598
|
-
}, import("viem").FeeValuesEIP1559> & {
|
|
2599
|
-
accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
|
|
2600
|
-
}) ? "eip1559" : never) | (request extends {
|
|
2601
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2602
|
-
authorizationList?: undefined | undefined;
|
|
2603
|
-
blobs?: undefined | undefined;
|
|
2604
|
-
blobVersionedHashes?: undefined | undefined;
|
|
2605
|
-
gasPrice?: bigint | undefined;
|
|
2606
|
-
sidecars?: undefined | undefined;
|
|
2607
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
2608
|
-
maxFeePerGas?: undefined | undefined;
|
|
2609
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
2610
|
-
} & {
|
|
2611
|
-
accessList: import("viem").TransactionSerializableEIP2930["accessList"];
|
|
2612
|
-
} ? "eip2930" : never) | (request extends ({
|
|
2613
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2614
|
-
authorizationList?: undefined | undefined;
|
|
2615
|
-
blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
|
|
2616
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
2617
|
-
maxFeePerBlobGas?: bigint | undefined;
|
|
2618
|
-
maxFeePerGas?: bigint | undefined;
|
|
2619
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
2620
|
-
sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
2621
|
-
} | {
|
|
2622
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2623
|
-
authorizationList?: undefined | undefined;
|
|
2624
|
-
blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
|
|
2625
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
2626
|
-
maxFeePerBlobGas?: bigint | undefined;
|
|
2627
|
-
maxFeePerGas?: bigint | undefined;
|
|
2628
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
2629
|
-
sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
2630
|
-
}) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
|
|
2631
|
-
blobs: import("viem").TransactionSerializableEIP4844["blobs"];
|
|
2632
|
-
} | {
|
|
2633
|
-
blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
2634
|
-
} | {
|
|
2635
|
-
sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
|
|
2636
|
-
}, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
2637
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2638
|
-
authorizationList?: import("viem").SignedAuthorizationList | undefined;
|
|
2639
|
-
blobs?: undefined | undefined;
|
|
2640
|
-
blobVersionedHashes?: undefined | undefined;
|
|
2641
|
-
gasPrice?: undefined | undefined;
|
|
2642
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
2643
|
-
maxFeePerGas?: bigint | undefined;
|
|
2644
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
2645
|
-
sidecars?: undefined | undefined;
|
|
2646
|
-
} | {
|
|
2647
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2648
|
-
authorizationList?: import("viem").SignedAuthorizationList | undefined;
|
|
2649
|
-
blobs?: undefined | undefined;
|
|
2650
|
-
blobVersionedHashes?: undefined | undefined;
|
|
2651
|
-
gasPrice?: undefined | undefined;
|
|
2652
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
2653
|
-
maxFeePerGas?: bigint | undefined;
|
|
2654
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
2655
|
-
sidecars?: undefined | undefined;
|
|
2656
|
-
}) & {
|
|
2657
|
-
authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
|
|
2658
|
-
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
|
|
2659
|
-
accessList?: undefined | undefined;
|
|
2660
|
-
authorizationList?: undefined | undefined;
|
|
2661
|
-
blobs?: undefined | undefined;
|
|
2662
|
-
blobVersionedHashes?: undefined | undefined;
|
|
2663
|
-
gasPrice?: bigint | undefined;
|
|
2664
|
-
sidecars?: undefined | undefined;
|
|
2665
|
-
} & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
2666
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2667
|
-
authorizationList?: undefined | undefined;
|
|
2668
|
-
blobs?: undefined | undefined;
|
|
2669
|
-
blobVersionedHashes?: undefined | undefined;
|
|
2670
|
-
gasPrice?: undefined | undefined;
|
|
2671
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
2672
|
-
maxFeePerGas?: bigint | undefined;
|
|
2673
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
2674
|
-
sidecars?: undefined | undefined;
|
|
2675
|
-
} & (import("viem").OneOf<{
|
|
2676
|
-
maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
|
|
2677
|
-
} | {
|
|
2678
|
-
maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
2679
|
-
}, import("viem").FeeValuesEIP1559> & {
|
|
2680
|
-
accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
|
|
2681
|
-
}) ? "eip1559" : never) | (request extends {
|
|
2682
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2683
|
-
authorizationList?: undefined | undefined;
|
|
2684
|
-
blobs?: undefined | undefined;
|
|
2685
|
-
blobVersionedHashes?: undefined | undefined;
|
|
2686
|
-
gasPrice?: bigint | undefined;
|
|
2687
|
-
sidecars?: undefined | undefined;
|
|
2688
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
2689
|
-
maxFeePerGas?: undefined | undefined;
|
|
2690
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
2691
|
-
} & {
|
|
2692
|
-
accessList: import("viem").TransactionSerializableEIP2930["accessList"];
|
|
2693
|
-
} ? "eip2930" : never) | (request extends ({
|
|
2694
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2695
|
-
authorizationList?: undefined | undefined;
|
|
2696
|
-
blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
|
|
2697
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
2698
|
-
maxFeePerBlobGas?: bigint | undefined;
|
|
2699
|
-
maxFeePerGas?: bigint | undefined;
|
|
2700
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
2701
|
-
sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
2702
|
-
} | {
|
|
2703
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2704
|
-
authorizationList?: undefined | undefined;
|
|
2705
|
-
blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
|
|
2706
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
2707
|
-
maxFeePerBlobGas?: bigint | undefined;
|
|
2708
|
-
maxFeePerGas?: bigint | undefined;
|
|
2709
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
2710
|
-
sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
2711
|
-
}) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
|
|
2712
|
-
blobs: import("viem").TransactionSerializableEIP4844["blobs"];
|
|
2713
|
-
} | {
|
|
2714
|
-
blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
2715
|
-
} | {
|
|
2716
|
-
sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
|
|
2717
|
-
}, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
2718
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2719
|
-
authorizationList?: import("viem").SignedAuthorizationList | undefined;
|
|
2720
|
-
blobs?: undefined | undefined;
|
|
2721
|
-
blobVersionedHashes?: undefined | undefined;
|
|
2722
|
-
gasPrice?: undefined | undefined;
|
|
2723
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
2724
|
-
maxFeePerGas?: bigint | undefined;
|
|
2725
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
2726
|
-
sidecars?: undefined | undefined;
|
|
2727
|
-
} | {
|
|
2728
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2729
|
-
authorizationList?: import("viem").SignedAuthorizationList | undefined;
|
|
2730
|
-
blobs?: undefined | undefined;
|
|
2731
|
-
blobVersionedHashes?: undefined | undefined;
|
|
2732
|
-
gasPrice?: undefined | undefined;
|
|
2733
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
2734
|
-
maxFeePerGas?: bigint | undefined;
|
|
2735
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
2736
|
-
sidecars?: undefined | undefined;
|
|
2737
|
-
}) & {
|
|
2738
|
-
authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
|
|
2739
|
-
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_7 extends "eip7702" ? import("viem").TransactionRequestEIP7702 : never : never : never)> extends true ? unknown : import("viem").ExactPartial<((request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
|
|
2740
|
-
accessList?: undefined | undefined;
|
|
2741
|
-
authorizationList?: undefined | undefined;
|
|
2742
|
-
blobs?: undefined | undefined;
|
|
2743
|
-
blobVersionedHashes?: undefined | undefined;
|
|
2744
|
-
gasPrice?: bigint | undefined;
|
|
2745
|
-
sidecars?: undefined | undefined;
|
|
2746
|
-
} & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
2747
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2748
|
-
authorizationList?: undefined | undefined;
|
|
2749
|
-
blobs?: undefined | undefined;
|
|
2750
|
-
blobVersionedHashes?: undefined | undefined;
|
|
2751
|
-
gasPrice?: undefined | undefined;
|
|
2752
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
2753
|
-
maxFeePerGas?: bigint | undefined;
|
|
2754
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
2755
|
-
sidecars?: undefined | undefined;
|
|
2756
|
-
} & (import("viem").OneOf<{
|
|
2757
|
-
maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
|
|
2758
|
-
} | {
|
|
2759
|
-
maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
2760
|
-
}, import("viem").FeeValuesEIP1559> & {
|
|
2761
|
-
accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
|
|
2762
|
-
}) ? "eip1559" : never) | (request extends {
|
|
2763
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2764
|
-
authorizationList?: undefined | undefined;
|
|
2765
|
-
blobs?: undefined | undefined;
|
|
2766
|
-
blobVersionedHashes?: undefined | undefined;
|
|
2767
|
-
gasPrice?: bigint | undefined;
|
|
2768
|
-
sidecars?: undefined | undefined;
|
|
2769
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
2770
|
-
maxFeePerGas?: undefined | undefined;
|
|
2771
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
2772
|
-
} & {
|
|
2773
|
-
accessList: import("viem").TransactionSerializableEIP2930["accessList"];
|
|
2774
|
-
} ? "eip2930" : never) | (request extends ({
|
|
2775
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2776
|
-
authorizationList?: undefined | undefined;
|
|
2777
|
-
blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
|
|
2778
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
2779
|
-
maxFeePerBlobGas?: bigint | undefined;
|
|
2780
|
-
maxFeePerGas?: bigint | undefined;
|
|
2781
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
2782
|
-
sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
2783
|
-
} | {
|
|
2784
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2785
|
-
authorizationList?: undefined | undefined;
|
|
2786
|
-
blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
|
|
2787
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
2788
|
-
maxFeePerBlobGas?: bigint | undefined;
|
|
2789
|
-
maxFeePerGas?: bigint | undefined;
|
|
2790
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
2791
|
-
sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
2792
|
-
}) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
|
|
2793
|
-
blobs: import("viem").TransactionSerializableEIP4844["blobs"];
|
|
2794
|
-
} | {
|
|
2795
|
-
blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
2796
|
-
} | {
|
|
2797
|
-
sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
|
|
2798
|
-
}, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
2799
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2800
|
-
authorizationList?: import("viem").SignedAuthorizationList | undefined;
|
|
2801
|
-
blobs?: undefined | undefined;
|
|
2802
|
-
blobVersionedHashes?: undefined | undefined;
|
|
2803
|
-
gasPrice?: undefined | undefined;
|
|
2804
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
2805
|
-
maxFeePerGas?: bigint | undefined;
|
|
2806
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
2807
|
-
sidecars?: undefined | undefined;
|
|
2808
|
-
} | {
|
|
2809
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2810
|
-
authorizationList?: import("viem").SignedAuthorizationList | undefined;
|
|
2811
|
-
blobs?: undefined | undefined;
|
|
2812
|
-
blobVersionedHashes?: undefined | undefined;
|
|
2813
|
-
gasPrice?: undefined | undefined;
|
|
2814
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
2815
|
-
maxFeePerGas?: bigint | undefined;
|
|
2816
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
2817
|
-
sidecars?: undefined | undefined;
|
|
2818
|
-
}) & {
|
|
2819
|
-
authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
|
|
2820
|
-
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
|
|
2821
|
-
accessList?: undefined | undefined;
|
|
2822
|
-
authorizationList?: undefined | undefined;
|
|
2823
|
-
blobs?: undefined | undefined;
|
|
2824
|
-
blobVersionedHashes?: undefined | undefined;
|
|
2825
|
-
gasPrice?: bigint | undefined;
|
|
2826
|
-
sidecars?: undefined | undefined;
|
|
2827
|
-
} & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
2828
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2829
|
-
authorizationList?: undefined | undefined;
|
|
2830
|
-
blobs?: undefined | undefined;
|
|
2831
|
-
blobVersionedHashes?: undefined | undefined;
|
|
2832
|
-
gasPrice?: undefined | undefined;
|
|
2833
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
2834
|
-
maxFeePerGas?: bigint | undefined;
|
|
2835
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
2836
|
-
sidecars?: undefined | undefined;
|
|
2837
|
-
} & (import("viem").OneOf<{
|
|
2838
|
-
maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
|
|
2839
|
-
} | {
|
|
2840
|
-
maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
2841
|
-
}, import("viem").FeeValuesEIP1559> & {
|
|
2842
|
-
accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
|
|
2843
|
-
}) ? "eip1559" : never) | (request extends {
|
|
2844
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2845
|
-
authorizationList?: undefined | undefined;
|
|
2846
|
-
blobs?: undefined | undefined;
|
|
2847
|
-
blobVersionedHashes?: undefined | undefined;
|
|
2848
|
-
gasPrice?: bigint | undefined;
|
|
2849
|
-
sidecars?: undefined | undefined;
|
|
2850
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
2851
|
-
maxFeePerGas?: undefined | undefined;
|
|
2852
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
2853
|
-
} & {
|
|
2854
|
-
accessList: import("viem").TransactionSerializableEIP2930["accessList"];
|
|
2855
|
-
} ? "eip2930" : never) | (request extends ({
|
|
2856
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2857
|
-
authorizationList?: undefined | undefined;
|
|
2858
|
-
blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
|
|
2859
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
2860
|
-
maxFeePerBlobGas?: bigint | undefined;
|
|
2861
|
-
maxFeePerGas?: bigint | undefined;
|
|
2862
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
2863
|
-
sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
2864
|
-
} | {
|
|
2865
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2866
|
-
authorizationList?: undefined | undefined;
|
|
2867
|
-
blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
|
|
2868
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
2869
|
-
maxFeePerBlobGas?: bigint | undefined;
|
|
2870
|
-
maxFeePerGas?: bigint | undefined;
|
|
2871
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
2872
|
-
sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
2873
|
-
}) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
|
|
2874
|
-
blobs: import("viem").TransactionSerializableEIP4844["blobs"];
|
|
2875
|
-
} | {
|
|
2876
|
-
blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
2877
|
-
} | {
|
|
2878
|
-
sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
|
|
2879
|
-
}, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
2880
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2881
|
-
authorizationList?: import("viem").SignedAuthorizationList | undefined;
|
|
2882
|
-
blobs?: undefined | undefined;
|
|
2883
|
-
blobVersionedHashes?: undefined | undefined;
|
|
2884
|
-
gasPrice?: undefined | undefined;
|
|
2885
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
2886
|
-
maxFeePerGas?: bigint | undefined;
|
|
2887
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
2888
|
-
sidecars?: undefined | undefined;
|
|
2889
|
-
} | {
|
|
2890
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2891
|
-
authorizationList?: import("viem").SignedAuthorizationList | undefined;
|
|
2892
|
-
blobs?: undefined | undefined;
|
|
2893
|
-
blobVersionedHashes?: undefined | undefined;
|
|
2894
|
-
gasPrice?: undefined | undefined;
|
|
2895
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
2896
|
-
maxFeePerGas?: bigint | undefined;
|
|
2897
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
2898
|
-
sidecars?: undefined | undefined;
|
|
2899
|
-
}) & {
|
|
2900
|
-
authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
|
|
2901
|
-
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) extends infer T_8 ? T_8 extends (request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
|
|
2902
|
-
accessList?: undefined | undefined;
|
|
2903
|
-
authorizationList?: undefined | undefined;
|
|
2904
|
-
blobs?: undefined | undefined;
|
|
2905
|
-
blobVersionedHashes?: undefined | undefined;
|
|
2906
|
-
gasPrice?: bigint | undefined;
|
|
2907
|
-
sidecars?: undefined | undefined;
|
|
2908
|
-
} & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
2909
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2910
|
-
authorizationList?: undefined | undefined;
|
|
2911
|
-
blobs?: undefined | undefined;
|
|
2912
|
-
blobVersionedHashes?: undefined | undefined;
|
|
2913
|
-
gasPrice?: undefined | undefined;
|
|
2914
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
2915
|
-
maxFeePerGas?: bigint | undefined;
|
|
2916
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
2917
|
-
sidecars?: undefined | undefined;
|
|
2918
|
-
} & (import("viem").OneOf<{
|
|
2919
|
-
maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
|
|
2920
|
-
} | {
|
|
2921
|
-
maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
2922
|
-
}, import("viem").FeeValuesEIP1559> & {
|
|
2923
|
-
accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
|
|
2924
|
-
}) ? "eip1559" : never) | (request extends {
|
|
2925
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2926
|
-
authorizationList?: undefined | undefined;
|
|
2927
|
-
blobs?: undefined | undefined;
|
|
2928
|
-
blobVersionedHashes?: undefined | undefined;
|
|
2929
|
-
gasPrice?: bigint | undefined;
|
|
2930
|
-
sidecars?: undefined | undefined;
|
|
2931
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
2932
|
-
maxFeePerGas?: undefined | undefined;
|
|
2933
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
2934
|
-
} & {
|
|
2935
|
-
accessList: import("viem").TransactionSerializableEIP2930["accessList"];
|
|
2936
|
-
} ? "eip2930" : never) | (request extends ({
|
|
2937
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2938
|
-
authorizationList?: undefined | undefined;
|
|
2939
|
-
blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
|
|
2940
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
2941
|
-
maxFeePerBlobGas?: bigint | undefined;
|
|
2942
|
-
maxFeePerGas?: bigint | undefined;
|
|
2943
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
2944
|
-
sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
2945
|
-
} | {
|
|
2946
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2947
|
-
authorizationList?: undefined | undefined;
|
|
2948
|
-
blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
|
|
2949
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
2950
|
-
maxFeePerBlobGas?: bigint | undefined;
|
|
2951
|
-
maxFeePerGas?: bigint | undefined;
|
|
2952
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
2953
|
-
sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
2954
|
-
}) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
|
|
2955
|
-
blobs: import("viem").TransactionSerializableEIP4844["blobs"];
|
|
2956
|
-
} | {
|
|
2957
|
-
blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
2958
|
-
} | {
|
|
2959
|
-
sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
|
|
2960
|
-
}, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
2961
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2962
|
-
authorizationList?: import("viem").SignedAuthorizationList | undefined;
|
|
2963
|
-
blobs?: undefined | undefined;
|
|
2964
|
-
blobVersionedHashes?: undefined | undefined;
|
|
2965
|
-
gasPrice?: undefined | undefined;
|
|
2966
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
2967
|
-
maxFeePerGas?: bigint | undefined;
|
|
2968
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
2969
|
-
sidecars?: undefined | undefined;
|
|
2970
|
-
} | {
|
|
2971
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2972
|
-
authorizationList?: import("viem").SignedAuthorizationList | undefined;
|
|
2973
|
-
blobs?: undefined | undefined;
|
|
2974
|
-
blobVersionedHashes?: undefined | undefined;
|
|
2975
|
-
gasPrice?: undefined | undefined;
|
|
2976
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
2977
|
-
maxFeePerGas?: bigint | undefined;
|
|
2978
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
2979
|
-
sidecars?: undefined | undefined;
|
|
2980
|
-
}) & {
|
|
2981
|
-
authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
|
|
2982
|
-
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
|
|
2983
|
-
accessList?: undefined | undefined;
|
|
2984
|
-
authorizationList?: undefined | undefined;
|
|
2985
|
-
blobs?: undefined | undefined;
|
|
2986
|
-
blobVersionedHashes?: undefined | undefined;
|
|
2987
|
-
gasPrice?: bigint | undefined;
|
|
2988
|
-
sidecars?: undefined | undefined;
|
|
2989
|
-
} & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
2990
|
-
accessList?: import("viem").AccessList | undefined;
|
|
2991
|
-
authorizationList?: undefined | undefined;
|
|
2992
|
-
blobs?: undefined | undefined;
|
|
2993
|
-
blobVersionedHashes?: undefined | undefined;
|
|
2994
|
-
gasPrice?: undefined | undefined;
|
|
2995
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
2996
|
-
maxFeePerGas?: bigint | undefined;
|
|
2997
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
2998
|
-
sidecars?: undefined | undefined;
|
|
2999
|
-
} & (import("viem").OneOf<{
|
|
3000
|
-
maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
|
|
3001
|
-
} | {
|
|
3002
|
-
maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
3003
|
-
}, import("viem").FeeValuesEIP1559> & {
|
|
3004
|
-
accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
|
|
3005
|
-
}) ? "eip1559" : never) | (request extends {
|
|
3006
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3007
|
-
authorizationList?: undefined | undefined;
|
|
3008
|
-
blobs?: undefined | undefined;
|
|
3009
|
-
blobVersionedHashes?: undefined | undefined;
|
|
3010
|
-
gasPrice?: bigint | undefined;
|
|
3011
|
-
sidecars?: undefined | undefined;
|
|
3012
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
3013
|
-
maxFeePerGas?: undefined | undefined;
|
|
3014
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
3015
|
-
} & {
|
|
3016
|
-
accessList: import("viem").TransactionSerializableEIP2930["accessList"];
|
|
3017
|
-
} ? "eip2930" : never) | (request extends ({
|
|
3018
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3019
|
-
authorizationList?: undefined | undefined;
|
|
3020
|
-
blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
|
|
3021
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
3022
|
-
maxFeePerBlobGas?: bigint | undefined;
|
|
3023
|
-
maxFeePerGas?: bigint | undefined;
|
|
3024
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
3025
|
-
sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
3026
|
-
} | {
|
|
3027
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3028
|
-
authorizationList?: undefined | undefined;
|
|
3029
|
-
blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
|
|
3030
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
3031
|
-
maxFeePerBlobGas?: bigint | undefined;
|
|
3032
|
-
maxFeePerGas?: bigint | undefined;
|
|
3033
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
3034
|
-
sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
3035
|
-
}) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
|
|
3036
|
-
blobs: import("viem").TransactionSerializableEIP4844["blobs"];
|
|
3037
|
-
} | {
|
|
3038
|
-
blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
3039
|
-
} | {
|
|
3040
|
-
sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
|
|
3041
|
-
}, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
3042
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3043
|
-
authorizationList?: import("viem").SignedAuthorizationList | undefined;
|
|
3044
|
-
blobs?: undefined | undefined;
|
|
3045
|
-
blobVersionedHashes?: undefined | undefined;
|
|
3046
|
-
gasPrice?: undefined | undefined;
|
|
3047
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
3048
|
-
maxFeePerGas?: bigint | undefined;
|
|
3049
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
3050
|
-
sidecars?: undefined | undefined;
|
|
3051
|
-
} | {
|
|
3052
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3053
|
-
authorizationList?: import("viem").SignedAuthorizationList | undefined;
|
|
3054
|
-
blobs?: undefined | undefined;
|
|
3055
|
-
blobVersionedHashes?: undefined | undefined;
|
|
3056
|
-
gasPrice?: undefined | undefined;
|
|
3057
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
3058
|
-
maxFeePerGas?: bigint | undefined;
|
|
3059
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
3060
|
-
sidecars?: undefined | undefined;
|
|
3061
|
-
}) & {
|
|
3062
|
-
authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
|
|
3063
|
-
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_8 extends "legacy" ? import("viem").TransactionRequestLegacy : never : never : never) | ((request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
|
|
3064
|
-
accessList?: undefined | undefined;
|
|
3065
|
-
authorizationList?: undefined | undefined;
|
|
3066
|
-
blobs?: undefined | undefined;
|
|
3067
|
-
blobVersionedHashes?: undefined | undefined;
|
|
3068
|
-
gasPrice?: bigint | undefined;
|
|
3069
|
-
sidecars?: undefined | undefined;
|
|
3070
|
-
} & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
3071
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3072
|
-
authorizationList?: undefined | undefined;
|
|
3073
|
-
blobs?: undefined | undefined;
|
|
3074
|
-
blobVersionedHashes?: undefined | undefined;
|
|
3075
|
-
gasPrice?: undefined | undefined;
|
|
3076
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
3077
|
-
maxFeePerGas?: bigint | undefined;
|
|
3078
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
3079
|
-
sidecars?: undefined | undefined;
|
|
3080
|
-
} & (import("viem").OneOf<{
|
|
3081
|
-
maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
|
|
3082
|
-
} | {
|
|
3083
|
-
maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
3084
|
-
}, import("viem").FeeValuesEIP1559> & {
|
|
3085
|
-
accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
|
|
3086
|
-
}) ? "eip1559" : never) | (request extends {
|
|
3087
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3088
|
-
authorizationList?: undefined | undefined;
|
|
3089
|
-
blobs?: undefined | undefined;
|
|
3090
|
-
blobVersionedHashes?: undefined | undefined;
|
|
3091
|
-
gasPrice?: bigint | undefined;
|
|
3092
|
-
sidecars?: undefined | undefined;
|
|
3093
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
3094
|
-
maxFeePerGas?: undefined | undefined;
|
|
3095
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
3096
|
-
} & {
|
|
3097
|
-
accessList: import("viem").TransactionSerializableEIP2930["accessList"];
|
|
3098
|
-
} ? "eip2930" : never) | (request extends ({
|
|
3099
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3100
|
-
authorizationList?: undefined | undefined;
|
|
3101
|
-
blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
|
|
3102
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
3103
|
-
maxFeePerBlobGas?: bigint | undefined;
|
|
3104
|
-
maxFeePerGas?: bigint | undefined;
|
|
3105
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
3106
|
-
sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
3107
|
-
} | {
|
|
3108
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3109
|
-
authorizationList?: undefined | undefined;
|
|
3110
|
-
blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
|
|
3111
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
3112
|
-
maxFeePerBlobGas?: bigint | undefined;
|
|
3113
|
-
maxFeePerGas?: bigint | undefined;
|
|
3114
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
3115
|
-
sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
3116
|
-
}) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
|
|
3117
|
-
blobs: import("viem").TransactionSerializableEIP4844["blobs"];
|
|
3118
|
-
} | {
|
|
3119
|
-
blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
3120
|
-
} | {
|
|
3121
|
-
sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
|
|
3122
|
-
}, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
3123
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3124
|
-
authorizationList?: import("viem").SignedAuthorizationList | undefined;
|
|
3125
|
-
blobs?: undefined | undefined;
|
|
3126
|
-
blobVersionedHashes?: undefined | undefined;
|
|
3127
|
-
gasPrice?: undefined | undefined;
|
|
3128
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
3129
|
-
maxFeePerGas?: bigint | undefined;
|
|
3130
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
3131
|
-
sidecars?: undefined | undefined;
|
|
3132
|
-
} | {
|
|
3133
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3134
|
-
authorizationList?: import("viem").SignedAuthorizationList | undefined;
|
|
3135
|
-
blobs?: undefined | undefined;
|
|
3136
|
-
blobVersionedHashes?: undefined | undefined;
|
|
3137
|
-
gasPrice?: undefined | undefined;
|
|
3138
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
3139
|
-
maxFeePerGas?: bigint | undefined;
|
|
3140
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
3141
|
-
sidecars?: undefined | undefined;
|
|
3142
|
-
}) & {
|
|
3143
|
-
authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
|
|
3144
|
-
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
|
|
3145
|
-
accessList?: undefined | undefined;
|
|
3146
|
-
authorizationList?: undefined | undefined;
|
|
3147
|
-
blobs?: undefined | undefined;
|
|
3148
|
-
blobVersionedHashes?: undefined | undefined;
|
|
3149
|
-
gasPrice?: bigint | undefined;
|
|
3150
|
-
sidecars?: undefined | undefined;
|
|
3151
|
-
} & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
3152
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3153
|
-
authorizationList?: undefined | undefined;
|
|
3154
|
-
blobs?: undefined | undefined;
|
|
3155
|
-
blobVersionedHashes?: undefined | undefined;
|
|
3156
|
-
gasPrice?: undefined | undefined;
|
|
3157
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
3158
|
-
maxFeePerGas?: bigint | undefined;
|
|
3159
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
3160
|
-
sidecars?: undefined | undefined;
|
|
3161
|
-
} & (import("viem").OneOf<{
|
|
3162
|
-
maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
|
|
3163
|
-
} | {
|
|
3164
|
-
maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
3165
|
-
}, import("viem").FeeValuesEIP1559> & {
|
|
3166
|
-
accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
|
|
3167
|
-
}) ? "eip1559" : never) | (request extends {
|
|
3168
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3169
|
-
authorizationList?: undefined | undefined;
|
|
3170
|
-
blobs?: undefined | undefined;
|
|
3171
|
-
blobVersionedHashes?: undefined | undefined;
|
|
3172
|
-
gasPrice?: bigint | undefined;
|
|
3173
|
-
sidecars?: undefined | undefined;
|
|
3174
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
3175
|
-
maxFeePerGas?: undefined | undefined;
|
|
3176
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
3177
|
-
} & {
|
|
3178
|
-
accessList: import("viem").TransactionSerializableEIP2930["accessList"];
|
|
3179
|
-
} ? "eip2930" : never) | (request extends ({
|
|
3180
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3181
|
-
authorizationList?: undefined | undefined;
|
|
3182
|
-
blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
|
|
3183
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
3184
|
-
maxFeePerBlobGas?: bigint | undefined;
|
|
3185
|
-
maxFeePerGas?: bigint | undefined;
|
|
3186
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
3187
|
-
sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
3188
|
-
} | {
|
|
3189
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3190
|
-
authorizationList?: undefined | undefined;
|
|
3191
|
-
blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
|
|
3192
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
3193
|
-
maxFeePerBlobGas?: bigint | undefined;
|
|
3194
|
-
maxFeePerGas?: bigint | undefined;
|
|
3195
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
3196
|
-
sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
3197
|
-
}) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
|
|
3198
|
-
blobs: import("viem").TransactionSerializableEIP4844["blobs"];
|
|
3199
|
-
} | {
|
|
3200
|
-
blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
3201
|
-
} | {
|
|
3202
|
-
sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
|
|
3203
|
-
}, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
3204
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3205
|
-
authorizationList?: import("viem").SignedAuthorizationList | undefined;
|
|
3206
|
-
blobs?: undefined | undefined;
|
|
3207
|
-
blobVersionedHashes?: undefined | undefined;
|
|
3208
|
-
gasPrice?: undefined | undefined;
|
|
3209
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
3210
|
-
maxFeePerGas?: bigint | undefined;
|
|
3211
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
3212
|
-
sidecars?: undefined | undefined;
|
|
3213
|
-
} | {
|
|
3214
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3215
|
-
authorizationList?: import("viem").SignedAuthorizationList | undefined;
|
|
3216
|
-
blobs?: undefined | undefined;
|
|
3217
|
-
blobVersionedHashes?: undefined | undefined;
|
|
3218
|
-
gasPrice?: undefined | undefined;
|
|
3219
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
3220
|
-
maxFeePerGas?: bigint | undefined;
|
|
3221
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
3222
|
-
sidecars?: undefined | undefined;
|
|
3223
|
-
}) & {
|
|
3224
|
-
authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
|
|
3225
|
-
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) extends infer T_9 ? T_9 extends (request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
|
|
3226
|
-
accessList?: undefined | undefined;
|
|
3227
|
-
authorizationList?: undefined | undefined;
|
|
3228
|
-
blobs?: undefined | undefined;
|
|
3229
|
-
blobVersionedHashes?: undefined | undefined;
|
|
3230
|
-
gasPrice?: bigint | undefined;
|
|
3231
|
-
sidecars?: undefined | undefined;
|
|
3232
|
-
} & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
3233
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3234
|
-
authorizationList?: undefined | undefined;
|
|
3235
|
-
blobs?: undefined | undefined;
|
|
3236
|
-
blobVersionedHashes?: undefined | undefined;
|
|
3237
|
-
gasPrice?: undefined | undefined;
|
|
3238
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
3239
|
-
maxFeePerGas?: bigint | undefined;
|
|
3240
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
3241
|
-
sidecars?: undefined | undefined;
|
|
3242
|
-
} & (import("viem").OneOf<{
|
|
3243
|
-
maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
|
|
3244
|
-
} | {
|
|
3245
|
-
maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
3246
|
-
}, import("viem").FeeValuesEIP1559> & {
|
|
3247
|
-
accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
|
|
3248
|
-
}) ? "eip1559" : never) | (request extends {
|
|
3249
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3250
|
-
authorizationList?: undefined | undefined;
|
|
3251
|
-
blobs?: undefined | undefined;
|
|
3252
|
-
blobVersionedHashes?: undefined | undefined;
|
|
3253
|
-
gasPrice?: bigint | undefined;
|
|
3254
|
-
sidecars?: undefined | undefined;
|
|
3255
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
3256
|
-
maxFeePerGas?: undefined | undefined;
|
|
3257
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
3258
|
-
} & {
|
|
3259
|
-
accessList: import("viem").TransactionSerializableEIP2930["accessList"];
|
|
3260
|
-
} ? "eip2930" : never) | (request extends ({
|
|
3261
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3262
|
-
authorizationList?: undefined | undefined;
|
|
3263
|
-
blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
|
|
3264
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
3265
|
-
maxFeePerBlobGas?: bigint | undefined;
|
|
3266
|
-
maxFeePerGas?: bigint | undefined;
|
|
3267
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
3268
|
-
sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
3269
|
-
} | {
|
|
3270
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3271
|
-
authorizationList?: undefined | undefined;
|
|
3272
|
-
blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
|
|
3273
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
3274
|
-
maxFeePerBlobGas?: bigint | undefined;
|
|
3275
|
-
maxFeePerGas?: bigint | undefined;
|
|
3276
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
3277
|
-
sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
3278
|
-
}) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
|
|
3279
|
-
blobs: import("viem").TransactionSerializableEIP4844["blobs"];
|
|
3280
|
-
} | {
|
|
3281
|
-
blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
3282
|
-
} | {
|
|
3283
|
-
sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
|
|
3284
|
-
}, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
3285
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3286
|
-
authorizationList?: import("viem").SignedAuthorizationList | undefined;
|
|
3287
|
-
blobs?: undefined | undefined;
|
|
3288
|
-
blobVersionedHashes?: undefined | undefined;
|
|
3289
|
-
gasPrice?: undefined | undefined;
|
|
3290
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
3291
|
-
maxFeePerGas?: bigint | undefined;
|
|
3292
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
3293
|
-
sidecars?: undefined | undefined;
|
|
3294
|
-
} | {
|
|
3295
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3296
|
-
authorizationList?: import("viem").SignedAuthorizationList | undefined;
|
|
3297
|
-
blobs?: undefined | undefined;
|
|
3298
|
-
blobVersionedHashes?: undefined | undefined;
|
|
3299
|
-
gasPrice?: undefined | undefined;
|
|
3300
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
3301
|
-
maxFeePerGas?: bigint | undefined;
|
|
3302
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
3303
|
-
sidecars?: undefined | undefined;
|
|
3304
|
-
}) & {
|
|
3305
|
-
authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
|
|
3306
|
-
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
|
|
3307
|
-
accessList?: undefined | undefined;
|
|
3308
|
-
authorizationList?: undefined | undefined;
|
|
3309
|
-
blobs?: undefined | undefined;
|
|
3310
|
-
blobVersionedHashes?: undefined | undefined;
|
|
3311
|
-
gasPrice?: bigint | undefined;
|
|
3312
|
-
sidecars?: undefined | undefined;
|
|
3313
|
-
} & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
3314
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3315
|
-
authorizationList?: undefined | undefined;
|
|
3316
|
-
blobs?: undefined | undefined;
|
|
3317
|
-
blobVersionedHashes?: undefined | undefined;
|
|
3318
|
-
gasPrice?: undefined | undefined;
|
|
3319
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
3320
|
-
maxFeePerGas?: bigint | undefined;
|
|
3321
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
3322
|
-
sidecars?: undefined | undefined;
|
|
3323
|
-
} & (import("viem").OneOf<{
|
|
3324
|
-
maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
|
|
3325
|
-
} | {
|
|
3326
|
-
maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
3327
|
-
}, import("viem").FeeValuesEIP1559> & {
|
|
3328
|
-
accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
|
|
3329
|
-
}) ? "eip1559" : never) | (request extends {
|
|
3330
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3331
|
-
authorizationList?: undefined | undefined;
|
|
3332
|
-
blobs?: undefined | undefined;
|
|
3333
|
-
blobVersionedHashes?: undefined | undefined;
|
|
3334
|
-
gasPrice?: bigint | undefined;
|
|
3335
|
-
sidecars?: undefined | undefined;
|
|
3336
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
3337
|
-
maxFeePerGas?: undefined | undefined;
|
|
3338
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
3339
|
-
} & {
|
|
3340
|
-
accessList: import("viem").TransactionSerializableEIP2930["accessList"];
|
|
3341
|
-
} ? "eip2930" : never) | (request extends ({
|
|
3342
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3343
|
-
authorizationList?: undefined | undefined;
|
|
3344
|
-
blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
|
|
3345
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
3346
|
-
maxFeePerBlobGas?: bigint | undefined;
|
|
3347
|
-
maxFeePerGas?: bigint | undefined;
|
|
3348
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
3349
|
-
sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
3350
|
-
} | {
|
|
3351
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3352
|
-
authorizationList?: undefined | undefined;
|
|
3353
|
-
blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
|
|
3354
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
3355
|
-
maxFeePerBlobGas?: bigint | undefined;
|
|
3356
|
-
maxFeePerGas?: bigint | undefined;
|
|
3357
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
3358
|
-
sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
3359
|
-
}) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
|
|
3360
|
-
blobs: import("viem").TransactionSerializableEIP4844["blobs"];
|
|
3361
|
-
} | {
|
|
3362
|
-
blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
3363
|
-
} | {
|
|
3364
|
-
sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
|
|
3365
|
-
}, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
3366
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3367
|
-
authorizationList?: import("viem").SignedAuthorizationList | undefined;
|
|
3368
|
-
blobs?: undefined | undefined;
|
|
3369
|
-
blobVersionedHashes?: undefined | undefined;
|
|
3370
|
-
gasPrice?: undefined | undefined;
|
|
3371
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
3372
|
-
maxFeePerGas?: bigint | undefined;
|
|
3373
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
3374
|
-
sidecars?: undefined | undefined;
|
|
3375
|
-
} | {
|
|
3376
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3377
|
-
authorizationList?: import("viem").SignedAuthorizationList | undefined;
|
|
3378
|
-
blobs?: undefined | undefined;
|
|
3379
|
-
blobVersionedHashes?: undefined | undefined;
|
|
3380
|
-
gasPrice?: undefined | undefined;
|
|
3381
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
3382
|
-
maxFeePerGas?: bigint | undefined;
|
|
3383
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
3384
|
-
sidecars?: undefined | undefined;
|
|
3385
|
-
}) & {
|
|
3386
|
-
authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
|
|
3387
|
-
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_9 extends "eip1559" ? import("viem").TransactionRequestEIP1559 : never : never : never) | ((request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
|
|
3388
|
-
accessList?: undefined | undefined;
|
|
3389
|
-
authorizationList?: undefined | undefined;
|
|
3390
|
-
blobs?: undefined | undefined;
|
|
3391
|
-
blobVersionedHashes?: undefined | undefined;
|
|
3392
|
-
gasPrice?: bigint | undefined;
|
|
3393
|
-
sidecars?: undefined | undefined;
|
|
3394
|
-
} & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
3395
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3396
|
-
authorizationList?: undefined | undefined;
|
|
3397
|
-
blobs?: undefined | undefined;
|
|
3398
|
-
blobVersionedHashes?: undefined | undefined;
|
|
3399
|
-
gasPrice?: undefined | undefined;
|
|
3400
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
3401
|
-
maxFeePerGas?: bigint | undefined;
|
|
3402
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
3403
|
-
sidecars?: undefined | undefined;
|
|
3404
|
-
} & (import("viem").OneOf<{
|
|
3405
|
-
maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
|
|
3406
|
-
} | {
|
|
3407
|
-
maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
3408
|
-
}, import("viem").FeeValuesEIP1559> & {
|
|
3409
|
-
accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
|
|
3410
|
-
}) ? "eip1559" : never) | (request extends {
|
|
3411
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3412
|
-
authorizationList?: undefined | undefined;
|
|
3413
|
-
blobs?: undefined | undefined;
|
|
3414
|
-
blobVersionedHashes?: undefined | undefined;
|
|
3415
|
-
gasPrice?: bigint | undefined;
|
|
3416
|
-
sidecars?: undefined | undefined;
|
|
3417
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
3418
|
-
maxFeePerGas?: undefined | undefined;
|
|
3419
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
3420
|
-
} & {
|
|
3421
|
-
accessList: import("viem").TransactionSerializableEIP2930["accessList"];
|
|
3422
|
-
} ? "eip2930" : never) | (request extends ({
|
|
3423
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3424
|
-
authorizationList?: undefined | undefined;
|
|
3425
|
-
blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
|
|
3426
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
3427
|
-
maxFeePerBlobGas?: bigint | undefined;
|
|
3428
|
-
maxFeePerGas?: bigint | undefined;
|
|
3429
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
3430
|
-
sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
3431
|
-
} | {
|
|
3432
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3433
|
-
authorizationList?: undefined | undefined;
|
|
3434
|
-
blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
|
|
3435
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
3436
|
-
maxFeePerBlobGas?: bigint | undefined;
|
|
3437
|
-
maxFeePerGas?: bigint | undefined;
|
|
3438
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
3439
|
-
sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
3440
|
-
}) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
|
|
3441
|
-
blobs: import("viem").TransactionSerializableEIP4844["blobs"];
|
|
3442
|
-
} | {
|
|
3443
|
-
blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
3444
|
-
} | {
|
|
3445
|
-
sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
|
|
3446
|
-
}, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
3447
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3448
|
-
authorizationList?: import("viem").SignedAuthorizationList | undefined;
|
|
3449
|
-
blobs?: undefined | undefined;
|
|
3450
|
-
blobVersionedHashes?: undefined | undefined;
|
|
3451
|
-
gasPrice?: undefined | undefined;
|
|
3452
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
3453
|
-
maxFeePerGas?: bigint | undefined;
|
|
3454
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
3455
|
-
sidecars?: undefined | undefined;
|
|
3456
|
-
} | {
|
|
3457
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3458
|
-
authorizationList?: import("viem").SignedAuthorizationList | undefined;
|
|
3459
|
-
blobs?: undefined | undefined;
|
|
3460
|
-
blobVersionedHashes?: undefined | undefined;
|
|
3461
|
-
gasPrice?: undefined | undefined;
|
|
3462
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
3463
|
-
maxFeePerGas?: bigint | undefined;
|
|
3464
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
3465
|
-
sidecars?: undefined | undefined;
|
|
3466
|
-
}) & {
|
|
3467
|
-
authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
|
|
3468
|
-
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
|
|
3469
|
-
accessList?: undefined | undefined;
|
|
3470
|
-
authorizationList?: undefined | undefined;
|
|
3471
|
-
blobs?: undefined | undefined;
|
|
3472
|
-
blobVersionedHashes?: undefined | undefined;
|
|
3473
|
-
gasPrice?: bigint | undefined;
|
|
3474
|
-
sidecars?: undefined | undefined;
|
|
3475
|
-
} & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
3476
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3477
|
-
authorizationList?: undefined | undefined;
|
|
3478
|
-
blobs?: undefined | undefined;
|
|
3479
|
-
blobVersionedHashes?: undefined | undefined;
|
|
3480
|
-
gasPrice?: undefined | undefined;
|
|
3481
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
3482
|
-
maxFeePerGas?: bigint | undefined;
|
|
3483
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
3484
|
-
sidecars?: undefined | undefined;
|
|
3485
|
-
} & (import("viem").OneOf<{
|
|
3486
|
-
maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
|
|
3487
|
-
} | {
|
|
3488
|
-
maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
3489
|
-
}, import("viem").FeeValuesEIP1559> & {
|
|
3490
|
-
accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
|
|
3491
|
-
}) ? "eip1559" : never) | (request extends {
|
|
3492
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3493
|
-
authorizationList?: undefined | undefined;
|
|
3494
|
-
blobs?: undefined | undefined;
|
|
3495
|
-
blobVersionedHashes?: undefined | undefined;
|
|
3496
|
-
gasPrice?: bigint | undefined;
|
|
3497
|
-
sidecars?: undefined | undefined;
|
|
3498
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
3499
|
-
maxFeePerGas?: undefined | undefined;
|
|
3500
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
3501
|
-
} & {
|
|
3502
|
-
accessList: import("viem").TransactionSerializableEIP2930["accessList"];
|
|
3503
|
-
} ? "eip2930" : never) | (request extends ({
|
|
3504
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3505
|
-
authorizationList?: undefined | undefined;
|
|
3506
|
-
blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
|
|
3507
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
3508
|
-
maxFeePerBlobGas?: bigint | undefined;
|
|
3509
|
-
maxFeePerGas?: bigint | undefined;
|
|
3510
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
3511
|
-
sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
3512
|
-
} | {
|
|
3513
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3514
|
-
authorizationList?: undefined | undefined;
|
|
3515
|
-
blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
|
|
3516
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
3517
|
-
maxFeePerBlobGas?: bigint | undefined;
|
|
3518
|
-
maxFeePerGas?: bigint | undefined;
|
|
3519
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
3520
|
-
sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
3521
|
-
}) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
|
|
3522
|
-
blobs: import("viem").TransactionSerializableEIP4844["blobs"];
|
|
3523
|
-
} | {
|
|
3524
|
-
blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
3525
|
-
} | {
|
|
3526
|
-
sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
|
|
3527
|
-
}, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
3528
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3529
|
-
authorizationList?: import("viem").SignedAuthorizationList | undefined;
|
|
3530
|
-
blobs?: undefined | undefined;
|
|
3531
|
-
blobVersionedHashes?: undefined | undefined;
|
|
3532
|
-
gasPrice?: undefined | undefined;
|
|
3533
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
3534
|
-
maxFeePerGas?: bigint | undefined;
|
|
3535
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
3536
|
-
sidecars?: undefined | undefined;
|
|
3537
|
-
} | {
|
|
3538
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3539
|
-
authorizationList?: import("viem").SignedAuthorizationList | undefined;
|
|
3540
|
-
blobs?: undefined | undefined;
|
|
3541
|
-
blobVersionedHashes?: undefined | undefined;
|
|
3542
|
-
gasPrice?: undefined | undefined;
|
|
3543
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
3544
|
-
maxFeePerGas?: bigint | undefined;
|
|
3545
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
3546
|
-
sidecars?: undefined | undefined;
|
|
3547
|
-
}) & {
|
|
3548
|
-
authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
|
|
3549
|
-
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) extends infer T_10 ? T_10 extends (request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
|
|
3550
|
-
accessList?: undefined | undefined;
|
|
3551
|
-
authorizationList?: undefined | undefined;
|
|
3552
|
-
blobs?: undefined | undefined;
|
|
3553
|
-
blobVersionedHashes?: undefined | undefined;
|
|
3554
|
-
gasPrice?: bigint | undefined;
|
|
3555
|
-
sidecars?: undefined | undefined;
|
|
3556
|
-
} & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
3557
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3558
|
-
authorizationList?: undefined | undefined;
|
|
3559
|
-
blobs?: undefined | undefined;
|
|
3560
|
-
blobVersionedHashes?: undefined | undefined;
|
|
3561
|
-
gasPrice?: undefined | undefined;
|
|
3562
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
3563
|
-
maxFeePerGas?: bigint | undefined;
|
|
3564
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
3565
|
-
sidecars?: undefined | undefined;
|
|
3566
|
-
} & (import("viem").OneOf<{
|
|
3567
|
-
maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
|
|
3568
|
-
} | {
|
|
3569
|
-
maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
3570
|
-
}, import("viem").FeeValuesEIP1559> & {
|
|
3571
|
-
accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
|
|
3572
|
-
}) ? "eip1559" : never) | (request extends {
|
|
3573
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3574
|
-
authorizationList?: undefined | undefined;
|
|
3575
|
-
blobs?: undefined | undefined;
|
|
3576
|
-
blobVersionedHashes?: undefined | undefined;
|
|
3577
|
-
gasPrice?: bigint | undefined;
|
|
3578
|
-
sidecars?: undefined | undefined;
|
|
3579
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
3580
|
-
maxFeePerGas?: undefined | undefined;
|
|
3581
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
3582
|
-
} & {
|
|
3583
|
-
accessList: import("viem").TransactionSerializableEIP2930["accessList"];
|
|
3584
|
-
} ? "eip2930" : never) | (request extends ({
|
|
3585
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3586
|
-
authorizationList?: undefined | undefined;
|
|
3587
|
-
blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
|
|
3588
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
3589
|
-
maxFeePerBlobGas?: bigint | undefined;
|
|
3590
|
-
maxFeePerGas?: bigint | undefined;
|
|
3591
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
3592
|
-
sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
3593
|
-
} | {
|
|
3594
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3595
|
-
authorizationList?: undefined | undefined;
|
|
3596
|
-
blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
|
|
3597
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
3598
|
-
maxFeePerBlobGas?: bigint | undefined;
|
|
3599
|
-
maxFeePerGas?: bigint | undefined;
|
|
3600
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
3601
|
-
sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
3602
|
-
}) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
|
|
3603
|
-
blobs: import("viem").TransactionSerializableEIP4844["blobs"];
|
|
3604
|
-
} | {
|
|
3605
|
-
blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
3606
|
-
} | {
|
|
3607
|
-
sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
|
|
3608
|
-
}, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
3609
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3610
|
-
authorizationList?: import("viem").SignedAuthorizationList | undefined;
|
|
3611
|
-
blobs?: undefined | undefined;
|
|
3612
|
-
blobVersionedHashes?: undefined | undefined;
|
|
3613
|
-
gasPrice?: undefined | undefined;
|
|
3614
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
3615
|
-
maxFeePerGas?: bigint | undefined;
|
|
3616
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
3617
|
-
sidecars?: undefined | undefined;
|
|
3618
|
-
} | {
|
|
3619
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3620
|
-
authorizationList?: import("viem").SignedAuthorizationList | undefined;
|
|
3621
|
-
blobs?: undefined | undefined;
|
|
3622
|
-
blobVersionedHashes?: undefined | undefined;
|
|
3623
|
-
gasPrice?: undefined | undefined;
|
|
3624
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
3625
|
-
maxFeePerGas?: bigint | undefined;
|
|
3626
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
3627
|
-
sidecars?: undefined | undefined;
|
|
3628
|
-
}) & {
|
|
3629
|
-
authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
|
|
3630
|
-
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
|
|
3631
|
-
accessList?: undefined | undefined;
|
|
3632
|
-
authorizationList?: undefined | undefined;
|
|
3633
|
-
blobs?: undefined | undefined;
|
|
3634
|
-
blobVersionedHashes?: undefined | undefined;
|
|
3635
|
-
gasPrice?: bigint | undefined;
|
|
3636
|
-
sidecars?: undefined | undefined;
|
|
3637
|
-
} & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
3638
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3639
|
-
authorizationList?: undefined | undefined;
|
|
3640
|
-
blobs?: undefined | undefined;
|
|
3641
|
-
blobVersionedHashes?: undefined | undefined;
|
|
3642
|
-
gasPrice?: undefined | undefined;
|
|
3643
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
3644
|
-
maxFeePerGas?: bigint | undefined;
|
|
3645
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
3646
|
-
sidecars?: undefined | undefined;
|
|
3647
|
-
} & (import("viem").OneOf<{
|
|
3648
|
-
maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
|
|
3649
|
-
} | {
|
|
3650
|
-
maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
3651
|
-
}, import("viem").FeeValuesEIP1559> & {
|
|
3652
|
-
accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
|
|
3653
|
-
}) ? "eip1559" : never) | (request extends {
|
|
3654
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3655
|
-
authorizationList?: undefined | undefined;
|
|
3656
|
-
blobs?: undefined | undefined;
|
|
3657
|
-
blobVersionedHashes?: undefined | undefined;
|
|
3658
|
-
gasPrice?: bigint | undefined;
|
|
3659
|
-
sidecars?: undefined | undefined;
|
|
3660
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
3661
|
-
maxFeePerGas?: undefined | undefined;
|
|
3662
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
3663
|
-
} & {
|
|
3664
|
-
accessList: import("viem").TransactionSerializableEIP2930["accessList"];
|
|
3665
|
-
} ? "eip2930" : never) | (request extends ({
|
|
3666
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3667
|
-
authorizationList?: undefined | undefined;
|
|
3668
|
-
blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
|
|
3669
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
3670
|
-
maxFeePerBlobGas?: bigint | undefined;
|
|
3671
|
-
maxFeePerGas?: bigint | undefined;
|
|
3672
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
3673
|
-
sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
3674
|
-
} | {
|
|
3675
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3676
|
-
authorizationList?: undefined | undefined;
|
|
3677
|
-
blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
|
|
3678
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
3679
|
-
maxFeePerBlobGas?: bigint | undefined;
|
|
3680
|
-
maxFeePerGas?: bigint | undefined;
|
|
3681
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
3682
|
-
sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
3683
|
-
}) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
|
|
3684
|
-
blobs: import("viem").TransactionSerializableEIP4844["blobs"];
|
|
3685
|
-
} | {
|
|
3686
|
-
blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
3687
|
-
} | {
|
|
3688
|
-
sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
|
|
3689
|
-
}, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
3690
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3691
|
-
authorizationList?: import("viem").SignedAuthorizationList | undefined;
|
|
3692
|
-
blobs?: undefined | undefined;
|
|
3693
|
-
blobVersionedHashes?: undefined | undefined;
|
|
3694
|
-
gasPrice?: undefined | undefined;
|
|
3695
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
3696
|
-
maxFeePerGas?: bigint | undefined;
|
|
3697
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
3698
|
-
sidecars?: undefined | undefined;
|
|
3699
|
-
} | {
|
|
3700
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3701
|
-
authorizationList?: import("viem").SignedAuthorizationList | undefined;
|
|
3702
|
-
blobs?: undefined | undefined;
|
|
3703
|
-
blobVersionedHashes?: undefined | undefined;
|
|
3704
|
-
gasPrice?: undefined | undefined;
|
|
3705
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
3706
|
-
maxFeePerGas?: bigint | undefined;
|
|
3707
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
3708
|
-
sidecars?: undefined | undefined;
|
|
3709
|
-
}) & {
|
|
3710
|
-
authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
|
|
3711
|
-
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_10 extends "eip2930" ? import("viem").TransactionRequestEIP2930 : never : never : never) | ((request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
|
|
3712
|
-
accessList?: undefined | undefined;
|
|
3713
|
-
authorizationList?: undefined | undefined;
|
|
3714
|
-
blobs?: undefined | undefined;
|
|
3715
|
-
blobVersionedHashes?: undefined | undefined;
|
|
3716
|
-
gasPrice?: bigint | undefined;
|
|
3717
|
-
sidecars?: undefined | undefined;
|
|
3718
|
-
} & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
3719
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3720
|
-
authorizationList?: undefined | undefined;
|
|
3721
|
-
blobs?: undefined | undefined;
|
|
3722
|
-
blobVersionedHashes?: undefined | undefined;
|
|
3723
|
-
gasPrice?: undefined | undefined;
|
|
3724
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
3725
|
-
maxFeePerGas?: bigint | undefined;
|
|
3726
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
3727
|
-
sidecars?: undefined | undefined;
|
|
3728
|
-
} & (import("viem").OneOf<{
|
|
3729
|
-
maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
|
|
3730
|
-
} | {
|
|
3731
|
-
maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
3732
|
-
}, import("viem").FeeValuesEIP1559> & {
|
|
3733
|
-
accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
|
|
3734
|
-
}) ? "eip1559" : never) | (request extends {
|
|
3735
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3736
|
-
authorizationList?: undefined | undefined;
|
|
3737
|
-
blobs?: undefined | undefined;
|
|
3738
|
-
blobVersionedHashes?: undefined | undefined;
|
|
3739
|
-
gasPrice?: bigint | undefined;
|
|
3740
|
-
sidecars?: undefined | undefined;
|
|
3741
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
3742
|
-
maxFeePerGas?: undefined | undefined;
|
|
3743
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
3744
|
-
} & {
|
|
3745
|
-
accessList: import("viem").TransactionSerializableEIP2930["accessList"];
|
|
3746
|
-
} ? "eip2930" : never) | (request extends ({
|
|
3747
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3748
|
-
authorizationList?: undefined | undefined;
|
|
3749
|
-
blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
|
|
3750
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
3751
|
-
maxFeePerBlobGas?: bigint | undefined;
|
|
3752
|
-
maxFeePerGas?: bigint | undefined;
|
|
3753
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
3754
|
-
sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
3755
|
-
} | {
|
|
3756
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3757
|
-
authorizationList?: undefined | undefined;
|
|
3758
|
-
blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
|
|
3759
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
3760
|
-
maxFeePerBlobGas?: bigint | undefined;
|
|
3761
|
-
maxFeePerGas?: bigint | undefined;
|
|
3762
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
3763
|
-
sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
3764
|
-
}) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
|
|
3765
|
-
blobs: import("viem").TransactionSerializableEIP4844["blobs"];
|
|
3766
|
-
} | {
|
|
3767
|
-
blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
3768
|
-
} | {
|
|
3769
|
-
sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
|
|
3770
|
-
}, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
3771
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3772
|
-
authorizationList?: import("viem").SignedAuthorizationList | undefined;
|
|
3773
|
-
blobs?: undefined | undefined;
|
|
3774
|
-
blobVersionedHashes?: undefined | undefined;
|
|
3775
|
-
gasPrice?: undefined | undefined;
|
|
3776
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
3777
|
-
maxFeePerGas?: bigint | undefined;
|
|
3778
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
3779
|
-
sidecars?: undefined | undefined;
|
|
3780
|
-
} | {
|
|
3781
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3782
|
-
authorizationList?: import("viem").SignedAuthorizationList | undefined;
|
|
3783
|
-
blobs?: undefined | undefined;
|
|
3784
|
-
blobVersionedHashes?: undefined | undefined;
|
|
3785
|
-
gasPrice?: undefined | undefined;
|
|
3786
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
3787
|
-
maxFeePerGas?: bigint | undefined;
|
|
3788
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
3789
|
-
sidecars?: undefined | undefined;
|
|
3790
|
-
}) & {
|
|
3791
|
-
authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
|
|
3792
|
-
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
|
|
3793
|
-
accessList?: undefined | undefined;
|
|
3794
|
-
authorizationList?: undefined | undefined;
|
|
3795
|
-
blobs?: undefined | undefined;
|
|
3796
|
-
blobVersionedHashes?: undefined | undefined;
|
|
3797
|
-
gasPrice?: bigint | undefined;
|
|
3798
|
-
sidecars?: undefined | undefined;
|
|
3799
|
-
} & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
3800
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3801
|
-
authorizationList?: undefined | undefined;
|
|
3802
|
-
blobs?: undefined | undefined;
|
|
3803
|
-
blobVersionedHashes?: undefined | undefined;
|
|
3804
|
-
gasPrice?: undefined | undefined;
|
|
3805
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
3806
|
-
maxFeePerGas?: bigint | undefined;
|
|
3807
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
3808
|
-
sidecars?: undefined | undefined;
|
|
3809
|
-
} & (import("viem").OneOf<{
|
|
3810
|
-
maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
|
|
3811
|
-
} | {
|
|
3812
|
-
maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
3813
|
-
}, import("viem").FeeValuesEIP1559> & {
|
|
3814
|
-
accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
|
|
3815
|
-
}) ? "eip1559" : never) | (request extends {
|
|
3816
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3817
|
-
authorizationList?: undefined | undefined;
|
|
3818
|
-
blobs?: undefined | undefined;
|
|
3819
|
-
blobVersionedHashes?: undefined | undefined;
|
|
3820
|
-
gasPrice?: bigint | undefined;
|
|
3821
|
-
sidecars?: undefined | undefined;
|
|
3822
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
3823
|
-
maxFeePerGas?: undefined | undefined;
|
|
3824
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
3825
|
-
} & {
|
|
3826
|
-
accessList: import("viem").TransactionSerializableEIP2930["accessList"];
|
|
3827
|
-
} ? "eip2930" : never) | (request extends ({
|
|
3828
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3829
|
-
authorizationList?: undefined | undefined;
|
|
3830
|
-
blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
|
|
3831
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
3832
|
-
maxFeePerBlobGas?: bigint | undefined;
|
|
3833
|
-
maxFeePerGas?: bigint | undefined;
|
|
3834
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
3835
|
-
sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
3836
|
-
} | {
|
|
3837
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3838
|
-
authorizationList?: undefined | undefined;
|
|
3839
|
-
blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
|
|
3840
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
3841
|
-
maxFeePerBlobGas?: bigint | undefined;
|
|
3842
|
-
maxFeePerGas?: bigint | undefined;
|
|
3843
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
3844
|
-
sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
3845
|
-
}) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
|
|
3846
|
-
blobs: import("viem").TransactionSerializableEIP4844["blobs"];
|
|
3847
|
-
} | {
|
|
3848
|
-
blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
3849
|
-
} | {
|
|
3850
|
-
sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
|
|
3851
|
-
}, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
3852
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3853
|
-
authorizationList?: import("viem").SignedAuthorizationList | undefined;
|
|
3854
|
-
blobs?: undefined | undefined;
|
|
3855
|
-
blobVersionedHashes?: undefined | undefined;
|
|
3856
|
-
gasPrice?: undefined | undefined;
|
|
3857
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
3858
|
-
maxFeePerGas?: bigint | undefined;
|
|
3859
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
3860
|
-
sidecars?: undefined | undefined;
|
|
3861
|
-
} | {
|
|
3862
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3863
|
-
authorizationList?: import("viem").SignedAuthorizationList | undefined;
|
|
3864
|
-
blobs?: undefined | undefined;
|
|
3865
|
-
blobVersionedHashes?: undefined | undefined;
|
|
3866
|
-
gasPrice?: undefined | undefined;
|
|
3867
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
3868
|
-
maxFeePerGas?: bigint | undefined;
|
|
3869
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
3870
|
-
sidecars?: undefined | undefined;
|
|
3871
|
-
}) & {
|
|
3872
|
-
authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
|
|
3873
|
-
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) extends infer T_11 ? T_11 extends (request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
|
|
3874
|
-
accessList?: undefined | undefined;
|
|
3875
|
-
authorizationList?: undefined | undefined;
|
|
3876
|
-
blobs?: undefined | undefined;
|
|
3877
|
-
blobVersionedHashes?: undefined | undefined;
|
|
3878
|
-
gasPrice?: bigint | undefined;
|
|
3879
|
-
sidecars?: undefined | undefined;
|
|
3880
|
-
} & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
3881
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3882
|
-
authorizationList?: undefined | undefined;
|
|
3883
|
-
blobs?: undefined | undefined;
|
|
3884
|
-
blobVersionedHashes?: undefined | undefined;
|
|
3885
|
-
gasPrice?: undefined | undefined;
|
|
3886
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
3887
|
-
maxFeePerGas?: bigint | undefined;
|
|
3888
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
3889
|
-
sidecars?: undefined | undefined;
|
|
3890
|
-
} & (import("viem").OneOf<{
|
|
3891
|
-
maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
|
|
3892
|
-
} | {
|
|
3893
|
-
maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
3894
|
-
}, import("viem").FeeValuesEIP1559> & {
|
|
3895
|
-
accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
|
|
3896
|
-
}) ? "eip1559" : never) | (request extends {
|
|
3897
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3898
|
-
authorizationList?: undefined | undefined;
|
|
3899
|
-
blobs?: undefined | undefined;
|
|
3900
|
-
blobVersionedHashes?: undefined | undefined;
|
|
3901
|
-
gasPrice?: bigint | undefined;
|
|
3902
|
-
sidecars?: undefined | undefined;
|
|
3903
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
3904
|
-
maxFeePerGas?: undefined | undefined;
|
|
3905
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
3906
|
-
} & {
|
|
3907
|
-
accessList: import("viem").TransactionSerializableEIP2930["accessList"];
|
|
3908
|
-
} ? "eip2930" : never) | (request extends ({
|
|
3909
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3910
|
-
authorizationList?: undefined | undefined;
|
|
3911
|
-
blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
|
|
3912
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
3913
|
-
maxFeePerBlobGas?: bigint | undefined;
|
|
3914
|
-
maxFeePerGas?: bigint | undefined;
|
|
3915
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
3916
|
-
sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
3917
|
-
} | {
|
|
3918
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3919
|
-
authorizationList?: undefined | undefined;
|
|
3920
|
-
blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
|
|
3921
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
3922
|
-
maxFeePerBlobGas?: bigint | undefined;
|
|
3923
|
-
maxFeePerGas?: bigint | undefined;
|
|
3924
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
3925
|
-
sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
3926
|
-
}) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
|
|
3927
|
-
blobs: import("viem").TransactionSerializableEIP4844["blobs"];
|
|
3928
|
-
} | {
|
|
3929
|
-
blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
3930
|
-
} | {
|
|
3931
|
-
sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
|
|
3932
|
-
}, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
3933
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3934
|
-
authorizationList?: import("viem").SignedAuthorizationList | undefined;
|
|
3935
|
-
blobs?: undefined | undefined;
|
|
3936
|
-
blobVersionedHashes?: undefined | undefined;
|
|
3937
|
-
gasPrice?: undefined | undefined;
|
|
3938
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
3939
|
-
maxFeePerGas?: bigint | undefined;
|
|
3940
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
3941
|
-
sidecars?: undefined | undefined;
|
|
3942
|
-
} | {
|
|
3943
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3944
|
-
authorizationList?: import("viem").SignedAuthorizationList | undefined;
|
|
3945
|
-
blobs?: undefined | undefined;
|
|
3946
|
-
blobVersionedHashes?: undefined | undefined;
|
|
3947
|
-
gasPrice?: undefined | undefined;
|
|
3948
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
3949
|
-
maxFeePerGas?: bigint | undefined;
|
|
3950
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
3951
|
-
sidecars?: undefined | undefined;
|
|
3952
|
-
}) & {
|
|
3953
|
-
authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
|
|
3954
|
-
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
|
|
3955
|
-
accessList?: undefined | undefined;
|
|
3956
|
-
authorizationList?: undefined | undefined;
|
|
3957
|
-
blobs?: undefined | undefined;
|
|
3958
|
-
blobVersionedHashes?: undefined | undefined;
|
|
3959
|
-
gasPrice?: bigint | undefined;
|
|
3960
|
-
sidecars?: undefined | undefined;
|
|
3961
|
-
} & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
3962
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3963
|
-
authorizationList?: undefined | undefined;
|
|
3964
|
-
blobs?: undefined | undefined;
|
|
3965
|
-
blobVersionedHashes?: undefined | undefined;
|
|
3966
|
-
gasPrice?: undefined | undefined;
|
|
3967
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
3968
|
-
maxFeePerGas?: bigint | undefined;
|
|
3969
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
3970
|
-
sidecars?: undefined | undefined;
|
|
3971
|
-
} & (import("viem").OneOf<{
|
|
3972
|
-
maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
|
|
3973
|
-
} | {
|
|
3974
|
-
maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
3975
|
-
}, import("viem").FeeValuesEIP1559> & {
|
|
3976
|
-
accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
|
|
3977
|
-
}) ? "eip1559" : never) | (request extends {
|
|
3978
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3979
|
-
authorizationList?: undefined | undefined;
|
|
3980
|
-
blobs?: undefined | undefined;
|
|
3981
|
-
blobVersionedHashes?: undefined | undefined;
|
|
3982
|
-
gasPrice?: bigint | undefined;
|
|
3983
|
-
sidecars?: undefined | undefined;
|
|
3984
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
3985
|
-
maxFeePerGas?: undefined | undefined;
|
|
3986
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
3987
|
-
} & {
|
|
3988
|
-
accessList: import("viem").TransactionSerializableEIP2930["accessList"];
|
|
3989
|
-
} ? "eip2930" : never) | (request extends ({
|
|
3990
|
-
accessList?: import("viem").AccessList | undefined;
|
|
3991
|
-
authorizationList?: undefined | undefined;
|
|
3992
|
-
blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
|
|
3993
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
3994
|
-
maxFeePerBlobGas?: bigint | undefined;
|
|
3995
|
-
maxFeePerGas?: bigint | undefined;
|
|
3996
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
3997
|
-
sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
3998
|
-
} | {
|
|
3999
|
-
accessList?: import("viem").AccessList | undefined;
|
|
4000
|
-
authorizationList?: undefined | undefined;
|
|
4001
|
-
blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
|
|
4002
|
-
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
4003
|
-
maxFeePerBlobGas?: bigint | undefined;
|
|
4004
|
-
maxFeePerGas?: bigint | undefined;
|
|
4005
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
4006
|
-
sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
4007
|
-
}) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
|
|
4008
|
-
blobs: import("viem").TransactionSerializableEIP4844["blobs"];
|
|
4009
|
-
} | {
|
|
4010
|
-
blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
4011
|
-
} | {
|
|
4012
|
-
sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
|
|
4013
|
-
}, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
4014
|
-
accessList?: import("viem").AccessList | undefined;
|
|
4015
|
-
authorizationList?: import("viem").SignedAuthorizationList | undefined;
|
|
4016
|
-
blobs?: undefined | undefined;
|
|
4017
|
-
blobVersionedHashes?: undefined | undefined;
|
|
4018
|
-
gasPrice?: undefined | undefined;
|
|
4019
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
4020
|
-
maxFeePerGas?: bigint | undefined;
|
|
4021
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
4022
|
-
sidecars?: undefined | undefined;
|
|
4023
|
-
} | {
|
|
4024
|
-
accessList?: import("viem").AccessList | undefined;
|
|
4025
|
-
authorizationList?: import("viem").SignedAuthorizationList | undefined;
|
|
4026
|
-
blobs?: undefined | undefined;
|
|
4027
|
-
blobVersionedHashes?: undefined | undefined;
|
|
4028
|
-
gasPrice?: undefined | undefined;
|
|
4029
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
4030
|
-
maxFeePerGas?: bigint | undefined;
|
|
4031
|
-
maxPriorityFeePerGas?: bigint | undefined;
|
|
4032
|
-
sidecars?: undefined | undefined;
|
|
4033
|
-
}) & {
|
|
4034
|
-
authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
|
|
4035
|
-
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_11 extends "eip4844" ? import("viem").TransactionRequestEIP4844 : never : never : never) | ((request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
|
|
1907
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_16 extends string ? T_16 : undefined : never : never) | undefined>> extends true ? unknown : import("viem").ExactPartial<import("viem").ExtractFormattedTransactionRequest<import("viem").DeriveChain<undefined, chainOverride>, {
|
|
1908
|
+
type?: ((request["type"] extends string ? request["type"] : import("viem").IsNever<import("viem").IsNever<Extract<import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<undefined, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> extends infer T_21 ? T_21 extends import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<undefined, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> ? T_21 extends object ? request extends import("viem").ExactPartial<T_21> ? T_21 extends {
|
|
1909
|
+
type?: infer type | undefined;
|
|
1910
|
+
} ? Extract<type, string> : never : never : never : never : never, NonNullable<"legacy" | "eip2930" | "eip1559" | "eip4844" | "eip7702" | undefined>>> extends true ? Exclude<import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<undefined, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> extends infer T_22 ? T_22 extends import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<undefined, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> ? T_22 extends object ? request extends import("viem").ExactPartial<T_22> ? T_22 extends {
|
|
1911
|
+
type?: infer type | undefined;
|
|
1912
|
+
} ? Extract<type, string> : never : never : never : never : never, NonNullable<"legacy" | "eip2930" | "eip1559" | "eip4844" | "eip7702" | undefined>> : never> extends false ? import("viem").IsNever<Extract<import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<undefined, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> extends infer T_23 ? T_23 extends import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<undefined, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> ? T_23 extends object ? request extends import("viem").ExactPartial<T_23> ? T_23 extends {
|
|
1913
|
+
type?: infer type | undefined;
|
|
1914
|
+
} ? Extract<type, string> : never : never : never : never : never, NonNullable<"legacy" | "eip2930" | "eip1559" | "eip4844" | "eip7702" | undefined>>> extends true ? Exclude<import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<undefined, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> extends infer T_24 ? T_24 extends import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<undefined, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> ? T_24 extends object ? request extends import("viem").ExactPartial<T_24> ? T_24 extends {
|
|
1915
|
+
type?: infer type | undefined;
|
|
1916
|
+
} ? Extract<type, string> : never : never : never : never : never, NonNullable<"legacy" | "eip2930" | "eip1559" | "eip4844" | "eip7702" | undefined>> : never : request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
|
|
1917
|
+
accessList?: undefined | undefined;
|
|
1918
|
+
authorizationList?: undefined | undefined;
|
|
1919
|
+
blobs?: undefined | undefined;
|
|
1920
|
+
blobVersionedHashes?: undefined | undefined;
|
|
1921
|
+
gasPrice?: bigint | undefined;
|
|
1922
|
+
sidecars?: undefined | undefined;
|
|
1923
|
+
} & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
1924
|
+
accessList?: import("viem").AccessList | undefined;
|
|
1925
|
+
authorizationList?: undefined | undefined;
|
|
1926
|
+
blobs?: undefined | undefined;
|
|
1927
|
+
blobVersionedHashes?: undefined | undefined;
|
|
1928
|
+
gasPrice?: undefined | undefined;
|
|
1929
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
1930
|
+
maxFeePerGas?: bigint | undefined;
|
|
1931
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
1932
|
+
sidecars?: undefined | undefined;
|
|
1933
|
+
} & (import("viem").OneOf<{
|
|
1934
|
+
maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
|
|
1935
|
+
} | {
|
|
1936
|
+
maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
1937
|
+
}, import("viem").FeeValuesEIP1559> & {
|
|
1938
|
+
accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
|
|
1939
|
+
}) ? "eip1559" : never) | (request extends {
|
|
1940
|
+
accessList?: import("viem").AccessList | undefined;
|
|
1941
|
+
authorizationList?: undefined | undefined;
|
|
1942
|
+
blobs?: undefined | undefined;
|
|
1943
|
+
blobVersionedHashes?: undefined | undefined;
|
|
1944
|
+
gasPrice?: bigint | undefined;
|
|
1945
|
+
sidecars?: undefined | undefined;
|
|
1946
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
1947
|
+
maxFeePerGas?: undefined | undefined;
|
|
1948
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
1949
|
+
} & {
|
|
1950
|
+
accessList: import("viem").TransactionSerializableEIP2930["accessList"];
|
|
1951
|
+
} ? "eip2930" : never) | (request extends ({
|
|
1952
|
+
accessList?: import("viem").AccessList | undefined;
|
|
1953
|
+
authorizationList?: undefined | undefined;
|
|
1954
|
+
blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
|
|
1955
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
1956
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
1957
|
+
maxFeePerGas?: bigint | undefined;
|
|
1958
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
1959
|
+
sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
1960
|
+
} | {
|
|
1961
|
+
accessList?: import("viem").AccessList | undefined;
|
|
1962
|
+
authorizationList?: undefined | undefined;
|
|
1963
|
+
blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
|
|
1964
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
1965
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
1966
|
+
maxFeePerGas?: bigint | undefined;
|
|
1967
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
1968
|
+
sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
1969
|
+
}) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
|
|
1970
|
+
blobs: import("viem").TransactionSerializableEIP4844["blobs"];
|
|
1971
|
+
} | {
|
|
1972
|
+
blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
1973
|
+
} | {
|
|
1974
|
+
sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
|
|
1975
|
+
}, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
1976
|
+
accessList?: import("viem").AccessList | undefined;
|
|
1977
|
+
authorizationList?: import("viem").SignedAuthorizationList | undefined;
|
|
1978
|
+
blobs?: undefined | undefined;
|
|
1979
|
+
blobVersionedHashes?: undefined | undefined;
|
|
1980
|
+
gasPrice?: undefined | undefined;
|
|
1981
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
1982
|
+
maxFeePerGas?: bigint | undefined;
|
|
1983
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
1984
|
+
sidecars?: undefined | undefined;
|
|
1985
|
+
} | {
|
|
1986
|
+
accessList?: import("viem").AccessList | undefined;
|
|
1987
|
+
authorizationList?: import("viem").SignedAuthorizationList | undefined;
|
|
1988
|
+
blobs?: undefined | undefined;
|
|
1989
|
+
blobVersionedHashes?: undefined | undefined;
|
|
1990
|
+
gasPrice?: undefined | undefined;
|
|
1991
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
1992
|
+
maxFeePerGas?: bigint | undefined;
|
|
1993
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
1994
|
+
sidecars?: undefined | undefined;
|
|
1995
|
+
}) & {
|
|
1996
|
+
authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
|
|
1997
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
|
|
1998
|
+
accessList?: undefined | undefined;
|
|
1999
|
+
authorizationList?: undefined | undefined;
|
|
2000
|
+
blobs?: undefined | undefined;
|
|
2001
|
+
blobVersionedHashes?: undefined | undefined;
|
|
2002
|
+
gasPrice?: bigint | undefined;
|
|
2003
|
+
sidecars?: undefined | undefined;
|
|
2004
|
+
} & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
2005
|
+
accessList?: import("viem").AccessList | undefined;
|
|
2006
|
+
authorizationList?: undefined | undefined;
|
|
2007
|
+
blobs?: undefined | undefined;
|
|
2008
|
+
blobVersionedHashes?: undefined | undefined;
|
|
2009
|
+
gasPrice?: undefined | undefined;
|
|
2010
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
2011
|
+
maxFeePerGas?: bigint | undefined;
|
|
2012
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
2013
|
+
sidecars?: undefined | undefined;
|
|
2014
|
+
} & (import("viem").OneOf<{
|
|
2015
|
+
maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
|
|
2016
|
+
} | {
|
|
2017
|
+
maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
2018
|
+
}, import("viem").FeeValuesEIP1559> & {
|
|
2019
|
+
accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
|
|
2020
|
+
}) ? "eip1559" : never) | (request extends {
|
|
2021
|
+
accessList?: import("viem").AccessList | undefined;
|
|
2022
|
+
authorizationList?: undefined | undefined;
|
|
2023
|
+
blobs?: undefined | undefined;
|
|
2024
|
+
blobVersionedHashes?: undefined | undefined;
|
|
2025
|
+
gasPrice?: bigint | undefined;
|
|
2026
|
+
sidecars?: undefined | undefined;
|
|
2027
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
2028
|
+
maxFeePerGas?: undefined | undefined;
|
|
2029
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
2030
|
+
} & {
|
|
2031
|
+
accessList: import("viem").TransactionSerializableEIP2930["accessList"];
|
|
2032
|
+
} ? "eip2930" : never) | (request extends ({
|
|
2033
|
+
accessList?: import("viem").AccessList | undefined;
|
|
2034
|
+
authorizationList?: undefined | undefined;
|
|
2035
|
+
blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
|
|
2036
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
2037
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
2038
|
+
maxFeePerGas?: bigint | undefined;
|
|
2039
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
2040
|
+
sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
2041
|
+
} | {
|
|
2042
|
+
accessList?: import("viem").AccessList | undefined;
|
|
2043
|
+
authorizationList?: undefined | undefined;
|
|
2044
|
+
blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
|
|
2045
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
2046
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
2047
|
+
maxFeePerGas?: bigint | undefined;
|
|
2048
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
2049
|
+
sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
2050
|
+
}) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
|
|
2051
|
+
blobs: import("viem").TransactionSerializableEIP4844["blobs"];
|
|
2052
|
+
} | {
|
|
2053
|
+
blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
2054
|
+
} | {
|
|
2055
|
+
sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
|
|
2056
|
+
}, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
2057
|
+
accessList?: import("viem").AccessList | undefined;
|
|
2058
|
+
authorizationList?: import("viem").SignedAuthorizationList | undefined;
|
|
2059
|
+
blobs?: undefined | undefined;
|
|
2060
|
+
blobVersionedHashes?: undefined | undefined;
|
|
2061
|
+
gasPrice?: undefined | undefined;
|
|
2062
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
2063
|
+
maxFeePerGas?: bigint | undefined;
|
|
2064
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
2065
|
+
sidecars?: undefined | undefined;
|
|
2066
|
+
} | {
|
|
2067
|
+
accessList?: import("viem").AccessList | undefined;
|
|
2068
|
+
authorizationList?: import("viem").SignedAuthorizationList | undefined;
|
|
2069
|
+
blobs?: undefined | undefined;
|
|
2070
|
+
blobVersionedHashes?: undefined | undefined;
|
|
2071
|
+
gasPrice?: undefined | undefined;
|
|
2072
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
2073
|
+
maxFeePerGas?: bigint | undefined;
|
|
2074
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
2075
|
+
sidecars?: undefined | undefined;
|
|
2076
|
+
}) & {
|
|
2077
|
+
authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
|
|
2078
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) extends infer T_25 ? T_25 extends (request["type"] extends string ? request["type"] : import("viem").IsNever<import("viem").IsNever<Extract<import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<undefined, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> extends infer T_26 ? T_26 extends import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<undefined, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> ? T_26 extends object ? request extends import("viem").ExactPartial<T_26> ? T_26 extends {
|
|
2079
|
+
type?: infer type | undefined;
|
|
2080
|
+
} ? Extract<type, string> : never : never : never : never : never, NonNullable<"legacy" | "eip2930" | "eip1559" | "eip4844" | "eip7702" | undefined>>> extends true ? Exclude<import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<undefined, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> extends infer T_27 ? T_27 extends import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<undefined, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> ? T_27 extends object ? request extends import("viem").ExactPartial<T_27> ? T_27 extends {
|
|
2081
|
+
type?: infer type | undefined;
|
|
2082
|
+
} ? Extract<type, string> : never : never : never : never : never, NonNullable<"legacy" | "eip2930" | "eip1559" | "eip4844" | "eip7702" | undefined>> : never> extends false ? import("viem").IsNever<Extract<import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<undefined, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> extends infer T_28 ? T_28 extends import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<undefined, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> ? T_28 extends object ? request extends import("viem").ExactPartial<T_28> ? T_28 extends {
|
|
2083
|
+
type?: infer type | undefined;
|
|
2084
|
+
} ? Extract<type, string> : never : never : never : never : never, NonNullable<"legacy" | "eip2930" | "eip1559" | "eip4844" | "eip7702" | undefined>>> extends true ? Exclude<import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<undefined, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> extends infer T_29 ? T_29 extends import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<undefined, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> ? T_29 extends object ? request extends import("viem").ExactPartial<T_29> ? T_29 extends {
|
|
2085
|
+
type?: infer type | undefined;
|
|
2086
|
+
} ? Extract<type, string> : never : never : never : never : never, NonNullable<"legacy" | "eip2930" | "eip1559" | "eip4844" | "eip7702" | undefined>> : never : request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
|
|
2087
|
+
accessList?: undefined | undefined;
|
|
2088
|
+
authorizationList?: undefined | undefined;
|
|
2089
|
+
blobs?: undefined | undefined;
|
|
2090
|
+
blobVersionedHashes?: undefined | undefined;
|
|
2091
|
+
gasPrice?: bigint | undefined;
|
|
2092
|
+
sidecars?: undefined | undefined;
|
|
2093
|
+
} & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
2094
|
+
accessList?: import("viem").AccessList | undefined;
|
|
2095
|
+
authorizationList?: undefined | undefined;
|
|
2096
|
+
blobs?: undefined | undefined;
|
|
2097
|
+
blobVersionedHashes?: undefined | undefined;
|
|
2098
|
+
gasPrice?: undefined | undefined;
|
|
2099
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
2100
|
+
maxFeePerGas?: bigint | undefined;
|
|
2101
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
2102
|
+
sidecars?: undefined | undefined;
|
|
2103
|
+
} & (import("viem").OneOf<{
|
|
2104
|
+
maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
|
|
2105
|
+
} | {
|
|
2106
|
+
maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
2107
|
+
}, import("viem").FeeValuesEIP1559> & {
|
|
2108
|
+
accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
|
|
2109
|
+
}) ? "eip1559" : never) | (request extends {
|
|
2110
|
+
accessList?: import("viem").AccessList | undefined;
|
|
2111
|
+
authorizationList?: undefined | undefined;
|
|
2112
|
+
blobs?: undefined | undefined;
|
|
2113
|
+
blobVersionedHashes?: undefined | undefined;
|
|
2114
|
+
gasPrice?: bigint | undefined;
|
|
2115
|
+
sidecars?: undefined | undefined;
|
|
2116
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
2117
|
+
maxFeePerGas?: undefined | undefined;
|
|
2118
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
2119
|
+
} & {
|
|
2120
|
+
accessList: import("viem").TransactionSerializableEIP2930["accessList"];
|
|
2121
|
+
} ? "eip2930" : never) | (request extends ({
|
|
2122
|
+
accessList?: import("viem").AccessList | undefined;
|
|
2123
|
+
authorizationList?: undefined | undefined;
|
|
2124
|
+
blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
|
|
2125
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
2126
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
2127
|
+
maxFeePerGas?: bigint | undefined;
|
|
2128
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
2129
|
+
sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
2130
|
+
} | {
|
|
2131
|
+
accessList?: import("viem").AccessList | undefined;
|
|
2132
|
+
authorizationList?: undefined | undefined;
|
|
2133
|
+
blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
|
|
2134
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
2135
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
2136
|
+
maxFeePerGas?: bigint | undefined;
|
|
2137
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
2138
|
+
sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
2139
|
+
}) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
|
|
2140
|
+
blobs: import("viem").TransactionSerializableEIP4844["blobs"];
|
|
2141
|
+
} | {
|
|
2142
|
+
blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
2143
|
+
} | {
|
|
2144
|
+
sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
|
|
2145
|
+
}, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
2146
|
+
accessList?: import("viem").AccessList | undefined;
|
|
2147
|
+
authorizationList?: import("viem").SignedAuthorizationList | undefined;
|
|
2148
|
+
blobs?: undefined | undefined;
|
|
2149
|
+
blobVersionedHashes?: undefined | undefined;
|
|
2150
|
+
gasPrice?: undefined | undefined;
|
|
2151
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
2152
|
+
maxFeePerGas?: bigint | undefined;
|
|
2153
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
2154
|
+
sidecars?: undefined | undefined;
|
|
2155
|
+
} | {
|
|
2156
|
+
accessList?: import("viem").AccessList | undefined;
|
|
2157
|
+
authorizationList?: import("viem").SignedAuthorizationList | undefined;
|
|
2158
|
+
blobs?: undefined | undefined;
|
|
2159
|
+
blobVersionedHashes?: undefined | undefined;
|
|
2160
|
+
gasPrice?: undefined | undefined;
|
|
2161
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
2162
|
+
maxFeePerGas?: bigint | undefined;
|
|
2163
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
2164
|
+
sidecars?: undefined | undefined;
|
|
2165
|
+
}) & {
|
|
2166
|
+
authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
|
|
2167
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)> extends "legacy" ? unknown : import("viem").GetTransactionType<request, (request extends {
|
|
2168
|
+
accessList?: undefined | undefined;
|
|
2169
|
+
authorizationList?: undefined | undefined;
|
|
2170
|
+
blobs?: undefined | undefined;
|
|
2171
|
+
blobVersionedHashes?: undefined | undefined;
|
|
2172
|
+
gasPrice?: bigint | undefined;
|
|
2173
|
+
sidecars?: undefined | undefined;
|
|
2174
|
+
} & import("viem").FeeValuesLegacy ? "legacy" : never) | (request extends {
|
|
2175
|
+
accessList?: import("viem").AccessList | undefined;
|
|
2176
|
+
authorizationList?: undefined | undefined;
|
|
2177
|
+
blobs?: undefined | undefined;
|
|
2178
|
+
blobVersionedHashes?: undefined | undefined;
|
|
2179
|
+
gasPrice?: undefined | undefined;
|
|
2180
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
2181
|
+
maxFeePerGas?: bigint | undefined;
|
|
2182
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
2183
|
+
sidecars?: undefined | undefined;
|
|
2184
|
+
} & (import("viem").OneOf<{
|
|
2185
|
+
maxFeePerGas: import("viem").FeeValuesEIP1559["maxFeePerGas"];
|
|
2186
|
+
} | {
|
|
2187
|
+
maxPriorityFeePerGas: import("viem").FeeValuesEIP1559["maxPriorityFeePerGas"];
|
|
2188
|
+
}, import("viem").FeeValuesEIP1559> & {
|
|
2189
|
+
accessList?: import("viem").TransactionSerializableEIP2930["accessList"] | undefined;
|
|
2190
|
+
}) ? "eip1559" : never) | (request extends {
|
|
2191
|
+
accessList?: import("viem").AccessList | undefined;
|
|
2192
|
+
authorizationList?: undefined | undefined;
|
|
2193
|
+
blobs?: undefined | undefined;
|
|
2194
|
+
blobVersionedHashes?: undefined | undefined;
|
|
2195
|
+
gasPrice?: bigint | undefined;
|
|
2196
|
+
sidecars?: undefined | undefined;
|
|
2197
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
2198
|
+
maxFeePerGas?: undefined | undefined;
|
|
2199
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
2200
|
+
} & {
|
|
2201
|
+
accessList: import("viem").TransactionSerializableEIP2930["accessList"];
|
|
2202
|
+
} ? "eip2930" : never) | (request extends ({
|
|
2203
|
+
accessList?: import("viem").AccessList | undefined;
|
|
2204
|
+
authorizationList?: undefined | undefined;
|
|
2205
|
+
blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
|
|
2206
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
2207
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
2208
|
+
maxFeePerGas?: bigint | undefined;
|
|
2209
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
2210
|
+
sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
2211
|
+
} | {
|
|
2212
|
+
accessList?: import("viem").AccessList | undefined;
|
|
2213
|
+
authorizationList?: undefined | undefined;
|
|
2214
|
+
blobs?: readonly `0x${string}`[] | readonly import("viem").ByteArray[] | undefined;
|
|
2215
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
2216
|
+
maxFeePerBlobGas?: bigint | undefined;
|
|
2217
|
+
maxFeePerGas?: bigint | undefined;
|
|
2218
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
2219
|
+
sidecars?: false | readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
2220
|
+
}) & (import("viem").ExactPartial<import("viem").FeeValuesEIP4844> & import("viem").OneOf<{
|
|
2221
|
+
blobs: import("viem").TransactionSerializableEIP4844["blobs"];
|
|
2222
|
+
} | {
|
|
2223
|
+
blobVersionedHashes: import("viem").TransactionSerializableEIP4844["blobVersionedHashes"];
|
|
2224
|
+
} | {
|
|
2225
|
+
sidecars: import("viem").TransactionSerializableEIP4844["sidecars"];
|
|
2226
|
+
}, import("viem").TransactionSerializableEIP4844>) ? "eip4844" : never) | (request extends ({
|
|
2227
|
+
accessList?: import("viem").AccessList | undefined;
|
|
2228
|
+
authorizationList?: import("viem").SignedAuthorizationList | undefined;
|
|
2229
|
+
blobs?: undefined | undefined;
|
|
2230
|
+
blobVersionedHashes?: undefined | undefined;
|
|
2231
|
+
gasPrice?: undefined | undefined;
|
|
2232
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
2233
|
+
maxFeePerGas?: bigint | undefined;
|
|
2234
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
2235
|
+
sidecars?: undefined | undefined;
|
|
2236
|
+
} | {
|
|
2237
|
+
accessList?: import("viem").AccessList | undefined;
|
|
2238
|
+
authorizationList?: import("viem").SignedAuthorizationList | undefined;
|
|
2239
|
+
blobs?: undefined | undefined;
|
|
2240
|
+
blobVersionedHashes?: undefined | undefined;
|
|
2241
|
+
gasPrice?: undefined | undefined;
|
|
2242
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
2243
|
+
maxFeePerGas?: bigint | undefined;
|
|
2244
|
+
maxPriorityFeePerGas?: bigint | undefined;
|
|
2245
|
+
sidecars?: undefined | undefined;
|
|
2246
|
+
}) & {
|
|
2247
|
+
authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
|
|
2248
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_25 extends string ? T_25 : undefined : never : never) | undefined;
|
|
2249
|
+
}, import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<undefined, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from">, ((request["type"] extends string ? request["type"] : import("viem").IsNever<import("viem").IsNever<Extract<import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<undefined, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> extends infer T_30 ? T_30 extends import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<undefined, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> ? T_30 extends object ? request extends import("viem").ExactPartial<T_30> ? T_30 extends {
|
|
2250
|
+
type?: infer type | undefined;
|
|
2251
|
+
} ? Extract<type, string> : never : never : never : never : never, NonNullable<"legacy" | "eip2930" | "eip1559" | "eip4844" | "eip7702" | undefined>>> extends true ? Exclude<import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<undefined, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> extends infer T_31 ? T_31 extends import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<undefined, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> ? T_31 extends object ? request extends import("viem").ExactPartial<T_31> ? T_31 extends {
|
|
2252
|
+
type?: infer type | undefined;
|
|
2253
|
+
} ? Extract<type, string> : never : never : never : never : never, NonNullable<"legacy" | "eip2930" | "eip1559" | "eip4844" | "eip7702" | undefined>> : never> extends false ? import("viem").IsNever<Extract<import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<undefined, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> extends infer T_32 ? T_32 extends import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<undefined, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> ? T_32 extends object ? request extends import("viem").ExactPartial<T_32> ? T_32 extends {
|
|
2254
|
+
type?: infer type | undefined;
|
|
2255
|
+
} ? Extract<type, string> : never : never : never : never : never, NonNullable<"legacy" | "eip2930" | "eip1559" | "eip4844" | "eip7702" | undefined>>> extends true ? Exclude<import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<undefined, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> extends infer T_33 ? T_33 extends import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<undefined, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> ? T_33 extends object ? request extends import("viem").ExactPartial<T_33> ? T_33 extends {
|
|
2256
|
+
type?: infer type | undefined;
|
|
2257
|
+
} ? Extract<type, string> : never : never : never : never : never, NonNullable<"legacy" | "eip2930" | "eip1559" | "eip4844" | "eip7702" | undefined>> : never : request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
|
|
4036
2258
|
accessList?: undefined | undefined;
|
|
4037
2259
|
authorizationList?: undefined | undefined;
|
|
4038
2260
|
blobs?: undefined | undefined;
|
|
@@ -4194,7 +2416,15 @@ export declare const getViemProvider: (provider: EthereumProvider, network: Netw
|
|
|
4194
2416
|
sidecars?: undefined | undefined;
|
|
4195
2417
|
}) & {
|
|
4196
2418
|
authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
|
|
4197
|
-
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) extends infer
|
|
2419
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) extends infer T_34 ? T_34 extends (request["type"] extends string ? request["type"] : import("viem").IsNever<import("viem").IsNever<Extract<import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<undefined, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> extends infer T_35 ? T_35 extends import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<undefined, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> ? T_35 extends object ? request extends import("viem").ExactPartial<T_35> ? T_35 extends {
|
|
2420
|
+
type?: infer type | undefined;
|
|
2421
|
+
} ? Extract<type, string> : never : never : never : never : never, NonNullable<"legacy" | "eip2930" | "eip1559" | "eip4844" | "eip7702" | undefined>>> extends true ? Exclude<import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<undefined, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> extends infer T_36 ? T_36 extends import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<undefined, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> ? T_36 extends object ? request extends import("viem").ExactPartial<T_36> ? T_36 extends {
|
|
2422
|
+
type?: infer type | undefined;
|
|
2423
|
+
} ? Extract<type, string> : never : never : never : never : never, NonNullable<"legacy" | "eip2930" | "eip1559" | "eip4844" | "eip7702" | undefined>> : never> extends false ? import("viem").IsNever<Extract<import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<undefined, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> extends infer T_37 ? T_37 extends import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<undefined, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> ? T_37 extends object ? request extends import("viem").ExactPartial<T_37> ? T_37 extends {
|
|
2424
|
+
type?: infer type | undefined;
|
|
2425
|
+
} ? Extract<type, string> : never : never : never : never : never, NonNullable<"legacy" | "eip2930" | "eip1559" | "eip4844" | "eip7702" | undefined>>> extends true ? Exclude<import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<undefined, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> extends infer T_38 ? T_38 extends import("viem").UnionOmit<import("viem").ExtractChainFormatterParameters<import("viem").DeriveChain<undefined, chainOverride>, "transactionRequest", import("viem").TransactionRequest>, "from"> ? T_38 extends object ? request extends import("viem").ExactPartial<T_38> ? T_38 extends {
|
|
2426
|
+
type?: infer type | undefined;
|
|
2427
|
+
} ? Extract<type, string> : never : never : never : never : never, NonNullable<"legacy" | "eip2930" | "eip1559" | "eip4844" | "eip7702" | undefined>> : never : request["type"] extends string | undefined ? request["type"] : import("viem").GetTransactionType<request, (request extends {
|
|
4198
2428
|
accessList?: undefined | undefined;
|
|
4199
2429
|
authorizationList?: undefined | undefined;
|
|
4200
2430
|
blobs?: undefined | undefined;
|
|
@@ -4356,28 +2586,23 @@ export declare const getViemProvider: (provider: EthereumProvider, network: Netw
|
|
|
4356
2586
|
sidecars?: undefined | undefined;
|
|
4357
2587
|
}) & {
|
|
4358
2588
|
authorizationList: import("viem").TransactionSerializableEIP7702["authorizationList"];
|
|
4359
|
-
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ?
|
|
2589
|
+
} ? "eip7702" : never) | (request["type"] extends string | undefined ? Extract<request["type"], string> : never)>) ? T_34 extends string ? T_34 : undefined : never : never) | undefined>>> & {
|
|
4360
2590
|
chainId?: number | undefined;
|
|
4361
|
-
}, (request["parameters"] extends readonly import("viem").PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "type" | "gas" | "nonce" | "blobVersionedHashes" | "fees" | "chainId") extends infer
|
|
2591
|
+
}, (request["parameters"] extends readonly import("viem").PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "type" | "gas" | "nonce" | "blobVersionedHashes" | "fees" | "chainId") extends infer T_39 ? T_39 extends (request["parameters"] extends readonly import("viem").PrepareTransactionRequestParameterType[] ? request["parameters"][number] : "type" | "gas" | "nonce" | "blobVersionedHashes" | "fees" | "chainId") ? T_39 extends "fees" ? "gasPrice" | "maxFeePerGas" | "maxPriorityFeePerGas" : T_39 : never : never> & (unknown extends request["kzg"] ? {} : Pick<request, "kzg">) & {
|
|
2592
|
+
_capabilities?: {
|
|
2593
|
+
[x: string]: any;
|
|
2594
|
+
} | undefined;
|
|
2595
|
+
} extends infer T ? { [K in keyof T]: T[K]; } : never>;
|
|
4362
2596
|
readContract: <const abi extends 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>>;
|
|
4363
2597
|
sendRawTransaction: (args: import("viem").SendRawTransactionParameters) => Promise<import("viem").SendRawTransactionReturnType>;
|
|
2598
|
+
sendRawTransactionSync: (args: import("viem").SendRawTransactionSyncParameters) => Promise<import("viem").TransactionReceipt>;
|
|
4364
2599
|
simulate: <const calls extends readonly unknown[]>(args: import("viem").SimulateBlocksParameters<calls>) => Promise<import("viem").SimulateBlocksReturnType<calls>>;
|
|
4365
2600
|
simulateBlocks: <const calls extends readonly unknown[]>(args: import("viem").SimulateBlocksParameters<calls>) => Promise<import("viem").SimulateBlocksReturnType<calls>>;
|
|
4366
2601
|
simulateCalls: <const calls extends readonly unknown[]>(args: import("viem").SimulateCallsParameters<calls>) => Promise<import("viem").SimulateCallsReturnType<calls>>;
|
|
4367
|
-
simulateContract: <const abi extends Abi | readonly unknown[], functionName extends import("viem").ContractFunctionName<abi, "nonpayable" | "payable">, const args_1 extends import("viem").ContractFunctionArgs<abi, "nonpayable" | "payable", functionName>, chainOverride extends import("viem").Chain | undefined, accountOverride extends import("viem").Account | import("viem").Address | undefined = undefined>(args: import("viem").SimulateContractParameters<abi, functionName, args_1, undefined, chainOverride, accountOverride>) => Promise<import("viem").SimulateContractReturnType<abi, functionName, args_1, undefined,
|
|
2602
|
+
simulateContract: <const abi extends Abi | readonly unknown[], functionName extends import("viem").ContractFunctionName<abi, "nonpayable" | "payable">, const args_1 extends import("viem").ContractFunctionArgs<abi, "nonpayable" | "payable", functionName>, chainOverride extends import("viem").Chain | undefined, accountOverride extends import("viem").Account | import("viem").Address | undefined = undefined>(args: import("viem").SimulateContractParameters<abi, functionName, args_1, undefined, chainOverride, accountOverride>) => Promise<import("viem").SimulateContractReturnType<abi, functionName, args_1, undefined, undefined, chainOverride, accountOverride>>;
|
|
4368
2603
|
verifyHash: (args: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>;
|
|
4369
2604
|
verifyMessage: (args: import("viem").VerifyMessageActionParameters) => Promise<import("viem").VerifyMessageActionReturnType>;
|
|
4370
|
-
verifySiweMessage: (args:
|
|
4371
|
-
blockNumber?: bigint | undefined | undefined;
|
|
4372
|
-
blockTag?: import("viem").BlockTag | undefined;
|
|
4373
|
-
address?: `0x${string}` | undefined;
|
|
4374
|
-
time?: Date | undefined;
|
|
4375
|
-
nonce?: string | undefined | undefined;
|
|
4376
|
-
domain?: string | undefined | undefined;
|
|
4377
|
-
scheme?: string | undefined | undefined;
|
|
4378
|
-
message: string;
|
|
4379
|
-
signature: import("viem").Hex;
|
|
4380
|
-
}) => Promise<boolean>;
|
|
2605
|
+
verifySiweMessage: (args: import("viem/_types/actions/siwe/verifySiweMessage").VerifySiweMessageParameters) => Promise<import("viem/_types/actions/siwe/verifySiweMessage").VerifySiweMessageReturnType>;
|
|
4381
2606
|
verifyTypedData: (args: import("viem").VerifyTypedDataActionParameters) => Promise<import("viem").VerifyTypedDataActionReturnType>;
|
|
4382
2607
|
uninstallFilter: (args: import("viem").UninstallFilterParameters) => Promise<import("viem").UninstallFilterReturnType>;
|
|
4383
2608
|
waitForTransactionReceipt: (args: import("viem").WaitForTransactionReceiptParameters<undefined>) => Promise<import("viem").TransactionReceipt>;
|
|
@@ -4386,6 +2611,18 @@ export declare const getViemProvider: (provider: EthereumProvider, network: Netw
|
|
|
4386
2611
|
watchContractEvent: <const abi extends Abi | readonly unknown[], eventName extends import("viem").ContractEventName<abi>, strict extends boolean | undefined = undefined>(args: import("viem").WatchContractEventParameters<abi, eventName, strict, import("viem").Transport>) => import("viem").WatchContractEventReturnType;
|
|
4387
2612
|
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").Transport>) => import("viem").WatchEventReturnType;
|
|
4388
2613
|
watchPendingTransactions: (args: import("viem").WatchPendingTransactionsParameters<import("viem").Transport>) => import("viem").WatchPendingTransactionsReturnType;
|
|
2614
|
+
token: {
|
|
2615
|
+
getAllowance: ((parameters: import("viem/_types/actions/token").getAllowance.Parameters<undefined, undefined>) => Promise<import("viem/_types/actions/token").getAllowance.ReturnValue>) & {
|
|
2616
|
+
call: (args: import("viem/_types/actions/token").getAllowance.Args<undefined, undefined>) => ReturnType<typeof import("viem/_types/actions/token").getAllowance.call>;
|
|
2617
|
+
};
|
|
2618
|
+
getBalance: ((parameters: import("viem/_types/actions/token").getBalance.Parameters<undefined, undefined, undefined>) => Promise<import("viem/_types/actions/token").getBalance.ReturnValue>) & {
|
|
2619
|
+
call: (args: import("viem/_types/actions/token").getBalance.Args<undefined, undefined, undefined>) => ReturnType<typeof import("viem/_types/actions/token").getBalance.call>;
|
|
2620
|
+
};
|
|
2621
|
+
getMetadata: (parameters: import("viem/_types/actions/token").getMetadata.Parameters<undefined, undefined>) => Promise<import("viem/_types/actions/token").getMetadata.ReturnValue>;
|
|
2622
|
+
getTotalSupply: ((parameters: import("viem/_types/actions/token").getTotalSupply.Parameters<undefined, undefined>) => Promise<import("viem/_types/actions/token").getTotalSupply.ReturnValue>) & {
|
|
2623
|
+
call: (args: import("viem/_types/actions/token").getTotalSupply.Args<undefined, undefined>) => ReturnType<typeof import("viem/_types/actions/token").getTotalSupply.call>;
|
|
2624
|
+
};
|
|
2625
|
+
};
|
|
4389
2626
|
extend: <const client extends {
|
|
4390
2627
|
[x: string]: unknown;
|
|
4391
2628
|
account?: undefined;
|
|
@@ -4393,15 +2630,17 @@ export declare const getViemProvider: (provider: EthereumProvider, network: Netw
|
|
|
4393
2630
|
cacheTime?: undefined;
|
|
4394
2631
|
ccipRead?: undefined;
|
|
4395
2632
|
chain?: undefined;
|
|
2633
|
+
dataSuffix?: undefined;
|
|
4396
2634
|
experimental_blockTag?: undefined;
|
|
4397
2635
|
key?: undefined;
|
|
4398
2636
|
name?: undefined;
|
|
4399
2637
|
pollingInterval?: undefined;
|
|
4400
2638
|
request?: undefined;
|
|
2639
|
+
tokens?: undefined;
|
|
4401
2640
|
transport?: undefined;
|
|
4402
2641
|
type?: undefined;
|
|
4403
2642
|
uid?: undefined;
|
|
4404
|
-
} & import("viem").ExactPartial<Pick<import("viem").PublicActions<import("viem").Transport, undefined, undefined>, "getBlockNumber" | "call" | "createContractEventFilter" | "createEventFilter" | "estimateContractGas" | "estimateGas" | "getBlock" | "getChainId" | "getContractEvents" | "getEnsText" | "getFilterChanges" | "getGasPrice" | "getLogs" | "getTransaction" | "getTransactionCount" | "getTransactionReceipt" | "prepareTransactionRequest" | "readContract" | "sendRawTransaction" | "simulateContract" | "uninstallFilter" | "watchBlockNumber" | "watchContractEvent"> & Pick<import("viem").WalletActions<undefined, undefined>, "sendTransaction" | "writeContract">>>(fn: (client: import("viem").Client<import("viem").Transport, undefined, undefined, import("viem").PublicRpcSchema, import("viem").PublicActions<import("viem").Transport, undefined
|
|
2643
|
+
} & import("viem").ExactPartial<Pick<import("viem").PublicActions<import("viem").Transport, undefined, undefined, undefined>, "getBlockNumber" | "call" | "createContractEventFilter" | "createEventFilter" | "estimateContractGas" | "estimateGas" | "getBlock" | "getChainId" | "getContractEvents" | "getEnsText" | "getFilterChanges" | "getGasPrice" | "getLogs" | "getTransaction" | "getTransactionCount" | "getTransactionReceipt" | "prepareTransactionRequest" | "readContract" | "sendRawTransaction" | "simulateContract" | "uninstallFilter" | "watchBlockNumber" | "watchContractEvent"> & Pick<import("viem").WalletActions<undefined, undefined, undefined>, "sendTransaction" | "writeContract">>>(fn: (client: import("viem").Client<import("viem").Transport, undefined, undefined, import("viem").PublicRpcSchema, import("viem").PublicActions<import("viem").Transport, undefined, undefined, undefined>, undefined>) => client) => import("viem").Client<import("viem").Transport, undefined, undefined, import("viem").PublicRpcSchema, { [K in keyof client]: client[K]; } & import("viem").PublicActions<import("viem").Transport, undefined, undefined, undefined>, undefined>;
|
|
4405
2644
|
};
|
|
4406
2645
|
export declare const setViemBlockNumber: (block: Blockish) => {
|
|
4407
2646
|
blockNumber?: undefined;
|