@rhinestone/shared-configs 1.14.0 → 1.16.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/dist/configs/chains.json +0 -81
- package/dist/configs/contracts.dev.json +181 -0
- package/dist/configs/contracts.json +181 -0
- package/dist/configs/mainnets.json +0 -6
- package/dist/configs/oft.json +0 -3
- package/dist/configs/providers.json +0 -3
- package/dist/scripts/__tests__/hoistUniform.test.d.ts +1 -0
- package/dist/scripts/__tests__/hoistUniform.test.js +84 -0
- package/dist/scripts/generate.js +5 -2
- package/dist/scripts/hoistUniform.d.ts +30 -0
- package/dist/scripts/hoistUniform.js +62 -0
- package/dist/src/__tests__/chainFactsClient.test.js +46 -0
- package/dist/src/chainFactsClient.d.ts +26 -2
- package/dist/src/chainFactsClient.js +43 -1
- package/dist/src/chains.js +0 -85
- package/dist/src/generated/contracts.dev.js +34 -270
- package/dist/src/generated/contracts.js +34 -270
- package/dist/src/generated/networks.d.ts +718 -1362
- package/dist/src/generated/networks.js +1 -3
- package/dist/src/generated/packageVersion.d.ts +1 -1
- package/dist/src/generated/packageVersion.js +1 -1
- package/package.json +1 -1
|
@@ -558,26 +558,182 @@ declare const mainnetChains: ({
|
|
|
558
558
|
} | {
|
|
559
559
|
blockExplorers: {
|
|
560
560
|
readonly default: {
|
|
561
|
-
readonly name: "
|
|
562
|
-
readonly url: "https://
|
|
563
|
-
|
|
561
|
+
readonly name: "katana explorer";
|
|
562
|
+
readonly url: "https://katanascan.com";
|
|
563
|
+
};
|
|
564
|
+
};
|
|
565
|
+
blockTime?: number | undefined | undefined;
|
|
566
|
+
contracts: {
|
|
567
|
+
readonly multicall3: {
|
|
568
|
+
readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
|
|
569
|
+
readonly blockCreated: 0;
|
|
570
|
+
};
|
|
571
|
+
};
|
|
572
|
+
ensTlds?: readonly string[] | undefined;
|
|
573
|
+
id: 747474;
|
|
574
|
+
name: "Katana";
|
|
575
|
+
nativeCurrency: {
|
|
576
|
+
readonly name: "Ether";
|
|
577
|
+
readonly symbol: "ETH";
|
|
578
|
+
readonly decimals: 18;
|
|
579
|
+
};
|
|
580
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
581
|
+
rpcUrls: {
|
|
582
|
+
readonly default: {
|
|
583
|
+
readonly http: readonly ["https://rpc.katana.network"];
|
|
584
|
+
};
|
|
585
|
+
};
|
|
586
|
+
sourceId?: number | undefined | undefined;
|
|
587
|
+
testnet: false;
|
|
588
|
+
custom?: Record<string, unknown> | undefined;
|
|
589
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
590
|
+
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
591
|
+
formatters?: undefined;
|
|
592
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
593
|
+
client: import("viem").Client;
|
|
594
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
595
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
596
|
+
client: import("viem").Client;
|
|
597
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
598
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
599
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
600
|
+
}] | undefined;
|
|
601
|
+
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
602
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
603
|
+
readonly network: "katana";
|
|
604
|
+
} | {
|
|
605
|
+
blockExplorers: {
|
|
606
|
+
readonly default: {
|
|
607
|
+
readonly name: "Etherscan";
|
|
608
|
+
readonly url: "https://etherscan.io";
|
|
609
|
+
readonly apiUrl: "https://api.etherscan.io/api";
|
|
610
|
+
};
|
|
611
|
+
};
|
|
612
|
+
blockTime: 12000;
|
|
613
|
+
contracts: {
|
|
614
|
+
readonly ensUniversalResolver: {
|
|
615
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
616
|
+
readonly blockCreated: 23085558;
|
|
617
|
+
};
|
|
618
|
+
readonly multicall3: {
|
|
619
|
+
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
620
|
+
readonly blockCreated: 14353601;
|
|
621
|
+
};
|
|
622
|
+
};
|
|
623
|
+
ensTlds?: readonly string[] | undefined;
|
|
624
|
+
id: 1;
|
|
625
|
+
name: "Ethereum";
|
|
626
|
+
nativeCurrency: {
|
|
627
|
+
readonly name: "Ether";
|
|
628
|
+
readonly symbol: "ETH";
|
|
629
|
+
readonly decimals: 18;
|
|
630
|
+
};
|
|
631
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
632
|
+
rpcUrls: {
|
|
633
|
+
readonly default: {
|
|
634
|
+
readonly http: readonly ["https://eth.merkle.io"];
|
|
635
|
+
};
|
|
636
|
+
};
|
|
637
|
+
sourceId?: number | undefined | undefined;
|
|
638
|
+
testnet?: boolean | undefined | undefined;
|
|
639
|
+
custom?: Record<string, unknown> | undefined;
|
|
640
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
641
|
+
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
642
|
+
formatters?: undefined;
|
|
643
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
644
|
+
client: import("viem").Client;
|
|
645
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
646
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
647
|
+
client: import("viem").Client;
|
|
648
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
649
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
650
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
651
|
+
}] | undefined;
|
|
652
|
+
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
653
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
654
|
+
} | {
|
|
655
|
+
blockExplorers: {
|
|
656
|
+
readonly default: {
|
|
657
|
+
readonly name: "Monadscan";
|
|
658
|
+
readonly url: "https://monadscan.com";
|
|
659
|
+
readonly apiUrl: "https://api.etherscan.io/v2/api?chainid=143";
|
|
660
|
+
};
|
|
661
|
+
readonly monadvision: {
|
|
662
|
+
readonly name: "MonadVision";
|
|
663
|
+
readonly url: "https://monadvision.com";
|
|
664
|
+
};
|
|
665
|
+
};
|
|
666
|
+
blockTime: 400;
|
|
667
|
+
contracts: {
|
|
668
|
+
readonly multicall3: {
|
|
669
|
+
readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
|
|
670
|
+
readonly blockCreated: 9248132;
|
|
671
|
+
};
|
|
672
|
+
};
|
|
673
|
+
ensTlds?: readonly string[] | undefined;
|
|
674
|
+
id: 143;
|
|
675
|
+
name: "Monad";
|
|
676
|
+
nativeCurrency: {
|
|
677
|
+
readonly name: "Monad";
|
|
678
|
+
readonly symbol: "MON";
|
|
679
|
+
readonly decimals: 18;
|
|
680
|
+
};
|
|
681
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
682
|
+
rpcUrls: {
|
|
683
|
+
readonly default: {
|
|
684
|
+
readonly http: readonly ["https://rpc.monad.xyz", "https://rpc1.monad.xyz"];
|
|
685
|
+
readonly webSocket: readonly ["wss://rpc.monad.xyz", "wss://rpc1.monad.xyz"];
|
|
686
|
+
};
|
|
687
|
+
};
|
|
688
|
+
sourceId?: number | undefined | undefined;
|
|
689
|
+
testnet: false;
|
|
690
|
+
custom?: Record<string, unknown> | undefined;
|
|
691
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
692
|
+
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
693
|
+
formatters?: undefined;
|
|
694
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
695
|
+
client: import("viem").Client;
|
|
696
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
697
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
698
|
+
client: import("viem").Client;
|
|
699
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
700
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
701
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
702
|
+
}] | undefined;
|
|
703
|
+
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
704
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
705
|
+
} | {
|
|
706
|
+
blockExplorers: {
|
|
707
|
+
readonly default: {
|
|
708
|
+
readonly name: "Optimism Explorer";
|
|
709
|
+
readonly url: "https://optimistic.etherscan.io";
|
|
710
|
+
readonly apiUrl: "https://api-optimistic.etherscan.io/api";
|
|
564
711
|
};
|
|
565
712
|
};
|
|
566
713
|
blockTime: 2000;
|
|
567
714
|
contracts: {
|
|
568
715
|
readonly disputeGameFactory: {
|
|
569
716
|
readonly 1: {
|
|
570
|
-
readonly address: "
|
|
717
|
+
readonly address: "0xe5965Ab5962eDc7477C8520243A95517CD252fA9";
|
|
718
|
+
};
|
|
719
|
+
};
|
|
720
|
+
readonly l2OutputOracle: {
|
|
721
|
+
readonly 1: {
|
|
722
|
+
readonly address: "0xdfe97868233d1aa22e815a266982f2cf17685a27";
|
|
571
723
|
};
|
|
572
724
|
};
|
|
725
|
+
readonly multicall3: {
|
|
726
|
+
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
727
|
+
readonly blockCreated: 4286263;
|
|
728
|
+
};
|
|
573
729
|
readonly portal: {
|
|
574
730
|
readonly 1: {
|
|
575
|
-
readonly address: "
|
|
731
|
+
readonly address: "0xbEb5Fc579115071764c7423A4f12eDde41f106Ed";
|
|
576
732
|
};
|
|
577
733
|
};
|
|
578
734
|
readonly l1StandardBridge: {
|
|
579
735
|
readonly 1: {
|
|
580
|
-
readonly address: "
|
|
736
|
+
readonly address: "0x99C9fc46f92E8a1c0deC1b1747d010903E884bE1";
|
|
581
737
|
};
|
|
582
738
|
};
|
|
583
739
|
readonly gasPriceOracle: {
|
|
@@ -598,14 +754,10 @@ declare const mainnetChains: ({
|
|
|
598
754
|
readonly l2ToL1MessagePasser: {
|
|
599
755
|
readonly address: "0x4200000000000000000000000000000000000016";
|
|
600
756
|
};
|
|
601
|
-
readonly multicall3: {
|
|
602
|
-
readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
|
|
603
|
-
readonly blockCreated: 0;
|
|
604
|
-
};
|
|
605
757
|
};
|
|
606
758
|
ensTlds?: readonly string[] | undefined;
|
|
607
|
-
id:
|
|
608
|
-
name: "
|
|
759
|
+
id: 10;
|
|
760
|
+
name: "OP Mainnet";
|
|
609
761
|
nativeCurrency: {
|
|
610
762
|
readonly name: "Ether";
|
|
611
763
|
readonly symbol: "ETH";
|
|
@@ -614,12 +766,11 @@ declare const mainnetChains: ({
|
|
|
614
766
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
615
767
|
rpcUrls: {
|
|
616
768
|
readonly default: {
|
|
617
|
-
readonly http: readonly ["https://
|
|
618
|
-
readonly webSocket: readonly ["wss://rpc-gel.inkonchain.com", "wss://rpc-qnd.inkonchain.com"];
|
|
769
|
+
readonly http: readonly ["https://mainnet.optimism.io"];
|
|
619
770
|
};
|
|
620
771
|
};
|
|
621
772
|
sourceId: 1;
|
|
622
|
-
testnet
|
|
773
|
+
testnet?: boolean | undefined | undefined;
|
|
623
774
|
custom?: Record<string, unknown> | undefined;
|
|
624
775
|
extendSchema?: Record<string, unknown> | undefined;
|
|
625
776
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
@@ -879,11 +1030,11 @@ declare const mainnetChains: ({
|
|
|
879
1030
|
} | {
|
|
880
1031
|
blockExplorers: {
|
|
881
1032
|
readonly default: {
|
|
882
|
-
readonly name: "
|
|
883
|
-
readonly url: "https://
|
|
1033
|
+
readonly name: "PlasmaScan";
|
|
1034
|
+
readonly url: "https://plasmascan.to";
|
|
884
1035
|
};
|
|
885
1036
|
};
|
|
886
|
-
blockTime
|
|
1037
|
+
blockTime: 1000;
|
|
887
1038
|
contracts: {
|
|
888
1039
|
readonly multicall3: {
|
|
889
1040
|
readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
|
|
@@ -891,21 +1042,21 @@ declare const mainnetChains: ({
|
|
|
891
1042
|
};
|
|
892
1043
|
};
|
|
893
1044
|
ensTlds?: readonly string[] | undefined;
|
|
894
|
-
id:
|
|
895
|
-
name: "
|
|
1045
|
+
id: 9745;
|
|
1046
|
+
name: "Plasma";
|
|
896
1047
|
nativeCurrency: {
|
|
897
|
-
readonly name: "
|
|
898
|
-
readonly symbol: "
|
|
1048
|
+
readonly name: "Plasma";
|
|
1049
|
+
readonly symbol: "XPL";
|
|
899
1050
|
readonly decimals: 18;
|
|
900
1051
|
};
|
|
901
1052
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
902
1053
|
rpcUrls: {
|
|
903
1054
|
readonly default: {
|
|
904
|
-
readonly http: readonly ["https://rpc.
|
|
1055
|
+
readonly http: readonly ["https://rpc.plasma.to"];
|
|
905
1056
|
};
|
|
906
1057
|
};
|
|
907
1058
|
sourceId?: number | undefined | undefined;
|
|
908
|
-
testnet
|
|
1059
|
+
testnet?: boolean | undefined | undefined;
|
|
909
1060
|
custom?: Record<string, unknown> | undefined;
|
|
910
1061
|
extendSchema?: Record<string, unknown> | undefined;
|
|
911
1062
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
@@ -921,38 +1072,33 @@ declare const mainnetChains: ({
|
|
|
921
1072
|
}] | undefined;
|
|
922
1073
|
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
923
1074
|
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
924
|
-
readonly network: "katana";
|
|
925
1075
|
} | {
|
|
926
1076
|
blockExplorers: {
|
|
927
1077
|
readonly default: {
|
|
928
|
-
readonly name: "
|
|
929
|
-
readonly url: "https://
|
|
930
|
-
readonly apiUrl: "https://api.etherscan.io/api";
|
|
1078
|
+
readonly name: "PolygonScan";
|
|
1079
|
+
readonly url: "https://polygonscan.com";
|
|
1080
|
+
readonly apiUrl: "https://api.etherscan.io/v2/api";
|
|
931
1081
|
};
|
|
932
1082
|
};
|
|
933
|
-
blockTime:
|
|
1083
|
+
blockTime: 2000;
|
|
934
1084
|
contracts: {
|
|
935
|
-
readonly ensUniversalResolver: {
|
|
936
|
-
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
937
|
-
readonly blockCreated: 23085558;
|
|
938
|
-
};
|
|
939
1085
|
readonly multicall3: {
|
|
940
1086
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
941
|
-
readonly blockCreated:
|
|
1087
|
+
readonly blockCreated: 25770160;
|
|
942
1088
|
};
|
|
943
1089
|
};
|
|
944
1090
|
ensTlds?: readonly string[] | undefined;
|
|
945
|
-
id:
|
|
946
|
-
name: "
|
|
1091
|
+
id: 137;
|
|
1092
|
+
name: "Polygon";
|
|
947
1093
|
nativeCurrency: {
|
|
948
|
-
readonly name: "
|
|
949
|
-
readonly symbol: "
|
|
1094
|
+
readonly name: "POL";
|
|
1095
|
+
readonly symbol: "POL";
|
|
950
1096
|
readonly decimals: 18;
|
|
951
1097
|
};
|
|
952
1098
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
953
1099
|
rpcUrls: {
|
|
954
1100
|
readonly default: {
|
|
955
|
-
readonly http: readonly ["https://
|
|
1101
|
+
readonly http: readonly ["https://polygon.drpc.org"];
|
|
956
1102
|
};
|
|
957
1103
|
};
|
|
958
1104
|
sourceId?: number | undefined | undefined;
|
|
@@ -975,39 +1121,33 @@ declare const mainnetChains: ({
|
|
|
975
1121
|
} | {
|
|
976
1122
|
blockExplorers: {
|
|
977
1123
|
readonly default: {
|
|
978
|
-
readonly name: "
|
|
979
|
-
readonly url: "https://
|
|
980
|
-
readonly apiUrl: "https://
|
|
981
|
-
};
|
|
982
|
-
readonly monadvision: {
|
|
983
|
-
readonly name: "MonadVision";
|
|
984
|
-
readonly url: "https://monadvision.com";
|
|
1124
|
+
readonly name: "Blockscout";
|
|
1125
|
+
readonly url: "https://robinhoodchain.blockscout.com";
|
|
1126
|
+
readonly apiUrl: "https://robinhoodchain.blockscout.com/api";
|
|
985
1127
|
};
|
|
986
1128
|
};
|
|
987
|
-
blockTime
|
|
1129
|
+
blockTime?: number | undefined | undefined;
|
|
988
1130
|
contracts: {
|
|
989
1131
|
readonly multicall3: {
|
|
990
|
-
readonly address: "
|
|
991
|
-
readonly blockCreated: 9248132;
|
|
1132
|
+
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
992
1133
|
};
|
|
993
1134
|
};
|
|
994
1135
|
ensTlds?: readonly string[] | undefined;
|
|
995
|
-
id:
|
|
996
|
-
name: "
|
|
1136
|
+
id: 4663;
|
|
1137
|
+
name: "Robinhood Chain";
|
|
997
1138
|
nativeCurrency: {
|
|
998
|
-
readonly name: "
|
|
999
|
-
readonly symbol: "
|
|
1139
|
+
readonly name: "Ether";
|
|
1140
|
+
readonly symbol: "ETH";
|
|
1000
1141
|
readonly decimals: 18;
|
|
1001
1142
|
};
|
|
1002
1143
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
1003
1144
|
rpcUrls: {
|
|
1004
1145
|
readonly default: {
|
|
1005
|
-
readonly http: readonly ["https://rpc.
|
|
1006
|
-
readonly webSocket: readonly ["wss://rpc.monad.xyz", "wss://rpc1.monad.xyz"];
|
|
1146
|
+
readonly http: readonly ["https://rpc.mainnet.chain.robinhood.com"];
|
|
1007
1147
|
};
|
|
1008
1148
|
};
|
|
1009
1149
|
sourceId?: number | undefined | undefined;
|
|
1010
|
-
testnet
|
|
1150
|
+
testnet?: boolean | undefined | undefined;
|
|
1011
1151
|
custom?: Record<string, unknown> | undefined;
|
|
1012
1152
|
extendSchema?: Record<string, unknown> | undefined;
|
|
1013
1153
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
@@ -1026,37 +1166,39 @@ declare const mainnetChains: ({
|
|
|
1026
1166
|
} | {
|
|
1027
1167
|
blockExplorers: {
|
|
1028
1168
|
readonly default: {
|
|
1029
|
-
readonly name: "
|
|
1030
|
-
readonly url: "https://
|
|
1031
|
-
readonly apiUrl: "https://
|
|
1169
|
+
readonly name: "Blockscout";
|
|
1170
|
+
readonly url: "https://soneium.blockscout.com";
|
|
1171
|
+
readonly apiUrl: "https://soneium.blockscout.com/api";
|
|
1032
1172
|
};
|
|
1033
1173
|
};
|
|
1034
1174
|
blockTime: 2000;
|
|
1035
1175
|
contracts: {
|
|
1036
1176
|
readonly disputeGameFactory: {
|
|
1037
1177
|
readonly 1: {
|
|
1038
|
-
readonly address: "
|
|
1178
|
+
readonly address: "0x512a3d2c7a43bd9261d2b8e8c9c70d4bd4d503c0";
|
|
1039
1179
|
};
|
|
1040
1180
|
};
|
|
1041
1181
|
readonly l2OutputOracle: {
|
|
1042
1182
|
readonly 1: {
|
|
1043
|
-
readonly address: "
|
|
1183
|
+
readonly address: "0x0000000000000000000000000000000000000000";
|
|
1044
1184
|
};
|
|
1045
1185
|
};
|
|
1046
|
-
readonly multicall3: {
|
|
1047
|
-
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
1048
|
-
readonly blockCreated: 4286263;
|
|
1049
|
-
};
|
|
1050
1186
|
readonly portal: {
|
|
1051
1187
|
readonly 1: {
|
|
1052
|
-
readonly address: "
|
|
1188
|
+
readonly address: "0x88e529a6ccd302c948689cd5156c83d4614fae92";
|
|
1189
|
+
readonly blockCreated: 7061266;
|
|
1053
1190
|
};
|
|
1054
1191
|
};
|
|
1055
1192
|
readonly l1StandardBridge: {
|
|
1056
1193
|
readonly 1: {
|
|
1057
|
-
readonly address: "
|
|
1194
|
+
readonly address: "0xeb9bf100225c214efc3e7c651ebbadcf85177607";
|
|
1195
|
+
readonly blockCreated: 7061266;
|
|
1058
1196
|
};
|
|
1059
1197
|
};
|
|
1198
|
+
readonly multicall3: {
|
|
1199
|
+
readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
|
|
1200
|
+
readonly blockCreated: 1;
|
|
1201
|
+
};
|
|
1060
1202
|
readonly gasPriceOracle: {
|
|
1061
1203
|
readonly address: "0x420000000000000000000000000000000000000F";
|
|
1062
1204
|
};
|
|
@@ -1077,8 +1219,8 @@ declare const mainnetChains: ({
|
|
|
1077
1219
|
};
|
|
1078
1220
|
};
|
|
1079
1221
|
ensTlds?: readonly string[] | undefined;
|
|
1080
|
-
id:
|
|
1081
|
-
name: "
|
|
1222
|
+
id: 1868;
|
|
1223
|
+
name: "Soneium Mainnet";
|
|
1082
1224
|
nativeCurrency: {
|
|
1083
1225
|
readonly name: "Ether";
|
|
1084
1226
|
readonly symbol: "ETH";
|
|
@@ -1087,7 +1229,7 @@ declare const mainnetChains: ({
|
|
|
1087
1229
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
1088
1230
|
rpcUrls: {
|
|
1089
1231
|
readonly default: {
|
|
1090
|
-
readonly http: readonly ["https://
|
|
1232
|
+
readonly http: readonly ["https://rpc.soneium.org"];
|
|
1091
1233
|
};
|
|
1092
1234
|
};
|
|
1093
1235
|
sourceId: 1;
|
|
@@ -1351,79 +1493,33 @@ declare const mainnetChains: ({
|
|
|
1351
1493
|
} | {
|
|
1352
1494
|
blockExplorers: {
|
|
1353
1495
|
readonly default: {
|
|
1354
|
-
readonly name: "
|
|
1355
|
-
readonly url: "https://
|
|
1356
|
-
};
|
|
1357
|
-
};
|
|
1358
|
-
blockTime: 1000;
|
|
1359
|
-
contracts: {
|
|
1360
|
-
readonly multicall3: {
|
|
1361
|
-
readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
|
|
1362
|
-
readonly blockCreated: 0;
|
|
1363
|
-
};
|
|
1364
|
-
};
|
|
1365
|
-
ensTlds?: readonly string[] | undefined;
|
|
1366
|
-
id: 9745;
|
|
1367
|
-
name: "Plasma";
|
|
1368
|
-
nativeCurrency: {
|
|
1369
|
-
readonly name: "Plasma";
|
|
1370
|
-
readonly symbol: "XPL";
|
|
1371
|
-
readonly decimals: 18;
|
|
1372
|
-
};
|
|
1373
|
-
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
1374
|
-
rpcUrls: {
|
|
1375
|
-
readonly default: {
|
|
1376
|
-
readonly http: readonly ["https://rpc.plasma.to"];
|
|
1377
|
-
};
|
|
1378
|
-
};
|
|
1379
|
-
sourceId?: number | undefined | undefined;
|
|
1380
|
-
testnet?: boolean | undefined | undefined;
|
|
1381
|
-
custom?: Record<string, unknown> | undefined;
|
|
1382
|
-
extendSchema?: Record<string, unknown> | undefined;
|
|
1383
|
-
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
1384
|
-
formatters?: undefined;
|
|
1385
|
-
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
1386
|
-
client: import("viem").Client;
|
|
1387
|
-
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
1388
|
-
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
1389
|
-
client: import("viem").Client;
|
|
1390
|
-
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
1391
|
-
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
1392
|
-
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
1393
|
-
}] | undefined;
|
|
1394
|
-
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
1395
|
-
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
1396
|
-
} | {
|
|
1397
|
-
blockExplorers: {
|
|
1398
|
-
readonly default: {
|
|
1399
|
-
readonly name: "PolygonScan";
|
|
1400
|
-
readonly url: "https://polygonscan.com";
|
|
1401
|
-
readonly apiUrl: "https://api.etherscan.io/v2/api";
|
|
1496
|
+
readonly name: "Sonic Explorer";
|
|
1497
|
+
readonly url: "https://sonicscan.org";
|
|
1402
1498
|
};
|
|
1403
1499
|
};
|
|
1404
|
-
blockTime:
|
|
1500
|
+
blockTime: 630;
|
|
1405
1501
|
contracts: {
|
|
1406
1502
|
readonly multicall3: {
|
|
1407
1503
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
1408
|
-
readonly blockCreated:
|
|
1504
|
+
readonly blockCreated: 60;
|
|
1409
1505
|
};
|
|
1410
1506
|
};
|
|
1411
1507
|
ensTlds?: readonly string[] | undefined;
|
|
1412
|
-
id:
|
|
1413
|
-
name: "
|
|
1508
|
+
id: 146;
|
|
1509
|
+
name: "Sonic";
|
|
1414
1510
|
nativeCurrency: {
|
|
1415
|
-
readonly name: "POL";
|
|
1416
|
-
readonly symbol: "POL";
|
|
1417
1511
|
readonly decimals: 18;
|
|
1512
|
+
readonly name: "Sonic";
|
|
1513
|
+
readonly symbol: "S";
|
|
1418
1514
|
};
|
|
1419
1515
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
1420
1516
|
rpcUrls: {
|
|
1421
1517
|
readonly default: {
|
|
1422
|
-
readonly http: readonly ["https://
|
|
1518
|
+
readonly http: readonly ["https://rpc.soniclabs.com"];
|
|
1423
1519
|
};
|
|
1424
1520
|
};
|
|
1425
1521
|
sourceId?: number | undefined | undefined;
|
|
1426
|
-
testnet
|
|
1522
|
+
testnet: false;
|
|
1427
1523
|
custom?: Record<string, unknown> | undefined;
|
|
1428
1524
|
extendSchema?: Record<string, unknown> | undefined;
|
|
1429
1525
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
@@ -1442,84 +1538,32 @@ declare const mainnetChains: ({
|
|
|
1442
1538
|
} | {
|
|
1443
1539
|
blockExplorers: {
|
|
1444
1540
|
readonly default: {
|
|
1445
|
-
readonly name: "
|
|
1446
|
-
readonly url: "https://
|
|
1447
|
-
readonly apiUrl: "https://
|
|
1541
|
+
readonly name: "Uniscan";
|
|
1542
|
+
readonly url: "https://uniscan.xyz";
|
|
1543
|
+
readonly apiUrl: "https://api.uniscan.xyz/api";
|
|
1448
1544
|
};
|
|
1449
1545
|
};
|
|
1450
|
-
blockTime
|
|
1546
|
+
blockTime: 1000;
|
|
1451
1547
|
contracts: {
|
|
1452
1548
|
readonly multicall3: {
|
|
1453
1549
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
1550
|
+
readonly blockCreated: 0;
|
|
1454
1551
|
};
|
|
1455
|
-
};
|
|
1456
|
-
ensTlds?: readonly string[] | undefined;
|
|
1457
|
-
id: 4663;
|
|
1458
|
-
name: "Robinhood Chain";
|
|
1459
|
-
nativeCurrency: {
|
|
1460
|
-
readonly name: "Ether";
|
|
1461
|
-
readonly symbol: "ETH";
|
|
1462
|
-
readonly decimals: 18;
|
|
1463
|
-
};
|
|
1464
|
-
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
1465
|
-
rpcUrls: {
|
|
1466
|
-
readonly default: {
|
|
1467
|
-
readonly http: readonly ["https://rpc.mainnet.chain.robinhood.com"];
|
|
1468
|
-
};
|
|
1469
|
-
};
|
|
1470
|
-
sourceId?: number | undefined | undefined;
|
|
1471
|
-
testnet?: boolean | undefined | undefined;
|
|
1472
|
-
custom?: Record<string, unknown> | undefined;
|
|
1473
|
-
extendSchema?: Record<string, unknown> | undefined;
|
|
1474
|
-
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
1475
|
-
formatters?: undefined;
|
|
1476
|
-
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
1477
|
-
client: import("viem").Client;
|
|
1478
|
-
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
1479
|
-
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
1480
|
-
client: import("viem").Client;
|
|
1481
|
-
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
1482
|
-
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
1483
|
-
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
1484
|
-
}] | undefined;
|
|
1485
|
-
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
1486
|
-
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
1487
|
-
} | {
|
|
1488
|
-
blockExplorers: {
|
|
1489
|
-
readonly default: {
|
|
1490
|
-
readonly name: "Blockscout";
|
|
1491
|
-
readonly url: "https://soneium.blockscout.com";
|
|
1492
|
-
readonly apiUrl: "https://soneium.blockscout.com/api";
|
|
1493
|
-
};
|
|
1494
|
-
};
|
|
1495
|
-
blockTime: 2000;
|
|
1496
|
-
contracts: {
|
|
1497
1552
|
readonly disputeGameFactory: {
|
|
1498
1553
|
readonly 1: {
|
|
1499
|
-
readonly address: "
|
|
1500
|
-
};
|
|
1501
|
-
};
|
|
1502
|
-
readonly l2OutputOracle: {
|
|
1503
|
-
readonly 1: {
|
|
1504
|
-
readonly address: "0x0000000000000000000000000000000000000000";
|
|
1554
|
+
readonly address: "0x2F12d621a16e2d3285929C9996f478508951dFe4";
|
|
1505
1555
|
};
|
|
1506
1556
|
};
|
|
1507
1557
|
readonly portal: {
|
|
1508
1558
|
readonly 1: {
|
|
1509
|
-
readonly address: "
|
|
1510
|
-
readonly blockCreated: 7061266;
|
|
1559
|
+
readonly address: "0x0bd48f6B86a26D3a217d0Fa6FfE2B491B956A7a2";
|
|
1511
1560
|
};
|
|
1512
1561
|
};
|
|
1513
1562
|
readonly l1StandardBridge: {
|
|
1514
1563
|
readonly 1: {
|
|
1515
|
-
readonly address: "
|
|
1516
|
-
readonly blockCreated: 7061266;
|
|
1564
|
+
readonly address: "0x81014F44b0a345033bB2b3B21C7a1A308B35fEeA";
|
|
1517
1565
|
};
|
|
1518
1566
|
};
|
|
1519
|
-
readonly multicall3: {
|
|
1520
|
-
readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
|
|
1521
|
-
readonly blockCreated: 1;
|
|
1522
|
-
};
|
|
1523
1567
|
readonly gasPriceOracle: {
|
|
1524
1568
|
readonly address: "0x420000000000000000000000000000000000000F";
|
|
1525
1569
|
};
|
|
@@ -1540,8 +1584,8 @@ declare const mainnetChains: ({
|
|
|
1540
1584
|
};
|
|
1541
1585
|
};
|
|
1542
1586
|
ensTlds?: readonly string[] | undefined;
|
|
1543
|
-
id:
|
|
1544
|
-
name: "
|
|
1587
|
+
id: 130;
|
|
1588
|
+
name: "Unichain";
|
|
1545
1589
|
nativeCurrency: {
|
|
1546
1590
|
readonly name: "Ether";
|
|
1547
1591
|
readonly symbol: "ETH";
|
|
@@ -1550,7 +1594,7 @@ declare const mainnetChains: ({
|
|
|
1550
1594
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
1551
1595
|
rpcUrls: {
|
|
1552
1596
|
readonly default: {
|
|
1553
|
-
readonly http: readonly ["https://
|
|
1597
|
+
readonly http: readonly ["https://mainnet.unichain.org/"];
|
|
1554
1598
|
};
|
|
1555
1599
|
};
|
|
1556
1600
|
sourceId: 1;
|
|
@@ -1811,36 +1855,38 @@ declare const mainnetChains: ({
|
|
|
1811
1855
|
readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
|
|
1812
1856
|
};
|
|
1813
1857
|
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
1814
|
-
}
|
|
1858
|
+
})[];
|
|
1859
|
+
declare const testnetChains: ({
|
|
1815
1860
|
blockExplorers: {
|
|
1816
1861
|
readonly default: {
|
|
1817
|
-
readonly name: "
|
|
1818
|
-
readonly url: "https://
|
|
1862
|
+
readonly name: "Arbiscan";
|
|
1863
|
+
readonly url: "https://sepolia.arbiscan.io";
|
|
1864
|
+
readonly apiUrl: "https://api-sepolia.arbiscan.io/api";
|
|
1819
1865
|
};
|
|
1820
1866
|
};
|
|
1821
|
-
blockTime:
|
|
1867
|
+
blockTime: 250;
|
|
1822
1868
|
contracts: {
|
|
1823
1869
|
readonly multicall3: {
|
|
1824
1870
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
1825
|
-
readonly blockCreated:
|
|
1871
|
+
readonly blockCreated: 81930;
|
|
1826
1872
|
};
|
|
1827
1873
|
};
|
|
1828
1874
|
ensTlds?: readonly string[] | undefined;
|
|
1829
|
-
id:
|
|
1830
|
-
name: "
|
|
1875
|
+
id: 421614;
|
|
1876
|
+
name: "Arbitrum Sepolia";
|
|
1831
1877
|
nativeCurrency: {
|
|
1878
|
+
readonly name: "Arbitrum Sepolia Ether";
|
|
1879
|
+
readonly symbol: "ETH";
|
|
1832
1880
|
readonly decimals: 18;
|
|
1833
|
-
readonly name: "Sonic";
|
|
1834
|
-
readonly symbol: "S";
|
|
1835
1881
|
};
|
|
1836
1882
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
1837
1883
|
rpcUrls: {
|
|
1838
1884
|
readonly default: {
|
|
1839
|
-
readonly http: readonly ["https://
|
|
1885
|
+
readonly http: readonly ["https://sepolia-rollup.arbitrum.io/rpc"];
|
|
1840
1886
|
};
|
|
1841
1887
|
};
|
|
1842
1888
|
sourceId?: number | undefined | undefined;
|
|
1843
|
-
testnet:
|
|
1889
|
+
testnet: true;
|
|
1844
1890
|
custom?: Record<string, unknown> | undefined;
|
|
1845
1891
|
extendSchema?: Record<string, unknown> | undefined;
|
|
1846
1892
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
@@ -1859,32 +1905,39 @@ declare const mainnetChains: ({
|
|
|
1859
1905
|
} | {
|
|
1860
1906
|
blockExplorers: {
|
|
1861
1907
|
readonly default: {
|
|
1862
|
-
readonly name: "
|
|
1863
|
-
readonly url: "https://
|
|
1864
|
-
readonly apiUrl: "https://api.
|
|
1908
|
+
readonly name: "Basescan";
|
|
1909
|
+
readonly url: "https://sepolia.basescan.org";
|
|
1910
|
+
readonly apiUrl: "https://api-sepolia.basescan.org/api";
|
|
1865
1911
|
};
|
|
1866
1912
|
};
|
|
1867
|
-
blockTime:
|
|
1913
|
+
blockTime: 2000;
|
|
1868
1914
|
contracts: {
|
|
1869
|
-
readonly multicall3: {
|
|
1870
|
-
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
1871
|
-
readonly blockCreated: 0;
|
|
1872
|
-
};
|
|
1873
1915
|
readonly disputeGameFactory: {
|
|
1874
|
-
readonly
|
|
1875
|
-
readonly address: "
|
|
1916
|
+
readonly 11155111: {
|
|
1917
|
+
readonly address: "0xd6E6dBf4F7EA0ac412fD8b65ED297e64BB7a06E1";
|
|
1918
|
+
};
|
|
1919
|
+
};
|
|
1920
|
+
readonly l2OutputOracle: {
|
|
1921
|
+
readonly 11155111: {
|
|
1922
|
+
readonly address: "0x84457ca9D0163FbC4bbfe4Dfbb20ba46e48DF254";
|
|
1876
1923
|
};
|
|
1877
1924
|
};
|
|
1878
1925
|
readonly portal: {
|
|
1879
|
-
readonly
|
|
1880
|
-
readonly address: "
|
|
1926
|
+
readonly 11155111: {
|
|
1927
|
+
readonly address: "0x49f53e41452c74589e85ca1677426ba426459e85";
|
|
1928
|
+
readonly blockCreated: 4446677;
|
|
1881
1929
|
};
|
|
1882
1930
|
};
|
|
1883
1931
|
readonly l1StandardBridge: {
|
|
1884
|
-
readonly
|
|
1885
|
-
readonly address: "
|
|
1932
|
+
readonly 11155111: {
|
|
1933
|
+
readonly address: "0xfd0Bf71F60660E2f608ed56e1659C450eB113120";
|
|
1934
|
+
readonly blockCreated: 4446677;
|
|
1886
1935
|
};
|
|
1887
1936
|
};
|
|
1937
|
+
readonly multicall3: {
|
|
1938
|
+
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
1939
|
+
readonly blockCreated: 1059647;
|
|
1940
|
+
};
|
|
1888
1941
|
readonly gasPriceOracle: {
|
|
1889
1942
|
readonly address: "0x420000000000000000000000000000000000000F";
|
|
1890
1943
|
};
|
|
@@ -1905,21 +1958,21 @@ declare const mainnetChains: ({
|
|
|
1905
1958
|
};
|
|
1906
1959
|
};
|
|
1907
1960
|
ensTlds?: readonly string[] | undefined;
|
|
1908
|
-
id:
|
|
1909
|
-
name: "
|
|
1961
|
+
id: 84532;
|
|
1962
|
+
name: "Base Sepolia";
|
|
1910
1963
|
nativeCurrency: {
|
|
1911
|
-
readonly name: "Ether";
|
|
1964
|
+
readonly name: "Sepolia Ether";
|
|
1912
1965
|
readonly symbol: "ETH";
|
|
1913
1966
|
readonly decimals: 18;
|
|
1914
1967
|
};
|
|
1915
1968
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
1916
1969
|
rpcUrls: {
|
|
1917
1970
|
readonly default: {
|
|
1918
|
-
readonly http: readonly ["https://
|
|
1971
|
+
readonly http: readonly ["https://sepolia.base.org"];
|
|
1919
1972
|
};
|
|
1920
1973
|
};
|
|
1921
|
-
sourceId:
|
|
1922
|
-
testnet
|
|
1974
|
+
sourceId: 11155111;
|
|
1975
|
+
testnet: true;
|
|
1923
1976
|
custom?: Record<string, unknown> | undefined;
|
|
1924
1977
|
extendSchema?: Record<string, unknown> | undefined;
|
|
1925
1978
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
@@ -2176,89 +2229,41 @@ declare const mainnetChains: ({
|
|
|
2176
2229
|
readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
|
|
2177
2230
|
};
|
|
2178
2231
|
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
2179
|
-
|
|
2180
|
-
|
|
2232
|
+
readonly network: "base-sepolia";
|
|
2233
|
+
} | {
|
|
2181
2234
|
blockExplorers: {
|
|
2182
2235
|
readonly default: {
|
|
2183
|
-
readonly name: "
|
|
2184
|
-
readonly url: "https://sepolia.
|
|
2185
|
-
readonly apiUrl: "https://
|
|
2236
|
+
readonly name: "Blockscout";
|
|
2237
|
+
readonly url: "https://optimism-sepolia.blockscout.com";
|
|
2238
|
+
readonly apiUrl: "https://optimism-sepolia.blockscout.com/api";
|
|
2186
2239
|
};
|
|
2187
2240
|
};
|
|
2188
|
-
blockTime:
|
|
2241
|
+
blockTime: 2000;
|
|
2189
2242
|
contracts: {
|
|
2243
|
+
readonly disputeGameFactory: {
|
|
2244
|
+
readonly 11155111: {
|
|
2245
|
+
readonly address: "0x05F9613aDB30026FFd634f38e5C4dFd30a197Fa1";
|
|
2246
|
+
};
|
|
2247
|
+
};
|
|
2248
|
+
readonly l2OutputOracle: {
|
|
2249
|
+
readonly 11155111: {
|
|
2250
|
+
readonly address: "0x90E9c4f8a994a250F6aEfd61CAFb4F2e895D458F";
|
|
2251
|
+
};
|
|
2252
|
+
};
|
|
2190
2253
|
readonly multicall3: {
|
|
2191
2254
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
2192
|
-
readonly blockCreated:
|
|
2193
|
-
};
|
|
2194
|
-
};
|
|
2195
|
-
ensTlds?: readonly string[] | undefined;
|
|
2196
|
-
id: 421614;
|
|
2197
|
-
name: "Arbitrum Sepolia";
|
|
2198
|
-
nativeCurrency: {
|
|
2199
|
-
readonly name: "Arbitrum Sepolia Ether";
|
|
2200
|
-
readonly symbol: "ETH";
|
|
2201
|
-
readonly decimals: 18;
|
|
2202
|
-
};
|
|
2203
|
-
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
2204
|
-
rpcUrls: {
|
|
2205
|
-
readonly default: {
|
|
2206
|
-
readonly http: readonly ["https://sepolia-rollup.arbitrum.io/rpc"];
|
|
2207
|
-
};
|
|
2208
|
-
};
|
|
2209
|
-
sourceId?: number | undefined | undefined;
|
|
2210
|
-
testnet: true;
|
|
2211
|
-
custom?: Record<string, unknown> | undefined;
|
|
2212
|
-
extendSchema?: Record<string, unknown> | undefined;
|
|
2213
|
-
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
2214
|
-
formatters?: undefined;
|
|
2215
|
-
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
2216
|
-
client: import("viem").Client;
|
|
2217
|
-
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
2218
|
-
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
2219
|
-
client: import("viem").Client;
|
|
2220
|
-
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
2221
|
-
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
2222
|
-
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
2223
|
-
}] | undefined;
|
|
2224
|
-
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
2225
|
-
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
2226
|
-
} | {
|
|
2227
|
-
blockExplorers: {
|
|
2228
|
-
readonly default: {
|
|
2229
|
-
readonly name: "Basescan";
|
|
2230
|
-
readonly url: "https://sepolia.basescan.org";
|
|
2231
|
-
readonly apiUrl: "https://api-sepolia.basescan.org/api";
|
|
2232
|
-
};
|
|
2233
|
-
};
|
|
2234
|
-
blockTime: 2000;
|
|
2235
|
-
contracts: {
|
|
2236
|
-
readonly disputeGameFactory: {
|
|
2237
|
-
readonly 11155111: {
|
|
2238
|
-
readonly address: "0xd6E6dBf4F7EA0ac412fD8b65ED297e64BB7a06E1";
|
|
2239
|
-
};
|
|
2240
|
-
};
|
|
2241
|
-
readonly l2OutputOracle: {
|
|
2242
|
-
readonly 11155111: {
|
|
2243
|
-
readonly address: "0x84457ca9D0163FbC4bbfe4Dfbb20ba46e48DF254";
|
|
2244
|
-
};
|
|
2255
|
+
readonly blockCreated: 1620204;
|
|
2245
2256
|
};
|
|
2246
2257
|
readonly portal: {
|
|
2247
2258
|
readonly 11155111: {
|
|
2248
|
-
readonly address: "
|
|
2249
|
-
readonly blockCreated: 4446677;
|
|
2259
|
+
readonly address: "0x16Fc5058F25648194471939df75CF27A2fdC48BC";
|
|
2250
2260
|
};
|
|
2251
2261
|
};
|
|
2252
2262
|
readonly l1StandardBridge: {
|
|
2253
2263
|
readonly 11155111: {
|
|
2254
|
-
readonly address: "
|
|
2255
|
-
readonly blockCreated: 4446677;
|
|
2264
|
+
readonly address: "0xFBb0621E0B23b5478B630BD55a5f21f67730B0F1";
|
|
2256
2265
|
};
|
|
2257
2266
|
};
|
|
2258
|
-
readonly multicall3: {
|
|
2259
|
-
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
2260
|
-
readonly blockCreated: 1059647;
|
|
2261
|
-
};
|
|
2262
2267
|
readonly gasPriceOracle: {
|
|
2263
2268
|
readonly address: "0x420000000000000000000000000000000000000F";
|
|
2264
2269
|
};
|
|
@@ -2279,8 +2284,8 @@ declare const testnetChains: ({
|
|
|
2279
2284
|
};
|
|
2280
2285
|
};
|
|
2281
2286
|
ensTlds?: readonly string[] | undefined;
|
|
2282
|
-
id:
|
|
2283
|
-
name: "
|
|
2287
|
+
id: 11155420;
|
|
2288
|
+
name: "OP Sepolia";
|
|
2284
2289
|
nativeCurrency: {
|
|
2285
2290
|
readonly name: "Sepolia Ether";
|
|
2286
2291
|
readonly symbol: "ETH";
|
|
@@ -2289,7 +2294,7 @@ declare const testnetChains: ({
|
|
|
2289
2294
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
2290
2295
|
rpcUrls: {
|
|
2291
2296
|
readonly default: {
|
|
2292
|
-
readonly http: readonly ["https://sepolia.
|
|
2297
|
+
readonly http: readonly ["https://sepolia.optimism.io"];
|
|
2293
2298
|
};
|
|
2294
2299
|
};
|
|
2295
2300
|
sourceId: 11155111;
|
|
@@ -2550,319 +2555,183 @@ declare const testnetChains: ({
|
|
|
2550
2555
|
readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
|
|
2551
2556
|
};
|
|
2552
2557
|
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
2553
|
-
readonly network: "base-sepolia";
|
|
2554
2558
|
} | {
|
|
2555
2559
|
blockExplorers: {
|
|
2556
2560
|
readonly default: {
|
|
2557
|
-
readonly name: "
|
|
2558
|
-
readonly url: "https://
|
|
2559
|
-
readonly apiUrl: "https://optimism-sepolia.blockscout.com/api";
|
|
2561
|
+
readonly name: "RouteScan";
|
|
2562
|
+
readonly url: "https://testnet.plasmascan.to";
|
|
2560
2563
|
};
|
|
2561
2564
|
};
|
|
2562
|
-
blockTime
|
|
2565
|
+
blockTime?: number | undefined | undefined;
|
|
2563
2566
|
contracts: {
|
|
2564
|
-
readonly
|
|
2565
|
-
readonly
|
|
2566
|
-
|
|
2567
|
-
};
|
|
2567
|
+
readonly multicall3: {
|
|
2568
|
+
readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
|
|
2569
|
+
readonly blockCreated: 0;
|
|
2568
2570
|
};
|
|
2569
|
-
|
|
2570
|
-
|
|
2571
|
-
|
|
2572
|
-
|
|
2571
|
+
};
|
|
2572
|
+
ensTlds?: readonly string[] | undefined;
|
|
2573
|
+
id: 9746;
|
|
2574
|
+
name: "Plasma Testnet";
|
|
2575
|
+
nativeCurrency: {
|
|
2576
|
+
readonly name: "Testnet Plasma";
|
|
2577
|
+
readonly symbol: "XPL";
|
|
2578
|
+
readonly decimals: 18;
|
|
2579
|
+
};
|
|
2580
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
2581
|
+
rpcUrls: {
|
|
2582
|
+
readonly default: {
|
|
2583
|
+
readonly http: readonly ["https://testnet-rpc.plasma.to"];
|
|
2573
2584
|
};
|
|
2585
|
+
};
|
|
2586
|
+
sourceId?: number | undefined | undefined;
|
|
2587
|
+
testnet: true;
|
|
2588
|
+
custom?: Record<string, unknown> | undefined;
|
|
2589
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
2590
|
+
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
2591
|
+
formatters?: undefined;
|
|
2592
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
2593
|
+
client: import("viem").Client;
|
|
2594
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
2595
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
2596
|
+
client: import("viem").Client;
|
|
2597
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
2598
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
2599
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
2600
|
+
}] | undefined;
|
|
2601
|
+
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
2602
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
2603
|
+
} | {
|
|
2604
|
+
blockExplorers: {
|
|
2605
|
+
readonly default: {
|
|
2606
|
+
readonly name: "Etherscan";
|
|
2607
|
+
readonly url: "https://sepolia.etherscan.io";
|
|
2608
|
+
readonly apiUrl: "https://api-sepolia.etherscan.io/api";
|
|
2609
|
+
};
|
|
2610
|
+
};
|
|
2611
|
+
blockTime?: number | undefined | undefined;
|
|
2612
|
+
contracts: {
|
|
2574
2613
|
readonly multicall3: {
|
|
2575
2614
|
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
2576
|
-
readonly blockCreated:
|
|
2577
|
-
};
|
|
2578
|
-
readonly portal: {
|
|
2579
|
-
readonly 11155111: {
|
|
2580
|
-
readonly address: "0x16Fc5058F25648194471939df75CF27A2fdC48BC";
|
|
2581
|
-
};
|
|
2615
|
+
readonly blockCreated: 751532;
|
|
2582
2616
|
};
|
|
2583
|
-
readonly
|
|
2584
|
-
readonly
|
|
2585
|
-
|
|
2586
|
-
};
|
|
2617
|
+
readonly ensUniversalResolver: {
|
|
2618
|
+
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
2619
|
+
readonly blockCreated: 8928790;
|
|
2587
2620
|
};
|
|
2588
|
-
|
|
2589
|
-
|
|
2621
|
+
};
|
|
2622
|
+
ensTlds?: readonly string[] | undefined;
|
|
2623
|
+
id: 11155111;
|
|
2624
|
+
name: "Sepolia";
|
|
2625
|
+
nativeCurrency: {
|
|
2626
|
+
readonly name: "Sepolia Ether";
|
|
2627
|
+
readonly symbol: "ETH";
|
|
2628
|
+
readonly decimals: 18;
|
|
2629
|
+
};
|
|
2630
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
2631
|
+
rpcUrls: {
|
|
2632
|
+
readonly default: {
|
|
2633
|
+
readonly http: readonly ["https://11155111.rpc.thirdweb.com"];
|
|
2590
2634
|
};
|
|
2591
|
-
|
|
2592
|
-
|
|
2635
|
+
};
|
|
2636
|
+
sourceId?: number | undefined | undefined;
|
|
2637
|
+
testnet: true;
|
|
2638
|
+
custom?: Record<string, unknown> | undefined;
|
|
2639
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
2640
|
+
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
2641
|
+
formatters?: undefined;
|
|
2642
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
2643
|
+
client: import("viem").Client;
|
|
2644
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
2645
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
2646
|
+
client: import("viem").Client;
|
|
2647
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
2648
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
2649
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
2650
|
+
}] | undefined;
|
|
2651
|
+
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
2652
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
2653
|
+
})[];
|
|
2654
|
+
declare const chains: ({
|
|
2655
|
+
blockExplorers: {
|
|
2656
|
+
readonly default: {
|
|
2657
|
+
readonly name: "Arbiscan";
|
|
2658
|
+
readonly url: "https://arbiscan.io";
|
|
2659
|
+
readonly apiUrl: "https://api.arbiscan.io/api";
|
|
2593
2660
|
};
|
|
2594
|
-
|
|
2595
|
-
|
|
2661
|
+
};
|
|
2662
|
+
blockTime: 250;
|
|
2663
|
+
contracts: {
|
|
2664
|
+
readonly multicall3: {
|
|
2665
|
+
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
2666
|
+
readonly blockCreated: 7654707;
|
|
2596
2667
|
};
|
|
2597
|
-
|
|
2598
|
-
|
|
2668
|
+
};
|
|
2669
|
+
ensTlds?: readonly string[] | undefined;
|
|
2670
|
+
id: 42161;
|
|
2671
|
+
name: "Arbitrum One";
|
|
2672
|
+
nativeCurrency: {
|
|
2673
|
+
readonly name: "Ether";
|
|
2674
|
+
readonly symbol: "ETH";
|
|
2675
|
+
readonly decimals: 18;
|
|
2676
|
+
};
|
|
2677
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
2678
|
+
rpcUrls: {
|
|
2679
|
+
readonly default: {
|
|
2680
|
+
readonly http: readonly ["https://arb1.arbitrum.io/rpc"];
|
|
2599
2681
|
};
|
|
2600
|
-
|
|
2601
|
-
|
|
2682
|
+
};
|
|
2683
|
+
sourceId?: number | undefined | undefined;
|
|
2684
|
+
testnet?: boolean | undefined | undefined;
|
|
2685
|
+
custom?: Record<string, unknown> | undefined;
|
|
2686
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
2687
|
+
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
2688
|
+
formatters?: undefined;
|
|
2689
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
2690
|
+
client: import("viem").Client;
|
|
2691
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
2692
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
2693
|
+
client: import("viem").Client;
|
|
2694
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
2695
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
2696
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
2697
|
+
}] | undefined;
|
|
2698
|
+
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
2699
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
2700
|
+
} | {
|
|
2701
|
+
blockExplorers: {
|
|
2702
|
+
readonly default: {
|
|
2703
|
+
readonly name: "Arbiscan";
|
|
2704
|
+
readonly url: "https://sepolia.arbiscan.io";
|
|
2705
|
+
readonly apiUrl: "https://api-sepolia.arbiscan.io/api";
|
|
2602
2706
|
};
|
|
2603
|
-
|
|
2604
|
-
|
|
2707
|
+
};
|
|
2708
|
+
blockTime: 250;
|
|
2709
|
+
contracts: {
|
|
2710
|
+
readonly multicall3: {
|
|
2711
|
+
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
2712
|
+
readonly blockCreated: 81930;
|
|
2605
2713
|
};
|
|
2606
2714
|
};
|
|
2607
2715
|
ensTlds?: readonly string[] | undefined;
|
|
2608
|
-
id:
|
|
2609
|
-
name: "
|
|
2716
|
+
id: 421614;
|
|
2717
|
+
name: "Arbitrum Sepolia";
|
|
2610
2718
|
nativeCurrency: {
|
|
2611
|
-
readonly name: "Sepolia Ether";
|
|
2719
|
+
readonly name: "Arbitrum Sepolia Ether";
|
|
2612
2720
|
readonly symbol: "ETH";
|
|
2613
2721
|
readonly decimals: 18;
|
|
2614
2722
|
};
|
|
2615
2723
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
2616
2724
|
rpcUrls: {
|
|
2617
2725
|
readonly default: {
|
|
2618
|
-
readonly http: readonly ["https://sepolia.
|
|
2726
|
+
readonly http: readonly ["https://sepolia-rollup.arbitrum.io/rpc"];
|
|
2619
2727
|
};
|
|
2620
2728
|
};
|
|
2621
|
-
sourceId
|
|
2729
|
+
sourceId?: number | undefined | undefined;
|
|
2622
2730
|
testnet: true;
|
|
2623
2731
|
custom?: Record<string, unknown> | undefined;
|
|
2624
2732
|
extendSchema?: Record<string, unknown> | undefined;
|
|
2625
2733
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
2626
|
-
formatters
|
|
2627
|
-
readonly block: {
|
|
2628
|
-
exclude: [] | undefined;
|
|
2629
|
-
format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
|
|
2630
|
-
baseFeePerGas: bigint | null;
|
|
2631
|
-
blobGasUsed: bigint;
|
|
2632
|
-
difficulty: bigint;
|
|
2633
|
-
excessBlobGas: bigint;
|
|
2634
|
-
extraData: import("viem").Hex;
|
|
2635
|
-
gasLimit: bigint;
|
|
2636
|
-
gasUsed: bigint;
|
|
2637
|
-
hash: `0x${string}` | null;
|
|
2638
|
-
logsBloom: `0x${string}` | null;
|
|
2639
|
-
miner: import("abitype").Address;
|
|
2640
|
-
mixHash: import("viem").Hash;
|
|
2641
|
-
nonce: `0x${string}` | null;
|
|
2642
|
-
number: bigint | null;
|
|
2643
|
-
parentBeaconBlockRoot?: `0x${string}` | undefined;
|
|
2644
|
-
parentHash: import("viem").Hash;
|
|
2645
|
-
receiptsRoot: import("viem").Hex;
|
|
2646
|
-
sealFields: import("viem").Hex[];
|
|
2647
|
-
sha3Uncles: import("viem").Hash;
|
|
2648
|
-
size: bigint;
|
|
2649
|
-
stateRoot: import("viem").Hash;
|
|
2650
|
-
timestamp: bigint;
|
|
2651
|
-
totalDifficulty: bigint | null;
|
|
2652
|
-
transactions: `0x${string}`[] | import("viem/chains").OpStackTransaction<boolean>[];
|
|
2653
|
-
transactionsRoot: import("viem").Hash;
|
|
2654
|
-
uncles: import("viem").Hash[];
|
|
2655
|
-
withdrawals?: import("viem").Withdrawal[] | undefined | undefined;
|
|
2656
|
-
withdrawalsRoot?: `0x${string}` | undefined;
|
|
2657
|
-
} & {};
|
|
2658
|
-
type: "block";
|
|
2659
|
-
};
|
|
2660
|
-
readonly transaction: {
|
|
2661
|
-
exclude: [] | undefined;
|
|
2662
|
-
format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
|
|
2663
|
-
blockHash: `0x${string}` | null;
|
|
2664
|
-
blockNumber: bigint | null;
|
|
2665
|
-
blockTimestamp?: bigint | undefined;
|
|
2666
|
-
from: import("abitype").Address;
|
|
2667
|
-
gas: bigint;
|
|
2668
|
-
hash: import("viem").Hash;
|
|
2669
|
-
input: import("viem").Hex;
|
|
2670
|
-
nonce: number;
|
|
2671
|
-
r: import("viem").Hex;
|
|
2672
|
-
s: import("viem").Hex;
|
|
2673
|
-
to: import("abitype").Address | null;
|
|
2674
|
-
transactionIndex: number | null;
|
|
2675
|
-
typeHex: import("viem").Hex | null;
|
|
2676
|
-
v: bigint;
|
|
2677
|
-
value: bigint;
|
|
2678
|
-
yParity: number;
|
|
2679
|
-
gasPrice?: undefined | undefined;
|
|
2680
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
2681
|
-
maxFeePerGas: bigint;
|
|
2682
|
-
maxPriorityFeePerGas: bigint;
|
|
2683
|
-
isSystemTx?: boolean;
|
|
2684
|
-
mint?: bigint | undefined | undefined;
|
|
2685
|
-
sourceHash: import("viem").Hex;
|
|
2686
|
-
type: "deposit";
|
|
2687
|
-
} | {
|
|
2688
|
-
r: import("viem").Hex;
|
|
2689
|
-
s: import("viem").Hex;
|
|
2690
|
-
v: bigint;
|
|
2691
|
-
to: import("abitype").Address | null;
|
|
2692
|
-
from: import("abitype").Address;
|
|
2693
|
-
gas: bigint;
|
|
2694
|
-
nonce: number;
|
|
2695
|
-
value: bigint;
|
|
2696
|
-
blockHash: `0x${string}` | null;
|
|
2697
|
-
blockNumber: bigint | null;
|
|
2698
|
-
blockTimestamp?: bigint | undefined;
|
|
2699
|
-
hash: import("viem").Hash;
|
|
2700
|
-
input: import("viem").Hex;
|
|
2701
|
-
transactionIndex: number | null;
|
|
2702
|
-
typeHex: import("viem").Hex | null;
|
|
2703
|
-
accessList?: undefined | undefined;
|
|
2704
|
-
authorizationList?: undefined | undefined;
|
|
2705
|
-
blobVersionedHashes?: undefined | undefined;
|
|
2706
|
-
chainId?: number | undefined;
|
|
2707
|
-
yParity?: undefined | undefined;
|
|
2708
|
-
type: "legacy";
|
|
2709
|
-
gasPrice: bigint;
|
|
2710
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
2711
|
-
maxFeePerGas?: undefined | undefined;
|
|
2712
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
2713
|
-
isSystemTx?: undefined | undefined;
|
|
2714
|
-
mint?: undefined | undefined;
|
|
2715
|
-
sourceHash?: undefined | undefined;
|
|
2716
|
-
} | {
|
|
2717
|
-
blockHash: `0x${string}` | null;
|
|
2718
|
-
blockNumber: bigint | null;
|
|
2719
|
-
blockTimestamp?: bigint | undefined;
|
|
2720
|
-
from: import("abitype").Address;
|
|
2721
|
-
gas: bigint;
|
|
2722
|
-
hash: import("viem").Hash;
|
|
2723
|
-
input: import("viem").Hex;
|
|
2724
|
-
nonce: number;
|
|
2725
|
-
r: import("viem").Hex;
|
|
2726
|
-
s: import("viem").Hex;
|
|
2727
|
-
to: import("abitype").Address | null;
|
|
2728
|
-
transactionIndex: number | null;
|
|
2729
|
-
typeHex: import("viem").Hex | null;
|
|
2730
|
-
v: bigint;
|
|
2731
|
-
value: bigint;
|
|
2732
|
-
yParity: number;
|
|
2733
|
-
accessList: import("viem").AccessList;
|
|
2734
|
-
authorizationList?: undefined | undefined;
|
|
2735
|
-
blobVersionedHashes?: undefined | undefined;
|
|
2736
|
-
chainId: number;
|
|
2737
|
-
type: "eip2930";
|
|
2738
|
-
gasPrice: bigint;
|
|
2739
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
2740
|
-
maxFeePerGas?: undefined | undefined;
|
|
2741
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
2742
|
-
isSystemTx?: undefined | undefined;
|
|
2743
|
-
mint?: undefined | undefined;
|
|
2744
|
-
sourceHash?: undefined | undefined;
|
|
2745
|
-
} | {
|
|
2746
|
-
blockHash: `0x${string}` | null;
|
|
2747
|
-
blockNumber: bigint | null;
|
|
2748
|
-
blockTimestamp?: bigint | undefined;
|
|
2749
|
-
from: import("abitype").Address;
|
|
2750
|
-
gas: bigint;
|
|
2751
|
-
hash: import("viem").Hash;
|
|
2752
|
-
input: import("viem").Hex;
|
|
2753
|
-
nonce: number;
|
|
2754
|
-
r: import("viem").Hex;
|
|
2755
|
-
s: import("viem").Hex;
|
|
2756
|
-
to: import("abitype").Address | null;
|
|
2757
|
-
transactionIndex: number | null;
|
|
2758
|
-
typeHex: import("viem").Hex | null;
|
|
2759
|
-
v: bigint;
|
|
2760
|
-
value: bigint;
|
|
2761
|
-
yParity: number;
|
|
2762
|
-
accessList: import("viem").AccessList;
|
|
2763
|
-
authorizationList?: undefined | undefined;
|
|
2764
|
-
blobVersionedHashes?: undefined | undefined;
|
|
2765
|
-
chainId: number;
|
|
2766
|
-
type: "eip1559";
|
|
2767
|
-
gasPrice?: undefined | undefined;
|
|
2768
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
2769
|
-
maxFeePerGas: bigint;
|
|
2770
|
-
maxPriorityFeePerGas: bigint;
|
|
2771
|
-
isSystemTx?: undefined | undefined;
|
|
2772
|
-
mint?: undefined | undefined;
|
|
2773
|
-
sourceHash?: undefined | undefined;
|
|
2774
|
-
} | {
|
|
2775
|
-
blockHash: `0x${string}` | null;
|
|
2776
|
-
blockNumber: bigint | null;
|
|
2777
|
-
blockTimestamp?: bigint | undefined;
|
|
2778
|
-
from: import("abitype").Address;
|
|
2779
|
-
gas: bigint;
|
|
2780
|
-
hash: import("viem").Hash;
|
|
2781
|
-
input: import("viem").Hex;
|
|
2782
|
-
nonce: number;
|
|
2783
|
-
r: import("viem").Hex;
|
|
2784
|
-
s: import("viem").Hex;
|
|
2785
|
-
to: import("abitype").Address | null;
|
|
2786
|
-
transactionIndex: number | null;
|
|
2787
|
-
typeHex: import("viem").Hex | null;
|
|
2788
|
-
v: bigint;
|
|
2789
|
-
value: bigint;
|
|
2790
|
-
yParity: number;
|
|
2791
|
-
accessList: import("viem").AccessList;
|
|
2792
|
-
authorizationList?: undefined | undefined;
|
|
2793
|
-
blobVersionedHashes: readonly import("viem").Hex[];
|
|
2794
|
-
chainId: number;
|
|
2795
|
-
type: "eip4844";
|
|
2796
|
-
gasPrice?: undefined | undefined;
|
|
2797
|
-
maxFeePerBlobGas: bigint;
|
|
2798
|
-
maxFeePerGas: bigint;
|
|
2799
|
-
maxPriorityFeePerGas: bigint;
|
|
2800
|
-
isSystemTx?: undefined | undefined;
|
|
2801
|
-
mint?: undefined | undefined;
|
|
2802
|
-
sourceHash?: undefined | undefined;
|
|
2803
|
-
} | {
|
|
2804
|
-
blockHash: `0x${string}` | null;
|
|
2805
|
-
blockNumber: bigint | null;
|
|
2806
|
-
blockTimestamp?: bigint | undefined;
|
|
2807
|
-
from: import("abitype").Address;
|
|
2808
|
-
gas: bigint;
|
|
2809
|
-
hash: import("viem").Hash;
|
|
2810
|
-
input: import("viem").Hex;
|
|
2811
|
-
nonce: number;
|
|
2812
|
-
r: import("viem").Hex;
|
|
2813
|
-
s: import("viem").Hex;
|
|
2814
|
-
to: import("abitype").Address | null;
|
|
2815
|
-
transactionIndex: number | null;
|
|
2816
|
-
typeHex: import("viem").Hex | null;
|
|
2817
|
-
v: bigint;
|
|
2818
|
-
value: bigint;
|
|
2819
|
-
yParity: number;
|
|
2820
|
-
accessList: import("viem").AccessList;
|
|
2821
|
-
authorizationList: import("viem").SignedAuthorizationList;
|
|
2822
|
-
blobVersionedHashes?: undefined | undefined;
|
|
2823
|
-
chainId: number;
|
|
2824
|
-
type: "eip7702";
|
|
2825
|
-
gasPrice?: undefined | undefined;
|
|
2826
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
2827
|
-
maxFeePerGas: bigint;
|
|
2828
|
-
maxPriorityFeePerGas: bigint;
|
|
2829
|
-
isSystemTx?: undefined | undefined;
|
|
2830
|
-
mint?: undefined | undefined;
|
|
2831
|
-
sourceHash?: undefined | undefined;
|
|
2832
|
-
}) & {};
|
|
2833
|
-
type: "transaction";
|
|
2834
|
-
};
|
|
2835
|
-
readonly transactionReceipt: {
|
|
2836
|
-
exclude: [] | undefined;
|
|
2837
|
-
format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
|
|
2838
|
-
blobGasPrice?: bigint | undefined;
|
|
2839
|
-
blobGasUsed?: bigint | undefined;
|
|
2840
|
-
blockHash: import("viem").Hash;
|
|
2841
|
-
blockNumber: bigint;
|
|
2842
|
-
blockTimestamp?: bigint | undefined;
|
|
2843
|
-
contractAddress: import("abitype").Address | null | undefined;
|
|
2844
|
-
cumulativeGasUsed: bigint;
|
|
2845
|
-
effectiveGasPrice: bigint;
|
|
2846
|
-
from: import("abitype").Address;
|
|
2847
|
-
gasUsed: bigint;
|
|
2848
|
-
logs: import("viem").Log<bigint, number, false>[];
|
|
2849
|
-
logsBloom: import("viem").Hex;
|
|
2850
|
-
root?: `0x${string}` | undefined;
|
|
2851
|
-
status: "success" | "reverted";
|
|
2852
|
-
to: import("abitype").Address | null;
|
|
2853
|
-
transactionHash: import("viem").Hash;
|
|
2854
|
-
transactionIndex: number;
|
|
2855
|
-
type: import("viem").TransactionType;
|
|
2856
|
-
depositNonce?: bigint | undefined | undefined;
|
|
2857
|
-
depositReceiptVersion?: number | undefined | undefined;
|
|
2858
|
-
l1GasPrice: bigint | null;
|
|
2859
|
-
l1GasUsed: bigint | null;
|
|
2860
|
-
l1Fee: bigint | null;
|
|
2861
|
-
l1FeeScalar: number | null;
|
|
2862
|
-
} & {};
|
|
2863
|
-
type: "transactionReceipt";
|
|
2864
|
-
};
|
|
2865
|
-
};
|
|
2734
|
+
formatters?: undefined;
|
|
2866
2735
|
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
2867
2736
|
client: import("viem").Client;
|
|
2868
2737
|
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
@@ -2872,558 +2741,43 @@ declare const testnetChains: ({
|
|
|
2872
2741
|
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
2873
2742
|
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
2874
2743
|
}] | undefined;
|
|
2875
|
-
serializers
|
|
2876
|
-
readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
|
|
2877
|
-
};
|
|
2878
|
-
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
2879
|
-
} | {
|
|
2880
|
-
blockExplorers: {
|
|
2881
|
-
readonly default: {
|
|
2882
|
-
readonly name: "RouteScan";
|
|
2883
|
-
readonly url: "https://testnet.plasmascan.to";
|
|
2884
|
-
};
|
|
2885
|
-
};
|
|
2886
|
-
blockTime?: number | undefined | undefined;
|
|
2887
|
-
contracts: {
|
|
2888
|
-
readonly multicall3: {
|
|
2889
|
-
readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
|
|
2890
|
-
readonly blockCreated: 0;
|
|
2891
|
-
};
|
|
2892
|
-
};
|
|
2893
|
-
ensTlds?: readonly string[] | undefined;
|
|
2894
|
-
id: 9746;
|
|
2895
|
-
name: "Plasma Testnet";
|
|
2896
|
-
nativeCurrency: {
|
|
2897
|
-
readonly name: "Testnet Plasma";
|
|
2898
|
-
readonly symbol: "XPL";
|
|
2899
|
-
readonly decimals: 18;
|
|
2900
|
-
};
|
|
2901
|
-
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
2902
|
-
rpcUrls: {
|
|
2903
|
-
readonly default: {
|
|
2904
|
-
readonly http: readonly ["https://testnet-rpc.plasma.to"];
|
|
2905
|
-
};
|
|
2906
|
-
};
|
|
2907
|
-
sourceId?: number | undefined | undefined;
|
|
2908
|
-
testnet: true;
|
|
2909
|
-
custom?: Record<string, unknown> | undefined;
|
|
2910
|
-
extendSchema?: Record<string, unknown> | undefined;
|
|
2911
|
-
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
2912
|
-
formatters?: undefined;
|
|
2913
|
-
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
2914
|
-
client: import("viem").Client;
|
|
2915
|
-
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
2916
|
-
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
2917
|
-
client: import("viem").Client;
|
|
2918
|
-
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
2919
|
-
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
2920
|
-
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
2921
|
-
}] | undefined;
|
|
2922
|
-
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
2923
|
-
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
2924
|
-
} | {
|
|
2925
|
-
blockExplorers: {
|
|
2926
|
-
readonly default: {
|
|
2927
|
-
readonly name: "Etherscan";
|
|
2928
|
-
readonly url: "https://sepolia.etherscan.io";
|
|
2929
|
-
readonly apiUrl: "https://api-sepolia.etherscan.io/api";
|
|
2930
|
-
};
|
|
2931
|
-
};
|
|
2932
|
-
blockTime?: number | undefined | undefined;
|
|
2933
|
-
contracts: {
|
|
2934
|
-
readonly multicall3: {
|
|
2935
|
-
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
2936
|
-
readonly blockCreated: 751532;
|
|
2937
|
-
};
|
|
2938
|
-
readonly ensUniversalResolver: {
|
|
2939
|
-
readonly address: "0xeeeeeeee14d718c2b47d9923deab1335e144eeee";
|
|
2940
|
-
readonly blockCreated: 8928790;
|
|
2941
|
-
};
|
|
2942
|
-
};
|
|
2943
|
-
ensTlds?: readonly string[] | undefined;
|
|
2944
|
-
id: 11155111;
|
|
2945
|
-
name: "Sepolia";
|
|
2946
|
-
nativeCurrency: {
|
|
2947
|
-
readonly name: "Sepolia Ether";
|
|
2948
|
-
readonly symbol: "ETH";
|
|
2949
|
-
readonly decimals: 18;
|
|
2950
|
-
};
|
|
2951
|
-
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
2952
|
-
rpcUrls: {
|
|
2953
|
-
readonly default: {
|
|
2954
|
-
readonly http: readonly ["https://11155111.rpc.thirdweb.com"];
|
|
2955
|
-
};
|
|
2956
|
-
};
|
|
2957
|
-
sourceId?: number | undefined | undefined;
|
|
2958
|
-
testnet: true;
|
|
2959
|
-
custom?: Record<string, unknown> | undefined;
|
|
2960
|
-
extendSchema?: Record<string, unknown> | undefined;
|
|
2961
|
-
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
2962
|
-
formatters?: undefined;
|
|
2963
|
-
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
2964
|
-
client: import("viem").Client;
|
|
2965
|
-
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
2966
|
-
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
2967
|
-
client: import("viem").Client;
|
|
2968
|
-
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
2969
|
-
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
2970
|
-
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
2971
|
-
}] | undefined;
|
|
2972
|
-
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
2973
|
-
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
2974
|
-
})[];
|
|
2975
|
-
declare const chains: ({
|
|
2976
|
-
blockExplorers: {
|
|
2977
|
-
readonly default: {
|
|
2978
|
-
readonly name: "Arbiscan";
|
|
2979
|
-
readonly url: "https://arbiscan.io";
|
|
2980
|
-
readonly apiUrl: "https://api.arbiscan.io/api";
|
|
2981
|
-
};
|
|
2982
|
-
};
|
|
2983
|
-
blockTime: 250;
|
|
2984
|
-
contracts: {
|
|
2985
|
-
readonly multicall3: {
|
|
2986
|
-
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
2987
|
-
readonly blockCreated: 7654707;
|
|
2988
|
-
};
|
|
2989
|
-
};
|
|
2990
|
-
ensTlds?: readonly string[] | undefined;
|
|
2991
|
-
id: 42161;
|
|
2992
|
-
name: "Arbitrum One";
|
|
2993
|
-
nativeCurrency: {
|
|
2994
|
-
readonly name: "Ether";
|
|
2995
|
-
readonly symbol: "ETH";
|
|
2996
|
-
readonly decimals: 18;
|
|
2997
|
-
};
|
|
2998
|
-
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
2999
|
-
rpcUrls: {
|
|
3000
|
-
readonly default: {
|
|
3001
|
-
readonly http: readonly ["https://arb1.arbitrum.io/rpc"];
|
|
3002
|
-
};
|
|
3003
|
-
};
|
|
3004
|
-
sourceId?: number | undefined | undefined;
|
|
3005
|
-
testnet?: boolean | undefined | undefined;
|
|
3006
|
-
custom?: Record<string, unknown> | undefined;
|
|
3007
|
-
extendSchema?: Record<string, unknown> | undefined;
|
|
3008
|
-
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
3009
|
-
formatters?: undefined;
|
|
3010
|
-
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
3011
|
-
client: import("viem").Client;
|
|
3012
|
-
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
3013
|
-
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
3014
|
-
client: import("viem").Client;
|
|
3015
|
-
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
3016
|
-
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
3017
|
-
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
3018
|
-
}] | undefined;
|
|
3019
|
-
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
3020
|
-
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
3021
|
-
} | {
|
|
3022
|
-
blockExplorers: {
|
|
3023
|
-
readonly default: {
|
|
3024
|
-
readonly name: "Arbiscan";
|
|
3025
|
-
readonly url: "https://sepolia.arbiscan.io";
|
|
3026
|
-
readonly apiUrl: "https://api-sepolia.arbiscan.io/api";
|
|
3027
|
-
};
|
|
3028
|
-
};
|
|
3029
|
-
blockTime: 250;
|
|
3030
|
-
contracts: {
|
|
3031
|
-
readonly multicall3: {
|
|
3032
|
-
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
3033
|
-
readonly blockCreated: 81930;
|
|
3034
|
-
};
|
|
3035
|
-
};
|
|
3036
|
-
ensTlds?: readonly string[] | undefined;
|
|
3037
|
-
id: 421614;
|
|
3038
|
-
name: "Arbitrum Sepolia";
|
|
3039
|
-
nativeCurrency: {
|
|
3040
|
-
readonly name: "Arbitrum Sepolia Ether";
|
|
3041
|
-
readonly symbol: "ETH";
|
|
3042
|
-
readonly decimals: 18;
|
|
3043
|
-
};
|
|
3044
|
-
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
3045
|
-
rpcUrls: {
|
|
3046
|
-
readonly default: {
|
|
3047
|
-
readonly http: readonly ["https://sepolia-rollup.arbitrum.io/rpc"];
|
|
3048
|
-
};
|
|
3049
|
-
};
|
|
3050
|
-
sourceId?: number | undefined | undefined;
|
|
3051
|
-
testnet: true;
|
|
3052
|
-
custom?: Record<string, unknown> | undefined;
|
|
3053
|
-
extendSchema?: Record<string, unknown> | undefined;
|
|
3054
|
-
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
3055
|
-
formatters?: undefined;
|
|
3056
|
-
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
3057
|
-
client: import("viem").Client;
|
|
3058
|
-
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
3059
|
-
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
3060
|
-
client: import("viem").Client;
|
|
3061
|
-
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
3062
|
-
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
3063
|
-
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
3064
|
-
}] | undefined;
|
|
3065
|
-
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
2744
|
+
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
3066
2745
|
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
3067
2746
|
} | {
|
|
3068
2747
|
blockExplorers: {
|
|
3069
2748
|
readonly default: {
|
|
3070
2749
|
readonly name: "SnowTrace";
|
|
3071
|
-
readonly url: "https://snowtrace.io";
|
|
3072
|
-
readonly apiUrl: "https://api.snowtrace.io";
|
|
3073
|
-
};
|
|
3074
|
-
};
|
|
3075
|
-
blockTime: 1700;
|
|
3076
|
-
contracts: {
|
|
3077
|
-
readonly multicall3: {
|
|
3078
|
-
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
3079
|
-
readonly blockCreated: 11907934;
|
|
3080
|
-
};
|
|
3081
|
-
};
|
|
3082
|
-
ensTlds?: readonly string[] | undefined;
|
|
3083
|
-
id: 43114;
|
|
3084
|
-
name: "Avalanche";
|
|
3085
|
-
nativeCurrency: {
|
|
3086
|
-
readonly decimals: 18;
|
|
3087
|
-
readonly name: "Avalanche";
|
|
3088
|
-
readonly symbol: "AVAX";
|
|
3089
|
-
};
|
|
3090
|
-
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
3091
|
-
rpcUrls: {
|
|
3092
|
-
readonly default: {
|
|
3093
|
-
readonly http: readonly ["https://api.avax.network/ext/bc/C/rpc"];
|
|
3094
|
-
};
|
|
3095
|
-
};
|
|
3096
|
-
sourceId?: number | undefined | undefined;
|
|
3097
|
-
testnet?: boolean | undefined | undefined;
|
|
3098
|
-
custom?: Record<string, unknown> | undefined;
|
|
3099
|
-
extendSchema?: Record<string, unknown> | undefined;
|
|
3100
|
-
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
3101
|
-
formatters?: undefined;
|
|
3102
|
-
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
3103
|
-
client: import("viem").Client;
|
|
3104
|
-
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
3105
|
-
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
3106
|
-
client: import("viem").Client;
|
|
3107
|
-
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
3108
|
-
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
3109
|
-
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
3110
|
-
}] | undefined;
|
|
3111
|
-
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
3112
|
-
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
3113
|
-
} | {
|
|
3114
|
-
blockExplorers: {
|
|
3115
|
-
readonly default: {
|
|
3116
|
-
readonly name: "Basescan";
|
|
3117
|
-
readonly url: "https://basescan.org";
|
|
3118
|
-
readonly apiUrl: "https://api.basescan.org/api";
|
|
3119
|
-
};
|
|
3120
|
-
};
|
|
3121
|
-
blockTime: 2000;
|
|
3122
|
-
contracts: {
|
|
3123
|
-
readonly disputeGameFactory: {
|
|
3124
|
-
readonly 1: {
|
|
3125
|
-
readonly address: "0x43edB88C4B80fDD2AdFF2412A7BebF9dF42cB40e";
|
|
3126
|
-
};
|
|
3127
|
-
};
|
|
3128
|
-
readonly l2OutputOracle: {
|
|
3129
|
-
readonly 1: {
|
|
3130
|
-
readonly address: "0x56315b90c40730925ec5485cf004d835058518A0";
|
|
3131
|
-
};
|
|
3132
|
-
};
|
|
3133
|
-
readonly multicall3: {
|
|
3134
|
-
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
3135
|
-
readonly blockCreated: 5022;
|
|
3136
|
-
};
|
|
3137
|
-
readonly portal: {
|
|
3138
|
-
readonly 1: {
|
|
3139
|
-
readonly address: "0x49048044D57e1C92A77f79988d21Fa8fAF74E97e";
|
|
3140
|
-
readonly blockCreated: 17482143;
|
|
3141
|
-
};
|
|
3142
|
-
};
|
|
3143
|
-
readonly l1StandardBridge: {
|
|
3144
|
-
readonly 1: {
|
|
3145
|
-
readonly address: "0x3154Cf16ccdb4C6d922629664174b904d80F2C35";
|
|
3146
|
-
readonly blockCreated: 17482143;
|
|
3147
|
-
};
|
|
3148
|
-
};
|
|
3149
|
-
readonly gasPriceOracle: {
|
|
3150
|
-
readonly address: "0x420000000000000000000000000000000000000F";
|
|
3151
|
-
};
|
|
3152
|
-
readonly l1Block: {
|
|
3153
|
-
readonly address: "0x4200000000000000000000000000000000000015";
|
|
3154
|
-
};
|
|
3155
|
-
readonly l2CrossDomainMessenger: {
|
|
3156
|
-
readonly address: "0x4200000000000000000000000000000000000007";
|
|
3157
|
-
};
|
|
3158
|
-
readonly l2Erc721Bridge: {
|
|
3159
|
-
readonly address: "0x4200000000000000000000000000000000000014";
|
|
3160
|
-
};
|
|
3161
|
-
readonly l2StandardBridge: {
|
|
3162
|
-
readonly address: "0x4200000000000000000000000000000000000010";
|
|
3163
|
-
};
|
|
3164
|
-
readonly l2ToL1MessagePasser: {
|
|
3165
|
-
readonly address: "0x4200000000000000000000000000000000000016";
|
|
3166
|
-
};
|
|
3167
|
-
};
|
|
3168
|
-
ensTlds?: readonly string[] | undefined;
|
|
3169
|
-
id: 8453;
|
|
3170
|
-
name: "Base";
|
|
3171
|
-
nativeCurrency: {
|
|
3172
|
-
readonly name: "Ether";
|
|
3173
|
-
readonly symbol: "ETH";
|
|
3174
|
-
readonly decimals: 18;
|
|
3175
|
-
};
|
|
3176
|
-
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
3177
|
-
rpcUrls: {
|
|
3178
|
-
readonly default: {
|
|
3179
|
-
readonly http: readonly ["https://mainnet.base.org"];
|
|
3180
|
-
};
|
|
3181
|
-
};
|
|
3182
|
-
sourceId: 1;
|
|
3183
|
-
testnet?: boolean | undefined | undefined;
|
|
3184
|
-
custom?: Record<string, unknown> | undefined;
|
|
3185
|
-
extendSchema?: Record<string, unknown> | undefined;
|
|
3186
|
-
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
3187
|
-
formatters: {
|
|
3188
|
-
readonly block: {
|
|
3189
|
-
exclude: [] | undefined;
|
|
3190
|
-
format: (args: import("viem/chains").OpStackRpcBlock, action?: string | undefined) => {
|
|
3191
|
-
baseFeePerGas: bigint | null;
|
|
3192
|
-
blobGasUsed: bigint;
|
|
3193
|
-
difficulty: bigint;
|
|
3194
|
-
excessBlobGas: bigint;
|
|
3195
|
-
extraData: import("viem").Hex;
|
|
3196
|
-
gasLimit: bigint;
|
|
3197
|
-
gasUsed: bigint;
|
|
3198
|
-
hash: `0x${string}` | null;
|
|
3199
|
-
logsBloom: `0x${string}` | null;
|
|
3200
|
-
miner: import("abitype").Address;
|
|
3201
|
-
mixHash: import("viem").Hash;
|
|
3202
|
-
nonce: `0x${string}` | null;
|
|
3203
|
-
number: bigint | null;
|
|
3204
|
-
parentBeaconBlockRoot?: `0x${string}` | undefined;
|
|
3205
|
-
parentHash: import("viem").Hash;
|
|
3206
|
-
receiptsRoot: import("viem").Hex;
|
|
3207
|
-
sealFields: import("viem").Hex[];
|
|
3208
|
-
sha3Uncles: import("viem").Hash;
|
|
3209
|
-
size: bigint;
|
|
3210
|
-
stateRoot: import("viem").Hash;
|
|
3211
|
-
timestamp: bigint;
|
|
3212
|
-
totalDifficulty: bigint | null;
|
|
3213
|
-
transactions: `0x${string}`[] | import("viem/chains").OpStackTransaction<boolean>[];
|
|
3214
|
-
transactionsRoot: import("viem").Hash;
|
|
3215
|
-
uncles: import("viem").Hash[];
|
|
3216
|
-
withdrawals?: import("viem").Withdrawal[] | undefined | undefined;
|
|
3217
|
-
withdrawalsRoot?: `0x${string}` | undefined;
|
|
3218
|
-
} & {};
|
|
3219
|
-
type: "block";
|
|
3220
|
-
};
|
|
3221
|
-
readonly transaction: {
|
|
3222
|
-
exclude: [] | undefined;
|
|
3223
|
-
format: (args: import("viem/chains").OpStackRpcTransaction, action?: string | undefined) => ({
|
|
3224
|
-
blockHash: `0x${string}` | null;
|
|
3225
|
-
blockNumber: bigint | null;
|
|
3226
|
-
blockTimestamp?: bigint | undefined;
|
|
3227
|
-
from: import("abitype").Address;
|
|
3228
|
-
gas: bigint;
|
|
3229
|
-
hash: import("viem").Hash;
|
|
3230
|
-
input: import("viem").Hex;
|
|
3231
|
-
nonce: number;
|
|
3232
|
-
r: import("viem").Hex;
|
|
3233
|
-
s: import("viem").Hex;
|
|
3234
|
-
to: import("abitype").Address | null;
|
|
3235
|
-
transactionIndex: number | null;
|
|
3236
|
-
typeHex: import("viem").Hex | null;
|
|
3237
|
-
v: bigint;
|
|
3238
|
-
value: bigint;
|
|
3239
|
-
yParity: number;
|
|
3240
|
-
gasPrice?: undefined | undefined;
|
|
3241
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
3242
|
-
maxFeePerGas: bigint;
|
|
3243
|
-
maxPriorityFeePerGas: bigint;
|
|
3244
|
-
isSystemTx?: boolean;
|
|
3245
|
-
mint?: bigint | undefined | undefined;
|
|
3246
|
-
sourceHash: import("viem").Hex;
|
|
3247
|
-
type: "deposit";
|
|
3248
|
-
} | {
|
|
3249
|
-
r: import("viem").Hex;
|
|
3250
|
-
s: import("viem").Hex;
|
|
3251
|
-
v: bigint;
|
|
3252
|
-
to: import("abitype").Address | null;
|
|
3253
|
-
from: import("abitype").Address;
|
|
3254
|
-
gas: bigint;
|
|
3255
|
-
nonce: number;
|
|
3256
|
-
value: bigint;
|
|
3257
|
-
blockHash: `0x${string}` | null;
|
|
3258
|
-
blockNumber: bigint | null;
|
|
3259
|
-
blockTimestamp?: bigint | undefined;
|
|
3260
|
-
hash: import("viem").Hash;
|
|
3261
|
-
input: import("viem").Hex;
|
|
3262
|
-
transactionIndex: number | null;
|
|
3263
|
-
typeHex: import("viem").Hex | null;
|
|
3264
|
-
accessList?: undefined | undefined;
|
|
3265
|
-
authorizationList?: undefined | undefined;
|
|
3266
|
-
blobVersionedHashes?: undefined | undefined;
|
|
3267
|
-
chainId?: number | undefined;
|
|
3268
|
-
yParity?: undefined | undefined;
|
|
3269
|
-
type: "legacy";
|
|
3270
|
-
gasPrice: bigint;
|
|
3271
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
3272
|
-
maxFeePerGas?: undefined | undefined;
|
|
3273
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
3274
|
-
isSystemTx?: undefined | undefined;
|
|
3275
|
-
mint?: undefined | undefined;
|
|
3276
|
-
sourceHash?: undefined | undefined;
|
|
3277
|
-
} | {
|
|
3278
|
-
blockHash: `0x${string}` | null;
|
|
3279
|
-
blockNumber: bigint | null;
|
|
3280
|
-
blockTimestamp?: bigint | undefined;
|
|
3281
|
-
from: import("abitype").Address;
|
|
3282
|
-
gas: bigint;
|
|
3283
|
-
hash: import("viem").Hash;
|
|
3284
|
-
input: import("viem").Hex;
|
|
3285
|
-
nonce: number;
|
|
3286
|
-
r: import("viem").Hex;
|
|
3287
|
-
s: import("viem").Hex;
|
|
3288
|
-
to: import("abitype").Address | null;
|
|
3289
|
-
transactionIndex: number | null;
|
|
3290
|
-
typeHex: import("viem").Hex | null;
|
|
3291
|
-
v: bigint;
|
|
3292
|
-
value: bigint;
|
|
3293
|
-
yParity: number;
|
|
3294
|
-
accessList: import("viem").AccessList;
|
|
3295
|
-
authorizationList?: undefined | undefined;
|
|
3296
|
-
blobVersionedHashes?: undefined | undefined;
|
|
3297
|
-
chainId: number;
|
|
3298
|
-
type: "eip2930";
|
|
3299
|
-
gasPrice: bigint;
|
|
3300
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
3301
|
-
maxFeePerGas?: undefined | undefined;
|
|
3302
|
-
maxPriorityFeePerGas?: undefined | undefined;
|
|
3303
|
-
isSystemTx?: undefined | undefined;
|
|
3304
|
-
mint?: undefined | undefined;
|
|
3305
|
-
sourceHash?: undefined | undefined;
|
|
3306
|
-
} | {
|
|
3307
|
-
blockHash: `0x${string}` | null;
|
|
3308
|
-
blockNumber: bigint | null;
|
|
3309
|
-
blockTimestamp?: bigint | undefined;
|
|
3310
|
-
from: import("abitype").Address;
|
|
3311
|
-
gas: bigint;
|
|
3312
|
-
hash: import("viem").Hash;
|
|
3313
|
-
input: import("viem").Hex;
|
|
3314
|
-
nonce: number;
|
|
3315
|
-
r: import("viem").Hex;
|
|
3316
|
-
s: import("viem").Hex;
|
|
3317
|
-
to: import("abitype").Address | null;
|
|
3318
|
-
transactionIndex: number | null;
|
|
3319
|
-
typeHex: import("viem").Hex | null;
|
|
3320
|
-
v: bigint;
|
|
3321
|
-
value: bigint;
|
|
3322
|
-
yParity: number;
|
|
3323
|
-
accessList: import("viem").AccessList;
|
|
3324
|
-
authorizationList?: undefined | undefined;
|
|
3325
|
-
blobVersionedHashes?: undefined | undefined;
|
|
3326
|
-
chainId: number;
|
|
3327
|
-
type: "eip1559";
|
|
3328
|
-
gasPrice?: undefined | undefined;
|
|
3329
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
3330
|
-
maxFeePerGas: bigint;
|
|
3331
|
-
maxPriorityFeePerGas: bigint;
|
|
3332
|
-
isSystemTx?: undefined | undefined;
|
|
3333
|
-
mint?: undefined | undefined;
|
|
3334
|
-
sourceHash?: undefined | undefined;
|
|
3335
|
-
} | {
|
|
3336
|
-
blockHash: `0x${string}` | null;
|
|
3337
|
-
blockNumber: bigint | null;
|
|
3338
|
-
blockTimestamp?: bigint | undefined;
|
|
3339
|
-
from: import("abitype").Address;
|
|
3340
|
-
gas: bigint;
|
|
3341
|
-
hash: import("viem").Hash;
|
|
3342
|
-
input: import("viem").Hex;
|
|
3343
|
-
nonce: number;
|
|
3344
|
-
r: import("viem").Hex;
|
|
3345
|
-
s: import("viem").Hex;
|
|
3346
|
-
to: import("abitype").Address | null;
|
|
3347
|
-
transactionIndex: number | null;
|
|
3348
|
-
typeHex: import("viem").Hex | null;
|
|
3349
|
-
v: bigint;
|
|
3350
|
-
value: bigint;
|
|
3351
|
-
yParity: number;
|
|
3352
|
-
accessList: import("viem").AccessList;
|
|
3353
|
-
authorizationList?: undefined | undefined;
|
|
3354
|
-
blobVersionedHashes: readonly import("viem").Hex[];
|
|
3355
|
-
chainId: number;
|
|
3356
|
-
type: "eip4844";
|
|
3357
|
-
gasPrice?: undefined | undefined;
|
|
3358
|
-
maxFeePerBlobGas: bigint;
|
|
3359
|
-
maxFeePerGas: bigint;
|
|
3360
|
-
maxPriorityFeePerGas: bigint;
|
|
3361
|
-
isSystemTx?: undefined | undefined;
|
|
3362
|
-
mint?: undefined | undefined;
|
|
3363
|
-
sourceHash?: undefined | undefined;
|
|
3364
|
-
} | {
|
|
3365
|
-
blockHash: `0x${string}` | null;
|
|
3366
|
-
blockNumber: bigint | null;
|
|
3367
|
-
blockTimestamp?: bigint | undefined;
|
|
3368
|
-
from: import("abitype").Address;
|
|
3369
|
-
gas: bigint;
|
|
3370
|
-
hash: import("viem").Hash;
|
|
3371
|
-
input: import("viem").Hex;
|
|
3372
|
-
nonce: number;
|
|
3373
|
-
r: import("viem").Hex;
|
|
3374
|
-
s: import("viem").Hex;
|
|
3375
|
-
to: import("abitype").Address | null;
|
|
3376
|
-
transactionIndex: number | null;
|
|
3377
|
-
typeHex: import("viem").Hex | null;
|
|
3378
|
-
v: bigint;
|
|
3379
|
-
value: bigint;
|
|
3380
|
-
yParity: number;
|
|
3381
|
-
accessList: import("viem").AccessList;
|
|
3382
|
-
authorizationList: import("viem").SignedAuthorizationList;
|
|
3383
|
-
blobVersionedHashes?: undefined | undefined;
|
|
3384
|
-
chainId: number;
|
|
3385
|
-
type: "eip7702";
|
|
3386
|
-
gasPrice?: undefined | undefined;
|
|
3387
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
3388
|
-
maxFeePerGas: bigint;
|
|
3389
|
-
maxPriorityFeePerGas: bigint;
|
|
3390
|
-
isSystemTx?: undefined | undefined;
|
|
3391
|
-
mint?: undefined | undefined;
|
|
3392
|
-
sourceHash?: undefined | undefined;
|
|
3393
|
-
}) & {};
|
|
3394
|
-
type: "transaction";
|
|
3395
|
-
};
|
|
3396
|
-
readonly transactionReceipt: {
|
|
3397
|
-
exclude: [] | undefined;
|
|
3398
|
-
format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
|
|
3399
|
-
blobGasPrice?: bigint | undefined;
|
|
3400
|
-
blobGasUsed?: bigint | undefined;
|
|
3401
|
-
blockHash: import("viem").Hash;
|
|
3402
|
-
blockNumber: bigint;
|
|
3403
|
-
blockTimestamp?: bigint | undefined;
|
|
3404
|
-
contractAddress: import("abitype").Address | null | undefined;
|
|
3405
|
-
cumulativeGasUsed: bigint;
|
|
3406
|
-
effectiveGasPrice: bigint;
|
|
3407
|
-
from: import("abitype").Address;
|
|
3408
|
-
gasUsed: bigint;
|
|
3409
|
-
logs: import("viem").Log<bigint, number, false>[];
|
|
3410
|
-
logsBloom: import("viem").Hex;
|
|
3411
|
-
root?: `0x${string}` | undefined;
|
|
3412
|
-
status: "success" | "reverted";
|
|
3413
|
-
to: import("abitype").Address | null;
|
|
3414
|
-
transactionHash: import("viem").Hash;
|
|
3415
|
-
transactionIndex: number;
|
|
3416
|
-
type: import("viem").TransactionType;
|
|
3417
|
-
depositNonce?: bigint | undefined | undefined;
|
|
3418
|
-
depositReceiptVersion?: number | undefined | undefined;
|
|
3419
|
-
l1GasPrice: bigint | null;
|
|
3420
|
-
l1GasUsed: bigint | null;
|
|
3421
|
-
l1Fee: bigint | null;
|
|
3422
|
-
l1FeeScalar: number | null;
|
|
3423
|
-
} & {};
|
|
3424
|
-
type: "transactionReceipt";
|
|
2750
|
+
readonly url: "https://snowtrace.io";
|
|
2751
|
+
readonly apiUrl: "https://api.snowtrace.io";
|
|
2752
|
+
};
|
|
2753
|
+
};
|
|
2754
|
+
blockTime: 1700;
|
|
2755
|
+
contracts: {
|
|
2756
|
+
readonly multicall3: {
|
|
2757
|
+
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
2758
|
+
readonly blockCreated: 11907934;
|
|
2759
|
+
};
|
|
2760
|
+
};
|
|
2761
|
+
ensTlds?: readonly string[] | undefined;
|
|
2762
|
+
id: 43114;
|
|
2763
|
+
name: "Avalanche";
|
|
2764
|
+
nativeCurrency: {
|
|
2765
|
+
readonly decimals: 18;
|
|
2766
|
+
readonly name: "Avalanche";
|
|
2767
|
+
readonly symbol: "AVAX";
|
|
2768
|
+
};
|
|
2769
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
2770
|
+
rpcUrls: {
|
|
2771
|
+
readonly default: {
|
|
2772
|
+
readonly http: readonly ["https://api.avax.network/ext/bc/C/rpc"];
|
|
3425
2773
|
};
|
|
3426
2774
|
};
|
|
2775
|
+
sourceId?: number | undefined | undefined;
|
|
2776
|
+
testnet?: boolean | undefined | undefined;
|
|
2777
|
+
custom?: Record<string, unknown> | undefined;
|
|
2778
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
2779
|
+
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
2780
|
+
formatters?: undefined;
|
|
3427
2781
|
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
3428
2782
|
client: import("viem").Client;
|
|
3429
2783
|
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
@@ -3433,46 +2787,44 @@ declare const chains: ({
|
|
|
3433
2787
|
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
3434
2788
|
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
3435
2789
|
}] | undefined;
|
|
3436
|
-
serializers
|
|
3437
|
-
readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
|
|
3438
|
-
};
|
|
2790
|
+
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
3439
2791
|
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
3440
2792
|
} | {
|
|
3441
2793
|
blockExplorers: {
|
|
3442
2794
|
readonly default: {
|
|
3443
2795
|
readonly name: "Basescan";
|
|
3444
|
-
readonly url: "https://
|
|
3445
|
-
readonly apiUrl: "https://api
|
|
2796
|
+
readonly url: "https://basescan.org";
|
|
2797
|
+
readonly apiUrl: "https://api.basescan.org/api";
|
|
3446
2798
|
};
|
|
3447
2799
|
};
|
|
3448
2800
|
blockTime: 2000;
|
|
3449
2801
|
contracts: {
|
|
3450
2802
|
readonly disputeGameFactory: {
|
|
3451
|
-
readonly
|
|
3452
|
-
readonly address: "
|
|
2803
|
+
readonly 1: {
|
|
2804
|
+
readonly address: "0x43edB88C4B80fDD2AdFF2412A7BebF9dF42cB40e";
|
|
3453
2805
|
};
|
|
3454
2806
|
};
|
|
3455
2807
|
readonly l2OutputOracle: {
|
|
3456
|
-
readonly
|
|
3457
|
-
readonly address: "
|
|
2808
|
+
readonly 1: {
|
|
2809
|
+
readonly address: "0x56315b90c40730925ec5485cf004d835058518A0";
|
|
3458
2810
|
};
|
|
3459
2811
|
};
|
|
2812
|
+
readonly multicall3: {
|
|
2813
|
+
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
2814
|
+
readonly blockCreated: 5022;
|
|
2815
|
+
};
|
|
3460
2816
|
readonly portal: {
|
|
3461
|
-
readonly
|
|
3462
|
-
readonly address: "
|
|
3463
|
-
readonly blockCreated:
|
|
2817
|
+
readonly 1: {
|
|
2818
|
+
readonly address: "0x49048044D57e1C92A77f79988d21Fa8fAF74E97e";
|
|
2819
|
+
readonly blockCreated: 17482143;
|
|
3464
2820
|
};
|
|
3465
2821
|
};
|
|
3466
2822
|
readonly l1StandardBridge: {
|
|
3467
|
-
readonly
|
|
3468
|
-
readonly address: "
|
|
3469
|
-
readonly blockCreated:
|
|
2823
|
+
readonly 1: {
|
|
2824
|
+
readonly address: "0x3154Cf16ccdb4C6d922629664174b904d80F2C35";
|
|
2825
|
+
readonly blockCreated: 17482143;
|
|
3470
2826
|
};
|
|
3471
2827
|
};
|
|
3472
|
-
readonly multicall3: {
|
|
3473
|
-
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
3474
|
-
readonly blockCreated: 1059647;
|
|
3475
|
-
};
|
|
3476
2828
|
readonly gasPriceOracle: {
|
|
3477
2829
|
readonly address: "0x420000000000000000000000000000000000000F";
|
|
3478
2830
|
};
|
|
@@ -3493,21 +2845,21 @@ declare const chains: ({
|
|
|
3493
2845
|
};
|
|
3494
2846
|
};
|
|
3495
2847
|
ensTlds?: readonly string[] | undefined;
|
|
3496
|
-
id:
|
|
3497
|
-
name: "Base
|
|
2848
|
+
id: 8453;
|
|
2849
|
+
name: "Base";
|
|
3498
2850
|
nativeCurrency: {
|
|
3499
|
-
readonly name: "
|
|
2851
|
+
readonly name: "Ether";
|
|
3500
2852
|
readonly symbol: "ETH";
|
|
3501
2853
|
readonly decimals: 18;
|
|
3502
2854
|
};
|
|
3503
2855
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
3504
2856
|
rpcUrls: {
|
|
3505
2857
|
readonly default: {
|
|
3506
|
-
readonly http: readonly ["https://
|
|
2858
|
+
readonly http: readonly ["https://mainnet.base.org"];
|
|
3507
2859
|
};
|
|
3508
2860
|
};
|
|
3509
|
-
sourceId:
|
|
3510
|
-
testnet
|
|
2861
|
+
sourceId: 1;
|
|
2862
|
+
testnet?: boolean | undefined | undefined;
|
|
3511
2863
|
custom?: Record<string, unknown> | undefined;
|
|
3512
2864
|
extendSchema?: Record<string, unknown> | undefined;
|
|
3513
2865
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
@@ -3691,207 +3043,66 @@ declare const chains: ({
|
|
|
3691
3043
|
} | {
|
|
3692
3044
|
blockHash: `0x${string}` | null;
|
|
3693
3045
|
blockNumber: bigint | null;
|
|
3694
|
-
blockTimestamp?: bigint | undefined;
|
|
3695
|
-
from: import("abitype").Address;
|
|
3696
|
-
gas: bigint;
|
|
3697
|
-
hash: import("viem").Hash;
|
|
3698
|
-
input: import("viem").Hex;
|
|
3699
|
-
nonce: number;
|
|
3700
|
-
r: import("viem").Hex;
|
|
3701
|
-
s: import("viem").Hex;
|
|
3702
|
-
to: import("abitype").Address | null;
|
|
3703
|
-
transactionIndex: number | null;
|
|
3704
|
-
typeHex: import("viem").Hex | null;
|
|
3705
|
-
v: bigint;
|
|
3706
|
-
value: bigint;
|
|
3707
|
-
yParity: number;
|
|
3708
|
-
accessList: import("viem").AccessList;
|
|
3709
|
-
authorizationList: import("viem").SignedAuthorizationList;
|
|
3710
|
-
blobVersionedHashes?: undefined | undefined;
|
|
3711
|
-
chainId: number;
|
|
3712
|
-
type: "eip7702";
|
|
3713
|
-
gasPrice?: undefined | undefined;
|
|
3714
|
-
maxFeePerBlobGas?: undefined | undefined;
|
|
3715
|
-
maxFeePerGas: bigint;
|
|
3716
|
-
maxPriorityFeePerGas: bigint;
|
|
3717
|
-
isSystemTx?: undefined | undefined;
|
|
3718
|
-
mint?: undefined | undefined;
|
|
3719
|
-
sourceHash?: undefined | undefined;
|
|
3720
|
-
}) & {};
|
|
3721
|
-
type: "transaction";
|
|
3722
|
-
};
|
|
3723
|
-
readonly transactionReceipt: {
|
|
3724
|
-
exclude: [] | undefined;
|
|
3725
|
-
format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
|
|
3726
|
-
blobGasPrice?: bigint | undefined;
|
|
3727
|
-
blobGasUsed?: bigint | undefined;
|
|
3728
|
-
blockHash: import("viem").Hash;
|
|
3729
|
-
blockNumber: bigint;
|
|
3730
|
-
blockTimestamp?: bigint | undefined;
|
|
3731
|
-
contractAddress: import("abitype").Address | null | undefined;
|
|
3732
|
-
cumulativeGasUsed: bigint;
|
|
3733
|
-
effectiveGasPrice: bigint;
|
|
3734
|
-
from: import("abitype").Address;
|
|
3735
|
-
gasUsed: bigint;
|
|
3736
|
-
logs: import("viem").Log<bigint, number, false>[];
|
|
3737
|
-
logsBloom: import("viem").Hex;
|
|
3738
|
-
root?: `0x${string}` | undefined;
|
|
3739
|
-
status: "success" | "reverted";
|
|
3740
|
-
to: import("abitype").Address | null;
|
|
3741
|
-
transactionHash: import("viem").Hash;
|
|
3742
|
-
transactionIndex: number;
|
|
3743
|
-
type: import("viem").TransactionType;
|
|
3744
|
-
depositNonce?: bigint | undefined | undefined;
|
|
3745
|
-
depositReceiptVersion?: number | undefined | undefined;
|
|
3746
|
-
l1GasPrice: bigint | null;
|
|
3747
|
-
l1GasUsed: bigint | null;
|
|
3748
|
-
l1Fee: bigint | null;
|
|
3749
|
-
l1FeeScalar: number | null;
|
|
3750
|
-
} & {};
|
|
3751
|
-
type: "transactionReceipt";
|
|
3752
|
-
};
|
|
3753
|
-
};
|
|
3754
|
-
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
3755
|
-
client: import("viem").Client;
|
|
3756
|
-
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
3757
|
-
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
3758
|
-
client: import("viem").Client;
|
|
3759
|
-
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
3760
|
-
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
3761
|
-
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
3762
|
-
}] | undefined;
|
|
3763
|
-
serializers: {
|
|
3764
|
-
readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
|
|
3765
|
-
};
|
|
3766
|
-
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
3767
|
-
readonly network: "base-sepolia";
|
|
3768
|
-
} | {
|
|
3769
|
-
blockExplorers: {
|
|
3770
|
-
readonly default: {
|
|
3771
|
-
readonly name: "BscScan";
|
|
3772
|
-
readonly url: "https://bscscan.com";
|
|
3773
|
-
readonly apiUrl: "https://api.bscscan.com/api";
|
|
3774
|
-
};
|
|
3775
|
-
};
|
|
3776
|
-
blockTime: 750;
|
|
3777
|
-
contracts: {
|
|
3778
|
-
readonly multicall3: {
|
|
3779
|
-
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
3780
|
-
readonly blockCreated: 15921452;
|
|
3781
|
-
};
|
|
3782
|
-
};
|
|
3783
|
-
ensTlds?: readonly string[] | undefined;
|
|
3784
|
-
id: 56;
|
|
3785
|
-
name: "BNB Smart Chain";
|
|
3786
|
-
nativeCurrency: {
|
|
3787
|
-
readonly decimals: 18;
|
|
3788
|
-
readonly name: "BNB";
|
|
3789
|
-
readonly symbol: "BNB";
|
|
3790
|
-
};
|
|
3791
|
-
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
3792
|
-
rpcUrls: {
|
|
3793
|
-
readonly default: {
|
|
3794
|
-
readonly http: readonly ["https://56.rpc.thirdweb.com"];
|
|
3795
|
-
};
|
|
3796
|
-
};
|
|
3797
|
-
sourceId?: number | undefined | undefined;
|
|
3798
|
-
testnet?: boolean | undefined | undefined;
|
|
3799
|
-
custom?: Record<string, unknown> | undefined;
|
|
3800
|
-
extendSchema?: Record<string, unknown> | undefined;
|
|
3801
|
-
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
3802
|
-
formatters?: undefined;
|
|
3803
|
-
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
3804
|
-
client: import("viem").Client;
|
|
3805
|
-
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
3806
|
-
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
3807
|
-
client: import("viem").Client;
|
|
3808
|
-
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
3809
|
-
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
3810
|
-
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
3811
|
-
}] | undefined;
|
|
3812
|
-
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
3813
|
-
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
3814
|
-
} | {
|
|
3815
|
-
blockExplorers: {
|
|
3816
|
-
readonly default: {
|
|
3817
|
-
readonly name: "Gnosisscan";
|
|
3818
|
-
readonly url: "https://gnosisscan.io";
|
|
3819
|
-
readonly apiUrl: "https://api.gnosisscan.io/api";
|
|
3820
|
-
};
|
|
3821
|
-
};
|
|
3822
|
-
blockTime: 5000;
|
|
3823
|
-
contracts: {
|
|
3824
|
-
readonly multicall3: {
|
|
3825
|
-
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
3826
|
-
readonly blockCreated: 21022491;
|
|
3827
|
-
};
|
|
3828
|
-
};
|
|
3829
|
-
ensTlds?: readonly string[] | undefined;
|
|
3830
|
-
id: 100;
|
|
3831
|
-
name: "Gnosis";
|
|
3832
|
-
nativeCurrency: {
|
|
3833
|
-
readonly decimals: 18;
|
|
3834
|
-
readonly name: "xDAI";
|
|
3835
|
-
readonly symbol: "XDAI";
|
|
3836
|
-
};
|
|
3837
|
-
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
3838
|
-
rpcUrls: {
|
|
3839
|
-
readonly default: {
|
|
3840
|
-
readonly http: readonly ["https://rpc.gnosischain.com"];
|
|
3841
|
-
readonly webSocket: readonly ["wss://rpc.gnosischain.com/wss"];
|
|
3842
|
-
};
|
|
3843
|
-
};
|
|
3844
|
-
sourceId?: number | undefined | undefined;
|
|
3845
|
-
testnet?: boolean | undefined | undefined;
|
|
3846
|
-
custom?: Record<string, unknown> | undefined;
|
|
3847
|
-
extendSchema?: Record<string, unknown> | undefined;
|
|
3848
|
-
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
3849
|
-
formatters?: undefined;
|
|
3850
|
-
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
3851
|
-
client: import("viem").Client;
|
|
3852
|
-
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
3853
|
-
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
3854
|
-
client: import("viem").Client;
|
|
3855
|
-
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
3856
|
-
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
3857
|
-
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
3858
|
-
}] | undefined;
|
|
3859
|
-
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
3860
|
-
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
3861
|
-
} | {
|
|
3862
|
-
blockExplorers: {
|
|
3863
|
-
readonly default: {
|
|
3864
|
-
readonly name: "HyperEVMScan";
|
|
3865
|
-
readonly url: "https://hyperevmscan.io";
|
|
3866
|
-
};
|
|
3867
|
-
};
|
|
3868
|
-
blockTime?: number | undefined | undefined;
|
|
3869
|
-
contracts: {
|
|
3870
|
-
readonly multicall3: {
|
|
3871
|
-
readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
|
|
3872
|
-
readonly blockCreated: 13051;
|
|
3046
|
+
blockTimestamp?: bigint | undefined;
|
|
3047
|
+
from: import("abitype").Address;
|
|
3048
|
+
gas: bigint;
|
|
3049
|
+
hash: import("viem").Hash;
|
|
3050
|
+
input: import("viem").Hex;
|
|
3051
|
+
nonce: number;
|
|
3052
|
+
r: import("viem").Hex;
|
|
3053
|
+
s: import("viem").Hex;
|
|
3054
|
+
to: import("abitype").Address | null;
|
|
3055
|
+
transactionIndex: number | null;
|
|
3056
|
+
typeHex: import("viem").Hex | null;
|
|
3057
|
+
v: bigint;
|
|
3058
|
+
value: bigint;
|
|
3059
|
+
yParity: number;
|
|
3060
|
+
accessList: import("viem").AccessList;
|
|
3061
|
+
authorizationList: import("viem").SignedAuthorizationList;
|
|
3062
|
+
blobVersionedHashes?: undefined | undefined;
|
|
3063
|
+
chainId: number;
|
|
3064
|
+
type: "eip7702";
|
|
3065
|
+
gasPrice?: undefined | undefined;
|
|
3066
|
+
maxFeePerBlobGas?: undefined | undefined;
|
|
3067
|
+
maxFeePerGas: bigint;
|
|
3068
|
+
maxPriorityFeePerGas: bigint;
|
|
3069
|
+
isSystemTx?: undefined | undefined;
|
|
3070
|
+
mint?: undefined | undefined;
|
|
3071
|
+
sourceHash?: undefined | undefined;
|
|
3072
|
+
}) & {};
|
|
3073
|
+
type: "transaction";
|
|
3873
3074
|
};
|
|
3874
|
-
|
|
3875
|
-
|
|
3876
|
-
|
|
3877
|
-
|
|
3878
|
-
|
|
3879
|
-
|
|
3880
|
-
|
|
3881
|
-
|
|
3882
|
-
|
|
3883
|
-
|
|
3884
|
-
|
|
3885
|
-
|
|
3886
|
-
|
|
3075
|
+
readonly transactionReceipt: {
|
|
3076
|
+
exclude: [] | undefined;
|
|
3077
|
+
format: (args: import("viem/chains").OpStackRpcTransactionReceipt, action?: string | undefined) => {
|
|
3078
|
+
blobGasPrice?: bigint | undefined;
|
|
3079
|
+
blobGasUsed?: bigint | undefined;
|
|
3080
|
+
blockHash: import("viem").Hash;
|
|
3081
|
+
blockNumber: bigint;
|
|
3082
|
+
blockTimestamp?: bigint | undefined;
|
|
3083
|
+
contractAddress: import("abitype").Address | null | undefined;
|
|
3084
|
+
cumulativeGasUsed: bigint;
|
|
3085
|
+
effectiveGasPrice: bigint;
|
|
3086
|
+
from: import("abitype").Address;
|
|
3087
|
+
gasUsed: bigint;
|
|
3088
|
+
logs: import("viem").Log<bigint, number, false>[];
|
|
3089
|
+
logsBloom: import("viem").Hex;
|
|
3090
|
+
root?: `0x${string}` | undefined;
|
|
3091
|
+
status: "success" | "reverted";
|
|
3092
|
+
to: import("abitype").Address | null;
|
|
3093
|
+
transactionHash: import("viem").Hash;
|
|
3094
|
+
transactionIndex: number;
|
|
3095
|
+
type: import("viem").TransactionType;
|
|
3096
|
+
depositNonce?: bigint | undefined | undefined;
|
|
3097
|
+
depositReceiptVersion?: number | undefined | undefined;
|
|
3098
|
+
l1GasPrice: bigint | null;
|
|
3099
|
+
l1GasUsed: bigint | null;
|
|
3100
|
+
l1Fee: bigint | null;
|
|
3101
|
+
l1FeeScalar: number | null;
|
|
3102
|
+
} & {};
|
|
3103
|
+
type: "transactionReceipt";
|
|
3887
3104
|
};
|
|
3888
3105
|
};
|
|
3889
|
-
sourceId?: number | undefined | undefined;
|
|
3890
|
-
testnet: false;
|
|
3891
|
-
custom?: Record<string, unknown> | undefined;
|
|
3892
|
-
extendSchema?: Record<string, unknown> | undefined;
|
|
3893
|
-
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
3894
|
-
formatters?: undefined;
|
|
3895
3106
|
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
3896
3107
|
client: import("viem").Client;
|
|
3897
3108
|
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
@@ -3901,33 +3112,46 @@ declare const chains: ({
|
|
|
3901
3112
|
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
3902
3113
|
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
3903
3114
|
}] | undefined;
|
|
3904
|
-
serializers
|
|
3115
|
+
serializers: {
|
|
3116
|
+
readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
|
|
3117
|
+
};
|
|
3905
3118
|
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
3906
3119
|
} | {
|
|
3907
3120
|
blockExplorers: {
|
|
3908
3121
|
readonly default: {
|
|
3909
|
-
readonly name: "
|
|
3910
|
-
readonly url: "https://
|
|
3911
|
-
readonly apiUrl: "https://
|
|
3122
|
+
readonly name: "Basescan";
|
|
3123
|
+
readonly url: "https://sepolia.basescan.org";
|
|
3124
|
+
readonly apiUrl: "https://api-sepolia.basescan.org/api";
|
|
3912
3125
|
};
|
|
3913
3126
|
};
|
|
3914
3127
|
blockTime: 2000;
|
|
3915
3128
|
contracts: {
|
|
3916
3129
|
readonly disputeGameFactory: {
|
|
3917
|
-
readonly
|
|
3918
|
-
readonly address: "
|
|
3130
|
+
readonly 11155111: {
|
|
3131
|
+
readonly address: "0xd6E6dBf4F7EA0ac412fD8b65ED297e64BB7a06E1";
|
|
3132
|
+
};
|
|
3133
|
+
};
|
|
3134
|
+
readonly l2OutputOracle: {
|
|
3135
|
+
readonly 11155111: {
|
|
3136
|
+
readonly address: "0x84457ca9D0163FbC4bbfe4Dfbb20ba46e48DF254";
|
|
3919
3137
|
};
|
|
3920
3138
|
};
|
|
3921
3139
|
readonly portal: {
|
|
3922
|
-
readonly
|
|
3923
|
-
readonly address: "
|
|
3140
|
+
readonly 11155111: {
|
|
3141
|
+
readonly address: "0x49f53e41452c74589e85ca1677426ba426459e85";
|
|
3142
|
+
readonly blockCreated: 4446677;
|
|
3924
3143
|
};
|
|
3925
3144
|
};
|
|
3926
3145
|
readonly l1StandardBridge: {
|
|
3927
|
-
readonly
|
|
3928
|
-
readonly address: "
|
|
3146
|
+
readonly 11155111: {
|
|
3147
|
+
readonly address: "0xfd0Bf71F60660E2f608ed56e1659C450eB113120";
|
|
3148
|
+
readonly blockCreated: 4446677;
|
|
3929
3149
|
};
|
|
3930
3150
|
};
|
|
3151
|
+
readonly multicall3: {
|
|
3152
|
+
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
3153
|
+
readonly blockCreated: 1059647;
|
|
3154
|
+
};
|
|
3931
3155
|
readonly gasPriceOracle: {
|
|
3932
3156
|
readonly address: "0x420000000000000000000000000000000000000F";
|
|
3933
3157
|
};
|
|
@@ -3946,28 +3170,23 @@ declare const chains: ({
|
|
|
3946
3170
|
readonly l2ToL1MessagePasser: {
|
|
3947
3171
|
readonly address: "0x4200000000000000000000000000000000000016";
|
|
3948
3172
|
};
|
|
3949
|
-
readonly multicall3: {
|
|
3950
|
-
readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
|
|
3951
|
-
readonly blockCreated: 0;
|
|
3952
|
-
};
|
|
3953
3173
|
};
|
|
3954
3174
|
ensTlds?: readonly string[] | undefined;
|
|
3955
|
-
id:
|
|
3956
|
-
name: "
|
|
3175
|
+
id: 84532;
|
|
3176
|
+
name: "Base Sepolia";
|
|
3957
3177
|
nativeCurrency: {
|
|
3958
|
-
readonly name: "Ether";
|
|
3178
|
+
readonly name: "Sepolia Ether";
|
|
3959
3179
|
readonly symbol: "ETH";
|
|
3960
3180
|
readonly decimals: 18;
|
|
3961
3181
|
};
|
|
3962
3182
|
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
3963
3183
|
rpcUrls: {
|
|
3964
3184
|
readonly default: {
|
|
3965
|
-
readonly http: readonly ["https://
|
|
3966
|
-
readonly webSocket: readonly ["wss://rpc-gel.inkonchain.com", "wss://rpc-qnd.inkonchain.com"];
|
|
3185
|
+
readonly http: readonly ["https://sepolia.base.org"];
|
|
3967
3186
|
};
|
|
3968
3187
|
};
|
|
3969
|
-
sourceId:
|
|
3970
|
-
testnet:
|
|
3188
|
+
sourceId: 11155111;
|
|
3189
|
+
testnet: true;
|
|
3971
3190
|
custom?: Record<string, unknown> | undefined;
|
|
3972
3191
|
extendSchema?: Record<string, unknown> | undefined;
|
|
3973
3192
|
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
@@ -4224,6 +3443,145 @@ declare const chains: ({
|
|
|
4224
3443
|
readonly transaction: typeof import("viem/chains").serializeTransactionOpStack;
|
|
4225
3444
|
};
|
|
4226
3445
|
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
3446
|
+
readonly network: "base-sepolia";
|
|
3447
|
+
} | {
|
|
3448
|
+
blockExplorers: {
|
|
3449
|
+
readonly default: {
|
|
3450
|
+
readonly name: "BscScan";
|
|
3451
|
+
readonly url: "https://bscscan.com";
|
|
3452
|
+
readonly apiUrl: "https://api.bscscan.com/api";
|
|
3453
|
+
};
|
|
3454
|
+
};
|
|
3455
|
+
blockTime: 750;
|
|
3456
|
+
contracts: {
|
|
3457
|
+
readonly multicall3: {
|
|
3458
|
+
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
3459
|
+
readonly blockCreated: 15921452;
|
|
3460
|
+
};
|
|
3461
|
+
};
|
|
3462
|
+
ensTlds?: readonly string[] | undefined;
|
|
3463
|
+
id: 56;
|
|
3464
|
+
name: "BNB Smart Chain";
|
|
3465
|
+
nativeCurrency: {
|
|
3466
|
+
readonly decimals: 18;
|
|
3467
|
+
readonly name: "BNB";
|
|
3468
|
+
readonly symbol: "BNB";
|
|
3469
|
+
};
|
|
3470
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
3471
|
+
rpcUrls: {
|
|
3472
|
+
readonly default: {
|
|
3473
|
+
readonly http: readonly ["https://56.rpc.thirdweb.com"];
|
|
3474
|
+
};
|
|
3475
|
+
};
|
|
3476
|
+
sourceId?: number | undefined | undefined;
|
|
3477
|
+
testnet?: boolean | undefined | undefined;
|
|
3478
|
+
custom?: Record<string, unknown> | undefined;
|
|
3479
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
3480
|
+
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
3481
|
+
formatters?: undefined;
|
|
3482
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
3483
|
+
client: import("viem").Client;
|
|
3484
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
3485
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
3486
|
+
client: import("viem").Client;
|
|
3487
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
3488
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
3489
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
3490
|
+
}] | undefined;
|
|
3491
|
+
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
3492
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
3493
|
+
} | {
|
|
3494
|
+
blockExplorers: {
|
|
3495
|
+
readonly default: {
|
|
3496
|
+
readonly name: "Gnosisscan";
|
|
3497
|
+
readonly url: "https://gnosisscan.io";
|
|
3498
|
+
readonly apiUrl: "https://api.gnosisscan.io/api";
|
|
3499
|
+
};
|
|
3500
|
+
};
|
|
3501
|
+
blockTime: 5000;
|
|
3502
|
+
contracts: {
|
|
3503
|
+
readonly multicall3: {
|
|
3504
|
+
readonly address: "0xca11bde05977b3631167028862be2a173976ca11";
|
|
3505
|
+
readonly blockCreated: 21022491;
|
|
3506
|
+
};
|
|
3507
|
+
};
|
|
3508
|
+
ensTlds?: readonly string[] | undefined;
|
|
3509
|
+
id: 100;
|
|
3510
|
+
name: "Gnosis";
|
|
3511
|
+
nativeCurrency: {
|
|
3512
|
+
readonly decimals: 18;
|
|
3513
|
+
readonly name: "xDAI";
|
|
3514
|
+
readonly symbol: "XDAI";
|
|
3515
|
+
};
|
|
3516
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
3517
|
+
rpcUrls: {
|
|
3518
|
+
readonly default: {
|
|
3519
|
+
readonly http: readonly ["https://rpc.gnosischain.com"];
|
|
3520
|
+
readonly webSocket: readonly ["wss://rpc.gnosischain.com/wss"];
|
|
3521
|
+
};
|
|
3522
|
+
};
|
|
3523
|
+
sourceId?: number | undefined | undefined;
|
|
3524
|
+
testnet?: boolean | undefined | undefined;
|
|
3525
|
+
custom?: Record<string, unknown> | undefined;
|
|
3526
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
3527
|
+
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
3528
|
+
formatters?: undefined;
|
|
3529
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
3530
|
+
client: import("viem").Client;
|
|
3531
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
3532
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
3533
|
+
client: import("viem").Client;
|
|
3534
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
3535
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
3536
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
3537
|
+
}] | undefined;
|
|
3538
|
+
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
3539
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
3540
|
+
} | {
|
|
3541
|
+
blockExplorers: {
|
|
3542
|
+
readonly default: {
|
|
3543
|
+
readonly name: "HyperEVMScan";
|
|
3544
|
+
readonly url: "https://hyperevmscan.io";
|
|
3545
|
+
};
|
|
3546
|
+
};
|
|
3547
|
+
blockTime?: number | undefined | undefined;
|
|
3548
|
+
contracts: {
|
|
3549
|
+
readonly multicall3: {
|
|
3550
|
+
readonly address: "0xcA11bde05977b3631167028862bE2a173976CA11";
|
|
3551
|
+
readonly blockCreated: 13051;
|
|
3552
|
+
};
|
|
3553
|
+
};
|
|
3554
|
+
ensTlds?: readonly string[] | undefined;
|
|
3555
|
+
id: 999;
|
|
3556
|
+
name: "HyperEVM";
|
|
3557
|
+
nativeCurrency: {
|
|
3558
|
+
readonly name: "HYPE";
|
|
3559
|
+
readonly symbol: "HYPE";
|
|
3560
|
+
readonly decimals: 18;
|
|
3561
|
+
};
|
|
3562
|
+
experimental_preconfirmationTime?: number | undefined | undefined;
|
|
3563
|
+
rpcUrls: {
|
|
3564
|
+
readonly default: {
|
|
3565
|
+
readonly http: readonly ["https://rpc.hyperliquid.xyz/evm"];
|
|
3566
|
+
};
|
|
3567
|
+
};
|
|
3568
|
+
sourceId?: number | undefined | undefined;
|
|
3569
|
+
testnet: false;
|
|
3570
|
+
custom?: Record<string, unknown> | undefined;
|
|
3571
|
+
extendSchema?: Record<string, unknown> | undefined;
|
|
3572
|
+
fees?: import("viem").ChainFees<undefined> | undefined;
|
|
3573
|
+
formatters?: undefined;
|
|
3574
|
+
prepareTransactionRequest?: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
3575
|
+
client: import("viem").Client;
|
|
3576
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
3577
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | [fn: ((args: import("viem").PrepareTransactionRequestParameters, options: {
|
|
3578
|
+
client: import("viem").Client;
|
|
3579
|
+
phase: "beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters";
|
|
3580
|
+
}) => Promise<import("viem").PrepareTransactionRequestParameters>) | undefined, options: {
|
|
3581
|
+
runAt: readonly ("beforeFillTransaction" | "beforeFillParameters" | "afterFillParameters")[];
|
|
3582
|
+
}] | undefined;
|
|
3583
|
+
serializers?: import("viem").ChainSerializers<undefined, import("viem").TransactionSerializable> | undefined;
|
|
3584
|
+
verifyHash?: ((client: import("viem").Client, parameters: import("viem").VerifyHashActionParameters) => Promise<import("viem").VerifyHashActionReturnType>) | undefined;
|
|
4227
3585
|
} | {
|
|
4228
3586
|
blockExplorers: {
|
|
4229
3587
|
readonly default: {
|
|
@@ -5966,8 +5324,7 @@ declare enum MainnetNetwork {
|
|
|
5966
5324
|
TRON = 728126428,
|
|
5967
5325
|
KATANA,
|
|
5968
5326
|
ROBINHOOD,
|
|
5969
|
-
AVALANCHE
|
|
5970
|
-
INK
|
|
5327
|
+
AVALANCHE
|
|
5971
5328
|
}
|
|
5972
5329
|
declare enum TestnetNetwork {
|
|
5973
5330
|
ETHEREUM_SEPOLIA,
|
|
@@ -5981,7 +5338,6 @@ declare enum OPStackChains {
|
|
|
5981
5338
|
MAINNET_BASE,
|
|
5982
5339
|
MAINNET_SONEIUM,
|
|
5983
5340
|
MAINNET_UNICHAIN,
|
|
5984
|
-
MAINNET_INK,
|
|
5985
5341
|
TESTNET_OPTIMISM,
|
|
5986
5342
|
TESTNET_BASE
|
|
5987
5343
|
}
|