@funkit/chains 0.2.0 → 0.2.2
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/index.d.ts +875 -452
- package/dist/index.js +2 -2
- 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;
|
|
@@ -855,17 +931,23 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO: {
|
|
|
855
931
|
readonly apiUrl: "https://api-era.zksync.network/api";
|
|
856
932
|
};
|
|
857
933
|
readonly native: {
|
|
858
|
-
readonly name: "
|
|
934
|
+
readonly name: "ZKsync Explorer";
|
|
859
935
|
readonly url: "https://explorer.zksync.io/";
|
|
936
|
+
readonly apiUrl: "https://block-explorer-api.mainnet.zksync.io/api";
|
|
860
937
|
};
|
|
861
938
|
};
|
|
862
939
|
contracts: {
|
|
863
940
|
readonly multicall3: {
|
|
864
941
|
readonly address: "0xF9cda624FBC7e059355ce98a31693d299FACd963";
|
|
865
942
|
};
|
|
943
|
+
readonly universalSignatureVerifier: {
|
|
944
|
+
readonly address: "0xfB688330379976DA81eB64Fe4BF50d7401763B9C";
|
|
945
|
+
readonly blockCreated: 45659388;
|
|
946
|
+
};
|
|
866
947
|
};
|
|
948
|
+
ensTlds?: readonly string[] | undefined;
|
|
867
949
|
id: 324;
|
|
868
|
-
name: "
|
|
950
|
+
name: "ZKsync Era";
|
|
869
951
|
nativeCurrency: {
|
|
870
952
|
readonly decimals: 18;
|
|
871
953
|
readonly name: "Ether";
|
|
@@ -877,8 +959,8 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO: {
|
|
|
877
959
|
readonly webSocket: readonly ["wss://mainnet.era.zksync.io/ws"];
|
|
878
960
|
};
|
|
879
961
|
};
|
|
880
|
-
sourceId?: number | undefined;
|
|
881
|
-
testnet?: boolean | undefined;
|
|
962
|
+
sourceId?: number | undefined | undefined;
|
|
963
|
+
testnet?: boolean | undefined | undefined;
|
|
882
964
|
custom: {
|
|
883
965
|
readonly getEip712Domain: import("viem/zksync").EIP712DomainFn<import("viem/chains").ZkSyncTransactionSerializable, import("viem/chains").ZkSyncEIP712TransactionSignable>;
|
|
884
966
|
};
|
|
@@ -900,6 +982,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO: {
|
|
|
900
982
|
mixHash: import("viem").Hash;
|
|
901
983
|
nonce: `0x${string}` | null;
|
|
902
984
|
number: bigint | null;
|
|
985
|
+
parentBeaconBlockRoot?: `0x${string}` | undefined;
|
|
903
986
|
parentHash: import("viem").Hash;
|
|
904
987
|
receiptsRoot: import("viem").Hex;
|
|
905
988
|
sealFields: import("viem").Hex[];
|
|
@@ -911,8 +994,8 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO: {
|
|
|
911
994
|
transactions: `0x${string}`[] | import("viem/chains").ZkSyncTransaction<boolean>[];
|
|
912
995
|
transactionsRoot: import("viem").Hash;
|
|
913
996
|
uncles: import("viem").Hash[];
|
|
914
|
-
withdrawals?: import("viem").Withdrawal[] | undefined;
|
|
915
|
-
withdrawalsRoot?:
|
|
997
|
+
withdrawals?: import("viem").Withdrawal[] | undefined | undefined;
|
|
998
|
+
withdrawalsRoot?: `0x${string}` | undefined;
|
|
916
999
|
l1BatchNumber: bigint | null;
|
|
917
1000
|
l1BatchTimestamp: bigint | null;
|
|
918
1001
|
} & {};
|
|
@@ -935,15 +1018,16 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO: {
|
|
|
935
1018
|
input: import("viem").Hex;
|
|
936
1019
|
transactionIndex: number | null;
|
|
937
1020
|
typeHex: import("viem").Hex | null;
|
|
938
|
-
accessList?: undefined;
|
|
939
|
-
|
|
1021
|
+
accessList?: undefined | undefined;
|
|
1022
|
+
authorizationList?: undefined | undefined;
|
|
1023
|
+
blobVersionedHashes?: undefined | undefined;
|
|
940
1024
|
chainId?: number | undefined;
|
|
941
|
-
yParity?: undefined;
|
|
1025
|
+
yParity?: undefined | undefined;
|
|
942
1026
|
type: "legacy";
|
|
943
1027
|
gasPrice: bigint;
|
|
944
|
-
maxFeePerBlobGas?: undefined;
|
|
945
|
-
maxFeePerGas?: undefined;
|
|
946
|
-
maxPriorityFeePerGas?: undefined;
|
|
1028
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
1029
|
+
maxFeePerGas?: undefined | undefined;
|
|
1030
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
947
1031
|
l1BatchNumber: bigint | null;
|
|
948
1032
|
l1BatchTxIndex: bigint | null;
|
|
949
1033
|
} | {
|
|
@@ -963,13 +1047,14 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO: {
|
|
|
963
1047
|
value: bigint;
|
|
964
1048
|
yParity: number;
|
|
965
1049
|
accessList: import("viem").AccessList;
|
|
966
|
-
|
|
1050
|
+
authorizationList?: undefined | undefined;
|
|
1051
|
+
blobVersionedHashes?: undefined | undefined;
|
|
967
1052
|
chainId: number;
|
|
968
1053
|
type: "eip2930";
|
|
969
1054
|
gasPrice: bigint;
|
|
970
|
-
maxFeePerBlobGas?: undefined;
|
|
971
|
-
maxFeePerGas?: undefined;
|
|
972
|
-
maxPriorityFeePerGas?: undefined;
|
|
1055
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
1056
|
+
maxFeePerGas?: undefined | undefined;
|
|
1057
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
973
1058
|
l1BatchNumber: bigint | null;
|
|
974
1059
|
l1BatchTxIndex: bigint | null;
|
|
975
1060
|
} | {
|
|
@@ -989,11 +1074,12 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO: {
|
|
|
989
1074
|
value: bigint;
|
|
990
1075
|
yParity: number;
|
|
991
1076
|
accessList: import("viem").AccessList;
|
|
992
|
-
|
|
1077
|
+
authorizationList?: undefined | undefined;
|
|
1078
|
+
blobVersionedHashes?: undefined | undefined;
|
|
993
1079
|
chainId: number;
|
|
994
1080
|
type: "eip1559";
|
|
995
|
-
gasPrice?: undefined;
|
|
996
|
-
maxFeePerBlobGas?: undefined;
|
|
1081
|
+
gasPrice?: undefined | undefined;
|
|
1082
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
997
1083
|
maxFeePerGas: bigint;
|
|
998
1084
|
maxPriorityFeePerGas: bigint;
|
|
999
1085
|
l1BatchNumber: bigint | null;
|
|
@@ -1015,10 +1101,11 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO: {
|
|
|
1015
1101
|
value: bigint;
|
|
1016
1102
|
yParity: number;
|
|
1017
1103
|
accessList: import("viem").AccessList;
|
|
1104
|
+
authorizationList?: undefined | undefined;
|
|
1018
1105
|
blobVersionedHashes: readonly import("viem").Hex[];
|
|
1019
1106
|
chainId: number;
|
|
1020
1107
|
type: "eip4844";
|
|
1021
|
-
gasPrice?: undefined;
|
|
1108
|
+
gasPrice?: undefined | undefined;
|
|
1022
1109
|
maxFeePerBlobGas: bigint;
|
|
1023
1110
|
maxFeePerGas: bigint;
|
|
1024
1111
|
maxPriorityFeePerGas: bigint;
|
|
@@ -1040,10 +1127,37 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO: {
|
|
|
1040
1127
|
v: bigint;
|
|
1041
1128
|
value: bigint;
|
|
1042
1129
|
yParity: number;
|
|
1130
|
+
accessList: import("viem").AccessList;
|
|
1131
|
+
authorizationList: import("viem").SignedAuthorizationList;
|
|
1132
|
+
blobVersionedHashes?: undefined | undefined;
|
|
1133
|
+
chainId: number;
|
|
1134
|
+
type: "eip7702";
|
|
1135
|
+
gasPrice?: undefined | undefined;
|
|
1136
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
1137
|
+
maxFeePerGas: bigint;
|
|
1138
|
+
maxPriorityFeePerGas: bigint;
|
|
1043
1139
|
l1BatchNumber: bigint | null;
|
|
1044
1140
|
l1BatchTxIndex: bigint | null;
|
|
1045
|
-
|
|
1046
|
-
|
|
1141
|
+
} | {
|
|
1142
|
+
blockHash: `0x${string}` | null;
|
|
1143
|
+
blockNumber: bigint | null;
|
|
1144
|
+
from: import("viem").Address;
|
|
1145
|
+
gas: bigint;
|
|
1146
|
+
hash: import("viem").Hash;
|
|
1147
|
+
input: import("viem").Hex;
|
|
1148
|
+
nonce: number;
|
|
1149
|
+
r: import("viem").Hex;
|
|
1150
|
+
s: import("viem").Hex;
|
|
1151
|
+
to: import("viem").Address | null;
|
|
1152
|
+
transactionIndex: number | null;
|
|
1153
|
+
typeHex: import("viem").Hex | null;
|
|
1154
|
+
v: bigint;
|
|
1155
|
+
value: bigint;
|
|
1156
|
+
yParity: number;
|
|
1157
|
+
l1BatchNumber: bigint | null;
|
|
1158
|
+
l1BatchTxIndex: bigint | null;
|
|
1159
|
+
gasPrice?: undefined | undefined;
|
|
1160
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
1047
1161
|
maxFeePerGas: bigint;
|
|
1048
1162
|
maxPriorityFeePerGas: bigint;
|
|
1049
1163
|
type: "priority";
|
|
@@ -1065,8 +1179,8 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO: {
|
|
|
1065
1179
|
yParity: number;
|
|
1066
1180
|
l1BatchNumber: bigint | null;
|
|
1067
1181
|
l1BatchTxIndex: bigint | null;
|
|
1068
|
-
gasPrice?: undefined;
|
|
1069
|
-
maxFeePerBlobGas?: undefined;
|
|
1182
|
+
gasPrice?: undefined | undefined;
|
|
1183
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
1070
1184
|
maxFeePerGas: bigint;
|
|
1071
1185
|
maxPriorityFeePerGas: bigint;
|
|
1072
1186
|
type: "eip712" | "priority";
|
|
@@ -1075,8 +1189,9 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO: {
|
|
|
1075
1189
|
};
|
|
1076
1190
|
readonly transactionReceipt: {
|
|
1077
1191
|
exclude: [] | undefined;
|
|
1078
|
-
format: (args: import("viem/
|
|
1192
|
+
format: (args: import("viem/chains").ZkSyncRpcTransactionReceipt) => {
|
|
1079
1193
|
type: import("viem/chains").ZkSyncTransactionType;
|
|
1194
|
+
contractAddress: import("viem").Address | null | undefined;
|
|
1080
1195
|
to: import("viem").Address | null;
|
|
1081
1196
|
from: import("viem").Address;
|
|
1082
1197
|
blockHash: import("viem").Hash;
|
|
@@ -1086,12 +1201,11 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO: {
|
|
|
1086
1201
|
logsBloom: import("viem").Hex;
|
|
1087
1202
|
blobGasUsed?: bigint | undefined;
|
|
1088
1203
|
gasUsed: bigint;
|
|
1089
|
-
contractAddress: import("viem").Address | null | undefined;
|
|
1090
1204
|
transactionHash: import("viem").Hash;
|
|
1091
1205
|
blobGasPrice?: bigint | undefined;
|
|
1092
1206
|
cumulativeGasUsed: bigint;
|
|
1093
1207
|
effectiveGasPrice: bigint;
|
|
1094
|
-
root?:
|
|
1208
|
+
root?: `0x${string}` | undefined;
|
|
1095
1209
|
l1BatchNumber: bigint | null;
|
|
1096
1210
|
l1BatchTxIndex: bigint | null;
|
|
1097
1211
|
logs: import("viem/chains").ZkSyncLog[];
|
|
@@ -1100,95 +1214,118 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO: {
|
|
|
1100
1214
|
type: "transactionReceipt";
|
|
1101
1215
|
};
|
|
1102
1216
|
readonly transactionRequest: {
|
|
1103
|
-
exclude: ("
|
|
1217
|
+
exclude: ("paymaster" | "gasPerPubdata" | "factoryDeps" | "paymasterInput" | "customSignature")[] | undefined;
|
|
1104
1218
|
format: (args: import("viem/chains").ZkSyncTransactionRequest) => ({
|
|
1105
|
-
data?:
|
|
1106
|
-
from
|
|
1219
|
+
data?: `0x${string}` | undefined;
|
|
1220
|
+
from?: `0x${string}` | undefined;
|
|
1107
1221
|
gas?: `0x${string}` | undefined;
|
|
1108
1222
|
nonce?: `0x${string}` | undefined;
|
|
1109
|
-
to?:
|
|
1110
|
-
value?: `0x${string}` | undefined;
|
|
1111
|
-
accessList?: undefined;
|
|
1112
|
-
blobs?: undefined;
|
|
1223
|
+
to?: `0x${string}` | null | undefined;
|
|
1113
1224
|
type?: "0x0" | undefined;
|
|
1225
|
+
value?: `0x${string}` | undefined;
|
|
1114
1226
|
gasPrice?: `0x${string}` | undefined;
|
|
1115
|
-
maxFeePerBlobGas?: undefined;
|
|
1116
|
-
maxFeePerGas?: undefined;
|
|
1117
|
-
maxPriorityFeePerGas?: undefined;
|
|
1227
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
1228
|
+
maxFeePerGas?: undefined | undefined;
|
|
1229
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
1230
|
+
blobs?: undefined;
|
|
1231
|
+
accessList?: undefined;
|
|
1118
1232
|
blobVersionedHashes?: undefined;
|
|
1119
1233
|
kzg?: undefined;
|
|
1120
1234
|
sidecars?: undefined;
|
|
1121
|
-
|
|
1235
|
+
authorizationList?: undefined;
|
|
1236
|
+
eip712Meta?: undefined | undefined;
|
|
1122
1237
|
} | {
|
|
1123
|
-
data?:
|
|
1124
|
-
from
|
|
1238
|
+
data?: `0x${string}` | undefined;
|
|
1239
|
+
from?: `0x${string}` | undefined;
|
|
1125
1240
|
gas?: `0x${string}` | undefined;
|
|
1126
1241
|
nonce?: `0x${string}` | undefined;
|
|
1127
|
-
to?:
|
|
1242
|
+
to?: `0x${string}` | null | undefined;
|
|
1243
|
+
type?: "0x1" | undefined;
|
|
1128
1244
|
value?: `0x${string}` | undefined;
|
|
1245
|
+
gasPrice?: `0x${string}` | undefined;
|
|
1246
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
1247
|
+
maxFeePerGas?: undefined | undefined;
|
|
1248
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
1129
1249
|
accessList?: import("viem").AccessList | undefined;
|
|
1130
1250
|
blobs?: undefined;
|
|
1131
|
-
type?: "0x1" | undefined;
|
|
1132
|
-
gasPrice?: `0x${string}` | undefined;
|
|
1133
|
-
maxFeePerBlobGas?: undefined;
|
|
1134
|
-
maxFeePerGas?: undefined;
|
|
1135
|
-
maxPriorityFeePerGas?: undefined;
|
|
1136
1251
|
blobVersionedHashes?: undefined;
|
|
1137
1252
|
kzg?: undefined;
|
|
1138
1253
|
sidecars?: undefined;
|
|
1139
|
-
|
|
1254
|
+
authorizationList?: undefined;
|
|
1255
|
+
eip712Meta?: undefined | undefined;
|
|
1140
1256
|
} | {
|
|
1141
|
-
data?:
|
|
1142
|
-
from
|
|
1257
|
+
data?: `0x${string}` | undefined;
|
|
1258
|
+
from?: `0x${string}` | undefined;
|
|
1143
1259
|
gas?: `0x${string}` | undefined;
|
|
1144
1260
|
nonce?: `0x${string}` | undefined;
|
|
1145
|
-
to?:
|
|
1261
|
+
to?: `0x${string}` | null | undefined;
|
|
1262
|
+
type?: "0x2" | undefined;
|
|
1146
1263
|
value?: `0x${string}` | undefined;
|
|
1147
|
-
gasPrice?: undefined;
|
|
1148
|
-
maxFeePerBlobGas?: undefined;
|
|
1264
|
+
gasPrice?: undefined | undefined;
|
|
1265
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
1149
1266
|
maxFeePerGas?: `0x${string}` | undefined;
|
|
1150
1267
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
1151
1268
|
accessList?: import("viem").AccessList | undefined;
|
|
1152
1269
|
blobs?: undefined;
|
|
1153
|
-
type?: "0x2" | undefined;
|
|
1154
1270
|
blobVersionedHashes?: undefined;
|
|
1155
1271
|
kzg?: undefined;
|
|
1156
1272
|
sidecars?: undefined;
|
|
1157
|
-
|
|
1273
|
+
authorizationList?: undefined;
|
|
1274
|
+
eip712Meta?: undefined | undefined;
|
|
1158
1275
|
} | {
|
|
1159
|
-
|
|
1160
|
-
|
|
1276
|
+
type?: "0x3" | undefined;
|
|
1277
|
+
data?: `0x${string}` | undefined;
|
|
1278
|
+
from?: `0x${string}` | undefined;
|
|
1161
1279
|
gas?: `0x${string}` | undefined;
|
|
1162
1280
|
nonce?: `0x${string}` | undefined;
|
|
1163
1281
|
value?: `0x${string}` | undefined;
|
|
1164
1282
|
to: `0x${string}` | null;
|
|
1283
|
+
gasPrice?: undefined | undefined;
|
|
1284
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
|
1285
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
1286
|
+
maxFeePerBlobGas: `0x${string}`;
|
|
1165
1287
|
accessList?: import("viem").AccessList | undefined;
|
|
1166
1288
|
blobs: readonly import("viem").Hex[] | readonly import("viem").ByteArray[];
|
|
1167
|
-
blobVersionedHashes?: readonly
|
|
1289
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
1168
1290
|
kzg?: import("viem").Kzg | undefined;
|
|
1169
|
-
sidecars?: readonly import("viem").BlobSidecar
|
|
1170
|
-
|
|
1171
|
-
|
|
1291
|
+
sidecars?: readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
1292
|
+
authorizationList?: undefined;
|
|
1293
|
+
eip712Meta?: undefined | undefined;
|
|
1294
|
+
} | {
|
|
1295
|
+
type?: "0x4" | undefined;
|
|
1296
|
+
gasPrice?: undefined | undefined;
|
|
1297
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
1172
1298
|
maxFeePerGas?: `0x${string}` | undefined;
|
|
1173
1299
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
1174
|
-
|
|
1175
|
-
|
|
1300
|
+
to?: `0x${string}` | null | undefined;
|
|
1301
|
+
data?: `0x${string}` | undefined;
|
|
1302
|
+
from?: `0x${string}` | undefined;
|
|
1303
|
+
gas?: `0x${string}` | undefined;
|
|
1304
|
+
nonce?: `0x${string}` | undefined;
|
|
1305
|
+
value?: `0x${string}` | undefined;
|
|
1306
|
+
accessList?: import("viem").AccessList | undefined;
|
|
1307
|
+
authorizationList?: import("viem").RpcAuthorizationList | undefined;
|
|
1308
|
+
blobs?: undefined;
|
|
1309
|
+
blobVersionedHashes?: undefined;
|
|
1310
|
+
kzg?: undefined;
|
|
1311
|
+
sidecars?: undefined;
|
|
1312
|
+
eip712Meta?: undefined | undefined;
|
|
1176
1313
|
} | {
|
|
1177
|
-
data?:
|
|
1178
|
-
from
|
|
1314
|
+
data?: `0x${string}` | undefined;
|
|
1315
|
+
from?: `0x${string}` | undefined;
|
|
1179
1316
|
gas?: `0x${string}` | undefined;
|
|
1180
1317
|
nonce?: `0x${string}` | undefined;
|
|
1181
|
-
to?:
|
|
1318
|
+
to?: `0x${string}` | null | undefined;
|
|
1319
|
+
type: "0xff" | "0x71";
|
|
1182
1320
|
value?: `0x${string}` | undefined;
|
|
1183
|
-
gasPrice?: undefined;
|
|
1184
|
-
maxFeePerBlobGas?: undefined;
|
|
1321
|
+
gasPrice?: undefined | undefined;
|
|
1322
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
1185
1323
|
maxFeePerGas?: `0x${string}` | undefined;
|
|
1186
1324
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
1187
1325
|
eip712Meta: import("viem/chains").ZkSyncEip712Meta;
|
|
1188
|
-
type: "0x71" | "0xff";
|
|
1189
1326
|
}) & {
|
|
1190
|
-
gasPerPubdata: never;
|
|
1191
1327
|
paymaster: never;
|
|
1328
|
+
gasPerPubdata: never;
|
|
1192
1329
|
factoryDeps: never;
|
|
1193
1330
|
paymasterInput: never;
|
|
1194
1331
|
customSignature: never;
|
|
@@ -1240,6 +1377,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO: {
|
|
|
1240
1377
|
readonly blockCreated: 304717;
|
|
1241
1378
|
};
|
|
1242
1379
|
};
|
|
1380
|
+
ensTlds?: readonly string[] | undefined;
|
|
1243
1381
|
id: 5000;
|
|
1244
1382
|
name: "Mantle";
|
|
1245
1383
|
nativeCurrency: {
|
|
@@ -1252,8 +1390,8 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO: {
|
|
|
1252
1390
|
readonly http: readonly ["https://rpc.mantle.xyz"];
|
|
1253
1391
|
};
|
|
1254
1392
|
};
|
|
1255
|
-
sourceId?: number | undefined;
|
|
1256
|
-
testnet?: boolean | undefined;
|
|
1393
|
+
sourceId?: number | undefined | undefined;
|
|
1394
|
+
testnet?: boolean | undefined | undefined;
|
|
1257
1395
|
custom?: Record<string, unknown> | undefined;
|
|
1258
1396
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
1259
1397
|
formatters?: undefined;
|
|
@@ -1348,6 +1486,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO: {
|
|
|
1348
1486
|
readonly blockCreated: 14;
|
|
1349
1487
|
};
|
|
1350
1488
|
};
|
|
1489
|
+
ensTlds?: readonly string[] | undefined;
|
|
1351
1490
|
id: 534352;
|
|
1352
1491
|
name: "Scroll";
|
|
1353
1492
|
nativeCurrency: {
|
|
@@ -1361,7 +1500,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO: {
|
|
|
1361
1500
|
readonly webSocket: readonly ["wss://wss-rpc.scroll.io/ws"];
|
|
1362
1501
|
};
|
|
1363
1502
|
};
|
|
1364
|
-
sourceId?: number | undefined;
|
|
1503
|
+
sourceId?: number | undefined | undefined;
|
|
1365
1504
|
testnet: false;
|
|
1366
1505
|
custom?: Record<string, unknown> | undefined;
|
|
1367
1506
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
@@ -1410,6 +1549,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO: {
|
|
|
1410
1549
|
readonly blockCreated: 6507670;
|
|
1411
1550
|
};
|
|
1412
1551
|
};
|
|
1552
|
+
ensTlds?: readonly string[] | undefined;
|
|
1413
1553
|
id: 5;
|
|
1414
1554
|
name: "Goerli";
|
|
1415
1555
|
nativeCurrency: {
|
|
@@ -1419,10 +1559,10 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO: {
|
|
|
1419
1559
|
};
|
|
1420
1560
|
rpcUrls: {
|
|
1421
1561
|
readonly default: {
|
|
1422
|
-
readonly http: readonly ["https://rpc.
|
|
1562
|
+
readonly http: readonly ["https://5.rpc.thirdweb.com"];
|
|
1423
1563
|
};
|
|
1424
1564
|
};
|
|
1425
|
-
sourceId?: number | undefined;
|
|
1565
|
+
sourceId?: number | undefined | undefined;
|
|
1426
1566
|
testnet: true;
|
|
1427
1567
|
custom?: Record<string, unknown> | undefined;
|
|
1428
1568
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
@@ -1464,6 +1604,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO: {
|
|
|
1464
1604
|
readonly blockCreated: 81930;
|
|
1465
1605
|
};
|
|
1466
1606
|
};
|
|
1607
|
+
ensTlds?: readonly string[] | undefined;
|
|
1467
1608
|
id: 421614;
|
|
1468
1609
|
name: "Arbitrum Sepolia";
|
|
1469
1610
|
nativeCurrency: {
|
|
@@ -1476,7 +1617,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO: {
|
|
|
1476
1617
|
readonly http: readonly ["https://sepolia-rollup.arbitrum.io/rpc"];
|
|
1477
1618
|
};
|
|
1478
1619
|
};
|
|
1479
|
-
sourceId?: number | undefined;
|
|
1620
|
+
sourceId?: number | undefined | undefined;
|
|
1480
1621
|
testnet: true;
|
|
1481
1622
|
custom?: Record<string, unknown> | undefined;
|
|
1482
1623
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
@@ -1553,6 +1694,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
1553
1694
|
readonly blockCreated: 14353601;
|
|
1554
1695
|
};
|
|
1555
1696
|
};
|
|
1697
|
+
ensTlds?: readonly string[] | undefined;
|
|
1556
1698
|
id: 1;
|
|
1557
1699
|
name: "Ethereum";
|
|
1558
1700
|
nativeCurrency: {
|
|
@@ -1562,11 +1704,11 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
1562
1704
|
};
|
|
1563
1705
|
rpcUrls: {
|
|
1564
1706
|
readonly default: {
|
|
1565
|
-
readonly http: readonly ["https://
|
|
1707
|
+
readonly http: readonly ["https://eth.merkle.io"];
|
|
1566
1708
|
};
|
|
1567
1709
|
};
|
|
1568
|
-
sourceId?: number | undefined;
|
|
1569
|
-
testnet?: boolean | undefined;
|
|
1710
|
+
sourceId?: number | undefined | undefined;
|
|
1711
|
+
testnet?: boolean | undefined | undefined;
|
|
1570
1712
|
custom?: Record<string, unknown> | undefined;
|
|
1571
1713
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
1572
1714
|
formatters?: undefined;
|
|
@@ -1580,6 +1722,11 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
1580
1722
|
};
|
|
1581
1723
|
};
|
|
1582
1724
|
contracts: {
|
|
1725
|
+
readonly disputeGameFactory: {
|
|
1726
|
+
readonly 1: {
|
|
1727
|
+
readonly address: "0x43edB88C4B80fDD2AdFF2412A7BebF9dF42cB40e";
|
|
1728
|
+
};
|
|
1729
|
+
};
|
|
1583
1730
|
readonly l2OutputOracle: {
|
|
1584
1731
|
readonly 1: {
|
|
1585
1732
|
readonly address: "0x56315b90c40730925ec5485cf004d835058518A0";
|
|
@@ -1620,6 +1767,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
1620
1767
|
readonly address: "0x4200000000000000000000000000000000000016";
|
|
1621
1768
|
};
|
|
1622
1769
|
};
|
|
1770
|
+
ensTlds?: readonly string[] | undefined;
|
|
1623
1771
|
id: 8453;
|
|
1624
1772
|
name: "Base";
|
|
1625
1773
|
nativeCurrency: {
|
|
@@ -1633,7 +1781,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
1633
1781
|
};
|
|
1634
1782
|
};
|
|
1635
1783
|
sourceId: 1;
|
|
1636
|
-
testnet?: boolean | undefined;
|
|
1784
|
+
testnet?: boolean | undefined | undefined;
|
|
1637
1785
|
custom?: Record<string, unknown> | undefined;
|
|
1638
1786
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
1639
1787
|
formatters: {
|
|
@@ -1653,6 +1801,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
1653
1801
|
mixHash: import("viem").Hash;
|
|
1654
1802
|
nonce: `0x${string}` | null;
|
|
1655
1803
|
number: bigint | null;
|
|
1804
|
+
parentBeaconBlockRoot?: `0x${string}` | undefined;
|
|
1656
1805
|
parentHash: import("viem").Hash;
|
|
1657
1806
|
receiptsRoot: import("viem").Hex;
|
|
1658
1807
|
sealFields: import("viem").Hex[];
|
|
@@ -1664,8 +1813,8 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
1664
1813
|
transactions: `0x${string}`[] | import("viem/chains").OpStackTransaction<boolean>[];
|
|
1665
1814
|
transactionsRoot: import("viem").Hash;
|
|
1666
1815
|
uncles: import("viem").Hash[];
|
|
1667
|
-
withdrawals?: import("viem").Withdrawal[] | undefined;
|
|
1668
|
-
withdrawalsRoot?:
|
|
1816
|
+
withdrawals?: import("viem").Withdrawal[] | undefined | undefined;
|
|
1817
|
+
withdrawalsRoot?: `0x${string}` | undefined;
|
|
1669
1818
|
} & {};
|
|
1670
1819
|
type: "block";
|
|
1671
1820
|
};
|
|
@@ -1687,12 +1836,12 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
1687
1836
|
v: bigint;
|
|
1688
1837
|
value: bigint;
|
|
1689
1838
|
yParity: number;
|
|
1690
|
-
gasPrice?: undefined;
|
|
1691
|
-
maxFeePerBlobGas?: undefined;
|
|
1839
|
+
gasPrice?: undefined | undefined;
|
|
1840
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
1692
1841
|
maxFeePerGas: bigint;
|
|
1693
1842
|
maxPriorityFeePerGas: bigint;
|
|
1694
1843
|
isSystemTx?: boolean;
|
|
1695
|
-
mint?: bigint | undefined;
|
|
1844
|
+
mint?: bigint | undefined | undefined;
|
|
1696
1845
|
sourceHash: import("viem").Hex;
|
|
1697
1846
|
type: "deposit";
|
|
1698
1847
|
} | {
|
|
@@ -1710,18 +1859,19 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
1710
1859
|
input: import("viem").Hex;
|
|
1711
1860
|
transactionIndex: number | null;
|
|
1712
1861
|
typeHex: import("viem").Hex | null;
|
|
1713
|
-
accessList?: undefined;
|
|
1714
|
-
|
|
1862
|
+
accessList?: undefined | undefined;
|
|
1863
|
+
authorizationList?: undefined | undefined;
|
|
1864
|
+
blobVersionedHashes?: undefined | undefined;
|
|
1715
1865
|
chainId?: number | undefined;
|
|
1716
|
-
yParity?: undefined;
|
|
1866
|
+
yParity?: undefined | undefined;
|
|
1717
1867
|
type: "legacy";
|
|
1718
1868
|
gasPrice: bigint;
|
|
1719
|
-
maxFeePerBlobGas?: undefined;
|
|
1720
|
-
maxFeePerGas?: undefined;
|
|
1721
|
-
maxPriorityFeePerGas?: undefined;
|
|
1722
|
-
isSystemTx?: undefined;
|
|
1723
|
-
mint?: undefined;
|
|
1724
|
-
sourceHash?: undefined;
|
|
1869
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
1870
|
+
maxFeePerGas?: undefined | undefined;
|
|
1871
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
1872
|
+
isSystemTx?: undefined | undefined;
|
|
1873
|
+
mint?: undefined | undefined;
|
|
1874
|
+
sourceHash?: undefined | undefined;
|
|
1725
1875
|
} | {
|
|
1726
1876
|
blockHash: `0x${string}` | null;
|
|
1727
1877
|
blockNumber: bigint | null;
|
|
@@ -1739,16 +1889,17 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
1739
1889
|
value: bigint;
|
|
1740
1890
|
yParity: number;
|
|
1741
1891
|
accessList: import("viem").AccessList;
|
|
1742
|
-
|
|
1892
|
+
authorizationList?: undefined | undefined;
|
|
1893
|
+
blobVersionedHashes?: undefined | undefined;
|
|
1743
1894
|
chainId: number;
|
|
1744
1895
|
type: "eip2930";
|
|
1745
1896
|
gasPrice: bigint;
|
|
1746
|
-
maxFeePerBlobGas?: undefined;
|
|
1747
|
-
maxFeePerGas?: undefined;
|
|
1748
|
-
maxPriorityFeePerGas?: undefined;
|
|
1749
|
-
isSystemTx?: undefined;
|
|
1750
|
-
mint?: undefined;
|
|
1751
|
-
sourceHash?: undefined;
|
|
1897
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
1898
|
+
maxFeePerGas?: undefined | undefined;
|
|
1899
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
1900
|
+
isSystemTx?: undefined | undefined;
|
|
1901
|
+
mint?: undefined | undefined;
|
|
1902
|
+
sourceHash?: undefined | undefined;
|
|
1752
1903
|
} | {
|
|
1753
1904
|
blockHash: `0x${string}` | null;
|
|
1754
1905
|
blockNumber: bigint | null;
|
|
@@ -1766,16 +1917,17 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
1766
1917
|
value: bigint;
|
|
1767
1918
|
yParity: number;
|
|
1768
1919
|
accessList: import("viem").AccessList;
|
|
1769
|
-
|
|
1920
|
+
authorizationList?: undefined | undefined;
|
|
1921
|
+
blobVersionedHashes?: undefined | undefined;
|
|
1770
1922
|
chainId: number;
|
|
1771
1923
|
type: "eip1559";
|
|
1772
|
-
gasPrice?: undefined;
|
|
1773
|
-
maxFeePerBlobGas?: undefined;
|
|
1924
|
+
gasPrice?: undefined | undefined;
|
|
1925
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
1774
1926
|
maxFeePerGas: bigint;
|
|
1775
1927
|
maxPriorityFeePerGas: bigint;
|
|
1776
|
-
isSystemTx?: undefined;
|
|
1777
|
-
mint?: undefined;
|
|
1778
|
-
sourceHash?: undefined;
|
|
1928
|
+
isSystemTx?: undefined | undefined;
|
|
1929
|
+
mint?: undefined | undefined;
|
|
1930
|
+
sourceHash?: undefined | undefined;
|
|
1779
1931
|
} | {
|
|
1780
1932
|
blockHash: `0x${string}` | null;
|
|
1781
1933
|
blockNumber: bigint | null;
|
|
@@ -1793,16 +1945,45 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
1793
1945
|
value: bigint;
|
|
1794
1946
|
yParity: number;
|
|
1795
1947
|
accessList: import("viem").AccessList;
|
|
1948
|
+
authorizationList?: undefined | undefined;
|
|
1796
1949
|
blobVersionedHashes: readonly import("viem").Hex[];
|
|
1797
1950
|
chainId: number;
|
|
1798
1951
|
type: "eip4844";
|
|
1799
|
-
gasPrice?: undefined;
|
|
1952
|
+
gasPrice?: undefined | undefined;
|
|
1800
1953
|
maxFeePerBlobGas: bigint;
|
|
1801
1954
|
maxFeePerGas: bigint;
|
|
1802
1955
|
maxPriorityFeePerGas: bigint;
|
|
1803
|
-
isSystemTx?: undefined;
|
|
1804
|
-
mint?: undefined;
|
|
1805
|
-
sourceHash?: undefined;
|
|
1956
|
+
isSystemTx?: undefined | undefined;
|
|
1957
|
+
mint?: undefined | undefined;
|
|
1958
|
+
sourceHash?: undefined | undefined;
|
|
1959
|
+
} | {
|
|
1960
|
+
blockHash: `0x${string}` | null;
|
|
1961
|
+
blockNumber: bigint | null;
|
|
1962
|
+
from: import("viem").Address;
|
|
1963
|
+
gas: bigint;
|
|
1964
|
+
hash: import("viem").Hash;
|
|
1965
|
+
input: import("viem").Hex;
|
|
1966
|
+
nonce: number;
|
|
1967
|
+
r: import("viem").Hex;
|
|
1968
|
+
s: import("viem").Hex;
|
|
1969
|
+
to: import("viem").Address | null;
|
|
1970
|
+
transactionIndex: number | null;
|
|
1971
|
+
typeHex: import("viem").Hex | null;
|
|
1972
|
+
v: bigint;
|
|
1973
|
+
value: bigint;
|
|
1974
|
+
yParity: number;
|
|
1975
|
+
accessList: import("viem").AccessList;
|
|
1976
|
+
authorizationList: import("viem").SignedAuthorizationList;
|
|
1977
|
+
blobVersionedHashes?: undefined | undefined;
|
|
1978
|
+
chainId: number;
|
|
1979
|
+
type: "eip7702";
|
|
1980
|
+
gasPrice?: undefined | undefined;
|
|
1981
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
1982
|
+
maxFeePerGas: bigint;
|
|
1983
|
+
maxPriorityFeePerGas: bigint;
|
|
1984
|
+
isSystemTx?: undefined | undefined;
|
|
1985
|
+
mint?: undefined | undefined;
|
|
1986
|
+
sourceHash?: undefined | undefined;
|
|
1806
1987
|
}) & {};
|
|
1807
1988
|
type: "transaction";
|
|
1808
1989
|
};
|
|
@@ -1820,7 +2001,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
1820
2001
|
gasUsed: bigint;
|
|
1821
2002
|
logs: import("viem").Log<bigint, number, false>[];
|
|
1822
2003
|
logsBloom: import("viem").Hex;
|
|
1823
|
-
root?:
|
|
2004
|
+
root?: `0x${string}` | undefined;
|
|
1824
2005
|
status: "success" | "reverted";
|
|
1825
2006
|
to: import("viem").Address | null;
|
|
1826
2007
|
transactionHash: import("viem").Hash;
|
|
@@ -1851,11 +2032,12 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
1851
2032
|
readonly blockCreated: 25770160;
|
|
1852
2033
|
};
|
|
1853
2034
|
};
|
|
2035
|
+
ensTlds?: readonly string[] | undefined;
|
|
1854
2036
|
id: 137;
|
|
1855
2037
|
name: "Polygon";
|
|
1856
2038
|
nativeCurrency: {
|
|
1857
|
-
readonly name: "
|
|
1858
|
-
readonly symbol: "
|
|
2039
|
+
readonly name: "POL";
|
|
2040
|
+
readonly symbol: "POL";
|
|
1859
2041
|
readonly decimals: 18;
|
|
1860
2042
|
};
|
|
1861
2043
|
rpcUrls: {
|
|
@@ -1863,8 +2045,8 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
1863
2045
|
readonly http: readonly ["https://polygon-rpc.com"];
|
|
1864
2046
|
};
|
|
1865
2047
|
};
|
|
1866
|
-
sourceId?: number | undefined;
|
|
1867
|
-
testnet?: boolean | undefined;
|
|
2048
|
+
sourceId?: number | undefined | undefined;
|
|
2049
|
+
testnet?: boolean | undefined | undefined;
|
|
1868
2050
|
custom?: Record<string, unknown> | undefined;
|
|
1869
2051
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
1870
2052
|
formatters?: undefined;
|
|
@@ -1883,6 +2065,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
1883
2065
|
readonly blockCreated: 7654707;
|
|
1884
2066
|
};
|
|
1885
2067
|
};
|
|
2068
|
+
ensTlds?: readonly string[] | undefined;
|
|
1886
2069
|
id: 42161;
|
|
1887
2070
|
name: "Arbitrum One";
|
|
1888
2071
|
nativeCurrency: {
|
|
@@ -1895,8 +2078,8 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
1895
2078
|
readonly http: readonly ["https://arb1.arbitrum.io/rpc"];
|
|
1896
2079
|
};
|
|
1897
2080
|
};
|
|
1898
|
-
sourceId?: number | undefined;
|
|
1899
|
-
testnet?: boolean | undefined;
|
|
2081
|
+
sourceId?: number | undefined | undefined;
|
|
2082
|
+
testnet?: boolean | undefined | undefined;
|
|
1900
2083
|
custom?: Record<string, unknown> | undefined;
|
|
1901
2084
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
1902
2085
|
formatters?: undefined;
|
|
@@ -1953,6 +2136,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
1953
2136
|
readonly address: "0x4200000000000000000000000000000000000016";
|
|
1954
2137
|
};
|
|
1955
2138
|
};
|
|
2139
|
+
ensTlds?: readonly string[] | undefined;
|
|
1956
2140
|
id: 10;
|
|
1957
2141
|
name: "OP Mainnet";
|
|
1958
2142
|
nativeCurrency: {
|
|
@@ -1966,7 +2150,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
1966
2150
|
};
|
|
1967
2151
|
};
|
|
1968
2152
|
sourceId: 1;
|
|
1969
|
-
testnet?: boolean | undefined;
|
|
2153
|
+
testnet?: boolean | undefined | undefined;
|
|
1970
2154
|
custom?: Record<string, unknown> | undefined;
|
|
1971
2155
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
1972
2156
|
formatters: {
|
|
@@ -1986,6 +2170,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
1986
2170
|
mixHash: import("viem").Hash;
|
|
1987
2171
|
nonce: `0x${string}` | null;
|
|
1988
2172
|
number: bigint | null;
|
|
2173
|
+
parentBeaconBlockRoot?: `0x${string}` | undefined;
|
|
1989
2174
|
parentHash: import("viem").Hash;
|
|
1990
2175
|
receiptsRoot: import("viem").Hex;
|
|
1991
2176
|
sealFields: import("viem").Hex[];
|
|
@@ -1997,8 +2182,8 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
1997
2182
|
transactions: `0x${string}`[] | import("viem/chains").OpStackTransaction<boolean>[];
|
|
1998
2183
|
transactionsRoot: import("viem").Hash;
|
|
1999
2184
|
uncles: import("viem").Hash[];
|
|
2000
|
-
withdrawals?: import("viem").Withdrawal[] | undefined;
|
|
2001
|
-
withdrawalsRoot?:
|
|
2185
|
+
withdrawals?: import("viem").Withdrawal[] | undefined | undefined;
|
|
2186
|
+
withdrawalsRoot?: `0x${string}` | undefined;
|
|
2002
2187
|
} & {};
|
|
2003
2188
|
type: "block";
|
|
2004
2189
|
};
|
|
@@ -2020,12 +2205,12 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
2020
2205
|
v: bigint;
|
|
2021
2206
|
value: bigint;
|
|
2022
2207
|
yParity: number;
|
|
2023
|
-
gasPrice?: undefined;
|
|
2024
|
-
maxFeePerBlobGas?: undefined;
|
|
2208
|
+
gasPrice?: undefined | undefined;
|
|
2209
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
2025
2210
|
maxFeePerGas: bigint;
|
|
2026
2211
|
maxPriorityFeePerGas: bigint;
|
|
2027
2212
|
isSystemTx?: boolean;
|
|
2028
|
-
mint?: bigint | undefined;
|
|
2213
|
+
mint?: bigint | undefined | undefined;
|
|
2029
2214
|
sourceHash: import("viem").Hex;
|
|
2030
2215
|
type: "deposit";
|
|
2031
2216
|
} | {
|
|
@@ -2043,18 +2228,19 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
2043
2228
|
input: import("viem").Hex;
|
|
2044
2229
|
transactionIndex: number | null;
|
|
2045
2230
|
typeHex: import("viem").Hex | null;
|
|
2046
|
-
accessList?: undefined;
|
|
2047
|
-
|
|
2231
|
+
accessList?: undefined | undefined;
|
|
2232
|
+
authorizationList?: undefined | undefined;
|
|
2233
|
+
blobVersionedHashes?: undefined | undefined;
|
|
2048
2234
|
chainId?: number | undefined;
|
|
2049
|
-
yParity?: undefined;
|
|
2235
|
+
yParity?: undefined | undefined;
|
|
2050
2236
|
type: "legacy";
|
|
2051
2237
|
gasPrice: bigint;
|
|
2052
|
-
maxFeePerBlobGas?: undefined;
|
|
2053
|
-
maxFeePerGas?: undefined;
|
|
2054
|
-
maxPriorityFeePerGas?: undefined;
|
|
2055
|
-
isSystemTx?: undefined;
|
|
2056
|
-
mint?: undefined;
|
|
2057
|
-
sourceHash?: undefined;
|
|
2238
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
2239
|
+
maxFeePerGas?: undefined | undefined;
|
|
2240
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
2241
|
+
isSystemTx?: undefined | undefined;
|
|
2242
|
+
mint?: undefined | undefined;
|
|
2243
|
+
sourceHash?: undefined | undefined;
|
|
2058
2244
|
} | {
|
|
2059
2245
|
blockHash: `0x${string}` | null;
|
|
2060
2246
|
blockNumber: bigint | null;
|
|
@@ -2072,16 +2258,17 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
2072
2258
|
value: bigint;
|
|
2073
2259
|
yParity: number;
|
|
2074
2260
|
accessList: import("viem").AccessList;
|
|
2075
|
-
|
|
2261
|
+
authorizationList?: undefined | undefined;
|
|
2262
|
+
blobVersionedHashes?: undefined | undefined;
|
|
2076
2263
|
chainId: number;
|
|
2077
2264
|
type: "eip2930";
|
|
2078
2265
|
gasPrice: bigint;
|
|
2079
|
-
maxFeePerBlobGas?: undefined;
|
|
2080
|
-
maxFeePerGas?: undefined;
|
|
2081
|
-
maxPriorityFeePerGas?: undefined;
|
|
2082
|
-
isSystemTx?: undefined;
|
|
2083
|
-
mint?: undefined;
|
|
2084
|
-
sourceHash?: undefined;
|
|
2266
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
2267
|
+
maxFeePerGas?: undefined | undefined;
|
|
2268
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
2269
|
+
isSystemTx?: undefined | undefined;
|
|
2270
|
+
mint?: undefined | undefined;
|
|
2271
|
+
sourceHash?: undefined | undefined;
|
|
2085
2272
|
} | {
|
|
2086
2273
|
blockHash: `0x${string}` | null;
|
|
2087
2274
|
blockNumber: bigint | null;
|
|
@@ -2099,16 +2286,17 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
2099
2286
|
value: bigint;
|
|
2100
2287
|
yParity: number;
|
|
2101
2288
|
accessList: import("viem").AccessList;
|
|
2102
|
-
|
|
2289
|
+
authorizationList?: undefined | undefined;
|
|
2290
|
+
blobVersionedHashes?: undefined | undefined;
|
|
2103
2291
|
chainId: number;
|
|
2104
2292
|
type: "eip1559";
|
|
2105
|
-
gasPrice?: undefined;
|
|
2106
|
-
maxFeePerBlobGas?: undefined;
|
|
2293
|
+
gasPrice?: undefined | undefined;
|
|
2294
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
2107
2295
|
maxFeePerGas: bigint;
|
|
2108
2296
|
maxPriorityFeePerGas: bigint;
|
|
2109
|
-
isSystemTx?: undefined;
|
|
2110
|
-
mint?: undefined;
|
|
2111
|
-
sourceHash?: undefined;
|
|
2297
|
+
isSystemTx?: undefined | undefined;
|
|
2298
|
+
mint?: undefined | undefined;
|
|
2299
|
+
sourceHash?: undefined | undefined;
|
|
2112
2300
|
} | {
|
|
2113
2301
|
blockHash: `0x${string}` | null;
|
|
2114
2302
|
blockNumber: bigint | null;
|
|
@@ -2126,16 +2314,45 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
2126
2314
|
value: bigint;
|
|
2127
2315
|
yParity: number;
|
|
2128
2316
|
accessList: import("viem").AccessList;
|
|
2317
|
+
authorizationList?: undefined | undefined;
|
|
2129
2318
|
blobVersionedHashes: readonly import("viem").Hex[];
|
|
2130
2319
|
chainId: number;
|
|
2131
2320
|
type: "eip4844";
|
|
2132
|
-
gasPrice?: undefined;
|
|
2321
|
+
gasPrice?: undefined | undefined;
|
|
2133
2322
|
maxFeePerBlobGas: bigint;
|
|
2134
2323
|
maxFeePerGas: bigint;
|
|
2135
2324
|
maxPriorityFeePerGas: bigint;
|
|
2136
|
-
isSystemTx?: undefined;
|
|
2137
|
-
mint?: undefined;
|
|
2138
|
-
sourceHash?: undefined;
|
|
2325
|
+
isSystemTx?: undefined | undefined;
|
|
2326
|
+
mint?: undefined | undefined;
|
|
2327
|
+
sourceHash?: undefined | undefined;
|
|
2328
|
+
} | {
|
|
2329
|
+
blockHash: `0x${string}` | null;
|
|
2330
|
+
blockNumber: bigint | null;
|
|
2331
|
+
from: import("viem").Address;
|
|
2332
|
+
gas: bigint;
|
|
2333
|
+
hash: import("viem").Hash;
|
|
2334
|
+
input: import("viem").Hex;
|
|
2335
|
+
nonce: number;
|
|
2336
|
+
r: import("viem").Hex;
|
|
2337
|
+
s: import("viem").Hex;
|
|
2338
|
+
to: import("viem").Address | null;
|
|
2339
|
+
transactionIndex: number | null;
|
|
2340
|
+
typeHex: import("viem").Hex | null;
|
|
2341
|
+
v: bigint;
|
|
2342
|
+
value: bigint;
|
|
2343
|
+
yParity: number;
|
|
2344
|
+
accessList: import("viem").AccessList;
|
|
2345
|
+
authorizationList: import("viem").SignedAuthorizationList;
|
|
2346
|
+
blobVersionedHashes?: undefined | undefined;
|
|
2347
|
+
chainId: number;
|
|
2348
|
+
type: "eip7702";
|
|
2349
|
+
gasPrice?: undefined | undefined;
|
|
2350
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
2351
|
+
maxFeePerGas: bigint;
|
|
2352
|
+
maxPriorityFeePerGas: bigint;
|
|
2353
|
+
isSystemTx?: undefined | undefined;
|
|
2354
|
+
mint?: undefined | undefined;
|
|
2355
|
+
sourceHash?: undefined | undefined;
|
|
2139
2356
|
}) & {};
|
|
2140
2357
|
type: "transaction";
|
|
2141
2358
|
};
|
|
@@ -2153,7 +2370,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
2153
2370
|
gasUsed: bigint;
|
|
2154
2371
|
logs: import("viem").Log<bigint, number, false>[];
|
|
2155
2372
|
logsBloom: import("viem").Hex;
|
|
2156
|
-
root?:
|
|
2373
|
+
root?: `0x${string}` | undefined;
|
|
2157
2374
|
status: "success" | "reverted";
|
|
2158
2375
|
to: import("viem").Address | null;
|
|
2159
2376
|
transactionHash: import("viem").Hash;
|
|
@@ -2178,17 +2395,23 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
2178
2395
|
readonly apiUrl: "https://api-era.zksync.network/api";
|
|
2179
2396
|
};
|
|
2180
2397
|
readonly native: {
|
|
2181
|
-
readonly name: "
|
|
2398
|
+
readonly name: "ZKsync Explorer";
|
|
2182
2399
|
readonly url: "https://explorer.zksync.io/";
|
|
2400
|
+
readonly apiUrl: "https://block-explorer-api.mainnet.zksync.io/api";
|
|
2183
2401
|
};
|
|
2184
2402
|
};
|
|
2185
2403
|
contracts: {
|
|
2186
2404
|
readonly multicall3: {
|
|
2187
2405
|
readonly address: "0xF9cda624FBC7e059355ce98a31693d299FACd963";
|
|
2188
2406
|
};
|
|
2407
|
+
readonly universalSignatureVerifier: {
|
|
2408
|
+
readonly address: "0xfB688330379976DA81eB64Fe4BF50d7401763B9C";
|
|
2409
|
+
readonly blockCreated: 45659388;
|
|
2410
|
+
};
|
|
2189
2411
|
};
|
|
2412
|
+
ensTlds?: readonly string[] | undefined;
|
|
2190
2413
|
id: 324;
|
|
2191
|
-
name: "
|
|
2414
|
+
name: "ZKsync Era";
|
|
2192
2415
|
nativeCurrency: {
|
|
2193
2416
|
readonly decimals: 18;
|
|
2194
2417
|
readonly name: "Ether";
|
|
@@ -2200,8 +2423,8 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
2200
2423
|
readonly webSocket: readonly ["wss://mainnet.era.zksync.io/ws"];
|
|
2201
2424
|
};
|
|
2202
2425
|
};
|
|
2203
|
-
sourceId?: number | undefined;
|
|
2204
|
-
testnet?: boolean | undefined;
|
|
2426
|
+
sourceId?: number | undefined | undefined;
|
|
2427
|
+
testnet?: boolean | undefined | undefined;
|
|
2205
2428
|
custom: {
|
|
2206
2429
|
readonly getEip712Domain: import("viem/zksync").EIP712DomainFn<import("viem/chains").ZkSyncTransactionSerializable, import("viem/chains").ZkSyncEIP712TransactionSignable>;
|
|
2207
2430
|
};
|
|
@@ -2223,6 +2446,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
2223
2446
|
mixHash: import("viem").Hash;
|
|
2224
2447
|
nonce: `0x${string}` | null;
|
|
2225
2448
|
number: bigint | null;
|
|
2449
|
+
parentBeaconBlockRoot?: `0x${string}` | undefined;
|
|
2226
2450
|
parentHash: import("viem").Hash;
|
|
2227
2451
|
receiptsRoot: import("viem").Hex;
|
|
2228
2452
|
sealFields: import("viem").Hex[];
|
|
@@ -2234,8 +2458,8 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
2234
2458
|
transactions: `0x${string}`[] | import("viem/chains").ZkSyncTransaction<boolean>[];
|
|
2235
2459
|
transactionsRoot: import("viem").Hash;
|
|
2236
2460
|
uncles: import("viem").Hash[];
|
|
2237
|
-
withdrawals?: import("viem").Withdrawal[] | undefined;
|
|
2238
|
-
withdrawalsRoot?:
|
|
2461
|
+
withdrawals?: import("viem").Withdrawal[] | undefined | undefined;
|
|
2462
|
+
withdrawalsRoot?: `0x${string}` | undefined;
|
|
2239
2463
|
l1BatchNumber: bigint | null;
|
|
2240
2464
|
l1BatchTimestamp: bigint | null;
|
|
2241
2465
|
} & {};
|
|
@@ -2258,15 +2482,16 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
2258
2482
|
input: import("viem").Hex;
|
|
2259
2483
|
transactionIndex: number | null;
|
|
2260
2484
|
typeHex: import("viem").Hex | null;
|
|
2261
|
-
accessList?: undefined;
|
|
2262
|
-
|
|
2485
|
+
accessList?: undefined | undefined;
|
|
2486
|
+
authorizationList?: undefined | undefined;
|
|
2487
|
+
blobVersionedHashes?: undefined | undefined;
|
|
2263
2488
|
chainId?: number | undefined;
|
|
2264
|
-
yParity?: undefined;
|
|
2489
|
+
yParity?: undefined | undefined;
|
|
2265
2490
|
type: "legacy";
|
|
2266
2491
|
gasPrice: bigint;
|
|
2267
|
-
maxFeePerBlobGas?: undefined;
|
|
2268
|
-
maxFeePerGas?: undefined;
|
|
2269
|
-
maxPriorityFeePerGas?: undefined;
|
|
2492
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
2493
|
+
maxFeePerGas?: undefined | undefined;
|
|
2494
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
2270
2495
|
l1BatchNumber: bigint | null;
|
|
2271
2496
|
l1BatchTxIndex: bigint | null;
|
|
2272
2497
|
} | {
|
|
@@ -2286,13 +2511,14 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
2286
2511
|
value: bigint;
|
|
2287
2512
|
yParity: number;
|
|
2288
2513
|
accessList: import("viem").AccessList;
|
|
2289
|
-
|
|
2514
|
+
authorizationList?: undefined | undefined;
|
|
2515
|
+
blobVersionedHashes?: undefined | undefined;
|
|
2290
2516
|
chainId: number;
|
|
2291
2517
|
type: "eip2930";
|
|
2292
2518
|
gasPrice: bigint;
|
|
2293
|
-
maxFeePerBlobGas?: undefined;
|
|
2294
|
-
maxFeePerGas?: undefined;
|
|
2295
|
-
maxPriorityFeePerGas?: undefined;
|
|
2519
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
2520
|
+
maxFeePerGas?: undefined | undefined;
|
|
2521
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
2296
2522
|
l1BatchNumber: bigint | null;
|
|
2297
2523
|
l1BatchTxIndex: bigint | null;
|
|
2298
2524
|
} | {
|
|
@@ -2312,11 +2538,12 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
2312
2538
|
value: bigint;
|
|
2313
2539
|
yParity: number;
|
|
2314
2540
|
accessList: import("viem").AccessList;
|
|
2315
|
-
|
|
2541
|
+
authorizationList?: undefined | undefined;
|
|
2542
|
+
blobVersionedHashes?: undefined | undefined;
|
|
2316
2543
|
chainId: number;
|
|
2317
2544
|
type: "eip1559";
|
|
2318
|
-
gasPrice?: undefined;
|
|
2319
|
-
maxFeePerBlobGas?: undefined;
|
|
2545
|
+
gasPrice?: undefined | undefined;
|
|
2546
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
2320
2547
|
maxFeePerGas: bigint;
|
|
2321
2548
|
maxPriorityFeePerGas: bigint;
|
|
2322
2549
|
l1BatchNumber: bigint | null;
|
|
@@ -2338,15 +2565,43 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
2338
2565
|
value: bigint;
|
|
2339
2566
|
yParity: number;
|
|
2340
2567
|
accessList: import("viem").AccessList;
|
|
2568
|
+
authorizationList?: undefined | undefined;
|
|
2341
2569
|
blobVersionedHashes: readonly import("viem").Hex[];
|
|
2342
2570
|
chainId: number;
|
|
2343
2571
|
type: "eip4844";
|
|
2344
|
-
gasPrice?: undefined;
|
|
2572
|
+
gasPrice?: undefined | undefined;
|
|
2345
2573
|
maxFeePerBlobGas: bigint;
|
|
2346
2574
|
maxFeePerGas: bigint;
|
|
2347
2575
|
maxPriorityFeePerGas: bigint;
|
|
2348
2576
|
l1BatchNumber: bigint | null;
|
|
2349
2577
|
l1BatchTxIndex: bigint | null;
|
|
2578
|
+
} | {
|
|
2579
|
+
blockHash: `0x${string}` | null;
|
|
2580
|
+
blockNumber: bigint | null;
|
|
2581
|
+
from: import("viem").Address;
|
|
2582
|
+
gas: bigint;
|
|
2583
|
+
hash: import("viem").Hash;
|
|
2584
|
+
input: import("viem").Hex;
|
|
2585
|
+
nonce: number;
|
|
2586
|
+
r: import("viem").Hex;
|
|
2587
|
+
s: import("viem").Hex;
|
|
2588
|
+
to: import("viem").Address | null;
|
|
2589
|
+
transactionIndex: number | null;
|
|
2590
|
+
typeHex: import("viem").Hex | null;
|
|
2591
|
+
v: bigint;
|
|
2592
|
+
value: bigint;
|
|
2593
|
+
yParity: number;
|
|
2594
|
+
accessList: import("viem").AccessList;
|
|
2595
|
+
authorizationList: import("viem").SignedAuthorizationList;
|
|
2596
|
+
blobVersionedHashes?: undefined | undefined;
|
|
2597
|
+
chainId: number;
|
|
2598
|
+
type: "eip7702";
|
|
2599
|
+
gasPrice?: undefined | undefined;
|
|
2600
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
2601
|
+
maxFeePerGas: bigint;
|
|
2602
|
+
maxPriorityFeePerGas: bigint;
|
|
2603
|
+
l1BatchNumber: bigint | null;
|
|
2604
|
+
l1BatchTxIndex: bigint | null;
|
|
2350
2605
|
} | {
|
|
2351
2606
|
blockHash: `0x${string}` | null;
|
|
2352
2607
|
blockNumber: bigint | null;
|
|
@@ -2365,8 +2620,8 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
2365
2620
|
yParity: number;
|
|
2366
2621
|
l1BatchNumber: bigint | null;
|
|
2367
2622
|
l1BatchTxIndex: bigint | null;
|
|
2368
|
-
gasPrice?: undefined;
|
|
2369
|
-
maxFeePerBlobGas?: undefined;
|
|
2623
|
+
gasPrice?: undefined | undefined;
|
|
2624
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
2370
2625
|
maxFeePerGas: bigint;
|
|
2371
2626
|
maxPriorityFeePerGas: bigint;
|
|
2372
2627
|
type: "priority";
|
|
@@ -2388,8 +2643,8 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
2388
2643
|
yParity: number;
|
|
2389
2644
|
l1BatchNumber: bigint | null;
|
|
2390
2645
|
l1BatchTxIndex: bigint | null;
|
|
2391
|
-
gasPrice?: undefined;
|
|
2392
|
-
maxFeePerBlobGas?: undefined;
|
|
2646
|
+
gasPrice?: undefined | undefined;
|
|
2647
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
2393
2648
|
maxFeePerGas: bigint;
|
|
2394
2649
|
maxPriorityFeePerGas: bigint;
|
|
2395
2650
|
type: "eip712" | "priority";
|
|
@@ -2398,8 +2653,9 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
2398
2653
|
};
|
|
2399
2654
|
readonly transactionReceipt: {
|
|
2400
2655
|
exclude: [] | undefined;
|
|
2401
|
-
format: (args: import("viem/
|
|
2656
|
+
format: (args: import("viem/chains").ZkSyncRpcTransactionReceipt) => {
|
|
2402
2657
|
type: import("viem/chains").ZkSyncTransactionType;
|
|
2658
|
+
contractAddress: import("viem").Address | null | undefined;
|
|
2403
2659
|
to: import("viem").Address | null;
|
|
2404
2660
|
from: import("viem").Address;
|
|
2405
2661
|
blockHash: import("viem").Hash;
|
|
@@ -2409,12 +2665,11 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
2409
2665
|
logsBloom: import("viem").Hex;
|
|
2410
2666
|
blobGasUsed?: bigint | undefined;
|
|
2411
2667
|
gasUsed: bigint;
|
|
2412
|
-
contractAddress: import("viem").Address | null | undefined;
|
|
2413
2668
|
transactionHash: import("viem").Hash;
|
|
2414
2669
|
blobGasPrice?: bigint | undefined;
|
|
2415
2670
|
cumulativeGasUsed: bigint;
|
|
2416
2671
|
effectiveGasPrice: bigint;
|
|
2417
|
-
root?:
|
|
2672
|
+
root?: `0x${string}` | undefined;
|
|
2418
2673
|
l1BatchNumber: bigint | null;
|
|
2419
2674
|
l1BatchTxIndex: bigint | null;
|
|
2420
2675
|
logs: import("viem/chains").ZkSyncLog[];
|
|
@@ -2423,95 +2678,118 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
2423
2678
|
type: "transactionReceipt";
|
|
2424
2679
|
};
|
|
2425
2680
|
readonly transactionRequest: {
|
|
2426
|
-
exclude: ("
|
|
2681
|
+
exclude: ("paymaster" | "gasPerPubdata" | "factoryDeps" | "paymasterInput" | "customSignature")[] | undefined;
|
|
2427
2682
|
format: (args: import("viem/chains").ZkSyncTransactionRequest) => ({
|
|
2428
|
-
data?:
|
|
2429
|
-
from
|
|
2683
|
+
data?: `0x${string}` | undefined;
|
|
2684
|
+
from?: `0x${string}` | undefined;
|
|
2430
2685
|
gas?: `0x${string}` | undefined;
|
|
2431
2686
|
nonce?: `0x${string}` | undefined;
|
|
2432
|
-
to?:
|
|
2433
|
-
value?: `0x${string}` | undefined;
|
|
2434
|
-
accessList?: undefined;
|
|
2435
|
-
blobs?: undefined;
|
|
2687
|
+
to?: `0x${string}` | null | undefined;
|
|
2436
2688
|
type?: "0x0" | undefined;
|
|
2689
|
+
value?: `0x${string}` | undefined;
|
|
2437
2690
|
gasPrice?: `0x${string}` | undefined;
|
|
2438
|
-
maxFeePerBlobGas?: undefined;
|
|
2439
|
-
maxFeePerGas?: undefined;
|
|
2440
|
-
maxPriorityFeePerGas?: undefined;
|
|
2691
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
2692
|
+
maxFeePerGas?: undefined | undefined;
|
|
2693
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
2694
|
+
blobs?: undefined;
|
|
2695
|
+
accessList?: undefined;
|
|
2441
2696
|
blobVersionedHashes?: undefined;
|
|
2442
2697
|
kzg?: undefined;
|
|
2443
2698
|
sidecars?: undefined;
|
|
2444
|
-
|
|
2699
|
+
authorizationList?: undefined;
|
|
2700
|
+
eip712Meta?: undefined | undefined;
|
|
2445
2701
|
} | {
|
|
2446
|
-
data?:
|
|
2447
|
-
from
|
|
2702
|
+
data?: `0x${string}` | undefined;
|
|
2703
|
+
from?: `0x${string}` | undefined;
|
|
2448
2704
|
gas?: `0x${string}` | undefined;
|
|
2449
2705
|
nonce?: `0x${string}` | undefined;
|
|
2450
|
-
to?:
|
|
2706
|
+
to?: `0x${string}` | null | undefined;
|
|
2707
|
+
type?: "0x1" | undefined;
|
|
2451
2708
|
value?: `0x${string}` | undefined;
|
|
2709
|
+
gasPrice?: `0x${string}` | undefined;
|
|
2710
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
2711
|
+
maxFeePerGas?: undefined | undefined;
|
|
2712
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
2452
2713
|
accessList?: import("viem").AccessList | undefined;
|
|
2453
2714
|
blobs?: undefined;
|
|
2454
|
-
type?: "0x1" | undefined;
|
|
2455
|
-
gasPrice?: `0x${string}` | undefined;
|
|
2456
|
-
maxFeePerBlobGas?: undefined;
|
|
2457
|
-
maxFeePerGas?: undefined;
|
|
2458
|
-
maxPriorityFeePerGas?: undefined;
|
|
2459
2715
|
blobVersionedHashes?: undefined;
|
|
2460
2716
|
kzg?: undefined;
|
|
2461
2717
|
sidecars?: undefined;
|
|
2462
|
-
|
|
2718
|
+
authorizationList?: undefined;
|
|
2719
|
+
eip712Meta?: undefined | undefined;
|
|
2463
2720
|
} | {
|
|
2464
|
-
data?:
|
|
2465
|
-
from
|
|
2721
|
+
data?: `0x${string}` | undefined;
|
|
2722
|
+
from?: `0x${string}` | undefined;
|
|
2466
2723
|
gas?: `0x${string}` | undefined;
|
|
2467
2724
|
nonce?: `0x${string}` | undefined;
|
|
2468
|
-
to?:
|
|
2725
|
+
to?: `0x${string}` | null | undefined;
|
|
2726
|
+
type?: "0x2" | undefined;
|
|
2469
2727
|
value?: `0x${string}` | undefined;
|
|
2470
|
-
gasPrice?: undefined;
|
|
2471
|
-
maxFeePerBlobGas?: undefined;
|
|
2728
|
+
gasPrice?: undefined | undefined;
|
|
2729
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
2472
2730
|
maxFeePerGas?: `0x${string}` | undefined;
|
|
2473
2731
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
2474
2732
|
accessList?: import("viem").AccessList | undefined;
|
|
2475
2733
|
blobs?: undefined;
|
|
2476
|
-
type?: "0x2" | undefined;
|
|
2477
2734
|
blobVersionedHashes?: undefined;
|
|
2478
2735
|
kzg?: undefined;
|
|
2479
2736
|
sidecars?: undefined;
|
|
2480
|
-
|
|
2737
|
+
authorizationList?: undefined;
|
|
2738
|
+
eip712Meta?: undefined | undefined;
|
|
2481
2739
|
} | {
|
|
2482
|
-
|
|
2483
|
-
|
|
2740
|
+
type?: "0x3" | undefined;
|
|
2741
|
+
data?: `0x${string}` | undefined;
|
|
2742
|
+
from?: `0x${string}` | undefined;
|
|
2484
2743
|
gas?: `0x${string}` | undefined;
|
|
2485
2744
|
nonce?: `0x${string}` | undefined;
|
|
2486
2745
|
value?: `0x${string}` | undefined;
|
|
2487
2746
|
to: `0x${string}` | null;
|
|
2747
|
+
gasPrice?: undefined | undefined;
|
|
2748
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
|
2749
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
2750
|
+
maxFeePerBlobGas: `0x${string}`;
|
|
2488
2751
|
accessList?: import("viem").AccessList | undefined;
|
|
2489
2752
|
blobs: readonly import("viem").Hex[] | readonly import("viem").ByteArray[];
|
|
2490
|
-
blobVersionedHashes?: readonly
|
|
2753
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
2491
2754
|
kzg?: import("viem").Kzg | undefined;
|
|
2492
|
-
sidecars?: readonly import("viem").BlobSidecar
|
|
2493
|
-
|
|
2494
|
-
|
|
2755
|
+
sidecars?: readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
2756
|
+
authorizationList?: undefined;
|
|
2757
|
+
eip712Meta?: undefined | undefined;
|
|
2758
|
+
} | {
|
|
2759
|
+
type?: "0x4" | undefined;
|
|
2760
|
+
gasPrice?: undefined | undefined;
|
|
2761
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
2495
2762
|
maxFeePerGas?: `0x${string}` | undefined;
|
|
2496
2763
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
2497
|
-
|
|
2498
|
-
|
|
2764
|
+
to?: `0x${string}` | null | undefined;
|
|
2765
|
+
data?: `0x${string}` | undefined;
|
|
2766
|
+
from?: `0x${string}` | undefined;
|
|
2767
|
+
gas?: `0x${string}` | undefined;
|
|
2768
|
+
nonce?: `0x${string}` | undefined;
|
|
2769
|
+
value?: `0x${string}` | undefined;
|
|
2770
|
+
accessList?: import("viem").AccessList | undefined;
|
|
2771
|
+
authorizationList?: import("viem").RpcAuthorizationList | undefined;
|
|
2772
|
+
blobs?: undefined;
|
|
2773
|
+
blobVersionedHashes?: undefined;
|
|
2774
|
+
kzg?: undefined;
|
|
2775
|
+
sidecars?: undefined;
|
|
2776
|
+
eip712Meta?: undefined | undefined;
|
|
2499
2777
|
} | {
|
|
2500
|
-
data?:
|
|
2501
|
-
from
|
|
2778
|
+
data?: `0x${string}` | undefined;
|
|
2779
|
+
from?: `0x${string}` | undefined;
|
|
2502
2780
|
gas?: `0x${string}` | undefined;
|
|
2503
2781
|
nonce?: `0x${string}` | undefined;
|
|
2504
|
-
to?:
|
|
2782
|
+
to?: `0x${string}` | null | undefined;
|
|
2783
|
+
type: "0xff" | "0x71";
|
|
2505
2784
|
value?: `0x${string}` | undefined;
|
|
2506
|
-
gasPrice?: undefined;
|
|
2507
|
-
maxFeePerBlobGas?: undefined;
|
|
2785
|
+
gasPrice?: undefined | undefined;
|
|
2786
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
2508
2787
|
maxFeePerGas?: `0x${string}` | undefined;
|
|
2509
2788
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
2510
2789
|
eip712Meta: import("viem/chains").ZkSyncEip712Meta;
|
|
2511
|
-
type: "0x71" | "0xff";
|
|
2512
2790
|
}) & {
|
|
2513
|
-
gasPerPubdata: never;
|
|
2514
2791
|
paymaster: never;
|
|
2792
|
+
gasPerPubdata: never;
|
|
2515
2793
|
factoryDeps: never;
|
|
2516
2794
|
paymasterInput: never;
|
|
2517
2795
|
customSignature: never;
|
|
@@ -2537,6 +2815,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
2537
2815
|
readonly blockCreated: 304717;
|
|
2538
2816
|
};
|
|
2539
2817
|
};
|
|
2818
|
+
ensTlds?: readonly string[] | undefined;
|
|
2540
2819
|
id: 5000;
|
|
2541
2820
|
name: "Mantle";
|
|
2542
2821
|
nativeCurrency: {
|
|
@@ -2549,8 +2828,8 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
2549
2828
|
readonly http: readonly ["https://rpc.mantle.xyz"];
|
|
2550
2829
|
};
|
|
2551
2830
|
};
|
|
2552
|
-
sourceId?: number | undefined;
|
|
2553
|
-
testnet?: boolean | undefined;
|
|
2831
|
+
sourceId?: number | undefined | undefined;
|
|
2832
|
+
testnet?: boolean | undefined | undefined;
|
|
2554
2833
|
custom?: Record<string, unknown> | undefined;
|
|
2555
2834
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
2556
2835
|
formatters?: undefined;
|
|
@@ -2569,6 +2848,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
2569
2848
|
readonly blockCreated: 14;
|
|
2570
2849
|
};
|
|
2571
2850
|
};
|
|
2851
|
+
ensTlds?: readonly string[] | undefined;
|
|
2572
2852
|
id: 534352;
|
|
2573
2853
|
name: "Scroll";
|
|
2574
2854
|
nativeCurrency: {
|
|
@@ -2582,7 +2862,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
2582
2862
|
readonly webSocket: readonly ["wss://wss-rpc.scroll.io/ws"];
|
|
2583
2863
|
};
|
|
2584
2864
|
};
|
|
2585
|
-
sourceId?: number | undefined;
|
|
2865
|
+
sourceId?: number | undefined | undefined;
|
|
2586
2866
|
testnet: false;
|
|
2587
2867
|
custom?: Record<string, unknown> | undefined;
|
|
2588
2868
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
@@ -2609,6 +2889,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
2609
2889
|
readonly blockCreated: 6507670;
|
|
2610
2890
|
};
|
|
2611
2891
|
};
|
|
2892
|
+
ensTlds?: readonly string[] | undefined;
|
|
2612
2893
|
id: 5;
|
|
2613
2894
|
name: "Goerli";
|
|
2614
2895
|
nativeCurrency: {
|
|
@@ -2618,10 +2899,10 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
2618
2899
|
};
|
|
2619
2900
|
rpcUrls: {
|
|
2620
2901
|
readonly default: {
|
|
2621
|
-
readonly http: readonly ["https://rpc.
|
|
2902
|
+
readonly http: readonly ["https://5.rpc.thirdweb.com"];
|
|
2622
2903
|
};
|
|
2623
2904
|
};
|
|
2624
|
-
sourceId?: number | undefined;
|
|
2905
|
+
sourceId?: number | undefined | undefined;
|
|
2625
2906
|
testnet: true;
|
|
2626
2907
|
custom?: Record<string, unknown> | undefined;
|
|
2627
2908
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
@@ -2641,6 +2922,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
2641
2922
|
readonly blockCreated: 81930;
|
|
2642
2923
|
};
|
|
2643
2924
|
};
|
|
2925
|
+
ensTlds?: readonly string[] | undefined;
|
|
2644
2926
|
id: 421614;
|
|
2645
2927
|
name: "Arbitrum Sepolia";
|
|
2646
2928
|
nativeCurrency: {
|
|
@@ -2653,7 +2935,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHAINS_INFO_LIST: ({
|
|
|
2653
2935
|
readonly http: readonly ["https://sepolia-rollup.arbitrum.io/rpc"];
|
|
2654
2936
|
};
|
|
2655
2937
|
};
|
|
2656
|
-
sourceId?: number | undefined;
|
|
2938
|
+
sourceId?: number | undefined | undefined;
|
|
2657
2939
|
testnet: true;
|
|
2658
2940
|
custom?: Record<string, unknown> | undefined;
|
|
2659
2941
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
@@ -2714,6 +2996,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
2714
2996
|
readonly blockCreated: 14353601;
|
|
2715
2997
|
};
|
|
2716
2998
|
};
|
|
2999
|
+
ensTlds?: readonly string[] | undefined;
|
|
2717
3000
|
id: 1;
|
|
2718
3001
|
name: "Ethereum";
|
|
2719
3002
|
nativeCurrency: {
|
|
@@ -2723,11 +3006,11 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
2723
3006
|
};
|
|
2724
3007
|
rpcUrls: {
|
|
2725
3008
|
readonly default: {
|
|
2726
|
-
readonly http: readonly ["https://
|
|
3009
|
+
readonly http: readonly ["https://eth.merkle.io"];
|
|
2727
3010
|
};
|
|
2728
3011
|
};
|
|
2729
|
-
sourceId?: number | undefined;
|
|
2730
|
-
testnet?: boolean | undefined;
|
|
3012
|
+
sourceId?: number | undefined | undefined;
|
|
3013
|
+
testnet?: boolean | undefined | undefined;
|
|
2731
3014
|
custom?: Record<string, unknown> | undefined;
|
|
2732
3015
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
2733
3016
|
formatters?: undefined;
|
|
@@ -2741,6 +3024,11 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
2741
3024
|
};
|
|
2742
3025
|
};
|
|
2743
3026
|
contracts: {
|
|
3027
|
+
readonly disputeGameFactory: {
|
|
3028
|
+
readonly 1: {
|
|
3029
|
+
readonly address: "0x43edB88C4B80fDD2AdFF2412A7BebF9dF42cB40e";
|
|
3030
|
+
};
|
|
3031
|
+
};
|
|
2744
3032
|
readonly l2OutputOracle: {
|
|
2745
3033
|
readonly 1: {
|
|
2746
3034
|
readonly address: "0x56315b90c40730925ec5485cf004d835058518A0";
|
|
@@ -2781,6 +3069,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
2781
3069
|
readonly address: "0x4200000000000000000000000000000000000016";
|
|
2782
3070
|
};
|
|
2783
3071
|
};
|
|
3072
|
+
ensTlds?: readonly string[] | undefined;
|
|
2784
3073
|
id: 8453;
|
|
2785
3074
|
name: "Base";
|
|
2786
3075
|
nativeCurrency: {
|
|
@@ -2794,7 +3083,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
2794
3083
|
};
|
|
2795
3084
|
};
|
|
2796
3085
|
sourceId: 1;
|
|
2797
|
-
testnet?: boolean | undefined;
|
|
3086
|
+
testnet?: boolean | undefined | undefined;
|
|
2798
3087
|
custom?: Record<string, unknown> | undefined;
|
|
2799
3088
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
2800
3089
|
formatters: {
|
|
@@ -2814,6 +3103,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
2814
3103
|
mixHash: import("viem").Hash;
|
|
2815
3104
|
nonce: `0x${string}` | null;
|
|
2816
3105
|
number: bigint | null;
|
|
3106
|
+
parentBeaconBlockRoot?: `0x${string}` | undefined;
|
|
2817
3107
|
parentHash: import("viem").Hash;
|
|
2818
3108
|
receiptsRoot: import("viem").Hex;
|
|
2819
3109
|
sealFields: import("viem").Hex[];
|
|
@@ -2825,8 +3115,8 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
2825
3115
|
transactions: `0x${string}`[] | import("viem/chains").OpStackTransaction<boolean>[];
|
|
2826
3116
|
transactionsRoot: import("viem").Hash;
|
|
2827
3117
|
uncles: import("viem").Hash[];
|
|
2828
|
-
withdrawals?: import("viem").Withdrawal[] | undefined;
|
|
2829
|
-
withdrawalsRoot?:
|
|
3118
|
+
withdrawals?: import("viem").Withdrawal[] | undefined | undefined;
|
|
3119
|
+
withdrawalsRoot?: `0x${string}` | undefined;
|
|
2830
3120
|
} & {};
|
|
2831
3121
|
type: "block";
|
|
2832
3122
|
};
|
|
@@ -2848,12 +3138,12 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
2848
3138
|
v: bigint;
|
|
2849
3139
|
value: bigint;
|
|
2850
3140
|
yParity: number;
|
|
2851
|
-
gasPrice?: undefined;
|
|
2852
|
-
maxFeePerBlobGas?: undefined;
|
|
3141
|
+
gasPrice?: undefined | undefined;
|
|
3142
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
2853
3143
|
maxFeePerGas: bigint;
|
|
2854
3144
|
maxPriorityFeePerGas: bigint;
|
|
2855
3145
|
isSystemTx?: boolean;
|
|
2856
|
-
mint?: bigint | undefined;
|
|
3146
|
+
mint?: bigint | undefined | undefined;
|
|
2857
3147
|
sourceHash: import("viem").Hex;
|
|
2858
3148
|
type: "deposit";
|
|
2859
3149
|
} | {
|
|
@@ -2871,18 +3161,19 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
2871
3161
|
input: import("viem").Hex;
|
|
2872
3162
|
transactionIndex: number | null;
|
|
2873
3163
|
typeHex: import("viem").Hex | null;
|
|
2874
|
-
accessList?: undefined;
|
|
2875
|
-
|
|
3164
|
+
accessList?: undefined | undefined;
|
|
3165
|
+
authorizationList?: undefined | undefined;
|
|
3166
|
+
blobVersionedHashes?: undefined | undefined;
|
|
2876
3167
|
chainId?: number | undefined;
|
|
2877
|
-
yParity?: undefined;
|
|
3168
|
+
yParity?: undefined | undefined;
|
|
2878
3169
|
type: "legacy";
|
|
2879
3170
|
gasPrice: bigint;
|
|
2880
|
-
maxFeePerBlobGas?: undefined;
|
|
2881
|
-
maxFeePerGas?: undefined;
|
|
2882
|
-
maxPriorityFeePerGas?: undefined;
|
|
2883
|
-
isSystemTx?: undefined;
|
|
2884
|
-
mint?: undefined;
|
|
2885
|
-
sourceHash?: undefined;
|
|
3171
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3172
|
+
maxFeePerGas?: undefined | undefined;
|
|
3173
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
3174
|
+
isSystemTx?: undefined | undefined;
|
|
3175
|
+
mint?: undefined | undefined;
|
|
3176
|
+
sourceHash?: undefined | undefined;
|
|
2886
3177
|
} | {
|
|
2887
3178
|
blockHash: `0x${string}` | null;
|
|
2888
3179
|
blockNumber: bigint | null;
|
|
@@ -2900,16 +3191,17 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
2900
3191
|
value: bigint;
|
|
2901
3192
|
yParity: number;
|
|
2902
3193
|
accessList: import("viem").AccessList;
|
|
2903
|
-
|
|
3194
|
+
authorizationList?: undefined | undefined;
|
|
3195
|
+
blobVersionedHashes?: undefined | undefined;
|
|
2904
3196
|
chainId: number;
|
|
2905
3197
|
type: "eip2930";
|
|
2906
3198
|
gasPrice: bigint;
|
|
2907
|
-
maxFeePerBlobGas?: undefined;
|
|
2908
|
-
maxFeePerGas?: undefined;
|
|
2909
|
-
maxPriorityFeePerGas?: undefined;
|
|
2910
|
-
isSystemTx?: undefined;
|
|
2911
|
-
mint?: undefined;
|
|
2912
|
-
sourceHash?: undefined;
|
|
3199
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3200
|
+
maxFeePerGas?: undefined | undefined;
|
|
3201
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
3202
|
+
isSystemTx?: undefined | undefined;
|
|
3203
|
+
mint?: undefined | undefined;
|
|
3204
|
+
sourceHash?: undefined | undefined;
|
|
2913
3205
|
} | {
|
|
2914
3206
|
blockHash: `0x${string}` | null;
|
|
2915
3207
|
blockNumber: bigint | null;
|
|
@@ -2927,16 +3219,17 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
2927
3219
|
value: bigint;
|
|
2928
3220
|
yParity: number;
|
|
2929
3221
|
accessList: import("viem").AccessList;
|
|
2930
|
-
|
|
3222
|
+
authorizationList?: undefined | undefined;
|
|
3223
|
+
blobVersionedHashes?: undefined | undefined;
|
|
2931
3224
|
chainId: number;
|
|
2932
3225
|
type: "eip1559";
|
|
2933
|
-
gasPrice?: undefined;
|
|
2934
|
-
maxFeePerBlobGas?: undefined;
|
|
3226
|
+
gasPrice?: undefined | undefined;
|
|
3227
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
2935
3228
|
maxFeePerGas: bigint;
|
|
2936
3229
|
maxPriorityFeePerGas: bigint;
|
|
2937
|
-
isSystemTx?: undefined;
|
|
2938
|
-
mint?: undefined;
|
|
2939
|
-
sourceHash?: undefined;
|
|
3230
|
+
isSystemTx?: undefined | undefined;
|
|
3231
|
+
mint?: undefined | undefined;
|
|
3232
|
+
sourceHash?: undefined | undefined;
|
|
2940
3233
|
} | {
|
|
2941
3234
|
blockHash: `0x${string}` | null;
|
|
2942
3235
|
blockNumber: bigint | null;
|
|
@@ -2954,16 +3247,45 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
2954
3247
|
value: bigint;
|
|
2955
3248
|
yParity: number;
|
|
2956
3249
|
accessList: import("viem").AccessList;
|
|
3250
|
+
authorizationList?: undefined | undefined;
|
|
2957
3251
|
blobVersionedHashes: readonly import("viem").Hex[];
|
|
2958
3252
|
chainId: number;
|
|
2959
3253
|
type: "eip4844";
|
|
2960
|
-
gasPrice?: undefined;
|
|
3254
|
+
gasPrice?: undefined | undefined;
|
|
2961
3255
|
maxFeePerBlobGas: bigint;
|
|
2962
3256
|
maxFeePerGas: bigint;
|
|
2963
3257
|
maxPriorityFeePerGas: bigint;
|
|
2964
|
-
isSystemTx?: undefined;
|
|
2965
|
-
mint?: undefined;
|
|
2966
|
-
sourceHash?: undefined;
|
|
3258
|
+
isSystemTx?: undefined | undefined;
|
|
3259
|
+
mint?: undefined | undefined;
|
|
3260
|
+
sourceHash?: undefined | undefined;
|
|
3261
|
+
} | {
|
|
3262
|
+
blockHash: `0x${string}` | null;
|
|
3263
|
+
blockNumber: bigint | null;
|
|
3264
|
+
from: import("viem").Address;
|
|
3265
|
+
gas: bigint;
|
|
3266
|
+
hash: import("viem").Hash;
|
|
3267
|
+
input: import("viem").Hex;
|
|
3268
|
+
nonce: number;
|
|
3269
|
+
r: import("viem").Hex;
|
|
3270
|
+
s: import("viem").Hex;
|
|
3271
|
+
to: import("viem").Address | null;
|
|
3272
|
+
transactionIndex: number | null;
|
|
3273
|
+
typeHex: import("viem").Hex | null;
|
|
3274
|
+
v: bigint;
|
|
3275
|
+
value: bigint;
|
|
3276
|
+
yParity: number;
|
|
3277
|
+
accessList: import("viem").AccessList;
|
|
3278
|
+
authorizationList: import("viem").SignedAuthorizationList;
|
|
3279
|
+
blobVersionedHashes?: undefined | undefined;
|
|
3280
|
+
chainId: number;
|
|
3281
|
+
type: "eip7702";
|
|
3282
|
+
gasPrice?: undefined | undefined;
|
|
3283
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3284
|
+
maxFeePerGas: bigint;
|
|
3285
|
+
maxPriorityFeePerGas: bigint;
|
|
3286
|
+
isSystemTx?: undefined | undefined;
|
|
3287
|
+
mint?: undefined | undefined;
|
|
3288
|
+
sourceHash?: undefined | undefined;
|
|
2967
3289
|
}) & {};
|
|
2968
3290
|
type: "transaction";
|
|
2969
3291
|
};
|
|
@@ -2981,7 +3303,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
2981
3303
|
gasUsed: bigint;
|
|
2982
3304
|
logs: import("viem").Log<bigint, number, false>[];
|
|
2983
3305
|
logsBloom: import("viem").Hex;
|
|
2984
|
-
root?:
|
|
3306
|
+
root?: `0x${string}` | undefined;
|
|
2985
3307
|
status: "success" | "reverted";
|
|
2986
3308
|
to: import("viem").Address | null;
|
|
2987
3309
|
transactionHash: import("viem").Hash;
|
|
@@ -3012,11 +3334,12 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
3012
3334
|
readonly blockCreated: 25770160;
|
|
3013
3335
|
};
|
|
3014
3336
|
};
|
|
3337
|
+
ensTlds?: readonly string[] | undefined;
|
|
3015
3338
|
id: 137;
|
|
3016
3339
|
name: "Polygon";
|
|
3017
3340
|
nativeCurrency: {
|
|
3018
|
-
readonly name: "
|
|
3019
|
-
readonly symbol: "
|
|
3341
|
+
readonly name: "POL";
|
|
3342
|
+
readonly symbol: "POL";
|
|
3020
3343
|
readonly decimals: 18;
|
|
3021
3344
|
};
|
|
3022
3345
|
rpcUrls: {
|
|
@@ -3024,8 +3347,8 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
3024
3347
|
readonly http: readonly ["https://polygon-rpc.com"];
|
|
3025
3348
|
};
|
|
3026
3349
|
};
|
|
3027
|
-
sourceId?: number | undefined;
|
|
3028
|
-
testnet?: boolean | undefined;
|
|
3350
|
+
sourceId?: number | undefined | undefined;
|
|
3351
|
+
testnet?: boolean | undefined | undefined;
|
|
3029
3352
|
custom?: Record<string, unknown> | undefined;
|
|
3030
3353
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
3031
3354
|
formatters?: undefined;
|
|
@@ -3044,6 +3367,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
3044
3367
|
readonly blockCreated: 7654707;
|
|
3045
3368
|
};
|
|
3046
3369
|
};
|
|
3370
|
+
ensTlds?: readonly string[] | undefined;
|
|
3047
3371
|
id: 42161;
|
|
3048
3372
|
name: "Arbitrum One";
|
|
3049
3373
|
nativeCurrency: {
|
|
@@ -3056,8 +3380,8 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
3056
3380
|
readonly http: readonly ["https://arb1.arbitrum.io/rpc"];
|
|
3057
3381
|
};
|
|
3058
3382
|
};
|
|
3059
|
-
sourceId?: number | undefined;
|
|
3060
|
-
testnet?: boolean | undefined;
|
|
3383
|
+
sourceId?: number | undefined | undefined;
|
|
3384
|
+
testnet?: boolean | undefined | undefined;
|
|
3061
3385
|
custom?: Record<string, unknown> | undefined;
|
|
3062
3386
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
3063
3387
|
formatters?: undefined;
|
|
@@ -3114,6 +3438,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
3114
3438
|
readonly address: "0x4200000000000000000000000000000000000016";
|
|
3115
3439
|
};
|
|
3116
3440
|
};
|
|
3441
|
+
ensTlds?: readonly string[] | undefined;
|
|
3117
3442
|
id: 10;
|
|
3118
3443
|
name: "OP Mainnet";
|
|
3119
3444
|
nativeCurrency: {
|
|
@@ -3127,7 +3452,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
3127
3452
|
};
|
|
3128
3453
|
};
|
|
3129
3454
|
sourceId: 1;
|
|
3130
|
-
testnet?: boolean | undefined;
|
|
3455
|
+
testnet?: boolean | undefined | undefined;
|
|
3131
3456
|
custom?: Record<string, unknown> | undefined;
|
|
3132
3457
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
3133
3458
|
formatters: {
|
|
@@ -3147,6 +3472,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
3147
3472
|
mixHash: import("viem").Hash;
|
|
3148
3473
|
nonce: `0x${string}` | null;
|
|
3149
3474
|
number: bigint | null;
|
|
3475
|
+
parentBeaconBlockRoot?: `0x${string}` | undefined;
|
|
3150
3476
|
parentHash: import("viem").Hash;
|
|
3151
3477
|
receiptsRoot: import("viem").Hex;
|
|
3152
3478
|
sealFields: import("viem").Hex[];
|
|
@@ -3158,8 +3484,8 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
3158
3484
|
transactions: `0x${string}`[] | import("viem/chains").OpStackTransaction<boolean>[];
|
|
3159
3485
|
transactionsRoot: import("viem").Hash;
|
|
3160
3486
|
uncles: import("viem").Hash[];
|
|
3161
|
-
withdrawals?: import("viem").Withdrawal[] | undefined;
|
|
3162
|
-
withdrawalsRoot?:
|
|
3487
|
+
withdrawals?: import("viem").Withdrawal[] | undefined | undefined;
|
|
3488
|
+
withdrawalsRoot?: `0x${string}` | undefined;
|
|
3163
3489
|
} & {};
|
|
3164
3490
|
type: "block";
|
|
3165
3491
|
};
|
|
@@ -3181,12 +3507,12 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
3181
3507
|
v: bigint;
|
|
3182
3508
|
value: bigint;
|
|
3183
3509
|
yParity: number;
|
|
3184
|
-
gasPrice?: undefined;
|
|
3185
|
-
maxFeePerBlobGas?: undefined;
|
|
3510
|
+
gasPrice?: undefined | undefined;
|
|
3511
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3186
3512
|
maxFeePerGas: bigint;
|
|
3187
3513
|
maxPriorityFeePerGas: bigint;
|
|
3188
3514
|
isSystemTx?: boolean;
|
|
3189
|
-
mint?: bigint | undefined;
|
|
3515
|
+
mint?: bigint | undefined | undefined;
|
|
3190
3516
|
sourceHash: import("viem").Hex;
|
|
3191
3517
|
type: "deposit";
|
|
3192
3518
|
} | {
|
|
@@ -3204,18 +3530,19 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
3204
3530
|
input: import("viem").Hex;
|
|
3205
3531
|
transactionIndex: number | null;
|
|
3206
3532
|
typeHex: import("viem").Hex | null;
|
|
3207
|
-
accessList?: undefined;
|
|
3208
|
-
|
|
3533
|
+
accessList?: undefined | undefined;
|
|
3534
|
+
authorizationList?: undefined | undefined;
|
|
3535
|
+
blobVersionedHashes?: undefined | undefined;
|
|
3209
3536
|
chainId?: number | undefined;
|
|
3210
|
-
yParity?: undefined;
|
|
3537
|
+
yParity?: undefined | undefined;
|
|
3211
3538
|
type: "legacy";
|
|
3212
3539
|
gasPrice: bigint;
|
|
3213
|
-
maxFeePerBlobGas?: undefined;
|
|
3214
|
-
maxFeePerGas?: undefined;
|
|
3215
|
-
maxPriorityFeePerGas?: undefined;
|
|
3216
|
-
isSystemTx?: undefined;
|
|
3217
|
-
mint?: undefined;
|
|
3218
|
-
sourceHash?: undefined;
|
|
3540
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3541
|
+
maxFeePerGas?: undefined | undefined;
|
|
3542
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
3543
|
+
isSystemTx?: undefined | undefined;
|
|
3544
|
+
mint?: undefined | undefined;
|
|
3545
|
+
sourceHash?: undefined | undefined;
|
|
3219
3546
|
} | {
|
|
3220
3547
|
blockHash: `0x${string}` | null;
|
|
3221
3548
|
blockNumber: bigint | null;
|
|
@@ -3233,16 +3560,17 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
3233
3560
|
value: bigint;
|
|
3234
3561
|
yParity: number;
|
|
3235
3562
|
accessList: import("viem").AccessList;
|
|
3236
|
-
|
|
3563
|
+
authorizationList?: undefined | undefined;
|
|
3564
|
+
blobVersionedHashes?: undefined | undefined;
|
|
3237
3565
|
chainId: number;
|
|
3238
3566
|
type: "eip2930";
|
|
3239
3567
|
gasPrice: bigint;
|
|
3240
|
-
maxFeePerBlobGas?: undefined;
|
|
3241
|
-
maxFeePerGas?: undefined;
|
|
3242
|
-
maxPriorityFeePerGas?: undefined;
|
|
3243
|
-
isSystemTx?: undefined;
|
|
3244
|
-
mint?: undefined;
|
|
3245
|
-
sourceHash?: undefined;
|
|
3568
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3569
|
+
maxFeePerGas?: undefined | undefined;
|
|
3570
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
3571
|
+
isSystemTx?: undefined | undefined;
|
|
3572
|
+
mint?: undefined | undefined;
|
|
3573
|
+
sourceHash?: undefined | undefined;
|
|
3246
3574
|
} | {
|
|
3247
3575
|
blockHash: `0x${string}` | null;
|
|
3248
3576
|
blockNumber: bigint | null;
|
|
@@ -3260,16 +3588,17 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
3260
3588
|
value: bigint;
|
|
3261
3589
|
yParity: number;
|
|
3262
3590
|
accessList: import("viem").AccessList;
|
|
3263
|
-
|
|
3591
|
+
authorizationList?: undefined | undefined;
|
|
3592
|
+
blobVersionedHashes?: undefined | undefined;
|
|
3264
3593
|
chainId: number;
|
|
3265
3594
|
type: "eip1559";
|
|
3266
|
-
gasPrice?: undefined;
|
|
3267
|
-
maxFeePerBlobGas?: undefined;
|
|
3595
|
+
gasPrice?: undefined | undefined;
|
|
3596
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3268
3597
|
maxFeePerGas: bigint;
|
|
3269
3598
|
maxPriorityFeePerGas: bigint;
|
|
3270
|
-
isSystemTx?: undefined;
|
|
3271
|
-
mint?: undefined;
|
|
3272
|
-
sourceHash?: undefined;
|
|
3599
|
+
isSystemTx?: undefined | undefined;
|
|
3600
|
+
mint?: undefined | undefined;
|
|
3601
|
+
sourceHash?: undefined | undefined;
|
|
3273
3602
|
} | {
|
|
3274
3603
|
blockHash: `0x${string}` | null;
|
|
3275
3604
|
blockNumber: bigint | null;
|
|
@@ -3287,16 +3616,45 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
3287
3616
|
value: bigint;
|
|
3288
3617
|
yParity: number;
|
|
3289
3618
|
accessList: import("viem").AccessList;
|
|
3619
|
+
authorizationList?: undefined | undefined;
|
|
3290
3620
|
blobVersionedHashes: readonly import("viem").Hex[];
|
|
3291
3621
|
chainId: number;
|
|
3292
3622
|
type: "eip4844";
|
|
3293
|
-
gasPrice?: undefined;
|
|
3623
|
+
gasPrice?: undefined | undefined;
|
|
3294
3624
|
maxFeePerBlobGas: bigint;
|
|
3295
3625
|
maxFeePerGas: bigint;
|
|
3296
3626
|
maxPriorityFeePerGas: bigint;
|
|
3297
|
-
isSystemTx?: undefined;
|
|
3298
|
-
mint?: undefined;
|
|
3299
|
-
sourceHash?: undefined;
|
|
3627
|
+
isSystemTx?: undefined | undefined;
|
|
3628
|
+
mint?: undefined | undefined;
|
|
3629
|
+
sourceHash?: undefined | undefined;
|
|
3630
|
+
} | {
|
|
3631
|
+
blockHash: `0x${string}` | null;
|
|
3632
|
+
blockNumber: bigint | null;
|
|
3633
|
+
from: import("viem").Address;
|
|
3634
|
+
gas: bigint;
|
|
3635
|
+
hash: import("viem").Hash;
|
|
3636
|
+
input: import("viem").Hex;
|
|
3637
|
+
nonce: number;
|
|
3638
|
+
r: import("viem").Hex;
|
|
3639
|
+
s: import("viem").Hex;
|
|
3640
|
+
to: import("viem").Address | null;
|
|
3641
|
+
transactionIndex: number | null;
|
|
3642
|
+
typeHex: import("viem").Hex | null;
|
|
3643
|
+
v: bigint;
|
|
3644
|
+
value: bigint;
|
|
3645
|
+
yParity: number;
|
|
3646
|
+
accessList: import("viem").AccessList;
|
|
3647
|
+
authorizationList: import("viem").SignedAuthorizationList;
|
|
3648
|
+
blobVersionedHashes?: undefined | undefined;
|
|
3649
|
+
chainId: number;
|
|
3650
|
+
type: "eip7702";
|
|
3651
|
+
gasPrice?: undefined | undefined;
|
|
3652
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3653
|
+
maxFeePerGas: bigint;
|
|
3654
|
+
maxPriorityFeePerGas: bigint;
|
|
3655
|
+
isSystemTx?: undefined | undefined;
|
|
3656
|
+
mint?: undefined | undefined;
|
|
3657
|
+
sourceHash?: undefined | undefined;
|
|
3300
3658
|
}) & {};
|
|
3301
3659
|
type: "transaction";
|
|
3302
3660
|
};
|
|
@@ -3314,7 +3672,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
3314
3672
|
gasUsed: bigint;
|
|
3315
3673
|
logs: import("viem").Log<bigint, number, false>[];
|
|
3316
3674
|
logsBloom: import("viem").Hex;
|
|
3317
|
-
root?:
|
|
3675
|
+
root?: `0x${string}` | undefined;
|
|
3318
3676
|
status: "success" | "reverted";
|
|
3319
3677
|
to: import("viem").Address | null;
|
|
3320
3678
|
transactionHash: import("viem").Hash;
|
|
@@ -3339,17 +3697,23 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
3339
3697
|
readonly apiUrl: "https://api-era.zksync.network/api";
|
|
3340
3698
|
};
|
|
3341
3699
|
readonly native: {
|
|
3342
|
-
readonly name: "
|
|
3700
|
+
readonly name: "ZKsync Explorer";
|
|
3343
3701
|
readonly url: "https://explorer.zksync.io/";
|
|
3702
|
+
readonly apiUrl: "https://block-explorer-api.mainnet.zksync.io/api";
|
|
3344
3703
|
};
|
|
3345
3704
|
};
|
|
3346
3705
|
contracts: {
|
|
3347
3706
|
readonly multicall3: {
|
|
3348
3707
|
readonly address: "0xF9cda624FBC7e059355ce98a31693d299FACd963";
|
|
3349
3708
|
};
|
|
3709
|
+
readonly universalSignatureVerifier: {
|
|
3710
|
+
readonly address: "0xfB688330379976DA81eB64Fe4BF50d7401763B9C";
|
|
3711
|
+
readonly blockCreated: 45659388;
|
|
3712
|
+
};
|
|
3350
3713
|
};
|
|
3714
|
+
ensTlds?: readonly string[] | undefined;
|
|
3351
3715
|
id: 324;
|
|
3352
|
-
name: "
|
|
3716
|
+
name: "ZKsync Era";
|
|
3353
3717
|
nativeCurrency: {
|
|
3354
3718
|
readonly decimals: 18;
|
|
3355
3719
|
readonly name: "Ether";
|
|
@@ -3361,8 +3725,8 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
3361
3725
|
readonly webSocket: readonly ["wss://mainnet.era.zksync.io/ws"];
|
|
3362
3726
|
};
|
|
3363
3727
|
};
|
|
3364
|
-
sourceId?: number | undefined;
|
|
3365
|
-
testnet?: boolean | undefined;
|
|
3728
|
+
sourceId?: number | undefined | undefined;
|
|
3729
|
+
testnet?: boolean | undefined | undefined;
|
|
3366
3730
|
custom: {
|
|
3367
3731
|
readonly getEip712Domain: import("viem/zksync").EIP712DomainFn<import("viem/chains").ZkSyncTransactionSerializable, import("viem/chains").ZkSyncEIP712TransactionSignable>;
|
|
3368
3732
|
};
|
|
@@ -3384,6 +3748,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
3384
3748
|
mixHash: import("viem").Hash;
|
|
3385
3749
|
nonce: `0x${string}` | null;
|
|
3386
3750
|
number: bigint | null;
|
|
3751
|
+
parentBeaconBlockRoot?: `0x${string}` | undefined;
|
|
3387
3752
|
parentHash: import("viem").Hash;
|
|
3388
3753
|
receiptsRoot: import("viem").Hex;
|
|
3389
3754
|
sealFields: import("viem").Hex[];
|
|
@@ -3395,8 +3760,8 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
3395
3760
|
transactions: `0x${string}`[] | import("viem/chains").ZkSyncTransaction<boolean>[];
|
|
3396
3761
|
transactionsRoot: import("viem").Hash;
|
|
3397
3762
|
uncles: import("viem").Hash[];
|
|
3398
|
-
withdrawals?: import("viem").Withdrawal[] | undefined;
|
|
3399
|
-
withdrawalsRoot?:
|
|
3763
|
+
withdrawals?: import("viem").Withdrawal[] | undefined | undefined;
|
|
3764
|
+
withdrawalsRoot?: `0x${string}` | undefined;
|
|
3400
3765
|
l1BatchNumber: bigint | null;
|
|
3401
3766
|
l1BatchTimestamp: bigint | null;
|
|
3402
3767
|
} & {};
|
|
@@ -3419,15 +3784,16 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
3419
3784
|
input: import("viem").Hex;
|
|
3420
3785
|
transactionIndex: number | null;
|
|
3421
3786
|
typeHex: import("viem").Hex | null;
|
|
3422
|
-
accessList?: undefined;
|
|
3423
|
-
|
|
3787
|
+
accessList?: undefined | undefined;
|
|
3788
|
+
authorizationList?: undefined | undefined;
|
|
3789
|
+
blobVersionedHashes?: undefined | undefined;
|
|
3424
3790
|
chainId?: number | undefined;
|
|
3425
|
-
yParity?: undefined;
|
|
3791
|
+
yParity?: undefined | undefined;
|
|
3426
3792
|
type: "legacy";
|
|
3427
3793
|
gasPrice: bigint;
|
|
3428
|
-
maxFeePerBlobGas?: undefined;
|
|
3429
|
-
maxFeePerGas?: undefined;
|
|
3430
|
-
maxPriorityFeePerGas?: undefined;
|
|
3794
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3795
|
+
maxFeePerGas?: undefined | undefined;
|
|
3796
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
3431
3797
|
l1BatchNumber: bigint | null;
|
|
3432
3798
|
l1BatchTxIndex: bigint | null;
|
|
3433
3799
|
} | {
|
|
@@ -3447,13 +3813,14 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
3447
3813
|
value: bigint;
|
|
3448
3814
|
yParity: number;
|
|
3449
3815
|
accessList: import("viem").AccessList;
|
|
3450
|
-
|
|
3816
|
+
authorizationList?: undefined | undefined;
|
|
3817
|
+
blobVersionedHashes?: undefined | undefined;
|
|
3451
3818
|
chainId: number;
|
|
3452
3819
|
type: "eip2930";
|
|
3453
3820
|
gasPrice: bigint;
|
|
3454
|
-
maxFeePerBlobGas?: undefined;
|
|
3455
|
-
maxFeePerGas?: undefined;
|
|
3456
|
-
maxPriorityFeePerGas?: undefined;
|
|
3821
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3822
|
+
maxFeePerGas?: undefined | undefined;
|
|
3823
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
3457
3824
|
l1BatchNumber: bigint | null;
|
|
3458
3825
|
l1BatchTxIndex: bigint | null;
|
|
3459
3826
|
} | {
|
|
@@ -3473,11 +3840,12 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
3473
3840
|
value: bigint;
|
|
3474
3841
|
yParity: number;
|
|
3475
3842
|
accessList: import("viem").AccessList;
|
|
3476
|
-
|
|
3843
|
+
authorizationList?: undefined | undefined;
|
|
3844
|
+
blobVersionedHashes?: undefined | undefined;
|
|
3477
3845
|
chainId: number;
|
|
3478
3846
|
type: "eip1559";
|
|
3479
|
-
gasPrice?: undefined;
|
|
3480
|
-
maxFeePerBlobGas?: undefined;
|
|
3847
|
+
gasPrice?: undefined | undefined;
|
|
3848
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3481
3849
|
maxFeePerGas: bigint;
|
|
3482
3850
|
maxPriorityFeePerGas: bigint;
|
|
3483
3851
|
l1BatchNumber: bigint | null;
|
|
@@ -3499,15 +3867,43 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
3499
3867
|
value: bigint;
|
|
3500
3868
|
yParity: number;
|
|
3501
3869
|
accessList: import("viem").AccessList;
|
|
3870
|
+
authorizationList?: undefined | undefined;
|
|
3502
3871
|
blobVersionedHashes: readonly import("viem").Hex[];
|
|
3503
3872
|
chainId: number;
|
|
3504
3873
|
type: "eip4844";
|
|
3505
|
-
gasPrice?: undefined;
|
|
3874
|
+
gasPrice?: undefined | undefined;
|
|
3506
3875
|
maxFeePerBlobGas: bigint;
|
|
3507
3876
|
maxFeePerGas: bigint;
|
|
3508
3877
|
maxPriorityFeePerGas: bigint;
|
|
3509
3878
|
l1BatchNumber: bigint | null;
|
|
3510
3879
|
l1BatchTxIndex: bigint | null;
|
|
3880
|
+
} | {
|
|
3881
|
+
blockHash: `0x${string}` | null;
|
|
3882
|
+
blockNumber: bigint | null;
|
|
3883
|
+
from: import("viem").Address;
|
|
3884
|
+
gas: bigint;
|
|
3885
|
+
hash: import("viem").Hash;
|
|
3886
|
+
input: import("viem").Hex;
|
|
3887
|
+
nonce: number;
|
|
3888
|
+
r: import("viem").Hex;
|
|
3889
|
+
s: import("viem").Hex;
|
|
3890
|
+
to: import("viem").Address | null;
|
|
3891
|
+
transactionIndex: number | null;
|
|
3892
|
+
typeHex: import("viem").Hex | null;
|
|
3893
|
+
v: bigint;
|
|
3894
|
+
value: bigint;
|
|
3895
|
+
yParity: number;
|
|
3896
|
+
accessList: import("viem").AccessList;
|
|
3897
|
+
authorizationList: import("viem").SignedAuthorizationList;
|
|
3898
|
+
blobVersionedHashes?: undefined | undefined;
|
|
3899
|
+
chainId: number;
|
|
3900
|
+
type: "eip7702";
|
|
3901
|
+
gasPrice?: undefined | undefined;
|
|
3902
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3903
|
+
maxFeePerGas: bigint;
|
|
3904
|
+
maxPriorityFeePerGas: bigint;
|
|
3905
|
+
l1BatchNumber: bigint | null;
|
|
3906
|
+
l1BatchTxIndex: bigint | null;
|
|
3511
3907
|
} | {
|
|
3512
3908
|
blockHash: `0x${string}` | null;
|
|
3513
3909
|
blockNumber: bigint | null;
|
|
@@ -3526,8 +3922,8 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
3526
3922
|
yParity: number;
|
|
3527
3923
|
l1BatchNumber: bigint | null;
|
|
3528
3924
|
l1BatchTxIndex: bigint | null;
|
|
3529
|
-
gasPrice?: undefined;
|
|
3530
|
-
maxFeePerBlobGas?: undefined;
|
|
3925
|
+
gasPrice?: undefined | undefined;
|
|
3926
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3531
3927
|
maxFeePerGas: bigint;
|
|
3532
3928
|
maxPriorityFeePerGas: bigint;
|
|
3533
3929
|
type: "priority";
|
|
@@ -3549,8 +3945,8 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
3549
3945
|
yParity: number;
|
|
3550
3946
|
l1BatchNumber: bigint | null;
|
|
3551
3947
|
l1BatchTxIndex: bigint | null;
|
|
3552
|
-
gasPrice?: undefined;
|
|
3553
|
-
maxFeePerBlobGas?: undefined;
|
|
3948
|
+
gasPrice?: undefined | undefined;
|
|
3949
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3554
3950
|
maxFeePerGas: bigint;
|
|
3555
3951
|
maxPriorityFeePerGas: bigint;
|
|
3556
3952
|
type: "eip712" | "priority";
|
|
@@ -3559,8 +3955,9 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
3559
3955
|
};
|
|
3560
3956
|
readonly transactionReceipt: {
|
|
3561
3957
|
exclude: [] | undefined;
|
|
3562
|
-
format: (args: import("viem/
|
|
3958
|
+
format: (args: import("viem/chains").ZkSyncRpcTransactionReceipt) => {
|
|
3563
3959
|
type: import("viem/chains").ZkSyncTransactionType;
|
|
3960
|
+
contractAddress: import("viem").Address | null | undefined;
|
|
3564
3961
|
to: import("viem").Address | null;
|
|
3565
3962
|
from: import("viem").Address;
|
|
3566
3963
|
blockHash: import("viem").Hash;
|
|
@@ -3570,12 +3967,11 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
3570
3967
|
logsBloom: import("viem").Hex;
|
|
3571
3968
|
blobGasUsed?: bigint | undefined;
|
|
3572
3969
|
gasUsed: bigint;
|
|
3573
|
-
contractAddress: import("viem").Address | null | undefined;
|
|
3574
3970
|
transactionHash: import("viem").Hash;
|
|
3575
3971
|
blobGasPrice?: bigint | undefined;
|
|
3576
3972
|
cumulativeGasUsed: bigint;
|
|
3577
3973
|
effectiveGasPrice: bigint;
|
|
3578
|
-
root?:
|
|
3974
|
+
root?: `0x${string}` | undefined;
|
|
3579
3975
|
l1BatchNumber: bigint | null;
|
|
3580
3976
|
l1BatchTxIndex: bigint | null;
|
|
3581
3977
|
logs: import("viem/chains").ZkSyncLog[];
|
|
@@ -3584,95 +3980,118 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
3584
3980
|
type: "transactionReceipt";
|
|
3585
3981
|
};
|
|
3586
3982
|
readonly transactionRequest: {
|
|
3587
|
-
exclude: ("
|
|
3983
|
+
exclude: ("paymaster" | "gasPerPubdata" | "factoryDeps" | "paymasterInput" | "customSignature")[] | undefined;
|
|
3588
3984
|
format: (args: import("viem/chains").ZkSyncTransactionRequest) => ({
|
|
3589
|
-
data?:
|
|
3590
|
-
from
|
|
3985
|
+
data?: `0x${string}` | undefined;
|
|
3986
|
+
from?: `0x${string}` | undefined;
|
|
3591
3987
|
gas?: `0x${string}` | undefined;
|
|
3592
3988
|
nonce?: `0x${string}` | undefined;
|
|
3593
|
-
to?:
|
|
3594
|
-
value?: `0x${string}` | undefined;
|
|
3595
|
-
accessList?: undefined;
|
|
3596
|
-
blobs?: undefined;
|
|
3989
|
+
to?: `0x${string}` | null | undefined;
|
|
3597
3990
|
type?: "0x0" | undefined;
|
|
3991
|
+
value?: `0x${string}` | undefined;
|
|
3598
3992
|
gasPrice?: `0x${string}` | undefined;
|
|
3599
|
-
maxFeePerBlobGas?: undefined;
|
|
3600
|
-
maxFeePerGas?: undefined;
|
|
3601
|
-
maxPriorityFeePerGas?: undefined;
|
|
3993
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3994
|
+
maxFeePerGas?: undefined | undefined;
|
|
3995
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
3996
|
+
blobs?: undefined;
|
|
3997
|
+
accessList?: undefined;
|
|
3602
3998
|
blobVersionedHashes?: undefined;
|
|
3603
3999
|
kzg?: undefined;
|
|
3604
4000
|
sidecars?: undefined;
|
|
3605
|
-
|
|
4001
|
+
authorizationList?: undefined;
|
|
4002
|
+
eip712Meta?: undefined | undefined;
|
|
3606
4003
|
} | {
|
|
3607
|
-
data?:
|
|
3608
|
-
from
|
|
4004
|
+
data?: `0x${string}` | undefined;
|
|
4005
|
+
from?: `0x${string}` | undefined;
|
|
3609
4006
|
gas?: `0x${string}` | undefined;
|
|
3610
4007
|
nonce?: `0x${string}` | undefined;
|
|
3611
|
-
to?:
|
|
4008
|
+
to?: `0x${string}` | null | undefined;
|
|
4009
|
+
type?: "0x1" | undefined;
|
|
3612
4010
|
value?: `0x${string}` | undefined;
|
|
4011
|
+
gasPrice?: `0x${string}` | undefined;
|
|
4012
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
4013
|
+
maxFeePerGas?: undefined | undefined;
|
|
4014
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
3613
4015
|
accessList?: import("viem").AccessList | undefined;
|
|
3614
4016
|
blobs?: undefined;
|
|
3615
|
-
type?: "0x1" | undefined;
|
|
3616
|
-
gasPrice?: `0x${string}` | undefined;
|
|
3617
|
-
maxFeePerBlobGas?: undefined;
|
|
3618
|
-
maxFeePerGas?: undefined;
|
|
3619
|
-
maxPriorityFeePerGas?: undefined;
|
|
3620
4017
|
blobVersionedHashes?: undefined;
|
|
3621
4018
|
kzg?: undefined;
|
|
3622
4019
|
sidecars?: undefined;
|
|
3623
|
-
|
|
4020
|
+
authorizationList?: undefined;
|
|
4021
|
+
eip712Meta?: undefined | undefined;
|
|
3624
4022
|
} | {
|
|
3625
|
-
data?:
|
|
3626
|
-
from
|
|
4023
|
+
data?: `0x${string}` | undefined;
|
|
4024
|
+
from?: `0x${string}` | undefined;
|
|
3627
4025
|
gas?: `0x${string}` | undefined;
|
|
3628
4026
|
nonce?: `0x${string}` | undefined;
|
|
3629
|
-
to?:
|
|
4027
|
+
to?: `0x${string}` | null | undefined;
|
|
4028
|
+
type?: "0x2" | undefined;
|
|
3630
4029
|
value?: `0x${string}` | undefined;
|
|
3631
|
-
gasPrice?: undefined;
|
|
3632
|
-
maxFeePerBlobGas?: undefined;
|
|
4030
|
+
gasPrice?: undefined | undefined;
|
|
4031
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3633
4032
|
maxFeePerGas?: `0x${string}` | undefined;
|
|
3634
4033
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
3635
4034
|
accessList?: import("viem").AccessList | undefined;
|
|
3636
4035
|
blobs?: undefined;
|
|
3637
|
-
type?: "0x2" | undefined;
|
|
3638
4036
|
blobVersionedHashes?: undefined;
|
|
3639
4037
|
kzg?: undefined;
|
|
3640
4038
|
sidecars?: undefined;
|
|
3641
|
-
|
|
4039
|
+
authorizationList?: undefined;
|
|
4040
|
+
eip712Meta?: undefined | undefined;
|
|
3642
4041
|
} | {
|
|
3643
|
-
|
|
3644
|
-
|
|
4042
|
+
type?: "0x3" | undefined;
|
|
4043
|
+
data?: `0x${string}` | undefined;
|
|
4044
|
+
from?: `0x${string}` | undefined;
|
|
3645
4045
|
gas?: `0x${string}` | undefined;
|
|
3646
4046
|
nonce?: `0x${string}` | undefined;
|
|
3647
4047
|
value?: `0x${string}` | undefined;
|
|
3648
4048
|
to: `0x${string}` | null;
|
|
4049
|
+
gasPrice?: undefined | undefined;
|
|
4050
|
+
maxFeePerGas?: `0x${string}` | undefined;
|
|
4051
|
+
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
4052
|
+
maxFeePerBlobGas: `0x${string}`;
|
|
3649
4053
|
accessList?: import("viem").AccessList | undefined;
|
|
3650
4054
|
blobs: readonly import("viem").Hex[] | readonly import("viem").ByteArray[];
|
|
3651
|
-
blobVersionedHashes?: readonly
|
|
4055
|
+
blobVersionedHashes?: readonly `0x${string}`[] | undefined;
|
|
3652
4056
|
kzg?: import("viem").Kzg | undefined;
|
|
3653
|
-
sidecars?: readonly import("viem").BlobSidecar
|
|
3654
|
-
|
|
3655
|
-
|
|
4057
|
+
sidecars?: readonly import("viem").BlobSidecar<`0x${string}`>[] | undefined;
|
|
4058
|
+
authorizationList?: undefined;
|
|
4059
|
+
eip712Meta?: undefined | undefined;
|
|
4060
|
+
} | {
|
|
4061
|
+
type?: "0x4" | undefined;
|
|
4062
|
+
gasPrice?: undefined | undefined;
|
|
4063
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3656
4064
|
maxFeePerGas?: `0x${string}` | undefined;
|
|
3657
4065
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
3658
|
-
|
|
3659
|
-
|
|
4066
|
+
to?: `0x${string}` | null | undefined;
|
|
4067
|
+
data?: `0x${string}` | undefined;
|
|
4068
|
+
from?: `0x${string}` | undefined;
|
|
4069
|
+
gas?: `0x${string}` | undefined;
|
|
4070
|
+
nonce?: `0x${string}` | undefined;
|
|
4071
|
+
value?: `0x${string}` | undefined;
|
|
4072
|
+
accessList?: import("viem").AccessList | undefined;
|
|
4073
|
+
authorizationList?: import("viem").RpcAuthorizationList | undefined;
|
|
4074
|
+
blobs?: undefined;
|
|
4075
|
+
blobVersionedHashes?: undefined;
|
|
4076
|
+
kzg?: undefined;
|
|
4077
|
+
sidecars?: undefined;
|
|
4078
|
+
eip712Meta?: undefined | undefined;
|
|
3660
4079
|
} | {
|
|
3661
|
-
data?:
|
|
3662
|
-
from
|
|
4080
|
+
data?: `0x${string}` | undefined;
|
|
4081
|
+
from?: `0x${string}` | undefined;
|
|
3663
4082
|
gas?: `0x${string}` | undefined;
|
|
3664
4083
|
nonce?: `0x${string}` | undefined;
|
|
3665
|
-
to?:
|
|
4084
|
+
to?: `0x${string}` | null | undefined;
|
|
4085
|
+
type: "0xff" | "0x71";
|
|
3666
4086
|
value?: `0x${string}` | undefined;
|
|
3667
|
-
gasPrice?: undefined;
|
|
3668
|
-
maxFeePerBlobGas?: undefined;
|
|
4087
|
+
gasPrice?: undefined | undefined;
|
|
4088
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3669
4089
|
maxFeePerGas?: `0x${string}` | undefined;
|
|
3670
4090
|
maxPriorityFeePerGas?: `0x${string}` | undefined;
|
|
3671
4091
|
eip712Meta: import("viem/chains").ZkSyncEip712Meta;
|
|
3672
|
-
type: "0x71" | "0xff";
|
|
3673
4092
|
}) & {
|
|
3674
|
-
gasPerPubdata: never;
|
|
3675
4093
|
paymaster: never;
|
|
4094
|
+
gasPerPubdata: never;
|
|
3676
4095
|
factoryDeps: never;
|
|
3677
4096
|
paymasterInput: never;
|
|
3678
4097
|
customSignature: never;
|
|
@@ -3698,6 +4117,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
3698
4117
|
readonly blockCreated: 304717;
|
|
3699
4118
|
};
|
|
3700
4119
|
};
|
|
4120
|
+
ensTlds?: readonly string[] | undefined;
|
|
3701
4121
|
id: 5000;
|
|
3702
4122
|
name: "Mantle";
|
|
3703
4123
|
nativeCurrency: {
|
|
@@ -3710,8 +4130,8 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
3710
4130
|
readonly http: readonly ["https://rpc.mantle.xyz"];
|
|
3711
4131
|
};
|
|
3712
4132
|
};
|
|
3713
|
-
sourceId?: number | undefined;
|
|
3714
|
-
testnet?: boolean | undefined;
|
|
4133
|
+
sourceId?: number | undefined | undefined;
|
|
4134
|
+
testnet?: boolean | undefined | undefined;
|
|
3715
4135
|
custom?: Record<string, unknown> | undefined;
|
|
3716
4136
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
3717
4137
|
formatters?: undefined;
|
|
@@ -3730,6 +4150,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
3730
4150
|
readonly blockCreated: 14;
|
|
3731
4151
|
};
|
|
3732
4152
|
};
|
|
4153
|
+
ensTlds?: readonly string[] | undefined;
|
|
3733
4154
|
id: 534352;
|
|
3734
4155
|
name: "Scroll";
|
|
3735
4156
|
nativeCurrency: {
|
|
@@ -3743,7 +4164,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
3743
4164
|
readonly webSocket: readonly ["wss://wss-rpc.scroll.io/ws"];
|
|
3744
4165
|
};
|
|
3745
4166
|
};
|
|
3746
|
-
sourceId?: number | undefined;
|
|
4167
|
+
sourceId?: number | undefined | undefined;
|
|
3747
4168
|
testnet: false;
|
|
3748
4169
|
custom?: Record<string, unknown> | undefined;
|
|
3749
4170
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
@@ -3770,6 +4191,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
3770
4191
|
readonly blockCreated: 6507670;
|
|
3771
4192
|
};
|
|
3772
4193
|
};
|
|
4194
|
+
ensTlds?: readonly string[] | undefined;
|
|
3773
4195
|
id: 5;
|
|
3774
4196
|
name: "Goerli";
|
|
3775
4197
|
nativeCurrency: {
|
|
@@ -3779,10 +4201,10 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
3779
4201
|
};
|
|
3780
4202
|
rpcUrls: {
|
|
3781
4203
|
readonly default: {
|
|
3782
|
-
readonly http: readonly ["https://rpc.
|
|
4204
|
+
readonly http: readonly ["https://5.rpc.thirdweb.com"];
|
|
3783
4205
|
};
|
|
3784
4206
|
};
|
|
3785
|
-
sourceId?: number | undefined;
|
|
4207
|
+
sourceId?: number | undefined | undefined;
|
|
3786
4208
|
testnet: true;
|
|
3787
4209
|
custom?: Record<string, unknown> | undefined;
|
|
3788
4210
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
@@ -3802,6 +4224,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
3802
4224
|
readonly blockCreated: 81930;
|
|
3803
4225
|
};
|
|
3804
4226
|
};
|
|
4227
|
+
ensTlds?: readonly string[] | undefined;
|
|
3805
4228
|
id: 421614;
|
|
3806
4229
|
name: "Arbitrum Sepolia";
|
|
3807
4230
|
nativeCurrency: {
|
|
@@ -3814,7 +4237,7 @@ export declare const FUNKIT_CONNECT_SUPPORTED_CHECKOUT_CHAINS_INFO_LIST: ({
|
|
|
3814
4237
|
readonly http: readonly ["https://sepolia-rollup.arbitrum.io/rpc"];
|
|
3815
4238
|
};
|
|
3816
4239
|
};
|
|
3817
|
-
sourceId?: number | undefined;
|
|
4240
|
+
sourceId?: number | undefined | undefined;
|
|
3818
4241
|
testnet: true;
|
|
3819
4242
|
custom?: Record<string, unknown> | undefined;
|
|
3820
4243
|
fees?: import("viem").ChainFees<undefined> | undefined;
|