@funkit/chains 0.2.1 → 0.2.3
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/dist/index.d.ts +996 -452
- package/dist/index.js +25 -1
- package/dist/index.js.map +2 -2
- package/package.json +2 -2
package/dist/index.d.ts
CHANGED
|
@@ -103,6 +103,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO: {
|
|
|
103
103
|
readonly blockCreated: 14353601;
|
|
104
104
|
};
|
|
105
105
|
};
|
|
106
|
+
ensTlds?: readonly string[] | undefined;
|
|
106
107
|
id: 1;
|
|
107
108
|
name: "Ethereum";
|
|
108
109
|
nativeCurrency: {
|
|
@@ -112,11 +113,11 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO: {
|
|
|
112
113
|
};
|
|
113
114
|
rpcUrls: {
|
|
114
115
|
readonly default: {
|
|
115
|
-
readonly http: readonly ["https://
|
|
116
|
+
readonly http: readonly ["https://eth.merkle.io"];
|
|
116
117
|
};
|
|
117
118
|
};
|
|
118
|
-
sourceId?: number | undefined;
|
|
119
|
-
testnet?: boolean | undefined;
|
|
119
|
+
sourceId?: number | undefined | undefined;
|
|
120
|
+
testnet?: boolean | undefined | undefined;
|
|
120
121
|
custom?: Record<string, unknown> | undefined;
|
|
121
122
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
122
123
|
formatters?: undefined;
|
|
@@ -152,6 +153,11 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO: {
|
|
|
152
153
|
};
|
|
153
154
|
};
|
|
154
155
|
contracts: {
|
|
156
|
+
readonly disputeGameFactory: {
|
|
157
|
+
readonly 1: {
|
|
158
|
+
readonly address: "0x43edB88C4B80fDD2AdFF2412A7BebF9dF42cB40e";
|
|
159
|
+
};
|
|
160
|
+
};
|
|
155
161
|
readonly l2OutputOracle: {
|
|
156
162
|
readonly 1: {
|
|
157
163
|
readonly address: "0x56315b90c40730925ec5485cf004d835058518A0";
|
|
@@ -192,6 +198,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO: {
|
|
|
192
198
|
readonly address: "0x4200000000000000000000000000000000000016";
|
|
193
199
|
};
|
|
194
200
|
};
|
|
201
|
+
ensTlds?: readonly string[] | undefined;
|
|
195
202
|
id: 8453;
|
|
196
203
|
name: "Base";
|
|
197
204
|
nativeCurrency: {
|
|
@@ -205,7 +212,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO: {
|
|
|
205
212
|
};
|
|
206
213
|
};
|
|
207
214
|
sourceId: 1;
|
|
208
|
-
testnet?: boolean | undefined;
|
|
215
|
+
testnet?: boolean | undefined | undefined;
|
|
209
216
|
custom?: Record<string, unknown> | undefined;
|
|
210
217
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
211
218
|
formatters: {
|
|
@@ -225,6 +232,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO: {
|
|
|
225
232
|
mixHash: import("viem").Hash;
|
|
226
233
|
nonce: `0x${string}` | null;
|
|
227
234
|
number: bigint | null;
|
|
235
|
+
parentBeaconBlockRoot?: `0x${string}` | undefined;
|
|
228
236
|
parentHash: import("viem").Hash;
|
|
229
237
|
receiptsRoot: import("viem").Hex;
|
|
230
238
|
sealFields: import("viem").Hex[];
|
|
@@ -236,8 +244,8 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO: {
|
|
|
236
244
|
transactions: `0x${string}`[] | import("viem/chains").OpStackTransaction<boolean>[];
|
|
237
245
|
transactionsRoot: import("viem").Hash;
|
|
238
246
|
uncles: import("viem").Hash[];
|
|
239
|
-
withdrawals?: import("viem").Withdrawal[] | undefined;
|
|
240
|
-
withdrawalsRoot?:
|
|
247
|
+
withdrawals?: import("viem").Withdrawal[] | undefined | undefined;
|
|
248
|
+
withdrawalsRoot?: `0x${string}` | undefined;
|
|
241
249
|
} & {};
|
|
242
250
|
type: "block";
|
|
243
251
|
};
|
|
@@ -259,12 +267,12 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO: {
|
|
|
259
267
|
v: bigint;
|
|
260
268
|
value: bigint;
|
|
261
269
|
yParity: number;
|
|
262
|
-
gasPrice?: undefined;
|
|
263
|
-
maxFeePerBlobGas?: undefined;
|
|
270
|
+
gasPrice?: undefined | undefined;
|
|
271
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
264
272
|
maxFeePerGas: bigint;
|
|
265
273
|
maxPriorityFeePerGas: bigint;
|
|
266
274
|
isSystemTx?: boolean;
|
|
267
|
-
mint?: bigint | undefined;
|
|
275
|
+
mint?: bigint | undefined | undefined;
|
|
268
276
|
sourceHash: import("viem").Hex;
|
|
269
277
|
type: "deposit";
|
|
270
278
|
} | {
|
|
@@ -282,18 +290,19 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO: {
|
|
|
282
290
|
input: import("viem").Hex;
|
|
283
291
|
transactionIndex: number | null;
|
|
284
292
|
typeHex: import("viem").Hex | null;
|
|
285
|
-
accessList?: undefined;
|
|
286
|
-
|
|
293
|
+
accessList?: undefined | undefined;
|
|
294
|
+
authorizationList?: undefined | undefined;
|
|
295
|
+
blobVersionedHashes?: undefined | undefined;
|
|
287
296
|
chainId?: number | undefined;
|
|
288
|
-
yParity?: undefined;
|
|
297
|
+
yParity?: undefined | undefined;
|
|
289
298
|
type: "legacy";
|
|
290
299
|
gasPrice: bigint;
|
|
291
|
-
maxFeePerBlobGas?: undefined;
|
|
292
|
-
maxFeePerGas?: undefined;
|
|
293
|
-
maxPriorityFeePerGas?: undefined;
|
|
294
|
-
isSystemTx?: undefined;
|
|
295
|
-
mint?: undefined;
|
|
296
|
-
sourceHash?: undefined;
|
|
300
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
301
|
+
maxFeePerGas?: undefined | undefined;
|
|
302
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
303
|
+
isSystemTx?: undefined | undefined;
|
|
304
|
+
mint?: undefined | undefined;
|
|
305
|
+
sourceHash?: undefined | undefined;
|
|
297
306
|
} | {
|
|
298
307
|
blockHash: `0x${string}` | null;
|
|
299
308
|
blockNumber: bigint | null;
|
|
@@ -311,16 +320,17 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO: {
|
|
|
311
320
|
value: bigint;
|
|
312
321
|
yParity: number;
|
|
313
322
|
accessList: import("viem").AccessList;
|
|
314
|
-
|
|
323
|
+
authorizationList?: undefined | undefined;
|
|
324
|
+
blobVersionedHashes?: undefined | undefined;
|
|
315
325
|
chainId: number;
|
|
316
326
|
type: "eip2930";
|
|
317
327
|
gasPrice: bigint;
|
|
318
|
-
maxFeePerBlobGas?: undefined;
|
|
319
|
-
maxFeePerGas?: undefined;
|
|
320
|
-
maxPriorityFeePerGas?: undefined;
|
|
321
|
-
isSystemTx?: undefined;
|
|
322
|
-
mint?: undefined;
|
|
323
|
-
sourceHash?: undefined;
|
|
328
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
329
|
+
maxFeePerGas?: undefined | undefined;
|
|
330
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
331
|
+
isSystemTx?: undefined | undefined;
|
|
332
|
+
mint?: undefined | undefined;
|
|
333
|
+
sourceHash?: undefined | undefined;
|
|
324
334
|
} | {
|
|
325
335
|
blockHash: `0x${string}` | null;
|
|
326
336
|
blockNumber: bigint | null;
|
|
@@ -338,16 +348,17 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO: {
|
|
|
338
348
|
value: bigint;
|
|
339
349
|
yParity: number;
|
|
340
350
|
accessList: import("viem").AccessList;
|
|
341
|
-
|
|
351
|
+
authorizationList?: undefined | undefined;
|
|
352
|
+
blobVersionedHashes?: undefined | undefined;
|
|
342
353
|
chainId: number;
|
|
343
354
|
type: "eip1559";
|
|
344
|
-
gasPrice?: undefined;
|
|
345
|
-
maxFeePerBlobGas?: undefined;
|
|
355
|
+
gasPrice?: undefined | undefined;
|
|
356
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
346
357
|
maxFeePerGas: bigint;
|
|
347
358
|
maxPriorityFeePerGas: bigint;
|
|
348
|
-
isSystemTx?: undefined;
|
|
349
|
-
mint?: undefined;
|
|
350
|
-
sourceHash?: undefined;
|
|
359
|
+
isSystemTx?: undefined | undefined;
|
|
360
|
+
mint?: undefined | undefined;
|
|
361
|
+
sourceHash?: undefined | undefined;
|
|
351
362
|
} | {
|
|
352
363
|
blockHash: `0x${string}` | null;
|
|
353
364
|
blockNumber: bigint | null;
|
|
@@ -365,16 +376,45 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO: {
|
|
|
365
376
|
value: bigint;
|
|
366
377
|
yParity: number;
|
|
367
378
|
accessList: import("viem").AccessList;
|
|
379
|
+
authorizationList?: undefined | undefined;
|
|
368
380
|
blobVersionedHashes: readonly import("viem").Hex[];
|
|
369
381
|
chainId: number;
|
|
370
382
|
type: "eip4844";
|
|
371
|
-
gasPrice?: undefined;
|
|
383
|
+
gasPrice?: undefined | undefined;
|
|
372
384
|
maxFeePerBlobGas: bigint;
|
|
373
385
|
maxFeePerGas: bigint;
|
|
374
386
|
maxPriorityFeePerGas: bigint;
|
|
375
|
-
isSystemTx?: undefined;
|
|
376
|
-
mint?: undefined;
|
|
377
|
-
sourceHash?: undefined;
|
|
387
|
+
isSystemTx?: undefined | undefined;
|
|
388
|
+
mint?: undefined | undefined;
|
|
389
|
+
sourceHash?: undefined | undefined;
|
|
390
|
+
} | {
|
|
391
|
+
blockHash: `0x${string}` | null;
|
|
392
|
+
blockNumber: bigint | null;
|
|
393
|
+
from: import("viem").Address;
|
|
394
|
+
gas: bigint;
|
|
395
|
+
hash: import("viem").Hash;
|
|
396
|
+
input: import("viem").Hex;
|
|
397
|
+
nonce: number;
|
|
398
|
+
r: import("viem").Hex;
|
|
399
|
+
s: import("viem").Hex;
|
|
400
|
+
to: import("viem").Address | null;
|
|
401
|
+
transactionIndex: number | null;
|
|
402
|
+
typeHex: import("viem").Hex | null;
|
|
403
|
+
v: bigint;
|
|
404
|
+
value: bigint;
|
|
405
|
+
yParity: number;
|
|
406
|
+
accessList: import("viem").AccessList;
|
|
407
|
+
authorizationList: import("viem").SignedAuthorizationList;
|
|
408
|
+
blobVersionedHashes?: undefined | undefined;
|
|
409
|
+
chainId: number;
|
|
410
|
+
type: "eip7702";
|
|
411
|
+
gasPrice?: undefined | undefined;
|
|
412
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
413
|
+
maxFeePerGas: bigint;
|
|
414
|
+
maxPriorityFeePerGas: bigint;
|
|
415
|
+
isSystemTx?: undefined | undefined;
|
|
416
|
+
mint?: undefined | undefined;
|
|
417
|
+
sourceHash?: undefined | undefined;
|
|
378
418
|
}) & {};
|
|
379
419
|
type: "transaction";
|
|
380
420
|
};
|
|
@@ -392,7 +432,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO: {
|
|
|
392
432
|
gasUsed: bigint;
|
|
393
433
|
logs: import("viem").Log<bigint, number, false>[];
|
|
394
434
|
logsBloom: import("viem").Hex;
|
|
395
|
-
root?:
|
|
435
|
+
root?: `0x${string}` | undefined;
|
|
396
436
|
status: "success" | "reverted";
|
|
397
437
|
to: import("viem").Address | null;
|
|
398
438
|
transactionHash: import("viem").Hash;
|
|
@@ -427,9 +467,9 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO: {
|
|
|
427
467
|
} | {
|
|
428
468
|
name: "Polygon";
|
|
429
469
|
nativeCurrency: {
|
|
430
|
-
symbol: "
|
|
470
|
+
symbol: "POL";
|
|
431
471
|
decimals: 18;
|
|
432
|
-
name: "
|
|
472
|
+
name: "POL";
|
|
433
473
|
};
|
|
434
474
|
coreToken: {
|
|
435
475
|
symbol: string;
|
|
@@ -450,11 +490,12 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO: {
|
|
|
450
490
|
readonly blockCreated: 25770160;
|
|
451
491
|
};
|
|
452
492
|
};
|
|
493
|
+
ensTlds?: readonly string[] | undefined;
|
|
453
494
|
id: 137;
|
|
454
495
|
name: "Polygon";
|
|
455
496
|
nativeCurrency: {
|
|
456
|
-
readonly name: "
|
|
457
|
-
readonly symbol: "
|
|
497
|
+
readonly name: "POL";
|
|
498
|
+
readonly symbol: "POL";
|
|
458
499
|
readonly decimals: 18;
|
|
459
500
|
};
|
|
460
501
|
rpcUrls: {
|
|
@@ -462,8 +503,8 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO: {
|
|
|
462
503
|
readonly http: readonly ["https://polygon-rpc.com"];
|
|
463
504
|
};
|
|
464
505
|
};
|
|
465
|
-
sourceId?: number | undefined;
|
|
466
|
-
testnet?: boolean | undefined;
|
|
506
|
+
sourceId?: number | undefined | undefined;
|
|
507
|
+
testnet?: boolean | undefined | undefined;
|
|
467
508
|
custom?: Record<string, unknown> | undefined;
|
|
468
509
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
469
510
|
formatters?: undefined;
|
|
@@ -508,6 +549,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO: {
|
|
|
508
549
|
readonly blockCreated: 7654707;
|
|
509
550
|
};
|
|
510
551
|
};
|
|
552
|
+
ensTlds?: readonly string[] | undefined;
|
|
511
553
|
id: 42161;
|
|
512
554
|
name: "Arbitrum One";
|
|
513
555
|
nativeCurrency: {
|
|
@@ -520,8 +562,8 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO: {
|
|
|
520
562
|
readonly http: readonly ["https://arb1.arbitrum.io/rpc"];
|
|
521
563
|
};
|
|
522
564
|
};
|
|
523
|
-
sourceId?: number | undefined;
|
|
524
|
-
testnet?: boolean | undefined;
|
|
565
|
+
sourceId?: number | undefined | undefined;
|
|
566
|
+
testnet?: boolean | undefined | undefined;
|
|
525
567
|
custom?: Record<string, unknown> | undefined;
|
|
526
568
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
527
569
|
formatters?: undefined;
|
|
@@ -604,6 +646,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO: {
|
|
|
604
646
|
readonly address: "0x4200000000000000000000000000000000000016";
|
|
605
647
|
};
|
|
606
648
|
};
|
|
649
|
+
ensTlds?: readonly string[] | undefined;
|
|
607
650
|
id: 10;
|
|
608
651
|
name: "OP Mainnet";
|
|
609
652
|
nativeCurrency: {
|
|
@@ -617,7 +660,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO: {
|
|
|
617
660
|
};
|
|
618
661
|
};
|
|
619
662
|
sourceId: 1;
|
|
620
|
-
testnet?: boolean | undefined;
|
|
663
|
+
testnet?: boolean | undefined | undefined;
|
|
621
664
|
custom?: Record<string, unknown> | undefined;
|
|
622
665
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
623
666
|
formatters: {
|
|
@@ -637,6 +680,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO: {
|
|
|
637
680
|
mixHash: import("viem").Hash;
|
|
638
681
|
nonce: `0x${string}` | null;
|
|
639
682
|
number: bigint | null;
|
|
683
|
+
parentBeaconBlockRoot?: `0x${string}` | undefined;
|
|
640
684
|
parentHash: import("viem").Hash;
|
|
641
685
|
receiptsRoot: import("viem").Hex;
|
|
642
686
|
sealFields: import("viem").Hex[];
|
|
@@ -648,8 +692,8 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO: {
|
|
|
648
692
|
transactions: `0x${string}`[] | import("viem/chains").OpStackTransaction<boolean>[];
|
|
649
693
|
transactionsRoot: import("viem").Hash;
|
|
650
694
|
uncles: import("viem").Hash[];
|
|
651
|
-
withdrawals?: import("viem").Withdrawal[] | undefined;
|
|
652
|
-
withdrawalsRoot?:
|
|
695
|
+
withdrawals?: import("viem").Withdrawal[] | undefined | undefined;
|
|
696
|
+
withdrawalsRoot?: `0x${string}` | undefined;
|
|
653
697
|
} & {};
|
|
654
698
|
type: "block";
|
|
655
699
|
};
|
|
@@ -671,12 +715,12 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO: {
|
|
|
671
715
|
v: bigint;
|
|
672
716
|
value: bigint;
|
|
673
717
|
yParity: number;
|
|
674
|
-
gasPrice?: undefined;
|
|
675
|
-
maxFeePerBlobGas?: undefined;
|
|
718
|
+
gasPrice?: undefined | undefined;
|
|
719
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
676
720
|
maxFeePerGas: bigint;
|
|
677
721
|
maxPriorityFeePerGas: bigint;
|
|
678
722
|
isSystemTx?: boolean;
|
|
679
|
-
mint?: bigint | undefined;
|
|
723
|
+
mint?: bigint | undefined | undefined;
|
|
680
724
|
sourceHash: import("viem").Hex;
|
|
681
725
|
type: "deposit";
|
|
682
726
|
} | {
|
|
@@ -694,18 +738,19 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO: {
|
|
|
694
738
|
input: import("viem").Hex;
|
|
695
739
|
transactionIndex: number | null;
|
|
696
740
|
typeHex: import("viem").Hex | null;
|
|
697
|
-
accessList?: undefined;
|
|
698
|
-
|
|
741
|
+
accessList?: undefined | undefined;
|
|
742
|
+
authorizationList?: undefined | undefined;
|
|
743
|
+
blobVersionedHashes?: undefined | undefined;
|
|
699
744
|
chainId?: number | undefined;
|
|
700
|
-
yParity?: undefined;
|
|
745
|
+
yParity?: undefined | undefined;
|
|
701
746
|
type: "legacy";
|
|
702
747
|
gasPrice: bigint;
|
|
703
|
-
maxFeePerBlobGas?: undefined;
|
|
704
|
-
maxFeePerGas?: undefined;
|
|
705
|
-
maxPriorityFeePerGas?: undefined;
|
|
706
|
-
isSystemTx?: undefined;
|
|
707
|
-
mint?: undefined;
|
|
708
|
-
sourceHash?: undefined;
|
|
748
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
749
|
+
maxFeePerGas?: undefined | undefined;
|
|
750
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
751
|
+
isSystemTx?: undefined | undefined;
|
|
752
|
+
mint?: undefined | undefined;
|
|
753
|
+
sourceHash?: undefined | undefined;
|
|
709
754
|
} | {
|
|
710
755
|
blockHash: `0x${string}` | null;
|
|
711
756
|
blockNumber: bigint | null;
|
|
@@ -723,16 +768,17 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO: {
|
|
|
723
768
|
value: bigint;
|
|
724
769
|
yParity: number;
|
|
725
770
|
accessList: import("viem").AccessList;
|
|
726
|
-
|
|
771
|
+
authorizationList?: undefined | undefined;
|
|
772
|
+
blobVersionedHashes?: undefined | undefined;
|
|
727
773
|
chainId: number;
|
|
728
774
|
type: "eip2930";
|
|
729
775
|
gasPrice: bigint;
|
|
730
|
-
maxFeePerBlobGas?: undefined;
|
|
731
|
-
maxFeePerGas?: undefined;
|
|
732
|
-
maxPriorityFeePerGas?: undefined;
|
|
733
|
-
isSystemTx?: undefined;
|
|
734
|
-
mint?: undefined;
|
|
735
|
-
sourceHash?: undefined;
|
|
776
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
777
|
+
maxFeePerGas?: undefined | undefined;
|
|
778
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
779
|
+
isSystemTx?: undefined | undefined;
|
|
780
|
+
mint?: undefined | undefined;
|
|
781
|
+
sourceHash?: undefined | undefined;
|
|
736
782
|
} | {
|
|
737
783
|
blockHash: `0x${string}` | null;
|
|
738
784
|
blockNumber: bigint | null;
|
|
@@ -750,16 +796,17 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO: {
|
|
|
750
796
|
value: bigint;
|
|
751
797
|
yParity: number;
|
|
752
798
|
accessList: import("viem").AccessList;
|
|
753
|
-
|
|
799
|
+
authorizationList?: undefined | undefined;
|
|
800
|
+
blobVersionedHashes?: undefined | undefined;
|
|
754
801
|
chainId: number;
|
|
755
802
|
type: "eip1559";
|
|
756
|
-
gasPrice?: undefined;
|
|
757
|
-
maxFeePerBlobGas?: undefined;
|
|
803
|
+
gasPrice?: undefined | undefined;
|
|
804
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
758
805
|
maxFeePerGas: bigint;
|
|
759
806
|
maxPriorityFeePerGas: bigint;
|
|
760
|
-
isSystemTx?: undefined;
|
|
761
|
-
mint?: undefined;
|
|
762
|
-
sourceHash?: undefined;
|
|
807
|
+
isSystemTx?: undefined | undefined;
|
|
808
|
+
mint?: undefined | undefined;
|
|
809
|
+
sourceHash?: undefined | undefined;
|
|
763
810
|
} | {
|
|
764
811
|
blockHash: `0x${string}` | null;
|
|
765
812
|
blockNumber: bigint | null;
|
|
@@ -777,16 +824,45 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO: {
|
|
|
777
824
|
value: bigint;
|
|
778
825
|
yParity: number;
|
|
779
826
|
accessList: import("viem").AccessList;
|
|
827
|
+
authorizationList?: undefined | undefined;
|
|
780
828
|
blobVersionedHashes: readonly import("viem").Hex[];
|
|
781
829
|
chainId: number;
|
|
782
830
|
type: "eip4844";
|
|
783
|
-
gasPrice?: undefined;
|
|
831
|
+
gasPrice?: undefined | undefined;
|
|
784
832
|
maxFeePerBlobGas: bigint;
|
|
785
833
|
maxFeePerGas: bigint;
|
|
786
834
|
maxPriorityFeePerGas: bigint;
|
|
787
|
-
isSystemTx?: undefined;
|
|
788
|
-
mint?: undefined;
|
|
789
|
-
sourceHash?: undefined;
|
|
835
|
+
isSystemTx?: undefined | undefined;
|
|
836
|
+
mint?: undefined | undefined;
|
|
837
|
+
sourceHash?: undefined | undefined;
|
|
838
|
+
} | {
|
|
839
|
+
blockHash: `0x${string}` | null;
|
|
840
|
+
blockNumber: bigint | null;
|
|
841
|
+
from: import("viem").Address;
|
|
842
|
+
gas: bigint;
|
|
843
|
+
hash: import("viem").Hash;
|
|
844
|
+
input: import("viem").Hex;
|
|
845
|
+
nonce: number;
|
|
846
|
+
r: import("viem").Hex;
|
|
847
|
+
s: import("viem").Hex;
|
|
848
|
+
to: import("viem").Address | null;
|
|
849
|
+
transactionIndex: number | null;
|
|
850
|
+
typeHex: import("viem").Hex | null;
|
|
851
|
+
v: bigint;
|
|
852
|
+
value: bigint;
|
|
853
|
+
yParity: number;
|
|
854
|
+
accessList: import("viem").AccessList;
|
|
855
|
+
authorizationList: import("viem").SignedAuthorizationList;
|
|
856
|
+
blobVersionedHashes?: undefined | undefined;
|
|
857
|
+
chainId: number;
|
|
858
|
+
type: "eip7702";
|
|
859
|
+
gasPrice?: undefined | undefined;
|
|
860
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
861
|
+
maxFeePerGas: bigint;
|
|
862
|
+
maxPriorityFeePerGas: bigint;
|
|
863
|
+
isSystemTx?: undefined | undefined;
|
|
864
|
+
mint?: undefined | undefined;
|
|
865
|
+
sourceHash?: undefined | undefined;
|
|
790
866
|
}) & {};
|
|
791
867
|
type: "transaction";
|
|
792
868
|
};
|
|
@@ -804,7 +880,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO: {
|
|
|
804
880
|
gasUsed: bigint;
|
|
805
881
|
logs: import("viem").Log<bigint, number, false>[];
|
|
806
882
|
logsBloom: import("viem").Hex;
|
|
807
|
-
root?:
|
|
883
|
+
root?: `0x${string}` | undefined;
|
|
808
884
|
status: "success" | "reverted";
|
|
809
885
|
to: import("viem").Address | null;
|
|
810
886
|
transactionHash: import("viem").Hash;
|
|
@@ -835,6 +911,61 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO: {
|
|
|
835
911
|
pickPriority: number;
|
|
836
912
|
isStandardEvmAddress: boolean;
|
|
837
913
|
fallbackRpcUrls: string[];
|
|
914
|
+
} | {
|
|
915
|
+
name: "BNB Smart Chain";
|
|
916
|
+
nativeCurrency: {
|
|
917
|
+
symbol: "BNB";
|
|
918
|
+
decimals: 18;
|
|
919
|
+
name: "BNB";
|
|
920
|
+
};
|
|
921
|
+
chainInfo: {
|
|
922
|
+
blockExplorers: {
|
|
923
|
+
readonly default: {
|
|
924
|
+
readonly name: "BscScan";
|
|
925
|
+
readonly url: "https://bscscan.com";
|
|
926
|
+
readonly apiUrl: "https://api.bscscan.com/api";
|
|
927
|
+
};
|
|
928
|
+
};
|
|
929
|
+
contracts: {
|
|
930
|
+
readonly multicall3: {
|
|
931
|
+
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
932
|
+
readonly blockCreated: 15921452;
|
|
933
|
+
};
|
|
934
|
+
};
|
|
935
|
+
ensTlds?: readonly string[] | undefined;
|
|
936
|
+
id: 56;
|
|
937
|
+
name: "BNB Smart Chain";
|
|
938
|
+
nativeCurrency: {
|
|
939
|
+
readonly decimals: 18;
|
|
940
|
+
readonly name: "BNB";
|
|
941
|
+
readonly symbol: "BNB";
|
|
942
|
+
};
|
|
943
|
+
rpcUrls: {
|
|
944
|
+
readonly default: {
|
|
945
|
+
readonly http: readonly ["https://56.rpc.thirdweb.com"];
|
|
946
|
+
};
|
|
947
|
+
};
|
|
948
|
+
sourceId?: number | undefined | undefined;
|
|
949
|
+
testnet?: boolean | undefined | undefined;
|
|
950
|
+
custom?: Record<string, unknown> | undefined;
|
|
951
|
+
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
952
|
+
formatters?: undefined;
|
|
953
|
+
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
954
|
+
};
|
|
955
|
+
explorerInfo: {
|
|
956
|
+
readonly name: "BscScan";
|
|
957
|
+
readonly url: "https://bscscan.com";
|
|
958
|
+
readonly apiUrl: "https://api.bscscan.com/api";
|
|
959
|
+
};
|
|
960
|
+
isCheckoutSupported: boolean;
|
|
961
|
+
checkoutAssetWhitelist: never[];
|
|
962
|
+
isFunWalletSupported: boolean;
|
|
963
|
+
isMainnet: boolean;
|
|
964
|
+
moonpayChainName: string;
|
|
965
|
+
pickPriority: number;
|
|
966
|
+
isStandardEvmAddress: boolean;
|
|
967
|
+
fallbackRpcUrls: string[];
|
|
968
|
+
coreToken?: undefined;
|
|
838
969
|
} | {
|
|
839
970
|
name: string;
|
|
840
971
|
nativeCurrency: {
|
|
@@ -855,17 +986,23 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO: {
|
|
|
855
986
|
readonly apiUrl: "https://api-era.zksync.network/api";
|
|
856
987
|
};
|
|
857
988
|
readonly native: {
|
|
858
|
-
readonly name: "
|
|
989
|
+
readonly name: "ZKsync Explorer";
|
|
859
990
|
readonly url: "https://explorer.zksync.io/";
|
|
991
|
+
readonly apiUrl: "https://block-explorer-api.mainnet.zksync.io/api";
|
|
860
992
|
};
|
|
861
993
|
};
|
|
862
994
|
contracts: {
|
|
863
995
|
readonly multicall3: {
|
|
864
996
|
readonly address: "0xF9cda624FBC7e059355ce98a31693d299FACd963";
|
|
865
997
|
};
|
|
998
|
+
readonly universalSignatureVerifier: {
|
|
999
|
+
readonly address: "0xfB688330379976DA81eB64Fe4BF50d7401763B9C";
|
|
1000
|
+
readonly blockCreated: 45659388;
|
|
1001
|
+
};
|
|
866
1002
|
};
|
|
1003
|
+
ensTlds?: readonly string[] | undefined;
|
|
867
1004
|
id: 324;
|
|
868
|
-
name: "
|
|
1005
|
+
name: "ZKsync Era";
|
|
869
1006
|
nativeCurrency: {
|
|
870
1007
|
readonly decimals: 18;
|
|
871
1008
|
readonly name: "Ether";
|
|
@@ -877,8 +1014,8 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO: {
|
|
|
877
1014
|
readonly webSocket: readonly ["wss://mainnet.era.zksync.io/ws"];
|
|
878
1015
|
};
|
|
879
1016
|
};
|
|
880
|
-
sourceId?: number | undefined;
|
|
881
|
-
testnet?: boolean | undefined;
|
|
1017
|
+
sourceId?: number | undefined | undefined;
|
|
1018
|
+
testnet?: boolean | undefined | undefined;
|
|
882
1019
|
custom: {
|
|
883
1020
|
readonly getEip712Domain: import("viem/zksync").EIP712DomainFn<import("viem/chains").ZkSyncTransactionSerializable, import("viem/chains").ZkSyncEIP712TransactionSignable>;
|
|
884
1021
|
};
|
|
@@ -900,6 +1037,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO: {
|
|
|
900
1037
|
mixHash: import("viem").Hash;
|
|
901
1038
|
nonce: `0x${string}` | null;
|
|
902
1039
|
number: bigint | null;
|
|
1040
|
+
parentBeaconBlockRoot?: `0x${string}` | undefined;
|
|
903
1041
|
parentHash: import("viem").Hash;
|
|
904
1042
|
receiptsRoot: import("viem").Hex;
|
|
905
1043
|
sealFields: import("viem").Hex[];
|
|
@@ -911,8 +1049,8 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO: {
|
|
|
911
1049
|
transactions: `0x${string}`[] | import("viem/chains").ZkSyncTransaction<boolean>[];
|
|
912
1050
|
transactionsRoot: import("viem").Hash;
|
|
913
1051
|
uncles: import("viem").Hash[];
|
|
914
|
-
withdrawals?: import("viem").Withdrawal[] | undefined;
|
|
915
|
-
withdrawalsRoot?:
|
|
1052
|
+
withdrawals?: import("viem").Withdrawal[] | undefined | undefined;
|
|
1053
|
+
withdrawalsRoot?: `0x${string}` | undefined;
|
|
916
1054
|
l1BatchNumber: bigint | null;
|
|
917
1055
|
l1BatchTimestamp: bigint | null;
|
|
918
1056
|
} & {};
|
|
@@ -935,15 +1073,16 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO: {
|
|
|
935
1073
|
input: import("viem").Hex;
|
|
936
1074
|
transactionIndex: number | null;
|
|
937
1075
|
typeHex: import("viem").Hex | null;
|
|
938
|
-
accessList?: undefined;
|
|
939
|
-
|
|
1076
|
+
accessList?: undefined | undefined;
|
|
1077
|
+
authorizationList?: undefined | undefined;
|
|
1078
|
+
blobVersionedHashes?: undefined | undefined;
|
|
940
1079
|
chainId?: number | undefined;
|
|
941
|
-
yParity?: undefined;
|
|
1080
|
+
yParity?: undefined | undefined;
|
|
942
1081
|
type: "legacy";
|
|
943
1082
|
gasPrice: bigint;
|
|
944
|
-
maxFeePerBlobGas?: undefined;
|
|
945
|
-
maxFeePerGas?: undefined;
|
|
946
|
-
maxPriorityFeePerGas?: undefined;
|
|
1083
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
1084
|
+
maxFeePerGas?: undefined | undefined;
|
|
1085
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
947
1086
|
l1BatchNumber: bigint | null;
|
|
948
1087
|
l1BatchTxIndex: bigint | null;
|
|
949
1088
|
} | {
|
|
@@ -963,13 +1102,14 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO: {
|
|
|
963
1102
|
value: bigint;
|
|
964
1103
|
yParity: number;
|
|
965
1104
|
accessList: import("viem").AccessList;
|
|
966
|
-
|
|
1105
|
+
authorizationList?: undefined | undefined;
|
|
1106
|
+
blobVersionedHashes?: undefined | undefined;
|
|
967
1107
|
chainId: number;
|
|
968
1108
|
type: "eip2930";
|
|
969
1109
|
gasPrice: bigint;
|
|
970
|
-
maxFeePerBlobGas?: undefined;
|
|
971
|
-
maxFeePerGas?: undefined;
|
|
972
|
-
maxPriorityFeePerGas?: undefined;
|
|
1110
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
1111
|
+
maxFeePerGas?: undefined | undefined;
|
|
1112
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
973
1113
|
l1BatchNumber: bigint | null;
|
|
974
1114
|
l1BatchTxIndex: bigint | null;
|
|
975
1115
|
} | {
|
|
@@ -989,11 +1129,12 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO: {
|
|
|
989
1129
|
value: bigint;
|
|
990
1130
|
yParity: number;
|
|
991
1131
|
accessList: import("viem").AccessList;
|
|
992
|
-
|
|
1132
|
+
authorizationList?: undefined | undefined;
|
|
1133
|
+
blobVersionedHashes?: undefined | undefined;
|
|
993
1134
|
chainId: number;
|
|
994
1135
|
type: "eip1559";
|
|
995
|
-
gasPrice?: undefined;
|
|
996
|
-
maxFeePerBlobGas?: undefined;
|
|
1136
|
+
gasPrice?: undefined | undefined;
|
|
1137
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
997
1138
|
maxFeePerGas: bigint;
|
|
998
1139
|
maxPriorityFeePerGas: bigint;
|
|
999
1140
|
l1BatchNumber: bigint | null;
|
|
@@ -1015,15 +1156,43 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO: {
|
|
|
1015
1156
|
value: bigint;
|
|
1016
1157
|
yParity: number;
|
|
1017
1158
|
accessList: import("viem").AccessList;
|
|
1159
|
+
authorizationList?: undefined | undefined;
|
|
1018
1160
|
blobVersionedHashes: readonly import("viem").Hex[];
|
|
1019
1161
|
chainId: number;
|
|
1020
1162
|
type: "eip4844";
|
|
1021
|
-
gasPrice?: undefined;
|
|
1163
|
+
gasPrice?: undefined | undefined;
|
|
1022
1164
|
maxFeePerBlobGas: bigint;
|
|
1023
1165
|
maxFeePerGas: bigint;
|
|
1024
1166
|
maxPriorityFeePerGas: bigint;
|
|
1025
1167
|
l1BatchNumber: bigint | null;
|
|
1026
1168
|
l1BatchTxIndex: bigint | null;
|
|
1169
|
+
} | {
|
|
1170
|
+
blockHash: `0x${string}` | null;
|
|
1171
|
+
blockNumber: bigint | null;
|
|
1172
|
+
from: import("viem").Address;
|
|
1173
|
+
gas: bigint;
|
|
1174
|
+
hash: import("viem").Hash;
|
|
1175
|
+
input: import("viem").Hex;
|
|
1176
|
+
nonce: number;
|
|
1177
|
+
r: import("viem").Hex;
|
|
1178
|
+
s: import("viem").Hex;
|
|
1179
|
+
to: import("viem").Address | null;
|
|
1180
|
+
transactionIndex: number | null;
|
|
1181
|
+
typeHex: import("viem").Hex | null;
|
|
1182
|
+
v: bigint;
|
|
1183
|
+
value: bigint;
|
|
1184
|
+
yParity: number;
|
|
1185
|
+
accessList: import("viem").AccessList;
|
|
1186
|
+
authorizationList: import("viem").SignedAuthorizationList;
|
|
1187
|
+
blobVersionedHashes?: undefined | undefined;
|
|
1188
|
+
chainId: number;
|
|
1189
|
+
type: "eip7702";
|
|
1190
|
+
gasPrice?: undefined | undefined;
|
|
1191
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
1192
|
+
maxFeePerGas: bigint;
|
|
1193
|
+
maxPriorityFeePerGas: bigint;
|
|
1194
|
+
l1BatchNumber: bigint | null;
|
|
1195
|
+
l1BatchTxIndex: bigint | null;
|
|
1027
1196
|
} | {
|
|
1028
1197
|
blockHash: `0x${string}` | null;
|
|
1029
1198
|
blockNumber: bigint | null;
|
|
@@ -1042,8 +1211,8 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO: {
|
|
|
1042
1211
|
yParity: number;
|
|
1043
1212
|
l1BatchNumber: bigint | null;
|
|
1044
1213
|
l1BatchTxIndex: bigint | null;
|
|
1045
|
-
gasPrice?: undefined;
|
|
1046
|
-
maxFeePerBlobGas?: undefined;
|
|
1214
|
+
gasPrice?: undefined | undefined;
|
|
1215
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
1047
1216
|
maxFeePerGas: bigint;
|
|
1048
1217
|
maxPriorityFeePerGas: bigint;
|
|
1049
1218
|
type: "priority";
|
|
@@ -1065,8 +1234,8 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO: {
|
|
|
1065
1234
|
yParity: number;
|
|
1066
1235
|
l1BatchNumber: bigint | null;
|
|
1067
1236
|
l1BatchTxIndex: bigint | null;
|
|
1068
|
-
gasPrice?: undefined;
|
|
1069
|
-
maxFeePerBlobGas?: undefined;
|
|
1237
|
+
gasPrice?: undefined | undefined;
|
|
1238
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
1070
1239
|
maxFeePerGas: bigint;
|
|
1071
1240
|
maxPriorityFeePerGas: bigint;
|
|
1072
1241
|
type: "eip712" | "priority";
|
|
@@ -1075,8 +1244,9 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO: {
|
|
|
1075
1244
|
};
|
|
1076
1245
|
readonly transactionReceipt: {
|
|
1077
1246
|
exclude: [] | undefined;
|
|
1078
|
-
format: (args: import("viem/
|
|
1247
|
+
format: (args: import("viem/chains").ZkSyncRpcTransactionReceipt) => {
|
|
1079
1248
|
type: import("viem/chains").ZkSyncTransactionType;
|
|
1249
|
+
contractAddress: import("viem").Address | null | undefined;
|
|
1080
1250
|
to: import("viem").Address | null;
|
|
1081
1251
|
from: import("viem").Address;
|
|
1082
1252
|
blockHash: import("viem").Hash;
|
|
@@ -1086,12 +1256,11 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO: {
|
|
|
1086
1256
|
logsBloom: import("viem").Hex;
|
|
1087
1257
|
blobGasUsed?: bigint | undefined;
|
|
1088
1258
|
gasUsed: bigint;
|
|
1089
|
-
contractAddress: import("viem").Address | null | undefined;
|
|
1090
1259
|
transactionHash: import("viem").Hash;
|
|
1091
1260
|
blobGasPrice?: bigint | undefined;
|
|
1092
1261
|
cumulativeGasUsed: bigint;
|
|
1093
1262
|
effectiveGasPrice: bigint;
|
|
1094
|
-
root?:
|
|
1263
|
+
root?: `0x${string}` | undefined;
|
|
1095
1264
|
l1BatchNumber: bigint | null;
|
|
1096
1265
|
l1BatchTxIndex: bigint | null;
|
|
1097
1266
|
logs: import("viem/chains").ZkSyncLog[];
|
|
@@ -1100,95 +1269,118 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO: {
|
|
|
1100
1269
|
type: "transactionReceipt";
|
|
1101
1270
|
};
|
|
1102
1271
|
readonly transactionRequest: {
|
|
1103
|
-
exclude: ("
|
|
1272
|
+
exclude: ("paymaster" | "gasPerPubdata" | "factoryDeps" | "paymasterInput" | "customSignature")[] | undefined;
|
|
1104
1273
|
format: (args: import("viem/chains").ZkSyncTransactionRequest) => ({
|
|
1105
|
-
data?:
|
|
1106
|
-
from
|
|
1274
|
+
data?: `0x${string}` | undefined;
|
|
1275
|
+
from?: `0x${string}` | undefined;
|
|
1107
1276
|
gas?: `0x${string}` | undefined;
|
|
1108
1277
|
nonce?: `0x${string}` | undefined;
|
|
1109
|
-
to?:
|
|
1110
|
-
value?: `0x${string}` | undefined;
|
|
1111
|
-
accessList?: undefined;
|
|
1112
|
-
blobs?: undefined;
|
|
1278
|
+
to?: `0x${string}` | null | undefined;
|
|
1113
1279
|
type?: "0x0" | undefined;
|
|
1280
|
+
value?: `0x${string}` | undefined;
|
|
1114
1281
|
gasPrice?: `0x${string}` | undefined;
|
|
1115
|
-
maxFeePerBlobGas?: undefined;
|
|
1116
|
-
maxFeePerGas?: undefined;
|
|
1117
|
-
maxPriorityFeePerGas?: undefined;
|
|
1282
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
1283
|
+
maxFeePerGas?: undefined | undefined;
|
|
1284
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
1285
|
+
blobs?: undefined;
|
|
1286
|
+
accessList?: undefined;
|
|
1118
1287
|
blobVersionedHashes?: undefined;
|
|
1119
1288
|
kzg?: undefined;
|
|
1120
1289
|
sidecars?: undefined;
|
|
1121
|
-
|
|
1290
|
+
authorizationList?: undefined;
|
|
1291
|
+
eip712Meta?: undefined | undefined;
|
|
1122
1292
|
} | {
|
|
1123
|
-
data?:
|
|
1124
|
-
from
|
|
1293
|
+
data?: `0x${string}` | undefined;
|
|
1294
|
+
from?: `0x${string}` | undefined;
|
|
1125
1295
|
gas?: `0x${string}` | undefined;
|
|
1126
1296
|
nonce?: `0x${string}` | undefined;
|
|
1127
|
-
to?:
|
|
1297
|
+
to?: `0x${string}` | null | undefined;
|
|
1298
|
+
type?: "0x1" | undefined;
|
|
1128
1299
|
value?: `0x${string}` | undefined;
|
|
1300
|
+
gasPrice?: `0x${string}` | undefined;
|
|
1301
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
1302
|
+
maxFeePerGas?: undefined | undefined;
|
|
1303
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
1129
1304
|
accessList?: import("viem").AccessList | undefined;
|
|
1130
1305
|
blobs?: undefined;
|
|
1131
|
-
type?: "0x1" | undefined;
|
|
1132
|
-
gasPrice?: `0x${string}` | undefined;
|
|
1133
|
-
maxFeePerBlobGas?: undefined;
|
|
1134
|
-
maxFeePerGas?: undefined;
|
|
1135
|
-
maxPriorityFeePerGas?: undefined;
|
|
1136
1306
|
blobVersionedHashes?: undefined;
|
|
1137
1307
|
kzg?: undefined;
|
|
1138
1308
|
sidecars?: undefined;
|
|
1139
|
-
|
|
1309
|
+
authorizationList?: undefined;
|
|
1310
|
+
eip712Meta?: undefined | undefined;
|
|
1140
1311
|
} | {
|
|
1141
|
-
data?:
|
|
1142
|
-
from
|
|
1312
|
+
data?: `0x${string}` | undefined;
|
|
1313
|
+
from?: `0x${string}` | undefined;
|
|
1143
1314
|
gas?: `0x${string}` | undefined;
|
|
1144
1315
|
nonce?: `0x${string}` | undefined;
|
|
1145
|
-
to?:
|
|
1316
|
+
to?: `0x${string}` | null | undefined;
|
|
1317
|
+
type?: "0x2" | undefined;
|
|
1146
1318
|
value?: `0x${string}` | undefined;
|
|
1147
|
-
gasPrice?: undefined;
|
|
1148
|
-
maxFeePerBlobGas?: undefined;
|
|
1319
|
+
gasPrice?: undefined | undefined;
|
|
1320
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
1149
1321
|
maxFeePerGas?: `0x${string}` | undefined;
|
|
1150
1322
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
1151
1323
|
accessList?: import("viem").AccessList | undefined;
|
|
1152
1324
|
blobs?: undefined;
|
|
1153
|
-
type?: "0x2" | undefined;
|
|
1154
1325
|
blobVersionedHashes?: undefined;
|
|
1155
1326
|
kzg?: undefined;
|
|
1156
1327
|
sidecars?: undefined;
|
|
1157
|
-
|
|
1328
|
+
authorizationList?: undefined;
|
|
1329
|
+
eip712Meta?: undefined | undefined;
|
|
1158
1330
|
} | {
|
|
1159
|
-
|
|
1160
|
-
|
|
1331
|
+
type?: "0x3" | undefined;
|
|
1332
|
+
data?: `0x${string}` | undefined;
|
|
1333
|
+
from?: `0x${string}` | undefined;
|
|
1161
1334
|
gas?: `0x${string}` | undefined;
|
|
1162
1335
|
nonce?: `0x${string}` | undefined;
|
|
1163
1336
|
value?: `0x${string}` | undefined;
|
|
1164
1337
|
to: `0x${string}` | null;
|
|
1338
|
+
gasPrice?: undefined | undefined;
|
|
1339
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
|
1340
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
1341
|
+
maxFeePerBlobGas: `0x${string}`;
|
|
1165
1342
|
accessList?: import("viem").AccessList | undefined;
|
|
1166
1343
|
blobs: readonly import("viem").Hex[] | readonly import("viem").ByteArray[];
|
|
1167
|
-
blobVersionedHashes?: readonly
|
|
1344
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
1168
1345
|
kzg?: import("viem").Kzg | undefined;
|
|
1169
|
-
sidecars?: readonly import("viem").BlobSidecar
|
|
1170
|
-
|
|
1171
|
-
|
|
1346
|
+
sidecars?: readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
1347
|
+
authorizationList?: undefined;
|
|
1348
|
+
eip712Meta?: undefined | undefined;
|
|
1349
|
+
} | {
|
|
1350
|
+
type?: "0x4" | undefined;
|
|
1351
|
+
gasPrice?: undefined | undefined;
|
|
1352
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
1172
1353
|
maxFeePerGas?: `0x${string}` | undefined;
|
|
1173
1354
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
1174
|
-
|
|
1175
|
-
|
|
1355
|
+
to?: `0x${string}` | null | undefined;
|
|
1356
|
+
data?: `0x${string}` | undefined;
|
|
1357
|
+
from?: `0x${string}` | undefined;
|
|
1358
|
+
gas?: `0x${string}` | undefined;
|
|
1359
|
+
nonce?: `0x${string}` | undefined;
|
|
1360
|
+
value?: `0x${string}` | undefined;
|
|
1361
|
+
accessList?: import("viem").AccessList | undefined;
|
|
1362
|
+
authorizationList?: import("viem").RpcAuthorizationList | undefined;
|
|
1363
|
+
blobs?: undefined;
|
|
1364
|
+
blobVersionedHashes?: undefined;
|
|
1365
|
+
kzg?: undefined;
|
|
1366
|
+
sidecars?: undefined;
|
|
1367
|
+
eip712Meta?: undefined | undefined;
|
|
1176
1368
|
} | {
|
|
1177
|
-
data?:
|
|
1178
|
-
from
|
|
1369
|
+
data?: `0x${string}` | undefined;
|
|
1370
|
+
from?: `0x${string}` | undefined;
|
|
1179
1371
|
gas?: `0x${string}` | undefined;
|
|
1180
1372
|
nonce?: `0x${string}` | undefined;
|
|
1181
|
-
to?:
|
|
1373
|
+
to?: `0x${string}` | null | undefined;
|
|
1374
|
+
type: "0xff" | "0x71";
|
|
1182
1375
|
value?: `0x${string}` | undefined;
|
|
1183
|
-
gasPrice?: undefined;
|
|
1184
|
-
maxFeePerBlobGas?: undefined;
|
|
1376
|
+
gasPrice?: undefined | undefined;
|
|
1377
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
1185
1378
|
maxFeePerGas?: `0x${string}` | undefined;
|
|
1186
1379
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
1187
1380
|
eip712Meta: import("viem/chains").ZkSyncEip712Meta;
|
|
1188
|
-
type: "0x71" | "0xff";
|
|
1189
1381
|
}) & {
|
|
1190
|
-
gasPerPubdata: never;
|
|
1191
1382
|
paymaster: never;
|
|
1383
|
+
gasPerPubdata: never;
|
|
1192
1384
|
factoryDeps: never;
|
|
1193
1385
|
paymasterInput: never;
|
|
1194
1386
|
customSignature: never;
|
|
@@ -1240,6 +1432,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO: {
|
|
|
1240
1432
|
readonly blockCreated: 304717;
|
|
1241
1433
|
};
|
|
1242
1434
|
};
|
|
1435
|
+
ensTlds?: readonly string[] | undefined;
|
|
1243
1436
|
id: 5000;
|
|
1244
1437
|
name: "Mantle";
|
|
1245
1438
|
nativeCurrency: {
|
|
@@ -1252,8 +1445,8 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO: {
|
|
|
1252
1445
|
readonly http: readonly ["https://rpc.mantle.xyz"];
|
|
1253
1446
|
};
|
|
1254
1447
|
};
|
|
1255
|
-
sourceId?: number | undefined;
|
|
1256
|
-
testnet?: boolean | undefined;
|
|
1448
|
+
sourceId?: number | undefined | undefined;
|
|
1449
|
+
testnet?: boolean | undefined | undefined;
|
|
1257
1450
|
custom?: Record<string, unknown> | undefined;
|
|
1258
1451
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
1259
1452
|
formatters?: undefined;
|
|
@@ -1348,6 +1541,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO: {
|
|
|
1348
1541
|
readonly blockCreated: 14;
|
|
1349
1542
|
};
|
|
1350
1543
|
};
|
|
1544
|
+
ensTlds?: readonly string[] | undefined;
|
|
1351
1545
|
id: 534352;
|
|
1352
1546
|
name: "Scroll";
|
|
1353
1547
|
nativeCurrency: {
|
|
@@ -1361,7 +1555,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO: {
|
|
|
1361
1555
|
readonly webSocket: readonly ["wss://wss-rpc.scroll.io/ws"];
|
|
1362
1556
|
};
|
|
1363
1557
|
};
|
|
1364
|
-
sourceId?: number | undefined;
|
|
1558
|
+
sourceId?: number | undefined | undefined;
|
|
1365
1559
|
testnet: false;
|
|
1366
1560
|
custom?: Record<string, unknown> | undefined;
|
|
1367
1561
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
@@ -1410,6 +1604,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO: {
|
|
|
1410
1604
|
readonly blockCreated: 6507670;
|
|
1411
1605
|
};
|
|
1412
1606
|
};
|
|
1607
|
+
ensTlds?: readonly string[] | undefined;
|
|
1413
1608
|
id: 5;
|
|
1414
1609
|
name: "Goerli";
|
|
1415
1610
|
nativeCurrency: {
|
|
@@ -1419,10 +1614,10 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO: {
|
|
|
1419
1614
|
};
|
|
1420
1615
|
rpcUrls: {
|
|
1421
1616
|
readonly default: {
|
|
1422
|
-
readonly http: readonly ["https://rpc.
|
|
1617
|
+
readonly http: readonly ["https://5.rpc.thirdweb.com"];
|
|
1423
1618
|
};
|
|
1424
1619
|
};
|
|
1425
|
-
sourceId?: number | undefined;
|
|
1620
|
+
sourceId?: number | undefined | undefined;
|
|
1426
1621
|
testnet: true;
|
|
1427
1622
|
custom?: Record<string, unknown> | undefined;
|
|
1428
1623
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
@@ -1464,6 +1659,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO: {
|
|
|
1464
1659
|
readonly blockCreated: 81930;
|
|
1465
1660
|
};
|
|
1466
1661
|
};
|
|
1662
|
+
ensTlds?: readonly string[] | undefined;
|
|
1467
1663
|
id: 421614;
|
|
1468
1664
|
name: "Arbitrum Sepolia";
|
|
1469
1665
|
nativeCurrency: {
|
|
@@ -1476,7 +1672,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO: {
|
|
|
1476
1672
|
readonly http: readonly ["https://sepolia-rollup.arbitrum.io/rpc"];
|
|
1477
1673
|
};
|
|
1478
1674
|
};
|
|
1479
|
-
sourceId?: number | undefined;
|
|
1675
|
+
sourceId?: number | undefined | undefined;
|
|
1480
1676
|
testnet: true;
|
|
1481
1677
|
custom?: Record<string, unknown> | undefined;
|
|
1482
1678
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
@@ -1553,6 +1749,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
1553
1749
|
readonly blockCreated: 14353601;
|
|
1554
1750
|
};
|
|
1555
1751
|
};
|
|
1752
|
+
ensTlds?: readonly string[] | undefined;
|
|
1556
1753
|
id: 1;
|
|
1557
1754
|
name: "Ethereum";
|
|
1558
1755
|
nativeCurrency: {
|
|
@@ -1562,11 +1759,11 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
1562
1759
|
};
|
|
1563
1760
|
rpcUrls: {
|
|
1564
1761
|
readonly default: {
|
|
1565
|
-
readonly http: readonly ["https://
|
|
1762
|
+
readonly http: readonly ["https://eth.merkle.io"];
|
|
1566
1763
|
};
|
|
1567
1764
|
};
|
|
1568
|
-
sourceId?: number | undefined;
|
|
1569
|
-
testnet?: boolean | undefined;
|
|
1765
|
+
sourceId?: number | undefined | undefined;
|
|
1766
|
+
testnet?: boolean | undefined | undefined;
|
|
1570
1767
|
custom?: Record<string, unknown> | undefined;
|
|
1571
1768
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
1572
1769
|
formatters?: undefined;
|
|
@@ -1580,6 +1777,11 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
1580
1777
|
};
|
|
1581
1778
|
};
|
|
1582
1779
|
contracts: {
|
|
1780
|
+
readonly disputeGameFactory: {
|
|
1781
|
+
readonly 1: {
|
|
1782
|
+
readonly address: "0x43edB88C4B80fDD2AdFF2412A7BebF9dF42cB40e";
|
|
1783
|
+
};
|
|
1784
|
+
};
|
|
1583
1785
|
readonly l2OutputOracle: {
|
|
1584
1786
|
readonly 1: {
|
|
1585
1787
|
readonly address: "0x56315b90c40730925ec5485cf004d835058518A0";
|
|
@@ -1620,6 +1822,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
1620
1822
|
readonly address: "0x4200000000000000000000000000000000000016";
|
|
1621
1823
|
};
|
|
1622
1824
|
};
|
|
1825
|
+
ensTlds?: readonly string[] | undefined;
|
|
1623
1826
|
id: 8453;
|
|
1624
1827
|
name: "Base";
|
|
1625
1828
|
nativeCurrency: {
|
|
@@ -1633,7 +1836,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
1633
1836
|
};
|
|
1634
1837
|
};
|
|
1635
1838
|
sourceId: 1;
|
|
1636
|
-
testnet?: boolean | undefined;
|
|
1839
|
+
testnet?: boolean | undefined | undefined;
|
|
1637
1840
|
custom?: Record<string, unknown> | undefined;
|
|
1638
1841
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
1639
1842
|
formatters: {
|
|
@@ -1653,6 +1856,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
1653
1856
|
mixHash: import("viem").Hash;
|
|
1654
1857
|
nonce: `0x${string}` | null;
|
|
1655
1858
|
number: bigint | null;
|
|
1859
|
+
parentBeaconBlockRoot?: `0x${string}` | undefined;
|
|
1656
1860
|
parentHash: import("viem").Hash;
|
|
1657
1861
|
receiptsRoot: import("viem").Hex;
|
|
1658
1862
|
sealFields: import("viem").Hex[];
|
|
@@ -1664,8 +1868,8 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
1664
1868
|
transactions: `0x${string}`[] | import("viem/chains").OpStackTransaction<boolean>[];
|
|
1665
1869
|
transactionsRoot: import("viem").Hash;
|
|
1666
1870
|
uncles: import("viem").Hash[];
|
|
1667
|
-
withdrawals?: import("viem").Withdrawal[] | undefined;
|
|
1668
|
-
withdrawalsRoot?:
|
|
1871
|
+
withdrawals?: import("viem").Withdrawal[] | undefined | undefined;
|
|
1872
|
+
withdrawalsRoot?: `0x${string}` | undefined;
|
|
1669
1873
|
} & {};
|
|
1670
1874
|
type: "block";
|
|
1671
1875
|
};
|
|
@@ -1687,12 +1891,12 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
1687
1891
|
v: bigint;
|
|
1688
1892
|
value: bigint;
|
|
1689
1893
|
yParity: number;
|
|
1690
|
-
gasPrice?: undefined;
|
|
1691
|
-
maxFeePerBlobGas?: undefined;
|
|
1894
|
+
gasPrice?: undefined | undefined;
|
|
1895
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
1692
1896
|
maxFeePerGas: bigint;
|
|
1693
1897
|
maxPriorityFeePerGas: bigint;
|
|
1694
1898
|
isSystemTx?: boolean;
|
|
1695
|
-
mint?: bigint | undefined;
|
|
1899
|
+
mint?: bigint | undefined | undefined;
|
|
1696
1900
|
sourceHash: import("viem").Hex;
|
|
1697
1901
|
type: "deposit";
|
|
1698
1902
|
} | {
|
|
@@ -1710,18 +1914,19 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
1710
1914
|
input: import("viem").Hex;
|
|
1711
1915
|
transactionIndex: number | null;
|
|
1712
1916
|
typeHex: import("viem").Hex | null;
|
|
1713
|
-
accessList?: undefined;
|
|
1714
|
-
|
|
1917
|
+
accessList?: undefined | undefined;
|
|
1918
|
+
authorizationList?: undefined | undefined;
|
|
1919
|
+
blobVersionedHashes?: undefined | undefined;
|
|
1715
1920
|
chainId?: number | undefined;
|
|
1716
|
-
yParity?: undefined;
|
|
1921
|
+
yParity?: undefined | undefined;
|
|
1717
1922
|
type: "legacy";
|
|
1718
1923
|
gasPrice: bigint;
|
|
1719
|
-
maxFeePerBlobGas?: undefined;
|
|
1720
|
-
maxFeePerGas?: undefined;
|
|
1721
|
-
maxPriorityFeePerGas?: undefined;
|
|
1722
|
-
isSystemTx?: undefined;
|
|
1723
|
-
mint?: undefined;
|
|
1724
|
-
sourceHash?: undefined;
|
|
1924
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
1925
|
+
maxFeePerGas?: undefined | undefined;
|
|
1926
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
1927
|
+
isSystemTx?: undefined | undefined;
|
|
1928
|
+
mint?: undefined | undefined;
|
|
1929
|
+
sourceHash?: undefined | undefined;
|
|
1725
1930
|
} | {
|
|
1726
1931
|
blockHash: `0x${string}` | null;
|
|
1727
1932
|
blockNumber: bigint | null;
|
|
@@ -1739,16 +1944,17 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
1739
1944
|
value: bigint;
|
|
1740
1945
|
yParity: number;
|
|
1741
1946
|
accessList: import("viem").AccessList;
|
|
1742
|
-
|
|
1947
|
+
authorizationList?: undefined | undefined;
|
|
1948
|
+
blobVersionedHashes?: undefined | undefined;
|
|
1743
1949
|
chainId: number;
|
|
1744
1950
|
type: "eip2930";
|
|
1745
1951
|
gasPrice: bigint;
|
|
1746
|
-
maxFeePerBlobGas?: undefined;
|
|
1747
|
-
maxFeePerGas?: undefined;
|
|
1748
|
-
maxPriorityFeePerGas?: undefined;
|
|
1749
|
-
isSystemTx?: undefined;
|
|
1750
|
-
mint?: undefined;
|
|
1751
|
-
sourceHash?: undefined;
|
|
1952
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
1953
|
+
maxFeePerGas?: undefined | undefined;
|
|
1954
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
1955
|
+
isSystemTx?: undefined | undefined;
|
|
1956
|
+
mint?: undefined | undefined;
|
|
1957
|
+
sourceHash?: undefined | undefined;
|
|
1752
1958
|
} | {
|
|
1753
1959
|
blockHash: `0x${string}` | null;
|
|
1754
1960
|
blockNumber: bigint | null;
|
|
@@ -1766,16 +1972,17 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
1766
1972
|
value: bigint;
|
|
1767
1973
|
yParity: number;
|
|
1768
1974
|
accessList: import("viem").AccessList;
|
|
1769
|
-
|
|
1975
|
+
authorizationList?: undefined | undefined;
|
|
1976
|
+
blobVersionedHashes?: undefined | undefined;
|
|
1770
1977
|
chainId: number;
|
|
1771
1978
|
type: "eip1559";
|
|
1772
|
-
gasPrice?: undefined;
|
|
1773
|
-
maxFeePerBlobGas?: undefined;
|
|
1979
|
+
gasPrice?: undefined | undefined;
|
|
1980
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
1774
1981
|
maxFeePerGas: bigint;
|
|
1775
1982
|
maxPriorityFeePerGas: bigint;
|
|
1776
|
-
isSystemTx?: undefined;
|
|
1777
|
-
mint?: undefined;
|
|
1778
|
-
sourceHash?: undefined;
|
|
1983
|
+
isSystemTx?: undefined | undefined;
|
|
1984
|
+
mint?: undefined | undefined;
|
|
1985
|
+
sourceHash?: undefined | undefined;
|
|
1779
1986
|
} | {
|
|
1780
1987
|
blockHash: `0x${string}` | null;
|
|
1781
1988
|
blockNumber: bigint | null;
|
|
@@ -1793,16 +2000,45 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
1793
2000
|
value: bigint;
|
|
1794
2001
|
yParity: number;
|
|
1795
2002
|
accessList: import("viem").AccessList;
|
|
2003
|
+
authorizationList?: undefined | undefined;
|
|
1796
2004
|
blobVersionedHashes: readonly import("viem").Hex[];
|
|
1797
2005
|
chainId: number;
|
|
1798
2006
|
type: "eip4844";
|
|
1799
|
-
gasPrice?: undefined;
|
|
2007
|
+
gasPrice?: undefined | undefined;
|
|
1800
2008
|
maxFeePerBlobGas: bigint;
|
|
1801
2009
|
maxFeePerGas: bigint;
|
|
1802
2010
|
maxPriorityFeePerGas: bigint;
|
|
1803
|
-
isSystemTx?: undefined;
|
|
1804
|
-
mint?: undefined;
|
|
1805
|
-
sourceHash?: undefined;
|
|
2011
|
+
isSystemTx?: undefined | undefined;
|
|
2012
|
+
mint?: undefined | undefined;
|
|
2013
|
+
sourceHash?: undefined | undefined;
|
|
2014
|
+
} | {
|
|
2015
|
+
blockHash: `0x${string}` | null;
|
|
2016
|
+
blockNumber: bigint | null;
|
|
2017
|
+
from: import("viem").Address;
|
|
2018
|
+
gas: bigint;
|
|
2019
|
+
hash: import("viem").Hash;
|
|
2020
|
+
input: import("viem").Hex;
|
|
2021
|
+
nonce: number;
|
|
2022
|
+
r: import("viem").Hex;
|
|
2023
|
+
s: import("viem").Hex;
|
|
2024
|
+
to: import("viem").Address | null;
|
|
2025
|
+
transactionIndex: number | null;
|
|
2026
|
+
typeHex: import("viem").Hex | null;
|
|
2027
|
+
v: bigint;
|
|
2028
|
+
value: bigint;
|
|
2029
|
+
yParity: number;
|
|
2030
|
+
accessList: import("viem").AccessList;
|
|
2031
|
+
authorizationList: import("viem").SignedAuthorizationList;
|
|
2032
|
+
blobVersionedHashes?: undefined | undefined;
|
|
2033
|
+
chainId: number;
|
|
2034
|
+
type: "eip7702";
|
|
2035
|
+
gasPrice?: undefined | undefined;
|
|
2036
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
2037
|
+
maxFeePerGas: bigint;
|
|
2038
|
+
maxPriorityFeePerGas: bigint;
|
|
2039
|
+
isSystemTx?: undefined | undefined;
|
|
2040
|
+
mint?: undefined | undefined;
|
|
2041
|
+
sourceHash?: undefined | undefined;
|
|
1806
2042
|
}) & {};
|
|
1807
2043
|
type: "transaction";
|
|
1808
2044
|
};
|
|
@@ -1820,7 +2056,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
1820
2056
|
gasUsed: bigint;
|
|
1821
2057
|
logs: import("viem").Log<bigint, number, false>[];
|
|
1822
2058
|
logsBloom: import("viem").Hex;
|
|
1823
|
-
root?:
|
|
2059
|
+
root?: `0x${string}` | undefined;
|
|
1824
2060
|
status: "success" | "reverted";
|
|
1825
2061
|
to: import("viem").Address | null;
|
|
1826
2062
|
transactionHash: import("viem").Hash;
|
|
@@ -1851,11 +2087,12 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
1851
2087
|
readonly blockCreated: 25770160;
|
|
1852
2088
|
};
|
|
1853
2089
|
};
|
|
2090
|
+
ensTlds?: readonly string[] | undefined;
|
|
1854
2091
|
id: 137;
|
|
1855
2092
|
name: "Polygon";
|
|
1856
2093
|
nativeCurrency: {
|
|
1857
|
-
readonly name: "
|
|
1858
|
-
readonly symbol: "
|
|
2094
|
+
readonly name: "POL";
|
|
2095
|
+
readonly symbol: "POL";
|
|
1859
2096
|
readonly decimals: 18;
|
|
1860
2097
|
};
|
|
1861
2098
|
rpcUrls: {
|
|
@@ -1863,8 +2100,8 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
1863
2100
|
readonly http: readonly ["https://polygon-rpc.com"];
|
|
1864
2101
|
};
|
|
1865
2102
|
};
|
|
1866
|
-
sourceId?: number | undefined;
|
|
1867
|
-
testnet?: boolean | undefined;
|
|
2103
|
+
sourceId?: number | undefined | undefined;
|
|
2104
|
+
testnet?: boolean | undefined | undefined;
|
|
1868
2105
|
custom?: Record<string, unknown> | undefined;
|
|
1869
2106
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
1870
2107
|
formatters?: undefined;
|
|
@@ -1883,6 +2120,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
1883
2120
|
readonly blockCreated: 7654707;
|
|
1884
2121
|
};
|
|
1885
2122
|
};
|
|
2123
|
+
ensTlds?: readonly string[] | undefined;
|
|
1886
2124
|
id: 42161;
|
|
1887
2125
|
name: "Arbitrum One";
|
|
1888
2126
|
nativeCurrency: {
|
|
@@ -1895,8 +2133,8 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
1895
2133
|
readonly http: readonly ["https://arb1.arbitrum.io/rpc"];
|
|
1896
2134
|
};
|
|
1897
2135
|
};
|
|
1898
|
-
sourceId?: number | undefined;
|
|
1899
|
-
testnet?: boolean | undefined;
|
|
2136
|
+
sourceId?: number | undefined | undefined;
|
|
2137
|
+
testnet?: boolean | undefined | undefined;
|
|
1900
2138
|
custom?: Record<string, unknown> | undefined;
|
|
1901
2139
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
1902
2140
|
formatters?: undefined;
|
|
@@ -1953,6 +2191,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
1953
2191
|
readonly address: "0x4200000000000000000000000000000000000016";
|
|
1954
2192
|
};
|
|
1955
2193
|
};
|
|
2194
|
+
ensTlds?: readonly string[] | undefined;
|
|
1956
2195
|
id: 10;
|
|
1957
2196
|
name: "OP Mainnet";
|
|
1958
2197
|
nativeCurrency: {
|
|
@@ -1966,7 +2205,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
1966
2205
|
};
|
|
1967
2206
|
};
|
|
1968
2207
|
sourceId: 1;
|
|
1969
|
-
testnet?: boolean | undefined;
|
|
2208
|
+
testnet?: boolean | undefined | undefined;
|
|
1970
2209
|
custom?: Record<string, unknown> | undefined;
|
|
1971
2210
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
1972
2211
|
formatters: {
|
|
@@ -1986,6 +2225,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
1986
2225
|
mixHash: import("viem").Hash;
|
|
1987
2226
|
nonce: `0x${string}` | null;
|
|
1988
2227
|
number: bigint | null;
|
|
2228
|
+
parentBeaconBlockRoot?: `0x${string}` | undefined;
|
|
1989
2229
|
parentHash: import("viem").Hash;
|
|
1990
2230
|
receiptsRoot: import("viem").Hex;
|
|
1991
2231
|
sealFields: import("viem").Hex[];
|
|
@@ -1997,8 +2237,8 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
1997
2237
|
transactions: `0x${string}`[] | import("viem/chains").OpStackTransaction<boolean>[];
|
|
1998
2238
|
transactionsRoot: import("viem").Hash;
|
|
1999
2239
|
uncles: import("viem").Hash[];
|
|
2000
|
-
withdrawals?: import("viem").Withdrawal[] | undefined;
|
|
2001
|
-
withdrawalsRoot?:
|
|
2240
|
+
withdrawals?: import("viem").Withdrawal[] | undefined | undefined;
|
|
2241
|
+
withdrawalsRoot?: `0x${string}` | undefined;
|
|
2002
2242
|
} & {};
|
|
2003
2243
|
type: "block";
|
|
2004
2244
|
};
|
|
@@ -2020,12 +2260,12 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
2020
2260
|
v: bigint;
|
|
2021
2261
|
value: bigint;
|
|
2022
2262
|
yParity: number;
|
|
2023
|
-
gasPrice?: undefined;
|
|
2024
|
-
maxFeePerBlobGas?: undefined;
|
|
2263
|
+
gasPrice?: undefined | undefined;
|
|
2264
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
2025
2265
|
maxFeePerGas: bigint;
|
|
2026
2266
|
maxPriorityFeePerGas: bigint;
|
|
2027
2267
|
isSystemTx?: boolean;
|
|
2028
|
-
mint?: bigint | undefined;
|
|
2268
|
+
mint?: bigint | undefined | undefined;
|
|
2029
2269
|
sourceHash: import("viem").Hex;
|
|
2030
2270
|
type: "deposit";
|
|
2031
2271
|
} | {
|
|
@@ -2043,18 +2283,19 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
2043
2283
|
input: import("viem").Hex;
|
|
2044
2284
|
transactionIndex: number | null;
|
|
2045
2285
|
typeHex: import("viem").Hex | null;
|
|
2046
|
-
accessList?: undefined;
|
|
2047
|
-
|
|
2286
|
+
accessList?: undefined | undefined;
|
|
2287
|
+
authorizationList?: undefined | undefined;
|
|
2288
|
+
blobVersionedHashes?: undefined | undefined;
|
|
2048
2289
|
chainId?: number | undefined;
|
|
2049
|
-
yParity?: undefined;
|
|
2290
|
+
yParity?: undefined | undefined;
|
|
2050
2291
|
type: "legacy";
|
|
2051
2292
|
gasPrice: bigint;
|
|
2052
|
-
maxFeePerBlobGas?: undefined;
|
|
2053
|
-
maxFeePerGas?: undefined;
|
|
2054
|
-
maxPriorityFeePerGas?: undefined;
|
|
2055
|
-
isSystemTx?: undefined;
|
|
2056
|
-
mint?: undefined;
|
|
2057
|
-
sourceHash?: undefined;
|
|
2293
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
2294
|
+
maxFeePerGas?: undefined | undefined;
|
|
2295
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
2296
|
+
isSystemTx?: undefined | undefined;
|
|
2297
|
+
mint?: undefined | undefined;
|
|
2298
|
+
sourceHash?: undefined | undefined;
|
|
2058
2299
|
} | {
|
|
2059
2300
|
blockHash: `0x${string}` | null;
|
|
2060
2301
|
blockNumber: bigint | null;
|
|
@@ -2072,16 +2313,17 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
2072
2313
|
value: bigint;
|
|
2073
2314
|
yParity: number;
|
|
2074
2315
|
accessList: import("viem").AccessList;
|
|
2075
|
-
|
|
2316
|
+
authorizationList?: undefined | undefined;
|
|
2317
|
+
blobVersionedHashes?: undefined | undefined;
|
|
2076
2318
|
chainId: number;
|
|
2077
2319
|
type: "eip2930";
|
|
2078
2320
|
gasPrice: bigint;
|
|
2079
|
-
maxFeePerBlobGas?: undefined;
|
|
2080
|
-
maxFeePerGas?: undefined;
|
|
2081
|
-
maxPriorityFeePerGas?: undefined;
|
|
2082
|
-
isSystemTx?: undefined;
|
|
2083
|
-
mint?: undefined;
|
|
2084
|
-
sourceHash?: undefined;
|
|
2321
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
2322
|
+
maxFeePerGas?: undefined | undefined;
|
|
2323
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
2324
|
+
isSystemTx?: undefined | undefined;
|
|
2325
|
+
mint?: undefined | undefined;
|
|
2326
|
+
sourceHash?: undefined | undefined;
|
|
2085
2327
|
} | {
|
|
2086
2328
|
blockHash: `0x${string}` | null;
|
|
2087
2329
|
blockNumber: bigint | null;
|
|
@@ -2099,16 +2341,17 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
2099
2341
|
value: bigint;
|
|
2100
2342
|
yParity: number;
|
|
2101
2343
|
accessList: import("viem").AccessList;
|
|
2102
|
-
|
|
2344
|
+
authorizationList?: undefined | undefined;
|
|
2345
|
+
blobVersionedHashes?: undefined | undefined;
|
|
2103
2346
|
chainId: number;
|
|
2104
2347
|
type: "eip1559";
|
|
2105
|
-
gasPrice?: undefined;
|
|
2106
|
-
maxFeePerBlobGas?: undefined;
|
|
2348
|
+
gasPrice?: undefined | undefined;
|
|
2349
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
2107
2350
|
maxFeePerGas: bigint;
|
|
2108
2351
|
maxPriorityFeePerGas: bigint;
|
|
2109
|
-
isSystemTx?: undefined;
|
|
2110
|
-
mint?: undefined;
|
|
2111
|
-
sourceHash?: undefined;
|
|
2352
|
+
isSystemTx?: undefined | undefined;
|
|
2353
|
+
mint?: undefined | undefined;
|
|
2354
|
+
sourceHash?: undefined | undefined;
|
|
2112
2355
|
} | {
|
|
2113
2356
|
blockHash: `0x${string}` | null;
|
|
2114
2357
|
blockNumber: bigint | null;
|
|
@@ -2126,16 +2369,45 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
2126
2369
|
value: bigint;
|
|
2127
2370
|
yParity: number;
|
|
2128
2371
|
accessList: import("viem").AccessList;
|
|
2372
|
+
authorizationList?: undefined | undefined;
|
|
2129
2373
|
blobVersionedHashes: readonly import("viem").Hex[];
|
|
2130
2374
|
chainId: number;
|
|
2131
2375
|
type: "eip4844";
|
|
2132
|
-
gasPrice?: undefined;
|
|
2376
|
+
gasPrice?: undefined | undefined;
|
|
2133
2377
|
maxFeePerBlobGas: bigint;
|
|
2134
2378
|
maxFeePerGas: bigint;
|
|
2135
2379
|
maxPriorityFeePerGas: bigint;
|
|
2136
|
-
isSystemTx?: undefined;
|
|
2137
|
-
mint?: undefined;
|
|
2138
|
-
sourceHash?: undefined;
|
|
2380
|
+
isSystemTx?: undefined | undefined;
|
|
2381
|
+
mint?: undefined | undefined;
|
|
2382
|
+
sourceHash?: undefined | undefined;
|
|
2383
|
+
} | {
|
|
2384
|
+
blockHash: `0x${string}` | null;
|
|
2385
|
+
blockNumber: bigint | null;
|
|
2386
|
+
from: import("viem").Address;
|
|
2387
|
+
gas: bigint;
|
|
2388
|
+
hash: import("viem").Hash;
|
|
2389
|
+
input: import("viem").Hex;
|
|
2390
|
+
nonce: number;
|
|
2391
|
+
r: import("viem").Hex;
|
|
2392
|
+
s: import("viem").Hex;
|
|
2393
|
+
to: import("viem").Address | null;
|
|
2394
|
+
transactionIndex: number | null;
|
|
2395
|
+
typeHex: import("viem").Hex | null;
|
|
2396
|
+
v: bigint;
|
|
2397
|
+
value: bigint;
|
|
2398
|
+
yParity: number;
|
|
2399
|
+
accessList: import("viem").AccessList;
|
|
2400
|
+
authorizationList: import("viem").SignedAuthorizationList;
|
|
2401
|
+
blobVersionedHashes?: undefined | undefined;
|
|
2402
|
+
chainId: number;
|
|
2403
|
+
type: "eip7702";
|
|
2404
|
+
gasPrice?: undefined | undefined;
|
|
2405
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
2406
|
+
maxFeePerGas: bigint;
|
|
2407
|
+
maxPriorityFeePerGas: bigint;
|
|
2408
|
+
isSystemTx?: undefined | undefined;
|
|
2409
|
+
mint?: undefined | undefined;
|
|
2410
|
+
sourceHash?: undefined | undefined;
|
|
2139
2411
|
}) & {};
|
|
2140
2412
|
type: "transaction";
|
|
2141
2413
|
};
|
|
@@ -2153,7 +2425,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
2153
2425
|
gasUsed: bigint;
|
|
2154
2426
|
logs: import("viem").Log<bigint, number, false>[];
|
|
2155
2427
|
logsBloom: import("viem").Hex;
|
|
2156
|
-
root?:
|
|
2428
|
+
root?: `0x${string}` | undefined;
|
|
2157
2429
|
status: "success" | "reverted";
|
|
2158
2430
|
to: import("viem").Address | null;
|
|
2159
2431
|
transactionHash: import("viem").Hash;
|
|
@@ -2170,6 +2442,39 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
2170
2442
|
serializers: {
|
|
2171
2443
|
readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
|
|
2172
2444
|
};
|
|
2445
|
+
} | {
|
|
2446
|
+
blockExplorers: {
|
|
2447
|
+
readonly default: {
|
|
2448
|
+
readonly name: "BscScan";
|
|
2449
|
+
readonly url: "https://bscscan.com";
|
|
2450
|
+
readonly apiUrl: "https://api.bscscan.com/api";
|
|
2451
|
+
};
|
|
2452
|
+
};
|
|
2453
|
+
contracts: {
|
|
2454
|
+
readonly multicall3: {
|
|
2455
|
+
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
2456
|
+
readonly blockCreated: 15921452;
|
|
2457
|
+
};
|
|
2458
|
+
};
|
|
2459
|
+
ensTlds?: readonly string[] | undefined;
|
|
2460
|
+
id: 56;
|
|
2461
|
+
name: "BNB Smart Chain";
|
|
2462
|
+
nativeCurrency: {
|
|
2463
|
+
readonly decimals: 18;
|
|
2464
|
+
readonly name: "BNB";
|
|
2465
|
+
readonly symbol: "BNB";
|
|
2466
|
+
};
|
|
2467
|
+
rpcUrls: {
|
|
2468
|
+
readonly default: {
|
|
2469
|
+
readonly http: readonly ["https://56.rpc.thirdweb.com"];
|
|
2470
|
+
};
|
|
2471
|
+
};
|
|
2472
|
+
sourceId?: number | undefined | undefined;
|
|
2473
|
+
testnet?: boolean | undefined | undefined;
|
|
2474
|
+
custom?: Record<string, unknown> | undefined;
|
|
2475
|
+
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
2476
|
+
formatters?: undefined;
|
|
2477
|
+
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
2173
2478
|
} | {
|
|
2174
2479
|
blockExplorers: {
|
|
2175
2480
|
readonly default: {
|
|
@@ -2178,17 +2483,23 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
2178
2483
|
readonly apiUrl: "https://api-era.zksync.network/api";
|
|
2179
2484
|
};
|
|
2180
2485
|
readonly native: {
|
|
2181
|
-
readonly name: "
|
|
2486
|
+
readonly name: "ZKsync Explorer";
|
|
2182
2487
|
readonly url: "https://explorer.zksync.io/";
|
|
2488
|
+
readonly apiUrl: "https://block-explorer-api.mainnet.zksync.io/api";
|
|
2183
2489
|
};
|
|
2184
2490
|
};
|
|
2185
2491
|
contracts: {
|
|
2186
2492
|
readonly multicall3: {
|
|
2187
2493
|
readonly address: "0xF9cda624FBC7e059355ce98a31693d299FACd963";
|
|
2188
2494
|
};
|
|
2495
|
+
readonly universalSignatureVerifier: {
|
|
2496
|
+
readonly address: "0xfB688330379976DA81eB64Fe4BF50d7401763B9C";
|
|
2497
|
+
readonly blockCreated: 45659388;
|
|
2498
|
+
};
|
|
2189
2499
|
};
|
|
2500
|
+
ensTlds?: readonly string[] | undefined;
|
|
2190
2501
|
id: 324;
|
|
2191
|
-
name: "
|
|
2502
|
+
name: "ZKsync Era";
|
|
2192
2503
|
nativeCurrency: {
|
|
2193
2504
|
readonly decimals: 18;
|
|
2194
2505
|
readonly name: "Ether";
|
|
@@ -2200,8 +2511,8 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
2200
2511
|
readonly webSocket: readonly ["wss://mainnet.era.zksync.io/ws"];
|
|
2201
2512
|
};
|
|
2202
2513
|
};
|
|
2203
|
-
sourceId?: number | undefined;
|
|
2204
|
-
testnet?: boolean | undefined;
|
|
2514
|
+
sourceId?: number | undefined | undefined;
|
|
2515
|
+
testnet?: boolean | undefined | undefined;
|
|
2205
2516
|
custom: {
|
|
2206
2517
|
readonly getEip712Domain: import("viem/zksync").EIP712DomainFn<import("viem/chains").ZkSyncTransactionSerializable, import("viem/chains").ZkSyncEIP712TransactionSignable>;
|
|
2207
2518
|
};
|
|
@@ -2223,6 +2534,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
2223
2534
|
mixHash: import("viem").Hash;
|
|
2224
2535
|
nonce: `0x${string}` | null;
|
|
2225
2536
|
number: bigint | null;
|
|
2537
|
+
parentBeaconBlockRoot?: `0x${string}` | undefined;
|
|
2226
2538
|
parentHash: import("viem").Hash;
|
|
2227
2539
|
receiptsRoot: import("viem").Hex;
|
|
2228
2540
|
sealFields: import("viem").Hex[];
|
|
@@ -2234,8 +2546,8 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
2234
2546
|
transactions: `0x${string}`[] | import("viem/chains").ZkSyncTransaction<boolean>[];
|
|
2235
2547
|
transactionsRoot: import("viem").Hash;
|
|
2236
2548
|
uncles: import("viem").Hash[];
|
|
2237
|
-
withdrawals?: import("viem").Withdrawal[] | undefined;
|
|
2238
|
-
withdrawalsRoot?:
|
|
2549
|
+
withdrawals?: import("viem").Withdrawal[] | undefined | undefined;
|
|
2550
|
+
withdrawalsRoot?: `0x${string}` | undefined;
|
|
2239
2551
|
l1BatchNumber: bigint | null;
|
|
2240
2552
|
l1BatchTimestamp: bigint | null;
|
|
2241
2553
|
} & {};
|
|
@@ -2258,15 +2570,16 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
2258
2570
|
input: import("viem").Hex;
|
|
2259
2571
|
transactionIndex: number | null;
|
|
2260
2572
|
typeHex: import("viem").Hex | null;
|
|
2261
|
-
accessList?: undefined;
|
|
2262
|
-
|
|
2573
|
+
accessList?: undefined | undefined;
|
|
2574
|
+
authorizationList?: undefined | undefined;
|
|
2575
|
+
blobVersionedHashes?: undefined | undefined;
|
|
2263
2576
|
chainId?: number | undefined;
|
|
2264
|
-
yParity?: undefined;
|
|
2577
|
+
yParity?: undefined | undefined;
|
|
2265
2578
|
type: "legacy";
|
|
2266
2579
|
gasPrice: bigint;
|
|
2267
|
-
maxFeePerBlobGas?: undefined;
|
|
2268
|
-
maxFeePerGas?: undefined;
|
|
2269
|
-
maxPriorityFeePerGas?: undefined;
|
|
2580
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
2581
|
+
maxFeePerGas?: undefined | undefined;
|
|
2582
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
2270
2583
|
l1BatchNumber: bigint | null;
|
|
2271
2584
|
l1BatchTxIndex: bigint | null;
|
|
2272
2585
|
} | {
|
|
@@ -2286,13 +2599,14 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
2286
2599
|
value: bigint;
|
|
2287
2600
|
yParity: number;
|
|
2288
2601
|
accessList: import("viem").AccessList;
|
|
2289
|
-
|
|
2602
|
+
authorizationList?: undefined | undefined;
|
|
2603
|
+
blobVersionedHashes?: undefined | undefined;
|
|
2290
2604
|
chainId: number;
|
|
2291
2605
|
type: "eip2930";
|
|
2292
2606
|
gasPrice: bigint;
|
|
2293
|
-
maxFeePerBlobGas?: undefined;
|
|
2294
|
-
maxFeePerGas?: undefined;
|
|
2295
|
-
maxPriorityFeePerGas?: undefined;
|
|
2607
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
2608
|
+
maxFeePerGas?: undefined | undefined;
|
|
2609
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
2296
2610
|
l1BatchNumber: bigint | null;
|
|
2297
2611
|
l1BatchTxIndex: bigint | null;
|
|
2298
2612
|
} | {
|
|
@@ -2312,11 +2626,12 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
2312
2626
|
value: bigint;
|
|
2313
2627
|
yParity: number;
|
|
2314
2628
|
accessList: import("viem").AccessList;
|
|
2315
|
-
|
|
2629
|
+
authorizationList?: undefined | undefined;
|
|
2630
|
+
blobVersionedHashes?: undefined | undefined;
|
|
2316
2631
|
chainId: number;
|
|
2317
2632
|
type: "eip1559";
|
|
2318
|
-
gasPrice?: undefined;
|
|
2319
|
-
maxFeePerBlobGas?: undefined;
|
|
2633
|
+
gasPrice?: undefined | undefined;
|
|
2634
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
2320
2635
|
maxFeePerGas: bigint;
|
|
2321
2636
|
maxPriorityFeePerGas: bigint;
|
|
2322
2637
|
l1BatchNumber: bigint | null;
|
|
@@ -2338,10 +2653,11 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
2338
2653
|
value: bigint;
|
|
2339
2654
|
yParity: number;
|
|
2340
2655
|
accessList: import("viem").AccessList;
|
|
2656
|
+
authorizationList?: undefined | undefined;
|
|
2341
2657
|
blobVersionedHashes: readonly import("viem").Hex[];
|
|
2342
2658
|
chainId: number;
|
|
2343
2659
|
type: "eip4844";
|
|
2344
|
-
gasPrice?: undefined;
|
|
2660
|
+
gasPrice?: undefined | undefined;
|
|
2345
2661
|
maxFeePerBlobGas: bigint;
|
|
2346
2662
|
maxFeePerGas: bigint;
|
|
2347
2663
|
maxPriorityFeePerGas: bigint;
|
|
@@ -2363,10 +2679,37 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
2363
2679
|
v: bigint;
|
|
2364
2680
|
value: bigint;
|
|
2365
2681
|
yParity: number;
|
|
2682
|
+
accessList: import("viem").AccessList;
|
|
2683
|
+
authorizationList: import("viem").SignedAuthorizationList;
|
|
2684
|
+
blobVersionedHashes?: undefined | undefined;
|
|
2685
|
+
chainId: number;
|
|
2686
|
+
type: "eip7702";
|
|
2687
|
+
gasPrice?: undefined | undefined;
|
|
2688
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
2689
|
+
maxFeePerGas: bigint;
|
|
2690
|
+
maxPriorityFeePerGas: bigint;
|
|
2366
2691
|
l1BatchNumber: bigint | null;
|
|
2367
2692
|
l1BatchTxIndex: bigint | null;
|
|
2368
|
-
|
|
2369
|
-
|
|
2693
|
+
} | {
|
|
2694
|
+
blockHash: `0x${string}` | null;
|
|
2695
|
+
blockNumber: bigint | null;
|
|
2696
|
+
from: import("viem").Address;
|
|
2697
|
+
gas: bigint;
|
|
2698
|
+
hash: import("viem").Hash;
|
|
2699
|
+
input: import("viem").Hex;
|
|
2700
|
+
nonce: number;
|
|
2701
|
+
r: import("viem").Hex;
|
|
2702
|
+
s: import("viem").Hex;
|
|
2703
|
+
to: import("viem").Address | null;
|
|
2704
|
+
transactionIndex: number | null;
|
|
2705
|
+
typeHex: import("viem").Hex | null;
|
|
2706
|
+
v: bigint;
|
|
2707
|
+
value: bigint;
|
|
2708
|
+
yParity: number;
|
|
2709
|
+
l1BatchNumber: bigint | null;
|
|
2710
|
+
l1BatchTxIndex: bigint | null;
|
|
2711
|
+
gasPrice?: undefined | undefined;
|
|
2712
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
2370
2713
|
maxFeePerGas: bigint;
|
|
2371
2714
|
maxPriorityFeePerGas: bigint;
|
|
2372
2715
|
type: "priority";
|
|
@@ -2388,8 +2731,8 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
2388
2731
|
yParity: number;
|
|
2389
2732
|
l1BatchNumber: bigint | null;
|
|
2390
2733
|
l1BatchTxIndex: bigint | null;
|
|
2391
|
-
gasPrice?: undefined;
|
|
2392
|
-
maxFeePerBlobGas?: undefined;
|
|
2734
|
+
gasPrice?: undefined | undefined;
|
|
2735
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
2393
2736
|
maxFeePerGas: bigint;
|
|
2394
2737
|
maxPriorityFeePerGas: bigint;
|
|
2395
2738
|
type: "eip712" | "priority";
|
|
@@ -2398,8 +2741,9 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
2398
2741
|
};
|
|
2399
2742
|
readonly transactionReceipt: {
|
|
2400
2743
|
exclude: [] | undefined;
|
|
2401
|
-
format: (args: import("viem/
|
|
2744
|
+
format: (args: import("viem/chains").ZkSyncRpcTransactionReceipt) => {
|
|
2402
2745
|
type: import("viem/chains").ZkSyncTransactionType;
|
|
2746
|
+
contractAddress: import("viem").Address | null | undefined;
|
|
2403
2747
|
to: import("viem").Address | null;
|
|
2404
2748
|
from: import("viem").Address;
|
|
2405
2749
|
blockHash: import("viem").Hash;
|
|
@@ -2409,12 +2753,11 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
2409
2753
|
logsBloom: import("viem").Hex;
|
|
2410
2754
|
blobGasUsed?: bigint | undefined;
|
|
2411
2755
|
gasUsed: bigint;
|
|
2412
|
-
contractAddress: import("viem").Address | null | undefined;
|
|
2413
2756
|
transactionHash: import("viem").Hash;
|
|
2414
2757
|
blobGasPrice?: bigint | undefined;
|
|
2415
2758
|
cumulativeGasUsed: bigint;
|
|
2416
2759
|
effectiveGasPrice: bigint;
|
|
2417
|
-
root?:
|
|
2760
|
+
root?: `0x${string}` | undefined;
|
|
2418
2761
|
l1BatchNumber: bigint | null;
|
|
2419
2762
|
l1BatchTxIndex: bigint | null;
|
|
2420
2763
|
logs: import("viem/chains").ZkSyncLog[];
|
|
@@ -2423,95 +2766,118 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
2423
2766
|
type: "transactionReceipt";
|
|
2424
2767
|
};
|
|
2425
2768
|
readonly transactionRequest: {
|
|
2426
|
-
exclude: ("
|
|
2769
|
+
exclude: ("paymaster" | "gasPerPubdata" | "factoryDeps" | "paymasterInput" | "customSignature")[] | undefined;
|
|
2427
2770
|
format: (args: import("viem/chains").ZkSyncTransactionRequest) => ({
|
|
2428
|
-
data?:
|
|
2429
|
-
from
|
|
2771
|
+
data?: `0x${string}` | undefined;
|
|
2772
|
+
from?: `0x${string}` | undefined;
|
|
2430
2773
|
gas?: `0x${string}` | undefined;
|
|
2431
2774
|
nonce?: `0x${string}` | undefined;
|
|
2432
|
-
to?:
|
|
2433
|
-
value?: `0x${string}` | undefined;
|
|
2434
|
-
accessList?: undefined;
|
|
2435
|
-
blobs?: undefined;
|
|
2775
|
+
to?: `0x${string}` | null | undefined;
|
|
2436
2776
|
type?: "0x0" | undefined;
|
|
2777
|
+
value?: `0x${string}` | undefined;
|
|
2437
2778
|
gasPrice?: `0x${string}` | undefined;
|
|
2438
|
-
maxFeePerBlobGas?: undefined;
|
|
2439
|
-
maxFeePerGas?: undefined;
|
|
2440
|
-
maxPriorityFeePerGas?: undefined;
|
|
2779
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
2780
|
+
maxFeePerGas?: undefined | undefined;
|
|
2781
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
2782
|
+
blobs?: undefined;
|
|
2783
|
+
accessList?: undefined;
|
|
2441
2784
|
blobVersionedHashes?: undefined;
|
|
2442
2785
|
kzg?: undefined;
|
|
2443
2786
|
sidecars?: undefined;
|
|
2444
|
-
|
|
2787
|
+
authorizationList?: undefined;
|
|
2788
|
+
eip712Meta?: undefined | undefined;
|
|
2445
2789
|
} | {
|
|
2446
|
-
data?:
|
|
2447
|
-
from
|
|
2790
|
+
data?: `0x${string}` | undefined;
|
|
2791
|
+
from?: `0x${string}` | undefined;
|
|
2448
2792
|
gas?: `0x${string}` | undefined;
|
|
2449
2793
|
nonce?: `0x${string}` | undefined;
|
|
2450
|
-
to?:
|
|
2794
|
+
to?: `0x${string}` | null | undefined;
|
|
2795
|
+
type?: "0x1" | undefined;
|
|
2451
2796
|
value?: `0x${string}` | undefined;
|
|
2797
|
+
gasPrice?: `0x${string}` | undefined;
|
|
2798
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
2799
|
+
maxFeePerGas?: undefined | undefined;
|
|
2800
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
2452
2801
|
accessList?: import("viem").AccessList | undefined;
|
|
2453
2802
|
blobs?: undefined;
|
|
2454
|
-
type?: "0x1" | undefined;
|
|
2455
|
-
gasPrice?: `0x${string}` | undefined;
|
|
2456
|
-
maxFeePerBlobGas?: undefined;
|
|
2457
|
-
maxFeePerGas?: undefined;
|
|
2458
|
-
maxPriorityFeePerGas?: undefined;
|
|
2459
2803
|
blobVersionedHashes?: undefined;
|
|
2460
2804
|
kzg?: undefined;
|
|
2461
2805
|
sidecars?: undefined;
|
|
2462
|
-
|
|
2806
|
+
authorizationList?: undefined;
|
|
2807
|
+
eip712Meta?: undefined | undefined;
|
|
2463
2808
|
} | {
|
|
2464
|
-
data?:
|
|
2465
|
-
from
|
|
2809
|
+
data?: `0x${string}` | undefined;
|
|
2810
|
+
from?: `0x${string}` | undefined;
|
|
2466
2811
|
gas?: `0x${string}` | undefined;
|
|
2467
2812
|
nonce?: `0x${string}` | undefined;
|
|
2468
|
-
to?:
|
|
2813
|
+
to?: `0x${string}` | null | undefined;
|
|
2814
|
+
type?: "0x2" | undefined;
|
|
2469
2815
|
value?: `0x${string}` | undefined;
|
|
2470
|
-
gasPrice?: undefined;
|
|
2471
|
-
maxFeePerBlobGas?: undefined;
|
|
2816
|
+
gasPrice?: undefined | undefined;
|
|
2817
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
2472
2818
|
maxFeePerGas?: `0x${string}` | undefined;
|
|
2473
2819
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
2474
2820
|
accessList?: import("viem").AccessList | undefined;
|
|
2475
2821
|
blobs?: undefined;
|
|
2476
|
-
type?: "0x2" | undefined;
|
|
2477
2822
|
blobVersionedHashes?: undefined;
|
|
2478
2823
|
kzg?: undefined;
|
|
2479
2824
|
sidecars?: undefined;
|
|
2480
|
-
|
|
2825
|
+
authorizationList?: undefined;
|
|
2826
|
+
eip712Meta?: undefined | undefined;
|
|
2481
2827
|
} | {
|
|
2482
|
-
|
|
2483
|
-
|
|
2828
|
+
type?: "0x3" | undefined;
|
|
2829
|
+
data?: `0x${string}` | undefined;
|
|
2830
|
+
from?: `0x${string}` | undefined;
|
|
2484
2831
|
gas?: `0x${string}` | undefined;
|
|
2485
2832
|
nonce?: `0x${string}` | undefined;
|
|
2486
2833
|
value?: `0x${string}` | undefined;
|
|
2487
2834
|
to: `0x${string}` | null;
|
|
2835
|
+
gasPrice?: undefined | undefined;
|
|
2836
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
|
2837
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
2838
|
+
maxFeePerBlobGas: `0x${string}`;
|
|
2488
2839
|
accessList?: import("viem").AccessList | undefined;
|
|
2489
2840
|
blobs: readonly import("viem").Hex[] | readonly import("viem").ByteArray[];
|
|
2490
|
-
blobVersionedHashes?: readonly
|
|
2841
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
2491
2842
|
kzg?: import("viem").Kzg | undefined;
|
|
2492
|
-
sidecars?: readonly import("viem").BlobSidecar
|
|
2493
|
-
|
|
2494
|
-
|
|
2843
|
+
sidecars?: readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
2844
|
+
authorizationList?: undefined;
|
|
2845
|
+
eip712Meta?: undefined | undefined;
|
|
2846
|
+
} | {
|
|
2847
|
+
type?: "0x4" | undefined;
|
|
2848
|
+
gasPrice?: undefined | undefined;
|
|
2849
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
2495
2850
|
maxFeePerGas?: `0x${string}` | undefined;
|
|
2496
2851
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
2497
|
-
|
|
2498
|
-
|
|
2852
|
+
to?: `0x${string}` | null | undefined;
|
|
2853
|
+
data?: `0x${string}` | undefined;
|
|
2854
|
+
from?: `0x${string}` | undefined;
|
|
2855
|
+
gas?: `0x${string}` | undefined;
|
|
2856
|
+
nonce?: `0x${string}` | undefined;
|
|
2857
|
+
value?: `0x${string}` | undefined;
|
|
2858
|
+
accessList?: import("viem").AccessList | undefined;
|
|
2859
|
+
authorizationList?: import("viem").RpcAuthorizationList | undefined;
|
|
2860
|
+
blobs?: undefined;
|
|
2861
|
+
blobVersionedHashes?: undefined;
|
|
2862
|
+
kzg?: undefined;
|
|
2863
|
+
sidecars?: undefined;
|
|
2864
|
+
eip712Meta?: undefined | undefined;
|
|
2499
2865
|
} | {
|
|
2500
|
-
data?:
|
|
2501
|
-
from
|
|
2866
|
+
data?: `0x${string}` | undefined;
|
|
2867
|
+
from?: `0x${string}` | undefined;
|
|
2502
2868
|
gas?: `0x${string}` | undefined;
|
|
2503
2869
|
nonce?: `0x${string}` | undefined;
|
|
2504
|
-
to?:
|
|
2870
|
+
to?: `0x${string}` | null | undefined;
|
|
2871
|
+
type: "0xff" | "0x71";
|
|
2505
2872
|
value?: `0x${string}` | undefined;
|
|
2506
|
-
gasPrice?: undefined;
|
|
2507
|
-
maxFeePerBlobGas?: undefined;
|
|
2873
|
+
gasPrice?: undefined | undefined;
|
|
2874
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
2508
2875
|
maxFeePerGas?: `0x${string}` | undefined;
|
|
2509
2876
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
2510
2877
|
eip712Meta: import("viem/chains").ZkSyncEip712Meta;
|
|
2511
|
-
type: "0x71" | "0xff";
|
|
2512
2878
|
}) & {
|
|
2513
|
-
gasPerPubdata: never;
|
|
2514
2879
|
paymaster: never;
|
|
2880
|
+
gasPerPubdata: never;
|
|
2515
2881
|
factoryDeps: never;
|
|
2516
2882
|
paymasterInput: never;
|
|
2517
2883
|
customSignature: never;
|
|
@@ -2537,6 +2903,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
2537
2903
|
readonly blockCreated: 304717;
|
|
2538
2904
|
};
|
|
2539
2905
|
};
|
|
2906
|
+
ensTlds?: readonly string[] | undefined;
|
|
2540
2907
|
id: 5000;
|
|
2541
2908
|
name: "Mantle";
|
|
2542
2909
|
nativeCurrency: {
|
|
@@ -2549,8 +2916,8 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
2549
2916
|
readonly http: readonly ["https://rpc.mantle.xyz"];
|
|
2550
2917
|
};
|
|
2551
2918
|
};
|
|
2552
|
-
sourceId?: number | undefined;
|
|
2553
|
-
testnet?: boolean | undefined;
|
|
2919
|
+
sourceId?: number | undefined | undefined;
|
|
2920
|
+
testnet?: boolean | undefined | undefined;
|
|
2554
2921
|
custom?: Record<string, unknown> | undefined;
|
|
2555
2922
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
2556
2923
|
formatters?: undefined;
|
|
@@ -2569,6 +2936,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
2569
2936
|
readonly blockCreated: 14;
|
|
2570
2937
|
};
|
|
2571
2938
|
};
|
|
2939
|
+
ensTlds?: readonly string[] | undefined;
|
|
2572
2940
|
id: 534352;
|
|
2573
2941
|
name: "Scroll";
|
|
2574
2942
|
nativeCurrency: {
|
|
@@ -2582,7 +2950,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
2582
2950
|
readonly webSocket: readonly ["wss://wss-rpc.scroll.io/ws"];
|
|
2583
2951
|
};
|
|
2584
2952
|
};
|
|
2585
|
-
sourceId?: number | undefined;
|
|
2953
|
+
sourceId?: number | undefined | undefined;
|
|
2586
2954
|
testnet: false;
|
|
2587
2955
|
custom?: Record<string, unknown> | undefined;
|
|
2588
2956
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
@@ -2609,6 +2977,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
2609
2977
|
readonly blockCreated: 6507670;
|
|
2610
2978
|
};
|
|
2611
2979
|
};
|
|
2980
|
+
ensTlds?: readonly string[] | undefined;
|
|
2612
2981
|
id: 5;
|
|
2613
2982
|
name: "Goerli";
|
|
2614
2983
|
nativeCurrency: {
|
|
@@ -2618,10 +2987,10 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
2618
2987
|
};
|
|
2619
2988
|
rpcUrls: {
|
|
2620
2989
|
readonly default: {
|
|
2621
|
-
readonly http: readonly ["https://rpc.
|
|
2990
|
+
readonly http: readonly ["https://5.rpc.thirdweb.com"];
|
|
2622
2991
|
};
|
|
2623
2992
|
};
|
|
2624
|
-
sourceId?: number | undefined;
|
|
2993
|
+
sourceId?: number | undefined | undefined;
|
|
2625
2994
|
testnet: true;
|
|
2626
2995
|
custom?: Record<string, unknown> | undefined;
|
|
2627
2996
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
@@ -2641,6 +3010,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
2641
3010
|
readonly blockCreated: 81930;
|
|
2642
3011
|
};
|
|
2643
3012
|
};
|
|
3013
|
+
ensTlds?: readonly string[] | undefined;
|
|
2644
3014
|
id: 421614;
|
|
2645
3015
|
name: "Arbitrum Sepolia";
|
|
2646
3016
|
nativeCurrency: {
|
|
@@ -2653,7 +3023,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
2653
3023
|
readonly http: readonly ["https://sepolia-rollup.arbitrum.io/rpc"];
|
|
2654
3024
|
};
|
|
2655
3025
|
};
|
|
2656
|
-
sourceId?: number | undefined;
|
|
3026
|
+
sourceId?: number | undefined | undefined;
|
|
2657
3027
|
testnet: true;
|
|
2658
3028
|
custom?: Record<string, unknown> | undefined;
|
|
2659
3029
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
@@ -2714,6 +3084,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
2714
3084
|
readonly blockCreated: 14353601;
|
|
2715
3085
|
};
|
|
2716
3086
|
};
|
|
3087
|
+
ensTlds?: readonly string[] | undefined;
|
|
2717
3088
|
id: 1;
|
|
2718
3089
|
name: "Ethereum";
|
|
2719
3090
|
nativeCurrency: {
|
|
@@ -2723,11 +3094,11 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
2723
3094
|
};
|
|
2724
3095
|
rpcUrls: {
|
|
2725
3096
|
readonly default: {
|
|
2726
|
-
readonly http: readonly ["https://
|
|
3097
|
+
readonly http: readonly ["https://eth.merkle.io"];
|
|
2727
3098
|
};
|
|
2728
3099
|
};
|
|
2729
|
-
sourceId?: number | undefined;
|
|
2730
|
-
testnet?: boolean | undefined;
|
|
3100
|
+
sourceId?: number | undefined | undefined;
|
|
3101
|
+
testnet?: boolean | undefined | undefined;
|
|
2731
3102
|
custom?: Record<string, unknown> | undefined;
|
|
2732
3103
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
2733
3104
|
formatters?: undefined;
|
|
@@ -2741,6 +3112,11 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
2741
3112
|
};
|
|
2742
3113
|
};
|
|
2743
3114
|
contracts: {
|
|
3115
|
+
readonly disputeGameFactory: {
|
|
3116
|
+
readonly 1: {
|
|
3117
|
+
readonly address: "0x43edB88C4B80fDD2AdFF2412A7BebF9dF42cB40e";
|
|
3118
|
+
};
|
|
3119
|
+
};
|
|
2744
3120
|
readonly l2OutputOracle: {
|
|
2745
3121
|
readonly 1: {
|
|
2746
3122
|
readonly address: "0x56315b90c40730925ec5485cf004d835058518A0";
|
|
@@ -2781,6 +3157,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
2781
3157
|
readonly address: "0x4200000000000000000000000000000000000016";
|
|
2782
3158
|
};
|
|
2783
3159
|
};
|
|
3160
|
+
ensTlds?: readonly string[] | undefined;
|
|
2784
3161
|
id: 8453;
|
|
2785
3162
|
name: "Base";
|
|
2786
3163
|
nativeCurrency: {
|
|
@@ -2794,7 +3171,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
2794
3171
|
};
|
|
2795
3172
|
};
|
|
2796
3173
|
sourceId: 1;
|
|
2797
|
-
testnet?: boolean | undefined;
|
|
3174
|
+
testnet?: boolean | undefined | undefined;
|
|
2798
3175
|
custom?: Record<string, unknown> | undefined;
|
|
2799
3176
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
2800
3177
|
formatters: {
|
|
@@ -2814,6 +3191,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
2814
3191
|
mixHash: import("viem").Hash;
|
|
2815
3192
|
nonce: `0x${string}` | null;
|
|
2816
3193
|
number: bigint | null;
|
|
3194
|
+
parentBeaconBlockRoot?: `0x${string}` | undefined;
|
|
2817
3195
|
parentHash: import("viem").Hash;
|
|
2818
3196
|
receiptsRoot: import("viem").Hex;
|
|
2819
3197
|
sealFields: import("viem").Hex[];
|
|
@@ -2825,8 +3203,8 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
2825
3203
|
transactions: `0x${string}`[] | import("viem/chains").OpStackTransaction<boolean>[];
|
|
2826
3204
|
transactionsRoot: import("viem").Hash;
|
|
2827
3205
|
uncles: import("viem").Hash[];
|
|
2828
|
-
withdrawals?: import("viem").Withdrawal[] | undefined;
|
|
2829
|
-
withdrawalsRoot?:
|
|
3206
|
+
withdrawals?: import("viem").Withdrawal[] | undefined | undefined;
|
|
3207
|
+
withdrawalsRoot?: `0x${string}` | undefined;
|
|
2830
3208
|
} & {};
|
|
2831
3209
|
type: "block";
|
|
2832
3210
|
};
|
|
@@ -2848,12 +3226,12 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
2848
3226
|
v: bigint;
|
|
2849
3227
|
value: bigint;
|
|
2850
3228
|
yParity: number;
|
|
2851
|
-
gasPrice?: undefined;
|
|
2852
|
-
maxFeePerBlobGas?: undefined;
|
|
3229
|
+
gasPrice?: undefined | undefined;
|
|
3230
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
2853
3231
|
maxFeePerGas: bigint;
|
|
2854
3232
|
maxPriorityFeePerGas: bigint;
|
|
2855
3233
|
isSystemTx?: boolean;
|
|
2856
|
-
mint?: bigint | undefined;
|
|
3234
|
+
mint?: bigint | undefined | undefined;
|
|
2857
3235
|
sourceHash: import("viem").Hex;
|
|
2858
3236
|
type: "deposit";
|
|
2859
3237
|
} | {
|
|
@@ -2871,18 +3249,19 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
2871
3249
|
input: import("viem").Hex;
|
|
2872
3250
|
transactionIndex: number | null;
|
|
2873
3251
|
typeHex: import("viem").Hex | null;
|
|
2874
|
-
accessList?: undefined;
|
|
2875
|
-
|
|
3252
|
+
accessList?: undefined | undefined;
|
|
3253
|
+
authorizationList?: undefined | undefined;
|
|
3254
|
+
blobVersionedHashes?: undefined | undefined;
|
|
2876
3255
|
chainId?: number | undefined;
|
|
2877
|
-
yParity?: undefined;
|
|
3256
|
+
yParity?: undefined | undefined;
|
|
2878
3257
|
type: "legacy";
|
|
2879
3258
|
gasPrice: bigint;
|
|
2880
|
-
maxFeePerBlobGas?: undefined;
|
|
2881
|
-
maxFeePerGas?: undefined;
|
|
2882
|
-
maxPriorityFeePerGas?: undefined;
|
|
2883
|
-
isSystemTx?: undefined;
|
|
2884
|
-
mint?: undefined;
|
|
2885
|
-
sourceHash?: undefined;
|
|
3259
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3260
|
+
maxFeePerGas?: undefined | undefined;
|
|
3261
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
3262
|
+
isSystemTx?: undefined | undefined;
|
|
3263
|
+
mint?: undefined | undefined;
|
|
3264
|
+
sourceHash?: undefined | undefined;
|
|
2886
3265
|
} | {
|
|
2887
3266
|
blockHash: `0x${string}` | null;
|
|
2888
3267
|
blockNumber: bigint | null;
|
|
@@ -2900,16 +3279,17 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
2900
3279
|
value: bigint;
|
|
2901
3280
|
yParity: number;
|
|
2902
3281
|
accessList: import("viem").AccessList;
|
|
2903
|
-
|
|
3282
|
+
authorizationList?: undefined | undefined;
|
|
3283
|
+
blobVersionedHashes?: undefined | undefined;
|
|
2904
3284
|
chainId: number;
|
|
2905
3285
|
type: "eip2930";
|
|
2906
3286
|
gasPrice: bigint;
|
|
2907
|
-
maxFeePerBlobGas?: undefined;
|
|
2908
|
-
maxFeePerGas?: undefined;
|
|
2909
|
-
maxPriorityFeePerGas?: undefined;
|
|
2910
|
-
isSystemTx?: undefined;
|
|
2911
|
-
mint?: undefined;
|
|
2912
|
-
sourceHash?: undefined;
|
|
3287
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3288
|
+
maxFeePerGas?: undefined | undefined;
|
|
3289
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
3290
|
+
isSystemTx?: undefined | undefined;
|
|
3291
|
+
mint?: undefined | undefined;
|
|
3292
|
+
sourceHash?: undefined | undefined;
|
|
2913
3293
|
} | {
|
|
2914
3294
|
blockHash: `0x${string}` | null;
|
|
2915
3295
|
blockNumber: bigint | null;
|
|
@@ -2927,16 +3307,17 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
2927
3307
|
value: bigint;
|
|
2928
3308
|
yParity: number;
|
|
2929
3309
|
accessList: import("viem").AccessList;
|
|
2930
|
-
|
|
3310
|
+
authorizationList?: undefined | undefined;
|
|
3311
|
+
blobVersionedHashes?: undefined | undefined;
|
|
2931
3312
|
chainId: number;
|
|
2932
3313
|
type: "eip1559";
|
|
2933
|
-
gasPrice?: undefined;
|
|
2934
|
-
maxFeePerBlobGas?: undefined;
|
|
3314
|
+
gasPrice?: undefined | undefined;
|
|
3315
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
2935
3316
|
maxFeePerGas: bigint;
|
|
2936
3317
|
maxPriorityFeePerGas: bigint;
|
|
2937
|
-
isSystemTx?: undefined;
|
|
2938
|
-
mint?: undefined;
|
|
2939
|
-
sourceHash?: undefined;
|
|
3318
|
+
isSystemTx?: undefined | undefined;
|
|
3319
|
+
mint?: undefined | undefined;
|
|
3320
|
+
sourceHash?: undefined | undefined;
|
|
2940
3321
|
} | {
|
|
2941
3322
|
blockHash: `0x${string}` | null;
|
|
2942
3323
|
blockNumber: bigint | null;
|
|
@@ -2954,16 +3335,45 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
2954
3335
|
value: bigint;
|
|
2955
3336
|
yParity: number;
|
|
2956
3337
|
accessList: import("viem").AccessList;
|
|
3338
|
+
authorizationList?: undefined | undefined;
|
|
2957
3339
|
blobVersionedHashes: readonly import("viem").Hex[];
|
|
2958
3340
|
chainId: number;
|
|
2959
3341
|
type: "eip4844";
|
|
2960
|
-
gasPrice?: undefined;
|
|
3342
|
+
gasPrice?: undefined | undefined;
|
|
2961
3343
|
maxFeePerBlobGas: bigint;
|
|
2962
3344
|
maxFeePerGas: bigint;
|
|
2963
3345
|
maxPriorityFeePerGas: bigint;
|
|
2964
|
-
isSystemTx?: undefined;
|
|
2965
|
-
mint?: undefined;
|
|
2966
|
-
sourceHash?: undefined;
|
|
3346
|
+
isSystemTx?: undefined | undefined;
|
|
3347
|
+
mint?: undefined | undefined;
|
|
3348
|
+
sourceHash?: undefined | undefined;
|
|
3349
|
+
} | {
|
|
3350
|
+
blockHash: `0x${string}` | null;
|
|
3351
|
+
blockNumber: bigint | null;
|
|
3352
|
+
from: import("viem").Address;
|
|
3353
|
+
gas: bigint;
|
|
3354
|
+
hash: import("viem").Hash;
|
|
3355
|
+
input: import("viem").Hex;
|
|
3356
|
+
nonce: number;
|
|
3357
|
+
r: import("viem").Hex;
|
|
3358
|
+
s: import("viem").Hex;
|
|
3359
|
+
to: import("viem").Address | null;
|
|
3360
|
+
transactionIndex: number | null;
|
|
3361
|
+
typeHex: import("viem").Hex | null;
|
|
3362
|
+
v: bigint;
|
|
3363
|
+
value: bigint;
|
|
3364
|
+
yParity: number;
|
|
3365
|
+
accessList: import("viem").AccessList;
|
|
3366
|
+
authorizationList: import("viem").SignedAuthorizationList;
|
|
3367
|
+
blobVersionedHashes?: undefined | undefined;
|
|
3368
|
+
chainId: number;
|
|
3369
|
+
type: "eip7702";
|
|
3370
|
+
gasPrice?: undefined | undefined;
|
|
3371
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3372
|
+
maxFeePerGas: bigint;
|
|
3373
|
+
maxPriorityFeePerGas: bigint;
|
|
3374
|
+
isSystemTx?: undefined | undefined;
|
|
3375
|
+
mint?: undefined | undefined;
|
|
3376
|
+
sourceHash?: undefined | undefined;
|
|
2967
3377
|
}) & {};
|
|
2968
3378
|
type: "transaction";
|
|
2969
3379
|
};
|
|
@@ -2981,7 +3391,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
2981
3391
|
gasUsed: bigint;
|
|
2982
3392
|
logs: import("viem").Log<bigint, number, false>[];
|
|
2983
3393
|
logsBloom: import("viem").Hex;
|
|
2984
|
-
root?:
|
|
3394
|
+
root?: `0x${string}` | undefined;
|
|
2985
3395
|
status: "success" | "reverted";
|
|
2986
3396
|
to: import("viem").Address | null;
|
|
2987
3397
|
transactionHash: import("viem").Hash;
|
|
@@ -3012,11 +3422,12 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
3012
3422
|
readonly blockCreated: 25770160;
|
|
3013
3423
|
};
|
|
3014
3424
|
};
|
|
3425
|
+
ensTlds?: readonly string[] | undefined;
|
|
3015
3426
|
id: 137;
|
|
3016
3427
|
name: "Polygon";
|
|
3017
3428
|
nativeCurrency: {
|
|
3018
|
-
readonly name: "
|
|
3019
|
-
readonly symbol: "
|
|
3429
|
+
readonly name: "POL";
|
|
3430
|
+
readonly symbol: "POL";
|
|
3020
3431
|
readonly decimals: 18;
|
|
3021
3432
|
};
|
|
3022
3433
|
rpcUrls: {
|
|
@@ -3024,8 +3435,8 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
3024
3435
|
readonly http: readonly ["https://polygon-rpc.com"];
|
|
3025
3436
|
};
|
|
3026
3437
|
};
|
|
3027
|
-
sourceId?: number | undefined;
|
|
3028
|
-
testnet?: boolean | undefined;
|
|
3438
|
+
sourceId?: number | undefined | undefined;
|
|
3439
|
+
testnet?: boolean | undefined | undefined;
|
|
3029
3440
|
custom?: Record<string, unknown> | undefined;
|
|
3030
3441
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
3031
3442
|
formatters?: undefined;
|
|
@@ -3044,6 +3455,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
3044
3455
|
readonly blockCreated: 7654707;
|
|
3045
3456
|
};
|
|
3046
3457
|
};
|
|
3458
|
+
ensTlds?: readonly string[] | undefined;
|
|
3047
3459
|
id: 42161;
|
|
3048
3460
|
name: "Arbitrum One";
|
|
3049
3461
|
nativeCurrency: {
|
|
@@ -3056,8 +3468,8 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
3056
3468
|
readonly http: readonly ["https://arb1.arbitrum.io/rpc"];
|
|
3057
3469
|
};
|
|
3058
3470
|
};
|
|
3059
|
-
sourceId?: number | undefined;
|
|
3060
|
-
testnet?: boolean | undefined;
|
|
3471
|
+
sourceId?: number | undefined | undefined;
|
|
3472
|
+
testnet?: boolean | undefined | undefined;
|
|
3061
3473
|
custom?: Record<string, unknown> | undefined;
|
|
3062
3474
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
3063
3475
|
formatters?: undefined;
|
|
@@ -3114,6 +3526,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
3114
3526
|
readonly address: "0x4200000000000000000000000000000000000016";
|
|
3115
3527
|
};
|
|
3116
3528
|
};
|
|
3529
|
+
ensTlds?: readonly string[] | undefined;
|
|
3117
3530
|
id: 10;
|
|
3118
3531
|
name: "OP Mainnet";
|
|
3119
3532
|
nativeCurrency: {
|
|
@@ -3127,7 +3540,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
3127
3540
|
};
|
|
3128
3541
|
};
|
|
3129
3542
|
sourceId: 1;
|
|
3130
|
-
testnet?: boolean | undefined;
|
|
3543
|
+
testnet?: boolean | undefined | undefined;
|
|
3131
3544
|
custom?: Record<string, unknown> | undefined;
|
|
3132
3545
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
3133
3546
|
formatters: {
|
|
@@ -3147,6 +3560,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
3147
3560
|
mixHash: import("viem").Hash;
|
|
3148
3561
|
nonce: `0x${string}` | null;
|
|
3149
3562
|
number: bigint | null;
|
|
3563
|
+
parentBeaconBlockRoot?: `0x${string}` | undefined;
|
|
3150
3564
|
parentHash: import("viem").Hash;
|
|
3151
3565
|
receiptsRoot: import("viem").Hex;
|
|
3152
3566
|
sealFields: import("viem").Hex[];
|
|
@@ -3158,8 +3572,8 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
3158
3572
|
transactions: `0x${string}`[] | import("viem/chains").OpStackTransaction<boolean>[];
|
|
3159
3573
|
transactionsRoot: import("viem").Hash;
|
|
3160
3574
|
uncles: import("viem").Hash[];
|
|
3161
|
-
withdrawals?: import("viem").Withdrawal[] | undefined;
|
|
3162
|
-
withdrawalsRoot?:
|
|
3575
|
+
withdrawals?: import("viem").Withdrawal[] | undefined | undefined;
|
|
3576
|
+
withdrawalsRoot?: `0x${string}` | undefined;
|
|
3163
3577
|
} & {};
|
|
3164
3578
|
type: "block";
|
|
3165
3579
|
};
|
|
@@ -3181,12 +3595,12 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
3181
3595
|
v: bigint;
|
|
3182
3596
|
value: bigint;
|
|
3183
3597
|
yParity: number;
|
|
3184
|
-
gasPrice?: undefined;
|
|
3185
|
-
maxFeePerBlobGas?: undefined;
|
|
3598
|
+
gasPrice?: undefined | undefined;
|
|
3599
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3186
3600
|
maxFeePerGas: bigint;
|
|
3187
3601
|
maxPriorityFeePerGas: bigint;
|
|
3188
3602
|
isSystemTx?: boolean;
|
|
3189
|
-
mint?: bigint | undefined;
|
|
3603
|
+
mint?: bigint | undefined | undefined;
|
|
3190
3604
|
sourceHash: import("viem").Hex;
|
|
3191
3605
|
type: "deposit";
|
|
3192
3606
|
} | {
|
|
@@ -3204,18 +3618,19 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
3204
3618
|
input: import("viem").Hex;
|
|
3205
3619
|
transactionIndex: number | null;
|
|
3206
3620
|
typeHex: import("viem").Hex | null;
|
|
3207
|
-
accessList?: undefined;
|
|
3208
|
-
|
|
3621
|
+
accessList?: undefined | undefined;
|
|
3622
|
+
authorizationList?: undefined | undefined;
|
|
3623
|
+
blobVersionedHashes?: undefined | undefined;
|
|
3209
3624
|
chainId?: number | undefined;
|
|
3210
|
-
yParity?: undefined;
|
|
3625
|
+
yParity?: undefined | undefined;
|
|
3211
3626
|
type: "legacy";
|
|
3212
3627
|
gasPrice: bigint;
|
|
3213
|
-
maxFeePerBlobGas?: undefined;
|
|
3214
|
-
maxFeePerGas?: undefined;
|
|
3215
|
-
maxPriorityFeePerGas?: undefined;
|
|
3216
|
-
isSystemTx?: undefined;
|
|
3217
|
-
mint?: undefined;
|
|
3218
|
-
sourceHash?: undefined;
|
|
3628
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3629
|
+
maxFeePerGas?: undefined | undefined;
|
|
3630
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
3631
|
+
isSystemTx?: undefined | undefined;
|
|
3632
|
+
mint?: undefined | undefined;
|
|
3633
|
+
sourceHash?: undefined | undefined;
|
|
3219
3634
|
} | {
|
|
3220
3635
|
blockHash: `0x${string}` | null;
|
|
3221
3636
|
blockNumber: bigint | null;
|
|
@@ -3233,16 +3648,17 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
3233
3648
|
value: bigint;
|
|
3234
3649
|
yParity: number;
|
|
3235
3650
|
accessList: import("viem").AccessList;
|
|
3236
|
-
|
|
3651
|
+
authorizationList?: undefined | undefined;
|
|
3652
|
+
blobVersionedHashes?: undefined | undefined;
|
|
3237
3653
|
chainId: number;
|
|
3238
3654
|
type: "eip2930";
|
|
3239
3655
|
gasPrice: bigint;
|
|
3240
|
-
maxFeePerBlobGas?: undefined;
|
|
3241
|
-
maxFeePerGas?: undefined;
|
|
3242
|
-
maxPriorityFeePerGas?: undefined;
|
|
3243
|
-
isSystemTx?: undefined;
|
|
3244
|
-
mint?: undefined;
|
|
3245
|
-
sourceHash?: undefined;
|
|
3656
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3657
|
+
maxFeePerGas?: undefined | undefined;
|
|
3658
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
3659
|
+
isSystemTx?: undefined | undefined;
|
|
3660
|
+
mint?: undefined | undefined;
|
|
3661
|
+
sourceHash?: undefined | undefined;
|
|
3246
3662
|
} | {
|
|
3247
3663
|
blockHash: `0x${string}` | null;
|
|
3248
3664
|
blockNumber: bigint | null;
|
|
@@ -3260,16 +3676,17 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
3260
3676
|
value: bigint;
|
|
3261
3677
|
yParity: number;
|
|
3262
3678
|
accessList: import("viem").AccessList;
|
|
3263
|
-
|
|
3679
|
+
authorizationList?: undefined | undefined;
|
|
3680
|
+
blobVersionedHashes?: undefined | undefined;
|
|
3264
3681
|
chainId: number;
|
|
3265
3682
|
type: "eip1559";
|
|
3266
|
-
gasPrice?: undefined;
|
|
3267
|
-
maxFeePerBlobGas?: undefined;
|
|
3683
|
+
gasPrice?: undefined | undefined;
|
|
3684
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3268
3685
|
maxFeePerGas: bigint;
|
|
3269
3686
|
maxPriorityFeePerGas: bigint;
|
|
3270
|
-
isSystemTx?: undefined;
|
|
3271
|
-
mint?: undefined;
|
|
3272
|
-
sourceHash?: undefined;
|
|
3687
|
+
isSystemTx?: undefined | undefined;
|
|
3688
|
+
mint?: undefined | undefined;
|
|
3689
|
+
sourceHash?: undefined | undefined;
|
|
3273
3690
|
} | {
|
|
3274
3691
|
blockHash: `0x${string}` | null;
|
|
3275
3692
|
blockNumber: bigint | null;
|
|
@@ -3287,16 +3704,45 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
3287
3704
|
value: bigint;
|
|
3288
3705
|
yParity: number;
|
|
3289
3706
|
accessList: import("viem").AccessList;
|
|
3707
|
+
authorizationList?: undefined | undefined;
|
|
3290
3708
|
blobVersionedHashes: readonly import("viem").Hex[];
|
|
3291
3709
|
chainId: number;
|
|
3292
3710
|
type: "eip4844";
|
|
3293
|
-
gasPrice?: undefined;
|
|
3711
|
+
gasPrice?: undefined | undefined;
|
|
3294
3712
|
maxFeePerBlobGas: bigint;
|
|
3295
3713
|
maxFeePerGas: bigint;
|
|
3296
3714
|
maxPriorityFeePerGas: bigint;
|
|
3297
|
-
isSystemTx?: undefined;
|
|
3298
|
-
mint?: undefined;
|
|
3299
|
-
sourceHash?: undefined;
|
|
3715
|
+
isSystemTx?: undefined | undefined;
|
|
3716
|
+
mint?: undefined | undefined;
|
|
3717
|
+
sourceHash?: undefined | undefined;
|
|
3718
|
+
} | {
|
|
3719
|
+
blockHash: `0x${string}` | null;
|
|
3720
|
+
blockNumber: bigint | null;
|
|
3721
|
+
from: import("viem").Address;
|
|
3722
|
+
gas: bigint;
|
|
3723
|
+
hash: import("viem").Hash;
|
|
3724
|
+
input: import("viem").Hex;
|
|
3725
|
+
nonce: number;
|
|
3726
|
+
r: import("viem").Hex;
|
|
3727
|
+
s: import("viem").Hex;
|
|
3728
|
+
to: import("viem").Address | null;
|
|
3729
|
+
transactionIndex: number | null;
|
|
3730
|
+
typeHex: import("viem").Hex | null;
|
|
3731
|
+
v: bigint;
|
|
3732
|
+
value: bigint;
|
|
3733
|
+
yParity: number;
|
|
3734
|
+
accessList: import("viem").AccessList;
|
|
3735
|
+
authorizationList: import("viem").SignedAuthorizationList;
|
|
3736
|
+
blobVersionedHashes?: undefined | undefined;
|
|
3737
|
+
chainId: number;
|
|
3738
|
+
type: "eip7702";
|
|
3739
|
+
gasPrice?: undefined | undefined;
|
|
3740
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3741
|
+
maxFeePerGas: bigint;
|
|
3742
|
+
maxPriorityFeePerGas: bigint;
|
|
3743
|
+
isSystemTx?: undefined | undefined;
|
|
3744
|
+
mint?: undefined | undefined;
|
|
3745
|
+
sourceHash?: undefined | undefined;
|
|
3300
3746
|
}) & {};
|
|
3301
3747
|
type: "transaction";
|
|
3302
3748
|
};
|
|
@@ -3314,7 +3760,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
3314
3760
|
gasUsed: bigint;
|
|
3315
3761
|
logs: import("viem").Log<bigint, number, false>[];
|
|
3316
3762
|
logsBloom: import("viem").Hex;
|
|
3317
|
-
root?:
|
|
3763
|
+
root?: `0x${string}` | undefined;
|
|
3318
3764
|
status: "success" | "reverted";
|
|
3319
3765
|
to: import("viem").Address | null;
|
|
3320
3766
|
transactionHash: import("viem").Hash;
|
|
@@ -3331,6 +3777,39 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
3331
3777
|
serializers: {
|
|
3332
3778
|
readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
|
|
3333
3779
|
};
|
|
3780
|
+
} | {
|
|
3781
|
+
blockExplorers: {
|
|
3782
|
+
readonly default: {
|
|
3783
|
+
readonly name: "BscScan";
|
|
3784
|
+
readonly url: "https://bscscan.com";
|
|
3785
|
+
readonly apiUrl: "https://api.bscscan.com/api";
|
|
3786
|
+
};
|
|
3787
|
+
};
|
|
3788
|
+
contracts: {
|
|
3789
|
+
readonly multicall3: {
|
|
3790
|
+
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
3791
|
+
readonly blockCreated: 15921452;
|
|
3792
|
+
};
|
|
3793
|
+
};
|
|
3794
|
+
ensTlds?: readonly string[] | undefined;
|
|
3795
|
+
id: 56;
|
|
3796
|
+
name: "BNB Smart Chain";
|
|
3797
|
+
nativeCurrency: {
|
|
3798
|
+
readonly decimals: 18;
|
|
3799
|
+
readonly name: "BNB";
|
|
3800
|
+
readonly symbol: "BNB";
|
|
3801
|
+
};
|
|
3802
|
+
rpcUrls: {
|
|
3803
|
+
readonly default: {
|
|
3804
|
+
readonly http: readonly ["https://56.rpc.thirdweb.com"];
|
|
3805
|
+
};
|
|
3806
|
+
};
|
|
3807
|
+
sourceId?: number | undefined | undefined;
|
|
3808
|
+
testnet?: boolean | undefined | undefined;
|
|
3809
|
+
custom?: Record<string, unknown> | undefined;
|
|
3810
|
+
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
3811
|
+
formatters?: undefined;
|
|
3812
|
+
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
3334
3813
|
} | {
|
|
3335
3814
|
blockExplorers: {
|
|
3336
3815
|
readonly default: {
|
|
@@ -3339,17 +3818,23 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
3339
3818
|
readonly apiUrl: "https://api-era.zksync.network/api";
|
|
3340
3819
|
};
|
|
3341
3820
|
readonly native: {
|
|
3342
|
-
readonly name: "
|
|
3821
|
+
readonly name: "ZKsync Explorer";
|
|
3343
3822
|
readonly url: "https://explorer.zksync.io/";
|
|
3823
|
+
readonly apiUrl: "https://block-explorer-api.mainnet.zksync.io/api";
|
|
3344
3824
|
};
|
|
3345
3825
|
};
|
|
3346
3826
|
contracts: {
|
|
3347
3827
|
readonly multicall3: {
|
|
3348
3828
|
readonly address: "0xF9cda624FBC7e059355ce98a31693d299FACd963";
|
|
3349
3829
|
};
|
|
3830
|
+
readonly universalSignatureVerifier: {
|
|
3831
|
+
readonly address: "0xfB688330379976DA81eB64Fe4BF50d7401763B9C";
|
|
3832
|
+
readonly blockCreated: 45659388;
|
|
3833
|
+
};
|
|
3350
3834
|
};
|
|
3835
|
+
ensTlds?: readonly string[] | undefined;
|
|
3351
3836
|
id: 324;
|
|
3352
|
-
name: "
|
|
3837
|
+
name: "ZKsync Era";
|
|
3353
3838
|
nativeCurrency: {
|
|
3354
3839
|
readonly decimals: 18;
|
|
3355
3840
|
readonly name: "Ether";
|
|
@@ -3361,8 +3846,8 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
3361
3846
|
readonly webSocket: readonly ["wss://mainnet.era.zksync.io/ws"];
|
|
3362
3847
|
};
|
|
3363
3848
|
};
|
|
3364
|
-
sourceId?: number | undefined;
|
|
3365
|
-
testnet?: boolean | undefined;
|
|
3849
|
+
sourceId?: number | undefined | undefined;
|
|
3850
|
+
testnet?: boolean | undefined | undefined;
|
|
3366
3851
|
custom: {
|
|
3367
3852
|
readonly getEip712Domain: import("viem/zksync").EIP712DomainFn<import("viem/chains").ZkSyncTransactionSerializable, import("viem/chains").ZkSyncEIP712TransactionSignable>;
|
|
3368
3853
|
};
|
|
@@ -3384,6 +3869,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
3384
3869
|
mixHash: import("viem").Hash;
|
|
3385
3870
|
nonce: `0x${string}` | null;
|
|
3386
3871
|
number: bigint | null;
|
|
3872
|
+
parentBeaconBlockRoot?: `0x${string}` | undefined;
|
|
3387
3873
|
parentHash: import("viem").Hash;
|
|
3388
3874
|
receiptsRoot: import("viem").Hex;
|
|
3389
3875
|
sealFields: import("viem").Hex[];
|
|
@@ -3395,8 +3881,8 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
3395
3881
|
transactions: `0x${string}`[] | import("viem/chains").ZkSyncTransaction<boolean>[];
|
|
3396
3882
|
transactionsRoot: import("viem").Hash;
|
|
3397
3883
|
uncles: import("viem").Hash[];
|
|
3398
|
-
withdrawals?: import("viem").Withdrawal[] | undefined;
|
|
3399
|
-
withdrawalsRoot?:
|
|
3884
|
+
withdrawals?: import("viem").Withdrawal[] | undefined | undefined;
|
|
3885
|
+
withdrawalsRoot?: `0x${string}` | undefined;
|
|
3400
3886
|
l1BatchNumber: bigint | null;
|
|
3401
3887
|
l1BatchTimestamp: bigint | null;
|
|
3402
3888
|
} & {};
|
|
@@ -3419,15 +3905,16 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
3419
3905
|
input: import("viem").Hex;
|
|
3420
3906
|
transactionIndex: number | null;
|
|
3421
3907
|
typeHex: import("viem").Hex | null;
|
|
3422
|
-
accessList?: undefined;
|
|
3423
|
-
|
|
3908
|
+
accessList?: undefined | undefined;
|
|
3909
|
+
authorizationList?: undefined | undefined;
|
|
3910
|
+
blobVersionedHashes?: undefined | undefined;
|
|
3424
3911
|
chainId?: number | undefined;
|
|
3425
|
-
yParity?: undefined;
|
|
3912
|
+
yParity?: undefined | undefined;
|
|
3426
3913
|
type: "legacy";
|
|
3427
3914
|
gasPrice: bigint;
|
|
3428
|
-
maxFeePerBlobGas?: undefined;
|
|
3429
|
-
maxFeePerGas?: undefined;
|
|
3430
|
-
maxPriorityFeePerGas?: undefined;
|
|
3915
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3916
|
+
maxFeePerGas?: undefined | undefined;
|
|
3917
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
3431
3918
|
l1BatchNumber: bigint | null;
|
|
3432
3919
|
l1BatchTxIndex: bigint | null;
|
|
3433
3920
|
} | {
|
|
@@ -3447,13 +3934,14 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
3447
3934
|
value: bigint;
|
|
3448
3935
|
yParity: number;
|
|
3449
3936
|
accessList: import("viem").AccessList;
|
|
3450
|
-
|
|
3937
|
+
authorizationList?: undefined | undefined;
|
|
3938
|
+
blobVersionedHashes?: undefined | undefined;
|
|
3451
3939
|
chainId: number;
|
|
3452
3940
|
type: "eip2930";
|
|
3453
3941
|
gasPrice: bigint;
|
|
3454
|
-
maxFeePerBlobGas?: undefined;
|
|
3455
|
-
maxFeePerGas?: undefined;
|
|
3456
|
-
maxPriorityFeePerGas?: undefined;
|
|
3942
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3943
|
+
maxFeePerGas?: undefined | undefined;
|
|
3944
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
3457
3945
|
l1BatchNumber: bigint | null;
|
|
3458
3946
|
l1BatchTxIndex: bigint | null;
|
|
3459
3947
|
} | {
|
|
@@ -3473,11 +3961,12 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
3473
3961
|
value: bigint;
|
|
3474
3962
|
yParity: number;
|
|
3475
3963
|
accessList: import("viem").AccessList;
|
|
3476
|
-
|
|
3964
|
+
authorizationList?: undefined | undefined;
|
|
3965
|
+
blobVersionedHashes?: undefined | undefined;
|
|
3477
3966
|
chainId: number;
|
|
3478
3967
|
type: "eip1559";
|
|
3479
|
-
gasPrice?: undefined;
|
|
3480
|
-
maxFeePerBlobGas?: undefined;
|
|
3968
|
+
gasPrice?: undefined | undefined;
|
|
3969
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3481
3970
|
maxFeePerGas: bigint;
|
|
3482
3971
|
maxPriorityFeePerGas: bigint;
|
|
3483
3972
|
l1BatchNumber: bigint | null;
|
|
@@ -3499,15 +3988,43 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
3499
3988
|
value: bigint;
|
|
3500
3989
|
yParity: number;
|
|
3501
3990
|
accessList: import("viem").AccessList;
|
|
3991
|
+
authorizationList?: undefined | undefined;
|
|
3502
3992
|
blobVersionedHashes: readonly import("viem").Hex[];
|
|
3503
3993
|
chainId: number;
|
|
3504
3994
|
type: "eip4844";
|
|
3505
|
-
gasPrice?: undefined;
|
|
3995
|
+
gasPrice?: undefined | undefined;
|
|
3506
3996
|
maxFeePerBlobGas: bigint;
|
|
3507
3997
|
maxFeePerGas: bigint;
|
|
3508
3998
|
maxPriorityFeePerGas: bigint;
|
|
3509
3999
|
l1BatchNumber: bigint | null;
|
|
3510
4000
|
l1BatchTxIndex: bigint | null;
|
|
4001
|
+
} | {
|
|
4002
|
+
blockHash: `0x${string}` | null;
|
|
4003
|
+
blockNumber: bigint | null;
|
|
4004
|
+
from: import("viem").Address;
|
|
4005
|
+
gas: bigint;
|
|
4006
|
+
hash: import("viem").Hash;
|
|
4007
|
+
input: import("viem").Hex;
|
|
4008
|
+
nonce: number;
|
|
4009
|
+
r: import("viem").Hex;
|
|
4010
|
+
s: import("viem").Hex;
|
|
4011
|
+
to: import("viem").Address | null;
|
|
4012
|
+
transactionIndex: number | null;
|
|
4013
|
+
typeHex: import("viem").Hex | null;
|
|
4014
|
+
v: bigint;
|
|
4015
|
+
value: bigint;
|
|
4016
|
+
yParity: number;
|
|
4017
|
+
accessList: import("viem").AccessList;
|
|
4018
|
+
authorizationList: import("viem").SignedAuthorizationList;
|
|
4019
|
+
blobVersionedHashes?: undefined | undefined;
|
|
4020
|
+
chainId: number;
|
|
4021
|
+
type: "eip7702";
|
|
4022
|
+
gasPrice?: undefined | undefined;
|
|
4023
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
4024
|
+
maxFeePerGas: bigint;
|
|
4025
|
+
maxPriorityFeePerGas: bigint;
|
|
4026
|
+
l1BatchNumber: bigint | null;
|
|
4027
|
+
l1BatchTxIndex: bigint | null;
|
|
3511
4028
|
} | {
|
|
3512
4029
|
blockHash: `0x${string}` | null;
|
|
3513
4030
|
blockNumber: bigint | null;
|
|
@@ -3526,8 +4043,8 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
3526
4043
|
yParity: number;
|
|
3527
4044
|
l1BatchNumber: bigint | null;
|
|
3528
4045
|
l1BatchTxIndex: bigint | null;
|
|
3529
|
-
gasPrice?: undefined;
|
|
3530
|
-
maxFeePerBlobGas?: undefined;
|
|
4046
|
+
gasPrice?: undefined | undefined;
|
|
4047
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3531
4048
|
maxFeePerGas: bigint;
|
|
3532
4049
|
maxPriorityFeePerGas: bigint;
|
|
3533
4050
|
type: "priority";
|
|
@@ -3549,8 +4066,8 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
3549
4066
|
yParity: number;
|
|
3550
4067
|
l1BatchNumber: bigint | null;
|
|
3551
4068
|
l1BatchTxIndex: bigint | null;
|
|
3552
|
-
gasPrice?: undefined;
|
|
3553
|
-
maxFeePerBlobGas?: undefined;
|
|
4069
|
+
gasPrice?: undefined | undefined;
|
|
4070
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3554
4071
|
maxFeePerGas: bigint;
|
|
3555
4072
|
maxPriorityFeePerGas: bigint;
|
|
3556
4073
|
type: "eip712" | "priority";
|
|
@@ -3559,8 +4076,9 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
3559
4076
|
};
|
|
3560
4077
|
readonly transactionReceipt: {
|
|
3561
4078
|
exclude: [] | undefined;
|
|
3562
|
-
format: (args: import("viem/
|
|
4079
|
+
format: (args: import("viem/chains").ZkSyncRpcTransactionReceipt) => {
|
|
3563
4080
|
type: import("viem/chains").ZkSyncTransactionType;
|
|
4081
|
+
contractAddress: import("viem").Address | null | undefined;
|
|
3564
4082
|
to: import("viem").Address | null;
|
|
3565
4083
|
from: import("viem").Address;
|
|
3566
4084
|
blockHash: import("viem").Hash;
|
|
@@ -3570,12 +4088,11 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
3570
4088
|
logsBloom: import("viem").Hex;
|
|
3571
4089
|
blobGasUsed?: bigint | undefined;
|
|
3572
4090
|
gasUsed: bigint;
|
|
3573
|
-
contractAddress: import("viem").Address | null | undefined;
|
|
3574
4091
|
transactionHash: import("viem").Hash;
|
|
3575
4092
|
blobGasPrice?: bigint | undefined;
|
|
3576
4093
|
cumulativeGasUsed: bigint;
|
|
3577
4094
|
effectiveGasPrice: bigint;
|
|
3578
|
-
root?:
|
|
4095
|
+
root?: `0x${string}` | undefined;
|
|
3579
4096
|
l1BatchNumber: bigint | null;
|
|
3580
4097
|
l1BatchTxIndex: bigint | null;
|
|
3581
4098
|
logs: import("viem/chains").ZkSyncLog[];
|
|
@@ -3584,95 +4101,118 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
3584
4101
|
type: "transactionReceipt";
|
|
3585
4102
|
};
|
|
3586
4103
|
readonly transactionRequest: {
|
|
3587
|
-
exclude: ("
|
|
4104
|
+
exclude: ("paymaster" | "gasPerPubdata" | "factoryDeps" | "paymasterInput" | "customSignature")[] | undefined;
|
|
3588
4105
|
format: (args: import("viem/chains").ZkSyncTransactionRequest) => ({
|
|
3589
|
-
data?:
|
|
3590
|
-
from
|
|
4106
|
+
data?: `0x${string}` | undefined;
|
|
4107
|
+
from?: `0x${string}` | undefined;
|
|
3591
4108
|
gas?: `0x${string}` | undefined;
|
|
3592
4109
|
nonce?: `0x${string}` | undefined;
|
|
3593
|
-
to?:
|
|
3594
|
-
value?: `0x${string}` | undefined;
|
|
3595
|
-
accessList?: undefined;
|
|
3596
|
-
blobs?: undefined;
|
|
4110
|
+
to?: `0x${string}` | null | undefined;
|
|
3597
4111
|
type?: "0x0" | undefined;
|
|
4112
|
+
value?: `0x${string}` | undefined;
|
|
3598
4113
|
gasPrice?: `0x${string}` | undefined;
|
|
3599
|
-
maxFeePerBlobGas?: undefined;
|
|
3600
|
-
maxFeePerGas?: undefined;
|
|
3601
|
-
maxPriorityFeePerGas?: undefined;
|
|
4114
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
4115
|
+
maxFeePerGas?: undefined | undefined;
|
|
4116
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
4117
|
+
blobs?: undefined;
|
|
4118
|
+
accessList?: undefined;
|
|
3602
4119
|
blobVersionedHashes?: undefined;
|
|
3603
4120
|
kzg?: undefined;
|
|
3604
4121
|
sidecars?: undefined;
|
|
3605
|
-
|
|
4122
|
+
authorizationList?: undefined;
|
|
4123
|
+
eip712Meta?: undefined | undefined;
|
|
3606
4124
|
} | {
|
|
3607
|
-
data?:
|
|
3608
|
-
from
|
|
4125
|
+
data?: `0x${string}` | undefined;
|
|
4126
|
+
from?: `0x${string}` | undefined;
|
|
3609
4127
|
gas?: `0x${string}` | undefined;
|
|
3610
4128
|
nonce?: `0x${string}` | undefined;
|
|
3611
|
-
to?:
|
|
4129
|
+
to?: `0x${string}` | null | undefined;
|
|
4130
|
+
type?: "0x1" | undefined;
|
|
3612
4131
|
value?: `0x${string}` | undefined;
|
|
4132
|
+
gasPrice?: `0x${string}` | undefined;
|
|
4133
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
4134
|
+
maxFeePerGas?: undefined | undefined;
|
|
4135
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
3613
4136
|
accessList?: import("viem").AccessList | undefined;
|
|
3614
4137
|
blobs?: undefined;
|
|
3615
|
-
type?: "0x1" | undefined;
|
|
3616
|
-
gasPrice?: `0x${string}` | undefined;
|
|
3617
|
-
maxFeePerBlobGas?: undefined;
|
|
3618
|
-
maxFeePerGas?: undefined;
|
|
3619
|
-
maxPriorityFeePerGas?: undefined;
|
|
3620
4138
|
blobVersionedHashes?: undefined;
|
|
3621
4139
|
kzg?: undefined;
|
|
3622
4140
|
sidecars?: undefined;
|
|
3623
|
-
|
|
4141
|
+
authorizationList?: undefined;
|
|
4142
|
+
eip712Meta?: undefined | undefined;
|
|
3624
4143
|
} | {
|
|
3625
|
-
data?:
|
|
3626
|
-
from
|
|
4144
|
+
data?: `0x${string}` | undefined;
|
|
4145
|
+
from?: `0x${string}` | undefined;
|
|
3627
4146
|
gas?: `0x${string}` | undefined;
|
|
3628
4147
|
nonce?: `0x${string}` | undefined;
|
|
3629
|
-
to?:
|
|
4148
|
+
to?: `0x${string}` | null | undefined;
|
|
4149
|
+
type?: "0x2" | undefined;
|
|
3630
4150
|
value?: `0x${string}` | undefined;
|
|
3631
|
-
gasPrice?: undefined;
|
|
3632
|
-
maxFeePerBlobGas?: undefined;
|
|
4151
|
+
gasPrice?: undefined | undefined;
|
|
4152
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3633
4153
|
maxFeePerGas?: `0x${string}` | undefined;
|
|
3634
4154
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
3635
4155
|
accessList?: import("viem").AccessList | undefined;
|
|
3636
4156
|
blobs?: undefined;
|
|
3637
|
-
type?: "0x2" | undefined;
|
|
3638
4157
|
blobVersionedHashes?: undefined;
|
|
3639
4158
|
kzg?: undefined;
|
|
3640
4159
|
sidecars?: undefined;
|
|
3641
|
-
|
|
4160
|
+
authorizationList?: undefined;
|
|
4161
|
+
eip712Meta?: undefined | undefined;
|
|
3642
4162
|
} | {
|
|
3643
|
-
|
|
3644
|
-
|
|
4163
|
+
type?: "0x3" | undefined;
|
|
4164
|
+
data?: `0x${string}` | undefined;
|
|
4165
|
+
from?: `0x${string}` | undefined;
|
|
3645
4166
|
gas?: `0x${string}` | undefined;
|
|
3646
4167
|
nonce?: `0x${string}` | undefined;
|
|
3647
4168
|
value?: `0x${string}` | undefined;
|
|
3648
4169
|
to: `0x${string}` | null;
|
|
4170
|
+
gasPrice?: undefined | undefined;
|
|
4171
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
|
4172
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
4173
|
+
maxFeePerBlobGas: `0x${string}`;
|
|
3649
4174
|
accessList?: import("viem").AccessList | undefined;
|
|
3650
4175
|
blobs: readonly import("viem").Hex[] | readonly import("viem").ByteArray[];
|
|
3651
|
-
blobVersionedHashes?: readonly
|
|
4176
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
3652
4177
|
kzg?: import("viem").Kzg | undefined;
|
|
3653
|
-
sidecars?: readonly import("viem").BlobSidecar
|
|
3654
|
-
|
|
3655
|
-
|
|
4178
|
+
sidecars?: readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
4179
|
+
authorizationList?: undefined;
|
|
4180
|
+
eip712Meta?: undefined | undefined;
|
|
4181
|
+
} | {
|
|
4182
|
+
type?: "0x4" | undefined;
|
|
4183
|
+
gasPrice?: undefined | undefined;
|
|
4184
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3656
4185
|
maxFeePerGas?: `0x${string}` | undefined;
|
|
3657
4186
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
3658
|
-
|
|
3659
|
-
|
|
4187
|
+
to?: `0x${string}` | null | undefined;
|
|
4188
|
+
data?: `0x${string}` | undefined;
|
|
4189
|
+
from?: `0x${string}` | undefined;
|
|
4190
|
+
gas?: `0x${string}` | undefined;
|
|
4191
|
+
nonce?: `0x${string}` | undefined;
|
|
4192
|
+
value?: `0x${string}` | undefined;
|
|
4193
|
+
accessList?: import("viem").AccessList | undefined;
|
|
4194
|
+
authorizationList?: import("viem").RpcAuthorizationList | undefined;
|
|
4195
|
+
blobs?: undefined;
|
|
4196
|
+
blobVersionedHashes?: undefined;
|
|
4197
|
+
kzg?: undefined;
|
|
4198
|
+
sidecars?: undefined;
|
|
4199
|
+
eip712Meta?: undefined | undefined;
|
|
3660
4200
|
} | {
|
|
3661
|
-
data?:
|
|
3662
|
-
from
|
|
4201
|
+
data?: `0x${string}` | undefined;
|
|
4202
|
+
from?: `0x${string}` | undefined;
|
|
3663
4203
|
gas?: `0x${string}` | undefined;
|
|
3664
4204
|
nonce?: `0x${string}` | undefined;
|
|
3665
|
-
to?:
|
|
4205
|
+
to?: `0x${string}` | null | undefined;
|
|
4206
|
+
type: "0xff" | "0x71";
|
|
3666
4207
|
value?: `0x${string}` | undefined;
|
|
3667
|
-
gasPrice?: undefined;
|
|
3668
|
-
maxFeePerBlobGas?: undefined;
|
|
4208
|
+
gasPrice?: undefined | undefined;
|
|
4209
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3669
4210
|
maxFeePerGas?: `0x${string}` | undefined;
|
|
3670
4211
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
3671
4212
|
eip712Meta: import("viem/chains").ZkSyncEip712Meta;
|
|
3672
|
-
type: "0x71" | "0xff";
|
|
3673
4213
|
}) & {
|
|
3674
|
-
gasPerPubdata: never;
|
|
3675
4214
|
paymaster: never;
|
|
4215
|
+
gasPerPubdata: never;
|
|
3676
4216
|
factoryDeps: never;
|
|
3677
4217
|
paymasterInput: never;
|
|
3678
4218
|
customSignature: never;
|
|
@@ -3698,6 +4238,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
3698
4238
|
readonly blockCreated: 304717;
|
|
3699
4239
|
};
|
|
3700
4240
|
};
|
|
4241
|
+
ensTlds?: readonly string[] | undefined;
|
|
3701
4242
|
id: 5000;
|
|
3702
4243
|
name: "Mantle";
|
|
3703
4244
|
nativeCurrency: {
|
|
@@ -3710,8 +4251,8 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
3710
4251
|
readonly http: readonly ["https://rpc.mantle.xyz"];
|
|
3711
4252
|
};
|
|
3712
4253
|
};
|
|
3713
|
-
sourceId?: number | undefined;
|
|
3714
|
-
testnet?: boolean | undefined;
|
|
4254
|
+
sourceId?: number | undefined | undefined;
|
|
4255
|
+
testnet?: boolean | undefined | undefined;
|
|
3715
4256
|
custom?: Record<string, unknown> | undefined;
|
|
3716
4257
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
3717
4258
|
formatters?: undefined;
|
|
@@ -3730,6 +4271,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
3730
4271
|
readonly blockCreated: 14;
|
|
3731
4272
|
};
|
|
3732
4273
|
};
|
|
4274
|
+
ensTlds?: readonly string[] | undefined;
|
|
3733
4275
|
id: 534352;
|
|
3734
4276
|
name: "Scroll";
|
|
3735
4277
|
nativeCurrency: {
|
|
@@ -3743,7 +4285,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
3743
4285
|
readonly webSocket: readonly ["wss://wss-rpc.scroll.io/ws"];
|
|
3744
4286
|
};
|
|
3745
4287
|
};
|
|
3746
|
-
sourceId?: number | undefined;
|
|
4288
|
+
sourceId?: number | undefined | undefined;
|
|
3747
4289
|
testnet: false;
|
|
3748
4290
|
custom?: Record<string, unknown> | undefined;
|
|
3749
4291
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
@@ -3770,6 +4312,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
3770
4312
|
readonly blockCreated: 6507670;
|
|
3771
4313
|
};
|
|
3772
4314
|
};
|
|
4315
|
+
ensTlds?: readonly string[] | undefined;
|
|
3773
4316
|
id: 5;
|
|
3774
4317
|
name: "Goerli";
|
|
3775
4318
|
nativeCurrency: {
|
|
@@ -3779,10 +4322,10 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
3779
4322
|
};
|
|
3780
4323
|
rpcUrls: {
|
|
3781
4324
|
readonly default: {
|
|
3782
|
-
readonly http: readonly ["https://rpc.
|
|
4325
|
+
readonly http: readonly ["https://5.rpc.thirdweb.com"];
|
|
3783
4326
|
};
|
|
3784
4327
|
};
|
|
3785
|
-
sourceId?: number | undefined;
|
|
4328
|
+
sourceId?: number | undefined | undefined;
|
|
3786
4329
|
testnet: true;
|
|
3787
4330
|
custom?: Record<string, unknown> | undefined;
|
|
3788
4331
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
@@ -3802,6 +4345,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
3802
4345
|
readonly blockCreated: 81930;
|
|
3803
4346
|
};
|
|
3804
4347
|
};
|
|
4348
|
+
ensTlds?: readonly string[] | undefined;
|
|
3805
4349
|
id: 421614;
|
|
3806
4350
|
name: "Arbitrum Sepolia";
|
|
3807
4351
|
nativeCurrency: {
|
|
@@ -3814,7 +4358,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
3814
4358
|
readonly http: readonly ["https://sepolia-rollup.arbitrum.io/rpc"];
|
|
3815
4359
|
};
|
|
3816
4360
|
};
|
|
3817
|
-
sourceId?: number | undefined;
|
|
4361
|
+
sourceId?: number | undefined | undefined;
|
|
3818
4362
|
testnet: true;
|
|
3819
4363
|
custom?: Record<string, unknown> | undefined;
|
|
3820
4364
|
fees?: import("viem").ChainFees<undefined> | undefined;
|