@sign-global/tokentable-core 1.7.0 → 1.8.0
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/CHANGELOG.md +12 -0
- package/dist/index.d.mts +193 -148
- package/dist/index.d.ts +193 -148
- package/dist/index.js +11 -3
- package/dist/index.js.map +1 -1
- package/dist/index.mjs +14 -4
- package/dist/index.mjs.map +1 -1
- package/package.json +2 -2
- package/src/constants/chain-config.ts +12 -2
- package/src/constants/network.ts +2 -2
package/dist/index.d.mts
CHANGED
|
@@ -1,4 +1,3 @@
|
|
|
1
|
-
import * as viem_experimental from 'viem/experimental';
|
|
2
1
|
import * as viem_chains from 'viem/chains';
|
|
3
2
|
import * as viem from 'viem';
|
|
4
3
|
import { WalletClient, Chain, PublicClient, MulticallParameters } from 'viem';
|
|
@@ -31,12 +30,14 @@ declare const mevmDevNet: {
|
|
|
31
30
|
readonly url: "https://explorer.devnet.imola.movementlabs.xyz/";
|
|
32
31
|
};
|
|
33
32
|
};
|
|
33
|
+
blockTime?: number | undefined | undefined;
|
|
34
34
|
contracts: {
|
|
35
35
|
readonly multicall3: {
|
|
36
36
|
readonly address: "0xD67Eca381AAbd0c049554f5714E7d8C21864c560";
|
|
37
37
|
readonly blockCreated: 500;
|
|
38
38
|
};
|
|
39
39
|
};
|
|
40
|
+
ensTlds?: readonly string[] | undefined;
|
|
40
41
|
id: 30732;
|
|
41
42
|
name: "Movement M1 Devnet";
|
|
42
43
|
nativeCurrency: {
|
|
@@ -44,6 +45,7 @@ declare const mevmDevNet: {
|
|
|
44
45
|
readonly symbol: "MOVE";
|
|
45
46
|
readonly decimals: 18;
|
|
46
47
|
};
|
|
48
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
47
49
|
rpcUrls: {
|
|
48
50
|
readonly default: {
|
|
49
51
|
readonly http: readonly ["https://mevm.devnet.imola.movementlabs.xyz"];
|
|
@@ -163,9 +165,10 @@ declare const signBrBTestnet: {
|
|
|
163
165
|
blockExplorers: {
|
|
164
166
|
readonly default: {
|
|
165
167
|
readonly name: "Sign Brb Testnet Explorer";
|
|
166
|
-
readonly url: "
|
|
168
|
+
readonly url: "https://explorer-testnet.bk.sign.global/";
|
|
167
169
|
};
|
|
168
170
|
};
|
|
171
|
+
blockTime?: number | undefined | undefined;
|
|
169
172
|
contracts?: {
|
|
170
173
|
[x: string]: viem.ChainContract | {
|
|
171
174
|
[sourceId: number]: viem.ChainContract | undefined;
|
|
@@ -173,15 +176,17 @@ declare const signBrBTestnet: {
|
|
|
173
176
|
ensRegistry?: viem.ChainContract | undefined;
|
|
174
177
|
ensUniversalResolver?: viem.ChainContract | undefined;
|
|
175
178
|
multicall3?: viem.ChainContract | undefined;
|
|
176
|
-
|
|
179
|
+
erc6492Verifier?: viem.ChainContract | undefined;
|
|
177
180
|
} | undefined;
|
|
178
|
-
|
|
181
|
+
ensTlds?: readonly string[] | undefined;
|
|
182
|
+
id: 74460002;
|
|
179
183
|
name: "Sign Brb Testnet";
|
|
180
184
|
nativeCurrency: {
|
|
181
185
|
readonly decimals: 18;
|
|
182
186
|
readonly name: "BNB Token";
|
|
183
187
|
readonly symbol: "BNB";
|
|
184
188
|
};
|
|
189
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
185
190
|
rpcUrls: {
|
|
186
191
|
readonly default: {
|
|
187
192
|
readonly http: readonly ["https://brb-testnet-rpc-0.bk.sign.global/"];
|
|
@@ -354,10 +359,18 @@ declare const ChainConfig: {
|
|
|
354
359
|
contractAddress: string;
|
|
355
360
|
rpcUrl: "https://mevm.devnet.imola.movementlabs.xyz";
|
|
356
361
|
};
|
|
357
|
-
|
|
362
|
+
74460002: {
|
|
358
363
|
contractAddress: string;
|
|
359
364
|
rpcUrl: "https://brb-testnet-rpc-0.bk.sign.global/";
|
|
360
365
|
};
|
|
366
|
+
146: {
|
|
367
|
+
contractAddress: string;
|
|
368
|
+
rpcUrl: "https://rpc.soniclabs.com";
|
|
369
|
+
};
|
|
370
|
+
196: {
|
|
371
|
+
contractAddress: string;
|
|
372
|
+
rpcUrl: string;
|
|
373
|
+
};
|
|
361
374
|
"-3": {
|
|
362
375
|
name: string;
|
|
363
376
|
contractAddress: string;
|
|
@@ -384,12 +397,14 @@ declare const SupportedChains: ({
|
|
|
384
397
|
readonly url: "https://explorer.devnet.imola.movementlabs.xyz/";
|
|
385
398
|
};
|
|
386
399
|
};
|
|
400
|
+
blockTime?: number | undefined | undefined;
|
|
387
401
|
contracts: {
|
|
388
402
|
readonly multicall3: {
|
|
389
403
|
readonly address: "0xD67Eca381AAbd0c049554f5714E7d8C21864c560";
|
|
390
404
|
readonly blockCreated: 500;
|
|
391
405
|
};
|
|
392
406
|
};
|
|
407
|
+
ensTlds?: readonly string[] | undefined;
|
|
393
408
|
id: 30732;
|
|
394
409
|
name: "Movement M1 Devnet";
|
|
395
410
|
nativeCurrency: {
|
|
@@ -397,6 +412,7 @@ declare const SupportedChains: ({
|
|
|
397
412
|
readonly symbol: "MOVE";
|
|
398
413
|
readonly decimals: 18;
|
|
399
414
|
};
|
|
415
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
400
416
|
rpcUrls: {
|
|
401
417
|
readonly default: {
|
|
402
418
|
readonly http: readonly ["https://mevm.devnet.imola.movementlabs.xyz"];
|
|
@@ -439,9 +455,10 @@ declare const SupportedChains: ({
|
|
|
439
455
|
blockExplorers: {
|
|
440
456
|
readonly default: {
|
|
441
457
|
readonly name: "Sign Brb Testnet Explorer";
|
|
442
|
-
readonly url: "
|
|
458
|
+
readonly url: "https://explorer-testnet.bk.sign.global/";
|
|
443
459
|
};
|
|
444
460
|
};
|
|
461
|
+
blockTime?: number | undefined | undefined;
|
|
445
462
|
contracts?: {
|
|
446
463
|
[x: string]: viem.ChainContract | {
|
|
447
464
|
[sourceId: number]: viem.ChainContract | undefined;
|
|
@@ -449,15 +466,17 @@ declare const SupportedChains: ({
|
|
|
449
466
|
ensRegistry?: viem.ChainContract | undefined;
|
|
450
467
|
ensUniversalResolver?: viem.ChainContract | undefined;
|
|
451
468
|
multicall3?: viem.ChainContract | undefined;
|
|
452
|
-
|
|
469
|
+
erc6492Verifier?: viem.ChainContract | undefined;
|
|
453
470
|
} | undefined;
|
|
454
|
-
|
|
471
|
+
ensTlds?: readonly string[] | undefined;
|
|
472
|
+
id: 74460002;
|
|
455
473
|
name: "Sign Brb Testnet";
|
|
456
474
|
nativeCurrency: {
|
|
457
475
|
readonly decimals: 18;
|
|
458
476
|
readonly name: "BNB Token";
|
|
459
477
|
readonly symbol: "BNB";
|
|
460
478
|
};
|
|
479
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
461
480
|
rpcUrls: {
|
|
462
481
|
readonly default: {
|
|
463
482
|
readonly http: readonly ["https://brb-testnet-rpc-0.bk.sign.global/"];
|
|
@@ -481,19 +500,18 @@ declare const SupportedChains: ({
|
|
|
481
500
|
readonly apiUrl: "https://api.etherscan.io/api";
|
|
482
501
|
};
|
|
483
502
|
};
|
|
503
|
+
blockTime: 12000;
|
|
484
504
|
contracts: {
|
|
485
|
-
readonly ensRegistry: {
|
|
486
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
487
|
-
};
|
|
488
505
|
readonly ensUniversalResolver: {
|
|
489
|
-
readonly address: "
|
|
490
|
-
readonly blockCreated:
|
|
506
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
507
|
+
readonly blockCreated: 23085558;
|
|
491
508
|
};
|
|
492
509
|
readonly multicall3: {
|
|
493
510
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
494
511
|
readonly blockCreated: 14353601;
|
|
495
512
|
};
|
|
496
513
|
};
|
|
514
|
+
ensTlds?: readonly string[] | undefined;
|
|
497
515
|
id: 1;
|
|
498
516
|
name: "Ethereum";
|
|
499
517
|
nativeCurrency: {
|
|
@@ -501,13 +519,14 @@ declare const SupportedChains: ({
|
|
|
501
519
|
readonly symbol: "ETH";
|
|
502
520
|
readonly decimals: 18;
|
|
503
521
|
};
|
|
522
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
504
523
|
rpcUrls: {
|
|
505
524
|
readonly default: {
|
|
506
|
-
readonly http: readonly ["https://
|
|
525
|
+
readonly http: readonly ["https://eth.merkle.io"];
|
|
507
526
|
};
|
|
508
527
|
};
|
|
509
|
-
sourceId?: number | undefined;
|
|
510
|
-
testnet?: boolean | undefined;
|
|
528
|
+
sourceId?: number | undefined | undefined;
|
|
529
|
+
testnet?: boolean | undefined | undefined;
|
|
511
530
|
custom?: Record<string, unknown> | undefined;
|
|
512
531
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
513
532
|
formatters?: undefined;
|
|
@@ -520,12 +539,14 @@ declare const SupportedChains: ({
|
|
|
520
539
|
readonly apiUrl: "https://api.bscscan.com/api";
|
|
521
540
|
};
|
|
522
541
|
};
|
|
542
|
+
blockTime: 750;
|
|
523
543
|
contracts: {
|
|
524
544
|
readonly multicall3: {
|
|
525
545
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
526
546
|
readonly blockCreated: 15921452;
|
|
527
547
|
};
|
|
528
548
|
};
|
|
549
|
+
ensTlds?: readonly string[] | undefined;
|
|
529
550
|
id: 56;
|
|
530
551
|
name: "BNB Smart Chain";
|
|
531
552
|
nativeCurrency: {
|
|
@@ -533,13 +554,14 @@ declare const SupportedChains: ({
|
|
|
533
554
|
readonly name: "BNB";
|
|
534
555
|
readonly symbol: "BNB";
|
|
535
556
|
};
|
|
557
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
536
558
|
rpcUrls: {
|
|
537
559
|
readonly default: {
|
|
538
|
-
readonly http: readonly ["https://rpc.
|
|
560
|
+
readonly http: readonly ["https://56.rpc.thirdweb.com"];
|
|
539
561
|
};
|
|
540
562
|
};
|
|
541
|
-
sourceId?: number | undefined;
|
|
542
|
-
testnet?: boolean | undefined;
|
|
563
|
+
sourceId?: number | undefined | undefined;
|
|
564
|
+
testnet?: boolean | undefined | undefined;
|
|
543
565
|
custom?: Record<string, unknown> | undefined;
|
|
544
566
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
545
567
|
formatters?: undefined;
|
|
@@ -552,6 +574,7 @@ declare const SupportedChains: ({
|
|
|
552
574
|
readonly apiUrl: "https://api.basescan.org/api";
|
|
553
575
|
};
|
|
554
576
|
};
|
|
577
|
+
blockTime: 2000;
|
|
555
578
|
contracts: {
|
|
556
579
|
readonly disputeGameFactory: {
|
|
557
580
|
readonly 1: {
|
|
@@ -598,6 +621,7 @@ declare const SupportedChains: ({
|
|
|
598
621
|
readonly address: "0x4200000000000000000000000000000000000016";
|
|
599
622
|
};
|
|
600
623
|
};
|
|
624
|
+
ensTlds?: readonly string[] | undefined;
|
|
601
625
|
id: 8453;
|
|
602
626
|
name: "Base";
|
|
603
627
|
nativeCurrency: {
|
|
@@ -605,19 +629,20 @@ declare const SupportedChains: ({
|
|
|
605
629
|
readonly symbol: "ETH";
|
|
606
630
|
readonly decimals: 18;
|
|
607
631
|
};
|
|
632
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
608
633
|
rpcUrls: {
|
|
609
634
|
readonly default: {
|
|
610
635
|
readonly http: readonly ["https://mainnet.base.org"];
|
|
611
636
|
};
|
|
612
637
|
};
|
|
613
638
|
sourceId: 1;
|
|
614
|
-
testnet?: boolean | undefined;
|
|
639
|
+
testnet?: boolean | undefined | undefined;
|
|
615
640
|
custom?: Record<string, unknown> | undefined;
|
|
616
641
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
617
642
|
formatters: {
|
|
618
643
|
readonly block: {
|
|
619
644
|
exclude: [] | undefined;
|
|
620
|
-
format: (args: viem_chains.OpStackRpcBlock) => {
|
|
645
|
+
format: (args: viem_chains.OpStackRpcBlock, action?: string | undefined) => {
|
|
621
646
|
baseFeePerGas: bigint | null;
|
|
622
647
|
blobGasUsed: bigint;
|
|
623
648
|
difficulty: bigint;
|
|
@@ -631,7 +656,7 @@ declare const SupportedChains: ({
|
|
|
631
656
|
mixHash: viem.Hash;
|
|
632
657
|
nonce: `0x${string}` | null;
|
|
633
658
|
number: bigint | null;
|
|
634
|
-
parentBeaconBlockRoot?:
|
|
659
|
+
parentBeaconBlockRoot?: `0x${string}` | undefined;
|
|
635
660
|
parentHash: viem.Hash;
|
|
636
661
|
receiptsRoot: viem.Hex;
|
|
637
662
|
sealFields: viem.Hex[];
|
|
@@ -643,14 +668,14 @@ declare const SupportedChains: ({
|
|
|
643
668
|
transactions: `0x${string}`[] | viem_chains.OpStackTransaction<boolean>[];
|
|
644
669
|
transactionsRoot: viem.Hash;
|
|
645
670
|
uncles: viem.Hash[];
|
|
646
|
-
withdrawals?: viem.Withdrawal[] | undefined;
|
|
647
|
-
withdrawalsRoot?:
|
|
671
|
+
withdrawals?: viem.Withdrawal[] | undefined | undefined;
|
|
672
|
+
withdrawalsRoot?: `0x${string}` | undefined;
|
|
648
673
|
} & {};
|
|
649
674
|
type: "block";
|
|
650
675
|
};
|
|
651
676
|
readonly transaction: {
|
|
652
677
|
exclude: [] | undefined;
|
|
653
|
-
format: (args: viem_chains.OpStackRpcTransaction) => ({
|
|
678
|
+
format: (args: viem_chains.OpStackRpcTransaction, action?: string | undefined) => ({
|
|
654
679
|
blockHash: `0x${string}` | null;
|
|
655
680
|
blockNumber: bigint | null;
|
|
656
681
|
from: viem.Address;
|
|
@@ -666,42 +691,42 @@ declare const SupportedChains: ({
|
|
|
666
691
|
v: bigint;
|
|
667
692
|
value: bigint;
|
|
668
693
|
yParity: number;
|
|
669
|
-
gasPrice?: undefined;
|
|
670
|
-
maxFeePerBlobGas?: undefined;
|
|
694
|
+
gasPrice?: undefined | undefined;
|
|
695
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
671
696
|
maxFeePerGas: bigint;
|
|
672
697
|
maxPriorityFeePerGas: bigint;
|
|
673
698
|
isSystemTx?: boolean;
|
|
674
|
-
mint?: bigint | undefined;
|
|
699
|
+
mint?: bigint | undefined | undefined;
|
|
675
700
|
sourceHash: viem.Hex;
|
|
676
701
|
type: "deposit";
|
|
677
702
|
} | {
|
|
678
703
|
r: viem.Hex;
|
|
679
704
|
s: viem.Hex;
|
|
680
705
|
v: bigint;
|
|
706
|
+
value: bigint;
|
|
707
|
+
gas: bigint;
|
|
681
708
|
to: viem.Address | null;
|
|
682
709
|
from: viem.Address;
|
|
683
|
-
gas: bigint;
|
|
684
710
|
nonce: number;
|
|
685
|
-
value: bigint;
|
|
686
711
|
blockHash: `0x${string}` | null;
|
|
687
712
|
blockNumber: bigint | null;
|
|
713
|
+
transactionIndex: number | null;
|
|
688
714
|
hash: viem.Hash;
|
|
689
715
|
input: viem.Hex;
|
|
690
|
-
transactionIndex: number | null;
|
|
691
716
|
typeHex: viem.Hex | null;
|
|
692
|
-
accessList?: undefined;
|
|
693
|
-
authorizationList?: undefined;
|
|
694
|
-
blobVersionedHashes?: undefined;
|
|
717
|
+
accessList?: undefined | undefined;
|
|
718
|
+
authorizationList?: undefined | undefined;
|
|
719
|
+
blobVersionedHashes?: undefined | undefined;
|
|
695
720
|
chainId?: number | undefined;
|
|
696
|
-
yParity?: undefined;
|
|
721
|
+
yParity?: undefined | undefined;
|
|
697
722
|
type: "legacy";
|
|
698
723
|
gasPrice: bigint;
|
|
699
|
-
maxFeePerBlobGas?: undefined;
|
|
700
|
-
maxFeePerGas?: undefined;
|
|
701
|
-
maxPriorityFeePerGas?: undefined;
|
|
702
|
-
isSystemTx?: undefined;
|
|
703
|
-
mint?: undefined;
|
|
704
|
-
sourceHash?: undefined;
|
|
724
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
725
|
+
maxFeePerGas?: undefined | undefined;
|
|
726
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
727
|
+
isSystemTx?: undefined | undefined;
|
|
728
|
+
mint?: undefined | undefined;
|
|
729
|
+
sourceHash?: undefined | undefined;
|
|
705
730
|
} | {
|
|
706
731
|
blockHash: `0x${string}` | null;
|
|
707
732
|
blockNumber: bigint | null;
|
|
@@ -719,17 +744,17 @@ declare const SupportedChains: ({
|
|
|
719
744
|
value: bigint;
|
|
720
745
|
yParity: number;
|
|
721
746
|
accessList: viem.AccessList;
|
|
722
|
-
authorizationList?: undefined;
|
|
723
|
-
blobVersionedHashes?: undefined;
|
|
747
|
+
authorizationList?: undefined | undefined;
|
|
748
|
+
blobVersionedHashes?: undefined | undefined;
|
|
724
749
|
chainId: number;
|
|
725
750
|
type: "eip2930";
|
|
726
751
|
gasPrice: bigint;
|
|
727
|
-
maxFeePerBlobGas?: undefined;
|
|
728
|
-
maxFeePerGas?: undefined;
|
|
729
|
-
maxPriorityFeePerGas?: undefined;
|
|
730
|
-
isSystemTx?: undefined;
|
|
731
|
-
mint?: undefined;
|
|
732
|
-
sourceHash?: undefined;
|
|
752
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
753
|
+
maxFeePerGas?: undefined | undefined;
|
|
754
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
755
|
+
isSystemTx?: undefined | undefined;
|
|
756
|
+
mint?: undefined | undefined;
|
|
757
|
+
sourceHash?: undefined | undefined;
|
|
733
758
|
} | {
|
|
734
759
|
blockHash: `0x${string}` | null;
|
|
735
760
|
blockNumber: bigint | null;
|
|
@@ -747,17 +772,17 @@ declare const SupportedChains: ({
|
|
|
747
772
|
value: bigint;
|
|
748
773
|
yParity: number;
|
|
749
774
|
accessList: viem.AccessList;
|
|
750
|
-
authorizationList?: undefined;
|
|
751
|
-
blobVersionedHashes?: undefined;
|
|
775
|
+
authorizationList?: undefined | undefined;
|
|
776
|
+
blobVersionedHashes?: undefined | undefined;
|
|
752
777
|
chainId: number;
|
|
753
778
|
type: "eip1559";
|
|
754
|
-
gasPrice?: undefined;
|
|
755
|
-
maxFeePerBlobGas?: undefined;
|
|
779
|
+
gasPrice?: undefined | undefined;
|
|
780
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
756
781
|
maxFeePerGas: bigint;
|
|
757
782
|
maxPriorityFeePerGas: bigint;
|
|
758
|
-
isSystemTx?: undefined;
|
|
759
|
-
mint?: undefined;
|
|
760
|
-
sourceHash?: undefined;
|
|
783
|
+
isSystemTx?: undefined | undefined;
|
|
784
|
+
mint?: undefined | undefined;
|
|
785
|
+
sourceHash?: undefined | undefined;
|
|
761
786
|
} | {
|
|
762
787
|
blockHash: `0x${string}` | null;
|
|
763
788
|
blockNumber: bigint | null;
|
|
@@ -775,17 +800,17 @@ declare const SupportedChains: ({
|
|
|
775
800
|
value: bigint;
|
|
776
801
|
yParity: number;
|
|
777
802
|
accessList: viem.AccessList;
|
|
778
|
-
authorizationList?: undefined;
|
|
803
|
+
authorizationList?: undefined | undefined;
|
|
779
804
|
blobVersionedHashes: readonly viem.Hex[];
|
|
780
805
|
chainId: number;
|
|
781
806
|
type: "eip4844";
|
|
782
|
-
gasPrice?: undefined;
|
|
807
|
+
gasPrice?: undefined | undefined;
|
|
783
808
|
maxFeePerBlobGas: bigint;
|
|
784
809
|
maxFeePerGas: bigint;
|
|
785
810
|
maxPriorityFeePerGas: bigint;
|
|
786
|
-
isSystemTx?: undefined;
|
|
787
|
-
mint?: undefined;
|
|
788
|
-
sourceHash?: undefined;
|
|
811
|
+
isSystemTx?: undefined | undefined;
|
|
812
|
+
mint?: undefined | undefined;
|
|
813
|
+
sourceHash?: undefined | undefined;
|
|
789
814
|
} | {
|
|
790
815
|
blockHash: `0x${string}` | null;
|
|
791
816
|
blockNumber: bigint | null;
|
|
@@ -803,23 +828,23 @@ declare const SupportedChains: ({
|
|
|
803
828
|
value: bigint;
|
|
804
829
|
yParity: number;
|
|
805
830
|
accessList: viem.AccessList;
|
|
806
|
-
authorizationList:
|
|
807
|
-
blobVersionedHashes?: undefined;
|
|
831
|
+
authorizationList: viem.SignedAuthorizationList;
|
|
832
|
+
blobVersionedHashes?: undefined | undefined;
|
|
808
833
|
chainId: number;
|
|
809
834
|
type: "eip7702";
|
|
810
|
-
gasPrice?: undefined;
|
|
811
|
-
maxFeePerBlobGas?: undefined;
|
|
835
|
+
gasPrice?: undefined | undefined;
|
|
836
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
812
837
|
maxFeePerGas: bigint;
|
|
813
838
|
maxPriorityFeePerGas: bigint;
|
|
814
|
-
isSystemTx?: undefined;
|
|
815
|
-
mint?: undefined;
|
|
816
|
-
sourceHash?: undefined;
|
|
839
|
+
isSystemTx?: undefined | undefined;
|
|
840
|
+
mint?: undefined | undefined;
|
|
841
|
+
sourceHash?: undefined | undefined;
|
|
817
842
|
}) & {};
|
|
818
843
|
type: "transaction";
|
|
819
844
|
};
|
|
820
845
|
readonly transactionReceipt: {
|
|
821
846
|
exclude: [] | undefined;
|
|
822
|
-
format: (args: viem_chains.OpStackRpcTransactionReceipt) => {
|
|
847
|
+
format: (args: viem_chains.OpStackRpcTransactionReceipt, action?: string | undefined) => {
|
|
823
848
|
blobGasPrice?: bigint | undefined;
|
|
824
849
|
blobGasUsed?: bigint | undefined;
|
|
825
850
|
blockHash: viem.Hash;
|
|
@@ -831,7 +856,7 @@ declare const SupportedChains: ({
|
|
|
831
856
|
gasUsed: bigint;
|
|
832
857
|
logs: viem.Log<bigint, number, false>[];
|
|
833
858
|
logsBloom: viem.Hex;
|
|
834
|
-
root?:
|
|
859
|
+
root?: `0x${string}` | undefined;
|
|
835
860
|
status: "success" | "reverted";
|
|
836
861
|
to: viem.Address | null;
|
|
837
862
|
transactionHash: viem.Hash;
|
|
@@ -856,12 +881,14 @@ declare const SupportedChains: ({
|
|
|
856
881
|
readonly apiUrl: "https://cyberscan.co/api";
|
|
857
882
|
};
|
|
858
883
|
};
|
|
884
|
+
blockTime?: number | undefined | undefined;
|
|
859
885
|
contracts: {
|
|
860
886
|
readonly multicall3: {
|
|
861
887
|
readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
|
|
862
888
|
readonly blockCreated: 0;
|
|
863
889
|
};
|
|
864
890
|
};
|
|
891
|
+
ensTlds?: readonly string[] | undefined;
|
|
865
892
|
id: 7560;
|
|
866
893
|
name: "Cyber";
|
|
867
894
|
nativeCurrency: {
|
|
@@ -869,13 +896,14 @@ declare const SupportedChains: ({
|
|
|
869
896
|
readonly symbol: "ETH";
|
|
870
897
|
readonly decimals: 18;
|
|
871
898
|
};
|
|
899
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
872
900
|
rpcUrls: {
|
|
873
901
|
readonly default: {
|
|
874
902
|
readonly http: readonly ["https://cyber.alt.technology"];
|
|
875
903
|
};
|
|
876
904
|
};
|
|
877
|
-
sourceId?: number | undefined;
|
|
878
|
-
testnet?: boolean | undefined;
|
|
905
|
+
sourceId?: number | undefined | undefined;
|
|
906
|
+
testnet?: boolean | undefined | undefined;
|
|
879
907
|
custom?: Record<string, unknown> | undefined;
|
|
880
908
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
881
909
|
formatters?: undefined;
|
|
@@ -888,19 +916,18 @@ declare const SupportedChains: ({
|
|
|
888
916
|
readonly apiUrl: "https://api-sepolia.etherscan.io/api";
|
|
889
917
|
};
|
|
890
918
|
};
|
|
919
|
+
blockTime?: number | undefined | undefined;
|
|
891
920
|
contracts: {
|
|
892
921
|
readonly multicall3: {
|
|
893
922
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
894
923
|
readonly blockCreated: 751532;
|
|
895
924
|
};
|
|
896
|
-
readonly ensRegistry: {
|
|
897
|
-
readonly address: "0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e";
|
|
898
|
-
};
|
|
899
925
|
readonly ensUniversalResolver: {
|
|
900
|
-
readonly address: "
|
|
901
|
-
readonly blockCreated:
|
|
926
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
927
|
+
readonly blockCreated: 8928790;
|
|
902
928
|
};
|
|
903
929
|
};
|
|
930
|
+
ensTlds?: readonly string[] | undefined;
|
|
904
931
|
id: 11155111;
|
|
905
932
|
name: "Sepolia";
|
|
906
933
|
nativeCurrency: {
|
|
@@ -908,12 +935,13 @@ declare const SupportedChains: ({
|
|
|
908
935
|
readonly symbol: "ETH";
|
|
909
936
|
readonly decimals: 18;
|
|
910
937
|
};
|
|
938
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
911
939
|
rpcUrls: {
|
|
912
940
|
readonly default: {
|
|
913
941
|
readonly http: readonly ["https://sepolia.drpc.org"];
|
|
914
942
|
};
|
|
915
943
|
};
|
|
916
|
-
sourceId?: number | undefined;
|
|
944
|
+
sourceId?: number | undefined | undefined;
|
|
917
945
|
testnet: true;
|
|
918
946
|
custom?: Record<string, unknown> | undefined;
|
|
919
947
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
@@ -927,6 +955,7 @@ declare const SupportedChains: ({
|
|
|
927
955
|
readonly apiUrl: "https://api-sepolia.basescan.org/api";
|
|
928
956
|
};
|
|
929
957
|
};
|
|
958
|
+
blockTime: 2000;
|
|
930
959
|
contracts: {
|
|
931
960
|
readonly disputeGameFactory: {
|
|
932
961
|
readonly 11155111: {
|
|
@@ -973,6 +1002,7 @@ declare const SupportedChains: ({
|
|
|
973
1002
|
readonly address: "0x4200000000000000000000000000000000000016";
|
|
974
1003
|
};
|
|
975
1004
|
};
|
|
1005
|
+
ensTlds?: readonly string[] | undefined;
|
|
976
1006
|
id: 84532;
|
|
977
1007
|
name: "Base Sepolia";
|
|
978
1008
|
nativeCurrency: {
|
|
@@ -980,6 +1010,7 @@ declare const SupportedChains: ({
|
|
|
980
1010
|
readonly symbol: "ETH";
|
|
981
1011
|
readonly decimals: 18;
|
|
982
1012
|
};
|
|
1013
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
983
1014
|
rpcUrls: {
|
|
984
1015
|
readonly default: {
|
|
985
1016
|
readonly http: readonly ["https://sepolia.base.org"];
|
|
@@ -992,7 +1023,7 @@ declare const SupportedChains: ({
|
|
|
992
1023
|
formatters: {
|
|
993
1024
|
readonly block: {
|
|
994
1025
|
exclude: [] | undefined;
|
|
995
|
-
format: (args: viem_chains.OpStackRpcBlock) => {
|
|
1026
|
+
format: (args: viem_chains.OpStackRpcBlock, action?: string | undefined) => {
|
|
996
1027
|
baseFeePerGas: bigint | null;
|
|
997
1028
|
blobGasUsed: bigint;
|
|
998
1029
|
difficulty: bigint;
|
|
@@ -1006,7 +1037,7 @@ declare const SupportedChains: ({
|
|
|
1006
1037
|
mixHash: viem.Hash;
|
|
1007
1038
|
nonce: `0x${string}` | null;
|
|
1008
1039
|
number: bigint | null;
|
|
1009
|
-
parentBeaconBlockRoot?:
|
|
1040
|
+
parentBeaconBlockRoot?: `0x${string}` | undefined;
|
|
1010
1041
|
parentHash: viem.Hash;
|
|
1011
1042
|
receiptsRoot: viem.Hex;
|
|
1012
1043
|
sealFields: viem.Hex[];
|
|
@@ -1018,14 +1049,14 @@ declare const SupportedChains: ({
|
|
|
1018
1049
|
transactions: `0x${string}`[] | viem_chains.OpStackTransaction<boolean>[];
|
|
1019
1050
|
transactionsRoot: viem.Hash;
|
|
1020
1051
|
uncles: viem.Hash[];
|
|
1021
|
-
withdrawals?: viem.Withdrawal[] | undefined;
|
|
1022
|
-
withdrawalsRoot?:
|
|
1052
|
+
withdrawals?: viem.Withdrawal[] | undefined | undefined;
|
|
1053
|
+
withdrawalsRoot?: `0x${string}` | undefined;
|
|
1023
1054
|
} & {};
|
|
1024
1055
|
type: "block";
|
|
1025
1056
|
};
|
|
1026
1057
|
readonly transaction: {
|
|
1027
1058
|
exclude: [] | undefined;
|
|
1028
|
-
format: (args: viem_chains.OpStackRpcTransaction) => ({
|
|
1059
|
+
format: (args: viem_chains.OpStackRpcTransaction, action?: string | undefined) => ({
|
|
1029
1060
|
blockHash: `0x${string}` | null;
|
|
1030
1061
|
blockNumber: bigint | null;
|
|
1031
1062
|
from: viem.Address;
|
|
@@ -1041,42 +1072,42 @@ declare const SupportedChains: ({
|
|
|
1041
1072
|
v: bigint;
|
|
1042
1073
|
value: bigint;
|
|
1043
1074
|
yParity: number;
|
|
1044
|
-
gasPrice?: undefined;
|
|
1045
|
-
maxFeePerBlobGas?: undefined;
|
|
1075
|
+
gasPrice?: undefined | undefined;
|
|
1076
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
1046
1077
|
maxFeePerGas: bigint;
|
|
1047
1078
|
maxPriorityFeePerGas: bigint;
|
|
1048
1079
|
isSystemTx?: boolean;
|
|
1049
|
-
mint?: bigint | undefined;
|
|
1080
|
+
mint?: bigint | undefined | undefined;
|
|
1050
1081
|
sourceHash: viem.Hex;
|
|
1051
1082
|
type: "deposit";
|
|
1052
1083
|
} | {
|
|
1053
1084
|
r: viem.Hex;
|
|
1054
1085
|
s: viem.Hex;
|
|
1055
1086
|
v: bigint;
|
|
1087
|
+
value: bigint;
|
|
1088
|
+
gas: bigint;
|
|
1056
1089
|
to: viem.Address | null;
|
|
1057
1090
|
from: viem.Address;
|
|
1058
|
-
gas: bigint;
|
|
1059
1091
|
nonce: number;
|
|
1060
|
-
value: bigint;
|
|
1061
1092
|
blockHash: `0x${string}` | null;
|
|
1062
1093
|
blockNumber: bigint | null;
|
|
1094
|
+
transactionIndex: number | null;
|
|
1063
1095
|
hash: viem.Hash;
|
|
1064
1096
|
input: viem.Hex;
|
|
1065
|
-
transactionIndex: number | null;
|
|
1066
1097
|
typeHex: viem.Hex | null;
|
|
1067
|
-
accessList?: undefined;
|
|
1068
|
-
authorizationList?: undefined;
|
|
1069
|
-
blobVersionedHashes?: undefined;
|
|
1098
|
+
accessList?: undefined | undefined;
|
|
1099
|
+
authorizationList?: undefined | undefined;
|
|
1100
|
+
blobVersionedHashes?: undefined | undefined;
|
|
1070
1101
|
chainId?: number | undefined;
|
|
1071
|
-
yParity?: undefined;
|
|
1102
|
+
yParity?: undefined | undefined;
|
|
1072
1103
|
type: "legacy";
|
|
1073
1104
|
gasPrice: bigint;
|
|
1074
|
-
maxFeePerBlobGas?: undefined;
|
|
1075
|
-
maxFeePerGas?: undefined;
|
|
1076
|
-
maxPriorityFeePerGas?: undefined;
|
|
1077
|
-
isSystemTx?: undefined;
|
|
1078
|
-
mint?: undefined;
|
|
1079
|
-
sourceHash?: undefined;
|
|
1105
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
1106
|
+
maxFeePerGas?: undefined | undefined;
|
|
1107
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
1108
|
+
isSystemTx?: undefined | undefined;
|
|
1109
|
+
mint?: undefined | undefined;
|
|
1110
|
+
sourceHash?: undefined | undefined;
|
|
1080
1111
|
} | {
|
|
1081
1112
|
blockHash: `0x${string}` | null;
|
|
1082
1113
|
blockNumber: bigint | null;
|
|
@@ -1094,17 +1125,17 @@ declare const SupportedChains: ({
|
|
|
1094
1125
|
value: bigint;
|
|
1095
1126
|
yParity: number;
|
|
1096
1127
|
accessList: viem.AccessList;
|
|
1097
|
-
authorizationList?: undefined;
|
|
1098
|
-
blobVersionedHashes?: undefined;
|
|
1128
|
+
authorizationList?: undefined | undefined;
|
|
1129
|
+
blobVersionedHashes?: undefined | undefined;
|
|
1099
1130
|
chainId: number;
|
|
1100
1131
|
type: "eip2930";
|
|
1101
1132
|
gasPrice: bigint;
|
|
1102
|
-
maxFeePerBlobGas?: undefined;
|
|
1103
|
-
maxFeePerGas?: undefined;
|
|
1104
|
-
maxPriorityFeePerGas?: undefined;
|
|
1105
|
-
isSystemTx?: undefined;
|
|
1106
|
-
mint?: undefined;
|
|
1107
|
-
sourceHash?: undefined;
|
|
1133
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
1134
|
+
maxFeePerGas?: undefined | undefined;
|
|
1135
|
+
maxPriorityFeePerGas?: undefined | undefined;
|
|
1136
|
+
isSystemTx?: undefined | undefined;
|
|
1137
|
+
mint?: undefined | undefined;
|
|
1138
|
+
sourceHash?: undefined | undefined;
|
|
1108
1139
|
} | {
|
|
1109
1140
|
blockHash: `0x${string}` | null;
|
|
1110
1141
|
blockNumber: bigint | null;
|
|
@@ -1122,17 +1153,17 @@ declare const SupportedChains: ({
|
|
|
1122
1153
|
value: bigint;
|
|
1123
1154
|
yParity: number;
|
|
1124
1155
|
accessList: viem.AccessList;
|
|
1125
|
-
authorizationList?: undefined;
|
|
1126
|
-
blobVersionedHashes?: undefined;
|
|
1156
|
+
authorizationList?: undefined | undefined;
|
|
1157
|
+
blobVersionedHashes?: undefined | undefined;
|
|
1127
1158
|
chainId: number;
|
|
1128
1159
|
type: "eip1559";
|
|
1129
|
-
gasPrice?: undefined;
|
|
1130
|
-
maxFeePerBlobGas?: undefined;
|
|
1160
|
+
gasPrice?: undefined | undefined;
|
|
1161
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
1131
1162
|
maxFeePerGas: bigint;
|
|
1132
1163
|
maxPriorityFeePerGas: bigint;
|
|
1133
|
-
isSystemTx?: undefined;
|
|
1134
|
-
mint?: undefined;
|
|
1135
|
-
sourceHash?: undefined;
|
|
1164
|
+
isSystemTx?: undefined | undefined;
|
|
1165
|
+
mint?: undefined | undefined;
|
|
1166
|
+
sourceHash?: undefined | undefined;
|
|
1136
1167
|
} | {
|
|
1137
1168
|
blockHash: `0x${string}` | null;
|
|
1138
1169
|
blockNumber: bigint | null;
|
|
@@ -1150,17 +1181,17 @@ declare const SupportedChains: ({
|
|
|
1150
1181
|
value: bigint;
|
|
1151
1182
|
yParity: number;
|
|
1152
1183
|
accessList: viem.AccessList;
|
|
1153
|
-
authorizationList?: undefined;
|
|
1184
|
+
authorizationList?: undefined | undefined;
|
|
1154
1185
|
blobVersionedHashes: readonly viem.Hex[];
|
|
1155
1186
|
chainId: number;
|
|
1156
1187
|
type: "eip4844";
|
|
1157
|
-
gasPrice?: undefined;
|
|
1188
|
+
gasPrice?: undefined | undefined;
|
|
1158
1189
|
maxFeePerBlobGas: bigint;
|
|
1159
1190
|
maxFeePerGas: bigint;
|
|
1160
1191
|
maxPriorityFeePerGas: bigint;
|
|
1161
|
-
isSystemTx?: undefined;
|
|
1162
|
-
mint?: undefined;
|
|
1163
|
-
sourceHash?: undefined;
|
|
1192
|
+
isSystemTx?: undefined | undefined;
|
|
1193
|
+
mint?: undefined | undefined;
|
|
1194
|
+
sourceHash?: undefined | undefined;
|
|
1164
1195
|
} | {
|
|
1165
1196
|
blockHash: `0x${string}` | null;
|
|
1166
1197
|
blockNumber: bigint | null;
|
|
@@ -1178,23 +1209,23 @@ declare const SupportedChains: ({
|
|
|
1178
1209
|
value: bigint;
|
|
1179
1210
|
yParity: number;
|
|
1180
1211
|
accessList: viem.AccessList;
|
|
1181
|
-
authorizationList:
|
|
1182
|
-
blobVersionedHashes?: undefined;
|
|
1212
|
+
authorizationList: viem.SignedAuthorizationList;
|
|
1213
|
+
blobVersionedHashes?: undefined | undefined;
|
|
1183
1214
|
chainId: number;
|
|
1184
1215
|
type: "eip7702";
|
|
1185
|
-
gasPrice?: undefined;
|
|
1186
|
-
maxFeePerBlobGas?: undefined;
|
|
1216
|
+
gasPrice?: undefined | undefined;
|
|
1217
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
1187
1218
|
maxFeePerGas: bigint;
|
|
1188
1219
|
maxPriorityFeePerGas: bigint;
|
|
1189
|
-
isSystemTx?: undefined;
|
|
1190
|
-
mint?: undefined;
|
|
1191
|
-
sourceHash?: undefined;
|
|
1220
|
+
isSystemTx?: undefined | undefined;
|
|
1221
|
+
mint?: undefined | undefined;
|
|
1222
|
+
sourceHash?: undefined | undefined;
|
|
1192
1223
|
}) & {};
|
|
1193
1224
|
type: "transaction";
|
|
1194
1225
|
};
|
|
1195
1226
|
readonly transactionReceipt: {
|
|
1196
1227
|
exclude: [] | undefined;
|
|
1197
|
-
format: (args: viem_chains.OpStackRpcTransactionReceipt) => {
|
|
1228
|
+
format: (args: viem_chains.OpStackRpcTransactionReceipt, action?: string | undefined) => {
|
|
1198
1229
|
blobGasPrice?: bigint | undefined;
|
|
1199
1230
|
blobGasUsed?: bigint | undefined;
|
|
1200
1231
|
blockHash: viem.Hash;
|
|
@@ -1206,7 +1237,7 @@ declare const SupportedChains: ({
|
|
|
1206
1237
|
gasUsed: bigint;
|
|
1207
1238
|
logs: viem.Log<bigint, number, false>[];
|
|
1208
1239
|
logsBloom: viem.Hex;
|
|
1209
|
-
root?:
|
|
1240
|
+
root?: `0x${string}` | undefined;
|
|
1210
1241
|
status: "success" | "reverted";
|
|
1211
1242
|
to: viem.Address | null;
|
|
1212
1243
|
transactionHash: viem.Hash;
|
|
@@ -1228,15 +1259,17 @@ declare const SupportedChains: ({
|
|
|
1228
1259
|
blockExplorers: {
|
|
1229
1260
|
readonly default: {
|
|
1230
1261
|
readonly name: "ZetaScan";
|
|
1231
|
-
readonly url: "https://
|
|
1262
|
+
readonly url: "https://testnet.zetascan.com";
|
|
1232
1263
|
};
|
|
1233
1264
|
};
|
|
1265
|
+
blockTime?: number | undefined | undefined;
|
|
1234
1266
|
contracts: {
|
|
1235
1267
|
readonly multicall3: {
|
|
1236
1268
|
readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
|
|
1237
1269
|
readonly blockCreated: 2715217;
|
|
1238
1270
|
};
|
|
1239
1271
|
};
|
|
1272
|
+
ensTlds?: readonly string[] | undefined;
|
|
1240
1273
|
id: 7001;
|
|
1241
1274
|
name: "ZetaChain Athens Testnet";
|
|
1242
1275
|
nativeCurrency: {
|
|
@@ -1244,12 +1277,13 @@ declare const SupportedChains: ({
|
|
|
1244
1277
|
readonly name: "Zeta";
|
|
1245
1278
|
readonly symbol: "aZETA";
|
|
1246
1279
|
};
|
|
1280
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
1247
1281
|
rpcUrls: {
|
|
1248
1282
|
readonly default: {
|
|
1249
1283
|
readonly http: readonly ["https://zetachain-athens-evm.blockpi.network/v1/rpc/public"];
|
|
1250
1284
|
};
|
|
1251
1285
|
};
|
|
1252
|
-
sourceId?: number | undefined;
|
|
1286
|
+
sourceId?: number | undefined | undefined;
|
|
1253
1287
|
testnet: true;
|
|
1254
1288
|
custom?: Record<string, unknown> | undefined;
|
|
1255
1289
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
@@ -1259,15 +1293,17 @@ declare const SupportedChains: ({
|
|
|
1259
1293
|
blockExplorers: {
|
|
1260
1294
|
readonly default: {
|
|
1261
1295
|
readonly name: "ZetaScan";
|
|
1262
|
-
readonly url: "https://
|
|
1296
|
+
readonly url: "https://zetascan.com";
|
|
1263
1297
|
};
|
|
1264
1298
|
};
|
|
1299
|
+
blockTime?: number | undefined | undefined;
|
|
1265
1300
|
contracts: {
|
|
1266
1301
|
readonly multicall3: {
|
|
1267
1302
|
readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
|
|
1268
1303
|
readonly blockCreated: 1632781;
|
|
1269
1304
|
};
|
|
1270
1305
|
};
|
|
1306
|
+
ensTlds?: readonly string[] | undefined;
|
|
1271
1307
|
id: 7000;
|
|
1272
1308
|
name: "ZetaChain";
|
|
1273
1309
|
nativeCurrency: {
|
|
@@ -1275,12 +1311,13 @@ declare const SupportedChains: ({
|
|
|
1275
1311
|
readonly name: "Zeta";
|
|
1276
1312
|
readonly symbol: "ZETA";
|
|
1277
1313
|
};
|
|
1314
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
1278
1315
|
rpcUrls: {
|
|
1279
1316
|
readonly default: {
|
|
1280
1317
|
readonly http: readonly ["https://zetachain-evm.blockpi.network/v1/rpc/public"];
|
|
1281
1318
|
};
|
|
1282
1319
|
};
|
|
1283
|
-
sourceId?: number | undefined;
|
|
1320
|
+
sourceId?: number | undefined | undefined;
|
|
1284
1321
|
testnet: false;
|
|
1285
1322
|
custom?: Record<string, unknown> | undefined;
|
|
1286
1323
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
@@ -1294,12 +1331,14 @@ declare const SupportedChains: ({
|
|
|
1294
1331
|
readonly apiUrl: "https://api.arbiscan.io/api";
|
|
1295
1332
|
};
|
|
1296
1333
|
};
|
|
1334
|
+
blockTime: 250;
|
|
1297
1335
|
contracts: {
|
|
1298
1336
|
readonly multicall3: {
|
|
1299
1337
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
1300
1338
|
readonly blockCreated: 7654707;
|
|
1301
1339
|
};
|
|
1302
1340
|
};
|
|
1341
|
+
ensTlds?: readonly string[] | undefined;
|
|
1303
1342
|
id: 42161;
|
|
1304
1343
|
name: "Arbitrum One";
|
|
1305
1344
|
nativeCurrency: {
|
|
@@ -1307,13 +1346,14 @@ declare const SupportedChains: ({
|
|
|
1307
1346
|
readonly symbol: "ETH";
|
|
1308
1347
|
readonly decimals: 18;
|
|
1309
1348
|
};
|
|
1349
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
1310
1350
|
rpcUrls: {
|
|
1311
1351
|
readonly default: {
|
|
1312
1352
|
readonly http: readonly ["https://arb1.arbitrum.io/rpc"];
|
|
1313
1353
|
};
|
|
1314
1354
|
};
|
|
1315
|
-
sourceId?: number | undefined;
|
|
1316
|
-
testnet?: boolean | undefined;
|
|
1355
|
+
sourceId?: number | undefined | undefined;
|
|
1356
|
+
testnet?: boolean | undefined | undefined;
|
|
1317
1357
|
custom?: Record<string, unknown> | undefined;
|
|
1318
1358
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
1319
1359
|
formatters?: undefined;
|
|
@@ -1325,16 +1365,14 @@ declare const SupportedChains: ({
|
|
|
1325
1365
|
readonly url: "https://artio.beratrail.io";
|
|
1326
1366
|
};
|
|
1327
1367
|
};
|
|
1328
|
-
|
|
1329
|
-
|
|
1330
|
-
|
|
1331
|
-
|
|
1332
|
-
|
|
1333
|
-
|
|
1334
|
-
|
|
1335
|
-
|
|
1336
|
-
universalSignatureVerifier?: viem.ChainContract | undefined;
|
|
1337
|
-
}> | undefined;
|
|
1368
|
+
blockTime?: number | undefined | undefined;
|
|
1369
|
+
contracts: {
|
|
1370
|
+
readonly multicall3: {
|
|
1371
|
+
readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
|
|
1372
|
+
readonly blockCreated: 866924;
|
|
1373
|
+
};
|
|
1374
|
+
};
|
|
1375
|
+
ensTlds?: readonly string[] | undefined;
|
|
1338
1376
|
id: 80085;
|
|
1339
1377
|
name: "Berachain Artio";
|
|
1340
1378
|
nativeCurrency: {
|
|
@@ -1342,12 +1380,13 @@ declare const SupportedChains: ({
|
|
|
1342
1380
|
readonly name: "BERA Token";
|
|
1343
1381
|
readonly symbol: "BERA";
|
|
1344
1382
|
};
|
|
1383
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
1345
1384
|
rpcUrls: {
|
|
1346
1385
|
readonly default: {
|
|
1347
1386
|
readonly http: readonly ["https://artio.rpc.berachain.com"];
|
|
1348
1387
|
};
|
|
1349
1388
|
};
|
|
1350
|
-
sourceId?: number | undefined;
|
|
1389
|
+
sourceId?: number | undefined | undefined;
|
|
1351
1390
|
testnet: true;
|
|
1352
1391
|
custom?: Record<string, unknown> | undefined;
|
|
1353
1392
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
@@ -1361,12 +1400,14 @@ declare const SupportedChains: ({
|
|
|
1361
1400
|
readonly apiUrl: "https://api-testnet.polygonscan.com/api";
|
|
1362
1401
|
};
|
|
1363
1402
|
};
|
|
1403
|
+
blockTime?: number | undefined | undefined;
|
|
1364
1404
|
contracts: {
|
|
1365
1405
|
readonly multicall3: {
|
|
1366
1406
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
1367
1407
|
readonly blockCreated: 25770160;
|
|
1368
1408
|
};
|
|
1369
1409
|
};
|
|
1410
|
+
ensTlds?: readonly string[] | undefined;
|
|
1370
1411
|
id: 80001;
|
|
1371
1412
|
name: "Polygon Mumbai";
|
|
1372
1413
|
nativeCurrency: {
|
|
@@ -1374,12 +1415,13 @@ declare const SupportedChains: ({
|
|
|
1374
1415
|
readonly symbol: "MATIC";
|
|
1375
1416
|
readonly decimals: 18;
|
|
1376
1417
|
};
|
|
1418
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
1377
1419
|
rpcUrls: {
|
|
1378
1420
|
readonly default: {
|
|
1379
|
-
readonly http: readonly ["https://rpc.
|
|
1421
|
+
readonly http: readonly ["https://80001.rpc.thirdweb.com"];
|
|
1380
1422
|
};
|
|
1381
1423
|
};
|
|
1382
|
-
sourceId?: number | undefined;
|
|
1424
|
+
sourceId?: number | undefined | undefined;
|
|
1383
1425
|
testnet: true;
|
|
1384
1426
|
custom?: Record<string, unknown> | undefined;
|
|
1385
1427
|
fees?: viem.ChainFees<undefined> | undefined;
|
|
@@ -1393,12 +1435,14 @@ declare const SupportedChains: ({
|
|
|
1393
1435
|
readonly apiUrl: "https://api-amoy.polygonscan.com/api";
|
|
1394
1436
|
};
|
|
1395
1437
|
};
|
|
1438
|
+
blockTime?: number | undefined | undefined;
|
|
1396
1439
|
contracts: {
|
|
1397
1440
|
readonly multicall3: {
|
|
1398
1441
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
1399
1442
|
readonly blockCreated: 3127388;
|
|
1400
1443
|
};
|
|
1401
1444
|
};
|
|
1445
|
+
ensTlds?: readonly string[] | undefined;
|
|
1402
1446
|
id: 80002;
|
|
1403
1447
|
name: "Polygon Amoy";
|
|
1404
1448
|
nativeCurrency: {
|
|
@@ -1406,12 +1450,13 @@ declare const SupportedChains: ({
|
|
|
1406
1450
|
readonly symbol: "POL";
|
|
1407
1451
|
readonly decimals: 18;
|
|
1408
1452
|
};
|
|
1453
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
1409
1454
|
rpcUrls: {
|
|
1410
1455
|
readonly default: {
|
|
1411
1456
|
readonly http: readonly ["https://rpc-amoy.polygon.technology"];
|
|
1412
1457
|
};
|
|
1413
1458
|
};
|
|
1414
|
-
sourceId?: number | undefined;
|
|
1459
|
+
sourceId?: number | undefined | undefined;
|
|
1415
1460
|
testnet: true;
|
|
1416
1461
|
custom?: Record<string, unknown> | undefined;
|
|
1417
1462
|
fees?: viem.ChainFees<undefined> | undefined;
|