@revoke.cash/chains 13.0.0 → 15.0.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/src/chains.js +846 -89
- package/dist/src/enums.d.ts +80 -14
- package/dist/src/enums.js +80 -14
- package/package.json +1 -1
package/dist/src/chains.js
CHANGED
|
@@ -12,6 +12,7 @@ exports.chains = {
|
|
|
12
12
|
'https://api.mycryptoapi.com/eth',
|
|
13
13
|
'https://cloudflare-eth.com',
|
|
14
14
|
'https://ethereum.publicnode.com',
|
|
15
|
+
'wss://ethereum.publicnode.com',
|
|
15
16
|
'https://mainnet.gateway.tenderly.co',
|
|
16
17
|
'wss://mainnet.gateway.tenderly.co'
|
|
17
18
|
],
|
|
@@ -115,6 +116,7 @@ exports.chains = {
|
|
|
115
116
|
'wss://goerli.infura.io/v3/${INFURA_API_KEY}',
|
|
116
117
|
'https://rpc.goerli.mudit.blog/',
|
|
117
118
|
'https://ethereum-goerli.publicnode.com',
|
|
119
|
+
'wss://ethereum-goerli.publicnode.com',
|
|
118
120
|
'https://goerli.gateway.tenderly.co',
|
|
119
121
|
'wss://goerli.gateway.tenderly.co'
|
|
120
122
|
],
|
|
@@ -145,6 +147,7 @@ exports.chains = {
|
|
|
145
147
|
},
|
|
146
148
|
6: {
|
|
147
149
|
name: 'Ethereum Classic Testnet Kotti',
|
|
150
|
+
status: 'deprecated',
|
|
148
151
|
chain: 'ETC',
|
|
149
152
|
rpc: ['https://www.ethercluster.com/kotti'],
|
|
150
153
|
faucets: [],
|
|
@@ -213,6 +216,7 @@ exports.chains = {
|
|
|
213
216
|
rpc: [
|
|
214
217
|
'https://mainnet.optimism.io',
|
|
215
218
|
'https://optimism.publicnode.com',
|
|
219
|
+
'wss://optimism.publicnode.com',
|
|
216
220
|
'https://optimism.gateway.tenderly.co',
|
|
217
221
|
'wss://optimism.gateway.tenderly.co'
|
|
218
222
|
],
|
|
@@ -391,7 +395,7 @@ exports.chains = {
|
|
|
391
395
|
name: 'Elastos Smart Chain',
|
|
392
396
|
chain: 'ETH',
|
|
393
397
|
rpc: ['https://api.elastos.io/eth'],
|
|
394
|
-
faucets: [
|
|
398
|
+
faucets: [],
|
|
395
399
|
nativeCurrency: { name: 'Elastos', symbol: 'ELA', decimals: 18 },
|
|
396
400
|
infoURL: 'https://www.elastos.org/',
|
|
397
401
|
shortName: 'esc',
|
|
@@ -461,7 +465,11 @@ exports.chains = {
|
|
|
461
465
|
25: {
|
|
462
466
|
name: 'Cronos Mainnet',
|
|
463
467
|
chain: 'CRO',
|
|
464
|
-
rpc: [
|
|
468
|
+
rpc: [
|
|
469
|
+
'https://evm.cronos.org',
|
|
470
|
+
'https://cronos-evm.publicnode.com',
|
|
471
|
+
'wss://cronos-evm.publicnode.com'
|
|
472
|
+
],
|
|
465
473
|
features: [{ name: 'EIP1559' }],
|
|
466
474
|
faucets: [],
|
|
467
475
|
nativeCurrency: { name: 'Cronos', symbol: 'CRO', decimals: 18 },
|
|
@@ -558,7 +566,7 @@ exports.chains = {
|
|
|
558
566
|
name: 'RSK Mainnet',
|
|
559
567
|
chain: 'RSK',
|
|
560
568
|
rpc: ['https://public-node.rsk.co', 'https://mycrypto.rsk.co'],
|
|
561
|
-
faucets: [
|
|
569
|
+
faucets: [],
|
|
562
570
|
nativeCurrency: { name: 'Smart Bitcoin', symbol: 'RBTC', decimals: 18 },
|
|
563
571
|
infoURL: 'https://rsk.co',
|
|
564
572
|
shortName: 'rsk',
|
|
@@ -667,16 +675,24 @@ exports.chains = {
|
|
|
667
675
|
]
|
|
668
676
|
},
|
|
669
677
|
37: {
|
|
670
|
-
name: '
|
|
671
|
-
chain: '
|
|
672
|
-
rpc: ['https://
|
|
673
|
-
faucets: [],
|
|
674
|
-
nativeCurrency: { name: '
|
|
675
|
-
infoURL: 'https://
|
|
676
|
-
shortName: '
|
|
677
|
-
icon: 'seedcoin',
|
|
678
|
+
name: 'Xpla Mainnet',
|
|
679
|
+
chain: 'XPLA',
|
|
680
|
+
rpc: ['https://dimension-evm-rpc.xpla.dev'],
|
|
681
|
+
faucets: [],
|
|
682
|
+
nativeCurrency: { name: 'XPLA', symbol: 'XPLA', decimals: 18 },
|
|
683
|
+
infoURL: 'https://xpla.io',
|
|
684
|
+
shortName: 'xpla',
|
|
678
685
|
chainId: 37,
|
|
679
|
-
networkId: 37
|
|
686
|
+
networkId: 37,
|
|
687
|
+
icon: 'xpla',
|
|
688
|
+
explorers: [
|
|
689
|
+
{
|
|
690
|
+
name: 'XPLA Explorer',
|
|
691
|
+
url: 'https://explorer.xpla.io/mainnet',
|
|
692
|
+
standard: 'EIP3091'
|
|
693
|
+
}
|
|
694
|
+
],
|
|
695
|
+
redFlags: ['reusedChainId']
|
|
680
696
|
},
|
|
681
697
|
38: {
|
|
682
698
|
name: 'Valorbit',
|
|
@@ -691,10 +707,10 @@ exports.chains = {
|
|
|
691
707
|
slip44: 538
|
|
692
708
|
},
|
|
693
709
|
39: {
|
|
694
|
-
name: '
|
|
710
|
+
name: 'U2U Solaris Mainnet',
|
|
695
711
|
chain: 'u2u',
|
|
696
|
-
rpc: ['https://rpc-
|
|
697
|
-
faucets: [
|
|
712
|
+
rpc: ['https://rpc-mainnet.uniultra.xyz'],
|
|
713
|
+
faucets: [],
|
|
698
714
|
nativeCurrency: { name: 'Unicorn Ultra', symbol: 'U2U', decimals: 18 },
|
|
699
715
|
infoURL: 'https://uniultra.xyz',
|
|
700
716
|
shortName: 'u2u',
|
|
@@ -705,7 +721,7 @@ exports.chains = {
|
|
|
705
721
|
{
|
|
706
722
|
icon: 'u2u',
|
|
707
723
|
name: 'U2U Explorer',
|
|
708
|
-
url: 'https://
|
|
724
|
+
url: 'https://u2uscan.xyz',
|
|
709
725
|
standard: 'EIP3091'
|
|
710
726
|
}
|
|
711
727
|
]
|
|
@@ -775,7 +791,7 @@ exports.chains = {
|
|
|
775
791
|
chain: 'pangolin',
|
|
776
792
|
rpc: ['https://pangolin-rpc.darwinia.network'],
|
|
777
793
|
faucets: [
|
|
778
|
-
'https://docs.
|
|
794
|
+
'https://docs.darwinia.network/pangolin-testnet-1e9ac8b09e874e8abd6a7f18c096ca6a'
|
|
779
795
|
],
|
|
780
796
|
nativeCurrency: {
|
|
781
797
|
name: 'Pangolin Network Native Token',
|
|
@@ -795,9 +811,14 @@ exports.chains = {
|
|
|
795
811
|
]
|
|
796
812
|
},
|
|
797
813
|
44: {
|
|
798
|
-
name: '
|
|
814
|
+
name: 'Crab Network',
|
|
799
815
|
chain: 'crab',
|
|
800
|
-
rpc: [
|
|
816
|
+
rpc: [
|
|
817
|
+
'https://crab-rpc.darwinia.network',
|
|
818
|
+
'https://crab-rpc.darwiniacommunitydao.xyz',
|
|
819
|
+
'https://crab.api.onfinality.io/public-ws',
|
|
820
|
+
'https://darwiniacrab-rpc.dwellir.com'
|
|
821
|
+
],
|
|
801
822
|
faucets: [],
|
|
802
823
|
nativeCurrency: {
|
|
803
824
|
name: 'Crab Network Native Token',
|
|
@@ -820,7 +841,9 @@ exports.chains = {
|
|
|
820
841
|
name: 'Darwinia Pangoro Testnet',
|
|
821
842
|
chain: 'pangoro',
|
|
822
843
|
rpc: ['https://pangoro-rpc.darwinia.network'],
|
|
823
|
-
faucets: [
|
|
844
|
+
faucets: [
|
|
845
|
+
'https://docs.darwinia.network/pangoro-testnet-70cfec5dc9ca42759959ba3803edaec2'
|
|
846
|
+
],
|
|
824
847
|
nativeCurrency: {
|
|
825
848
|
name: 'Pangoro Network Native Token',
|
|
826
849
|
symbol: 'ORING',
|
|
@@ -841,7 +864,12 @@ exports.chains = {
|
|
|
841
864
|
46: {
|
|
842
865
|
name: 'Darwinia Network',
|
|
843
866
|
chain: 'darwinia',
|
|
844
|
-
rpc: [
|
|
867
|
+
rpc: [
|
|
868
|
+
'https://rpc.darwinia.network',
|
|
869
|
+
'https://darwinia-rpc.darwiniacommunitydao.xyz',
|
|
870
|
+
'https://darwinia2.api.onfinality.io/public-ws',
|
|
871
|
+
'https://darwinia-rpc.dwellir.com'
|
|
872
|
+
],
|
|
845
873
|
faucets: [],
|
|
846
874
|
nativeCurrency: {
|
|
847
875
|
name: 'Darwinia Network Native Token',
|
|
@@ -1076,9 +1104,10 @@ exports.chains = {
|
|
|
1076
1104
|
'https://bsc-dataseed3.ninicoin.io',
|
|
1077
1105
|
'https://bsc-dataseed4.ninicoin.io',
|
|
1078
1106
|
'https://bsc.publicnode.com',
|
|
1107
|
+
'wss://bsc.publicnode.com',
|
|
1079
1108
|
'wss://bsc-ws-node.nariox.org'
|
|
1080
1109
|
],
|
|
1081
|
-
faucets: [
|
|
1110
|
+
faucets: [],
|
|
1082
1111
|
nativeCurrency: {
|
|
1083
1112
|
name: 'BNB Chain Native Token',
|
|
1084
1113
|
symbol: 'BNB',
|
|
@@ -1105,7 +1134,8 @@ exports.chains = {
|
|
|
1105
1134
|
'https://rpc.ankr.com/syscoin/${ANKR_API_KEY}',
|
|
1106
1135
|
'https://syscoin.public-rpc.com',
|
|
1107
1136
|
'wss://rpc.syscoin.org/wss',
|
|
1108
|
-
'https://syscoin-evm.publicnode.com'
|
|
1137
|
+
'https://syscoin-evm.publicnode.com',
|
|
1138
|
+
'wss://syscoin-evm.publicnode.com'
|
|
1109
1139
|
],
|
|
1110
1140
|
faucets: ['https://faucet.syscoin.org'],
|
|
1111
1141
|
nativeCurrency: { name: 'Syscoin', symbol: 'SYS', decimals: 18 },
|
|
@@ -1166,7 +1196,7 @@ exports.chains = {
|
|
|
1166
1196
|
name: 'GoChain',
|
|
1167
1197
|
chain: 'GO',
|
|
1168
1198
|
rpc: ['https://rpc.gochain.io'],
|
|
1169
|
-
faucets: [
|
|
1199
|
+
faucets: [],
|
|
1170
1200
|
nativeCurrency: { name: 'GoChain Ether', symbol: 'GO', decimals: 18 },
|
|
1171
1201
|
infoURL: 'https://gochain.io',
|
|
1172
1202
|
shortName: 'go',
|
|
@@ -1184,8 +1214,13 @@ exports.chains = {
|
|
|
1184
1214
|
61: {
|
|
1185
1215
|
name: 'Ethereum Classic Mainnet',
|
|
1186
1216
|
chain: 'ETC',
|
|
1187
|
-
rpc: [
|
|
1188
|
-
|
|
1217
|
+
rpc: [
|
|
1218
|
+
'https://etc.rivet.link',
|
|
1219
|
+
'https://etc.etcdesktop.com',
|
|
1220
|
+
'https://etc.mytokenpocket.vip'
|
|
1221
|
+
],
|
|
1222
|
+
features: [{ name: 'EIP155' }],
|
|
1223
|
+
faucets: [],
|
|
1189
1224
|
nativeCurrency: {
|
|
1190
1225
|
name: 'Ethereum Classic Ether',
|
|
1191
1226
|
symbol: 'ETC',
|
|
@@ -1200,7 +1235,7 @@ exports.chains = {
|
|
|
1200
1235
|
{
|
|
1201
1236
|
name: 'blockscout',
|
|
1202
1237
|
url: 'https://blockscout.com/etc/mainnet',
|
|
1203
|
-
standard: '
|
|
1238
|
+
standard: 'EIP3091'
|
|
1204
1239
|
}
|
|
1205
1240
|
]
|
|
1206
1241
|
},
|
|
@@ -1223,7 +1258,11 @@ exports.chains = {
|
|
|
1223
1258
|
name: 'Ethereum Classic Testnet Mordor',
|
|
1224
1259
|
chain: 'ETC',
|
|
1225
1260
|
rpc: ['https://rpc.mordor.etccooperative.org'],
|
|
1226
|
-
|
|
1261
|
+
features: [{ name: 'EIP155' }],
|
|
1262
|
+
faucets: [
|
|
1263
|
+
'https://mordor.canhaz.net/',
|
|
1264
|
+
'https://easy.hebeswap.com/#/faucet'
|
|
1265
|
+
],
|
|
1227
1266
|
nativeCurrency: {
|
|
1228
1267
|
name: 'Mordor Classic Testnet Ether',
|
|
1229
1268
|
symbol: 'METC',
|
|
@@ -1232,7 +1271,15 @@ exports.chains = {
|
|
|
1232
1271
|
infoURL: 'https://github.com/eth-classic/mordor/',
|
|
1233
1272
|
shortName: 'metc',
|
|
1234
1273
|
chainId: 63,
|
|
1235
|
-
networkId: 7
|
|
1274
|
+
networkId: 7,
|
|
1275
|
+
slip44: 63,
|
|
1276
|
+
explorers: [
|
|
1277
|
+
{
|
|
1278
|
+
name: 'blockscout',
|
|
1279
|
+
url: 'https://blockscout.com/etc/mordor',
|
|
1280
|
+
standard: 'EIP3091'
|
|
1281
|
+
}
|
|
1282
|
+
]
|
|
1236
1283
|
},
|
|
1237
1284
|
64: {
|
|
1238
1285
|
name: 'Ellaism',
|
|
@@ -1275,7 +1322,7 @@ exports.chains = {
|
|
|
1275
1322
|
'https://exchainrpc.okex.org',
|
|
1276
1323
|
'https://okc-mainnet.gateway.pokt.network/v1/lb/6275309bea1b320039c893ff'
|
|
1277
1324
|
],
|
|
1278
|
-
faucets: [
|
|
1325
|
+
faucets: [],
|
|
1279
1326
|
nativeCurrency: {
|
|
1280
1327
|
name: 'OKXChain Global Utility Token',
|
|
1281
1328
|
symbol: 'OKT',
|
|
@@ -1482,7 +1529,7 @@ exports.chains = {
|
|
|
1482
1529
|
'wss://sokol.poa.network/wss',
|
|
1483
1530
|
'ws://sokol.poa.network:8546'
|
|
1484
1531
|
],
|
|
1485
|
-
faucets: [
|
|
1532
|
+
faucets: [],
|
|
1486
1533
|
nativeCurrency: { name: 'POA Sokol Ether', symbol: 'SPOA', decimals: 18 },
|
|
1487
1534
|
infoURL: 'https://poa.network',
|
|
1488
1535
|
shortName: 'spoa',
|
|
@@ -1874,7 +1921,8 @@ exports.chains = {
|
|
|
1874
1921
|
'https://data-seed-prebsc-2-s2.bnbchain.org:8545',
|
|
1875
1922
|
'https://data-seed-prebsc-1-s3.bnbchain.org:8545',
|
|
1876
1923
|
'https://data-seed-prebsc-2-s3.bnbchain.org:8545',
|
|
1877
|
-
'https://bsc-testnet.publicnode.com'
|
|
1924
|
+
'https://bsc-testnet.publicnode.com',
|
|
1925
|
+
'wss://bsc-testnet.publicnode.com'
|
|
1878
1926
|
],
|
|
1879
1927
|
faucets: ['https://testnet.bnbchain.org/faucet-smart'],
|
|
1880
1928
|
nativeCurrency: {
|
|
@@ -2007,6 +2055,25 @@ exports.chains = {
|
|
|
2007
2055
|
chainId: 102,
|
|
2008
2056
|
networkId: 102
|
|
2009
2057
|
},
|
|
2058
|
+
103: {
|
|
2059
|
+
name: 'Worldland Mainnet',
|
|
2060
|
+
chain: 'Worldland',
|
|
2061
|
+
icon: 'worldland',
|
|
2062
|
+
rpc: ['https://seoul.worldland.foundation'],
|
|
2063
|
+
faucets: [],
|
|
2064
|
+
nativeCurrency: { name: 'Worldland', symbol: 'WL', decimals: 18 },
|
|
2065
|
+
infoURL: 'https://worldland.foundation',
|
|
2066
|
+
shortName: 'WLC',
|
|
2067
|
+
chainId: 103,
|
|
2068
|
+
networkId: 103,
|
|
2069
|
+
explorers: [
|
|
2070
|
+
{
|
|
2071
|
+
name: 'Worldland Explorer',
|
|
2072
|
+
url: 'https://scan.worldland.foundation',
|
|
2073
|
+
standard: 'EIP3091'
|
|
2074
|
+
}
|
|
2075
|
+
]
|
|
2076
|
+
},
|
|
2010
2077
|
104: {
|
|
2011
2078
|
name: 'Kaiba Lightning Chain Testnet',
|
|
2012
2079
|
chain: 'tKLC',
|
|
@@ -2099,7 +2166,7 @@ exports.chains = {
|
|
|
2099
2166
|
'https://mainnet-rpc.thundertoken.net',
|
|
2100
2167
|
'https://mainnet-rpc.thundercore.io'
|
|
2101
2168
|
],
|
|
2102
|
-
faucets: [
|
|
2169
|
+
faucets: [],
|
|
2103
2170
|
nativeCurrency: { name: 'ThunderCore Token', symbol: 'TT', decimals: 18 },
|
|
2104
2171
|
infoURL: 'https://thundercore.com',
|
|
2105
2172
|
shortName: 'TT',
|
|
@@ -2114,6 +2181,25 @@ exports.chains = {
|
|
|
2114
2181
|
}
|
|
2115
2182
|
]
|
|
2116
2183
|
},
|
|
2184
|
+
109: {
|
|
2185
|
+
name: 'Shibarium',
|
|
2186
|
+
chain: 'Shibarium',
|
|
2187
|
+
icon: 'shibarium',
|
|
2188
|
+
rpc: ['https://www.shibrpc.com'],
|
|
2189
|
+
faucets: [],
|
|
2190
|
+
nativeCurrency: { name: 'BONE Shibarium', symbol: 'BONE', decimals: 18 },
|
|
2191
|
+
infoURL: 'https://shibariumecosystem.com',
|
|
2192
|
+
shortName: 'shibariumecosystem',
|
|
2193
|
+
chainId: 109,
|
|
2194
|
+
networkId: 109,
|
|
2195
|
+
explorers: [
|
|
2196
|
+
{
|
|
2197
|
+
name: 'shibariumscan',
|
|
2198
|
+
url: 'https://www.shibariumscan.io',
|
|
2199
|
+
standard: 'none'
|
|
2200
|
+
}
|
|
2201
|
+
]
|
|
2202
|
+
},
|
|
2117
2203
|
110: {
|
|
2118
2204
|
name: 'Proton Testnet',
|
|
2119
2205
|
chain: 'XPR',
|
|
@@ -2320,7 +2406,7 @@ exports.chains = {
|
|
|
2320
2406
|
'wss://rcl-dataseed3.rclsidechain.com/v1/',
|
|
2321
2407
|
'wss://rcl-dataseed4.rclsidechain.com/v1/'
|
|
2322
2408
|
],
|
|
2323
|
-
faucets: [
|
|
2409
|
+
faucets: [],
|
|
2324
2410
|
nativeCurrency: { name: 'Realchain', symbol: 'REAL', decimals: 18 },
|
|
2325
2411
|
infoURL: 'https://www.rclsidechain.com/',
|
|
2326
2412
|
shortName: 'REAL',
|
|
@@ -2430,7 +2516,7 @@ exports.chains = {
|
|
|
2430
2516
|
'https://http-mainnet.hecochain.com',
|
|
2431
2517
|
'wss://ws-mainnet.hecochain.com'
|
|
2432
2518
|
],
|
|
2433
|
-
faucets: [
|
|
2519
|
+
faucets: [],
|
|
2434
2520
|
nativeCurrency: {
|
|
2435
2521
|
name: 'Huobi ECO Chain Native Token',
|
|
2436
2522
|
symbol: 'HT',
|
|
@@ -2528,6 +2614,7 @@ exports.chains = {
|
|
|
2528
2614
|
'https://rpc-mainnet.matic.quiknode.pro',
|
|
2529
2615
|
'https://matic-mainnet-full-rpc.bwarelabs.com',
|
|
2530
2616
|
'https://polygon-bor.publicnode.com',
|
|
2617
|
+
'wss://polygon-bor.publicnode.com',
|
|
2531
2618
|
'https://polygon.gateway.tenderly.co',
|
|
2532
2619
|
'wss://polygon.gateway.tenderly.co'
|
|
2533
2620
|
],
|
|
@@ -2665,6 +2752,69 @@ exports.chains = {
|
|
|
2665
2752
|
}
|
|
2666
2753
|
]
|
|
2667
2754
|
},
|
|
2755
|
+
151: {
|
|
2756
|
+
name: 'Redbelly Network Mainnet',
|
|
2757
|
+
shortName: 'rbn',
|
|
2758
|
+
chain: 'RBN',
|
|
2759
|
+
chainId: 151,
|
|
2760
|
+
networkId: 151,
|
|
2761
|
+
rpc: [],
|
|
2762
|
+
faucets: [],
|
|
2763
|
+
infoURL: 'https://redbelly.network',
|
|
2764
|
+
nativeCurrency: {
|
|
2765
|
+
name: 'Redbelly Network Coin',
|
|
2766
|
+
symbol: 'RBNT',
|
|
2767
|
+
decimals: 18
|
|
2768
|
+
},
|
|
2769
|
+
status: 'incubating'
|
|
2770
|
+
},
|
|
2771
|
+
152: {
|
|
2772
|
+
name: 'Redbelly Network Devnet',
|
|
2773
|
+
shortName: 'rbn-devnet',
|
|
2774
|
+
chain: 'RBN',
|
|
2775
|
+
chainId: 152,
|
|
2776
|
+
networkId: 152,
|
|
2777
|
+
rpc: [],
|
|
2778
|
+
faucets: [],
|
|
2779
|
+
infoURL: 'https://redbelly.network',
|
|
2780
|
+
nativeCurrency: {
|
|
2781
|
+
name: 'Redbelly Network Coin',
|
|
2782
|
+
symbol: 'RBNT',
|
|
2783
|
+
decimals: 18
|
|
2784
|
+
},
|
|
2785
|
+
status: 'incubating'
|
|
2786
|
+
},
|
|
2787
|
+
153: {
|
|
2788
|
+
name: 'Redbelly Network Testnet',
|
|
2789
|
+
shortName: 'rbn-testnet',
|
|
2790
|
+
chain: 'RBN',
|
|
2791
|
+
chainId: 153,
|
|
2792
|
+
networkId: 153,
|
|
2793
|
+
rpc: [],
|
|
2794
|
+
faucets: [],
|
|
2795
|
+
infoURL: 'https://redbelly.network',
|
|
2796
|
+
nativeCurrency: {
|
|
2797
|
+
name: 'Redbelly Network Coin',
|
|
2798
|
+
symbol: 'RBNT',
|
|
2799
|
+
decimals: 18
|
|
2800
|
+
},
|
|
2801
|
+
status: 'incubating'
|
|
2802
|
+
},
|
|
2803
|
+
154: {
|
|
2804
|
+
name: 'Redbelly Network TGE',
|
|
2805
|
+
shortName: 'rbn-tge',
|
|
2806
|
+
chain: 'RBN',
|
|
2807
|
+
chainId: 154,
|
|
2808
|
+
networkId: 154,
|
|
2809
|
+
rpc: [],
|
|
2810
|
+
faucets: [],
|
|
2811
|
+
infoURL: 'https://redbelly.network',
|
|
2812
|
+
nativeCurrency: {
|
|
2813
|
+
name: 'Redbelly Network Coin',
|
|
2814
|
+
symbol: 'RBNT',
|
|
2815
|
+
decimals: 18
|
|
2816
|
+
}
|
|
2817
|
+
},
|
|
2668
2818
|
155: {
|
|
2669
2819
|
name: 'Tenet Testnet',
|
|
2670
2820
|
title: 'Tenet Testnet',
|
|
@@ -3077,7 +3227,7 @@ exports.chains = {
|
|
|
3077
3227
|
name: 'opBNB Mainnet',
|
|
3078
3228
|
chain: 'opBNB',
|
|
3079
3229
|
rpc: ['https://opbnb-mainnet-rpc.bnbchain.org'],
|
|
3080
|
-
faucets: [
|
|
3230
|
+
faucets: [],
|
|
3081
3231
|
nativeCurrency: {
|
|
3082
3232
|
name: 'BNB Chain Native Token',
|
|
3083
3233
|
symbol: 'BNB',
|
|
@@ -3318,10 +3468,7 @@ exports.chains = {
|
|
|
3318
3468
|
name: 'Energy Web Chain',
|
|
3319
3469
|
chain: 'Energy Web Chain',
|
|
3320
3470
|
rpc: ['https://rpc.energyweb.org', 'wss://rpc.energyweb.org/ws'],
|
|
3321
|
-
faucets: [
|
|
3322
|
-
'https://faucet.carbonswap.exchange',
|
|
3323
|
-
'https://free-online-app.com/faucet-for-eth-evm-chains/'
|
|
3324
|
-
],
|
|
3471
|
+
faucets: [],
|
|
3325
3472
|
nativeCurrency: { name: 'Energy Web Token', symbol: 'EWT', decimals: 18 },
|
|
3326
3473
|
infoURL: 'https://energyweb.org',
|
|
3327
3474
|
shortName: 'ewt',
|
|
@@ -3358,8 +3505,12 @@ exports.chains = {
|
|
|
3358
3505
|
250: {
|
|
3359
3506
|
name: 'Fantom Opera',
|
|
3360
3507
|
chain: 'FTM',
|
|
3361
|
-
rpc: [
|
|
3362
|
-
|
|
3508
|
+
rpc: [
|
|
3509
|
+
'https://rpc.ftm.tools',
|
|
3510
|
+
'https://fantom.publicnode.com',
|
|
3511
|
+
'wss://fantom.publicnode.com'
|
|
3512
|
+
],
|
|
3513
|
+
faucets: [],
|
|
3363
3514
|
nativeCurrency: { name: 'Fantom', symbol: 'FTM', decimals: 18 },
|
|
3364
3515
|
infoURL: 'https://fantom.foundation',
|
|
3365
3516
|
shortName: 'ftm',
|
|
@@ -3375,6 +3526,31 @@ exports.chains = {
|
|
|
3375
3526
|
}
|
|
3376
3527
|
]
|
|
3377
3528
|
},
|
|
3529
|
+
255: {
|
|
3530
|
+
name: 'Kroma',
|
|
3531
|
+
chain: 'ETH',
|
|
3532
|
+
rpc: ['https://api.kroma.network'],
|
|
3533
|
+
faucets: [],
|
|
3534
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
3535
|
+
infoURL: 'https://kroma.network',
|
|
3536
|
+
icon: 'kroma',
|
|
3537
|
+
shortName: 'kroma',
|
|
3538
|
+
chainId: 255,
|
|
3539
|
+
networkId: 255,
|
|
3540
|
+
explorers: [
|
|
3541
|
+
{
|
|
3542
|
+
name: 'blockscout',
|
|
3543
|
+
url: 'https://blockscout.kroma.network',
|
|
3544
|
+
icon: 'blockscout',
|
|
3545
|
+
standard: 'EIP3091'
|
|
3546
|
+
}
|
|
3547
|
+
],
|
|
3548
|
+
parent: {
|
|
3549
|
+
type: 'L2',
|
|
3550
|
+
chain: 'eip155-1',
|
|
3551
|
+
bridges: [{ url: 'https://kroma.network/bridge' }]
|
|
3552
|
+
}
|
|
3553
|
+
},
|
|
3378
3554
|
256: {
|
|
3379
3555
|
name: 'Huobi ECO Chain Testnet',
|
|
3380
3556
|
chain: 'Heco',
|
|
@@ -3826,10 +4002,7 @@ exports.chains = {
|
|
|
3826
4002
|
'https://kcc.mytokenpocket.vip',
|
|
3827
4003
|
'https://public-rpc.blockpi.io/http/kcc'
|
|
3828
4004
|
],
|
|
3829
|
-
faucets: [
|
|
3830
|
-
'https://faucet.kcc.io/',
|
|
3831
|
-
'https://free-online-app.com/faucet-for-eth-evm-chains/'
|
|
3832
|
-
],
|
|
4005
|
+
faucets: [],
|
|
3833
4006
|
nativeCurrency: { name: 'KuCoin Token', symbol: 'KCS', decimals: 18 },
|
|
3834
4007
|
infoURL: 'https://kcc.io',
|
|
3835
4008
|
shortName: 'kcs',
|
|
@@ -4082,13 +4255,28 @@ exports.chains = {
|
|
|
4082
4255
|
rpc: [
|
|
4083
4256
|
'https://rpc.pulsechain.com',
|
|
4084
4257
|
'wss://rpc.pulsechain.com',
|
|
4085
|
-
'https://pulsechain.publicnode.com'
|
|
4258
|
+
'https://pulsechain.publicnode.com',
|
|
4259
|
+
'wss://pulsechain.publicnode.com'
|
|
4086
4260
|
],
|
|
4261
|
+
slip44: 60,
|
|
4087
4262
|
features: [{ name: 'EIP155' }, { name: 'EIP1559' }],
|
|
4088
4263
|
faucets: [],
|
|
4089
4264
|
ens: { registry: '0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e' },
|
|
4090
|
-
status: '
|
|
4091
|
-
nativeCurrency: { name: 'Pulse', symbol: 'PLS', decimals: 18 }
|
|
4265
|
+
status: 'active',
|
|
4266
|
+
nativeCurrency: { name: 'Pulse', symbol: 'PLS', decimals: 18 },
|
|
4267
|
+
explorers: [
|
|
4268
|
+
{
|
|
4269
|
+
name: 'blockscout',
|
|
4270
|
+
url: 'https://scan.pulsechain.com',
|
|
4271
|
+
icon: 'blockscout',
|
|
4272
|
+
standard: 'EIP3091'
|
|
4273
|
+
},
|
|
4274
|
+
{
|
|
4275
|
+
name: 'otterscan',
|
|
4276
|
+
url: 'https://otter.pulsechain.com',
|
|
4277
|
+
standard: 'EIP3091'
|
|
4278
|
+
}
|
|
4279
|
+
]
|
|
4092
4280
|
},
|
|
4093
4281
|
371: {
|
|
4094
4282
|
name: 'Consta Testnet',
|
|
@@ -4227,6 +4415,7 @@ exports.chains = {
|
|
|
4227
4415
|
rpc: [
|
|
4228
4416
|
'https://goerli.optimism.io',
|
|
4229
4417
|
'https://optimism-goerli.publicnode.com',
|
|
4418
|
+
'wss://optimism-goerli.publicnode.com',
|
|
4230
4419
|
'https://optimism-goerli.gateway.tenderly.co',
|
|
4231
4420
|
'wss://optimism-goerli.gateway.tenderly.co'
|
|
4232
4421
|
],
|
|
@@ -4315,6 +4504,7 @@ exports.chains = {
|
|
|
4315
4504
|
},
|
|
4316
4505
|
444: {
|
|
4317
4506
|
name: 'Frenchain Testnet',
|
|
4507
|
+
status: 'deprecated',
|
|
4318
4508
|
chain: 'tfren',
|
|
4319
4509
|
rpc: ['https://rpc-01tn.frenchain.app'],
|
|
4320
4510
|
faucets: [],
|
|
@@ -4352,6 +4542,25 @@ exports.chains = {
|
|
|
4352
4542
|
}
|
|
4353
4543
|
]
|
|
4354
4544
|
},
|
|
4545
|
+
462: {
|
|
4546
|
+
name: 'Areon Network Testnet',
|
|
4547
|
+
chain: 'Areon',
|
|
4548
|
+
icon: 'areon',
|
|
4549
|
+
rpc: ['https://testnet-rpc.areon.network'],
|
|
4550
|
+
faucets: [],
|
|
4551
|
+
nativeCurrency: { name: 'Areon', symbol: 'AREA', decimals: 18 },
|
|
4552
|
+
infoURL: 'https://areon.network',
|
|
4553
|
+
shortName: 'area',
|
|
4554
|
+
chainId: 462,
|
|
4555
|
+
networkId: 462,
|
|
4556
|
+
explorers: [
|
|
4557
|
+
{
|
|
4558
|
+
name: 'AreonScan',
|
|
4559
|
+
url: 'https://areonscan.com',
|
|
4560
|
+
standard: 'none'
|
|
4561
|
+
}
|
|
4562
|
+
]
|
|
4563
|
+
},
|
|
4355
4564
|
499: {
|
|
4356
4565
|
name: 'Rupaya',
|
|
4357
4566
|
chain: 'RUPX',
|
|
@@ -4939,6 +5148,53 @@ exports.chains = {
|
|
|
4939
5148
|
}
|
|
4940
5149
|
]
|
|
4941
5150
|
},
|
|
5151
|
+
668: {
|
|
5152
|
+
name: 'JuncaChain',
|
|
5153
|
+
chain: 'JuncaChain',
|
|
5154
|
+
rpc: ['https://rpc.juncachain.com'],
|
|
5155
|
+
nativeCurrency: {
|
|
5156
|
+
name: 'JuncaChain Native Token',
|
|
5157
|
+
symbol: 'JGC',
|
|
5158
|
+
decimals: 18
|
|
5159
|
+
},
|
|
5160
|
+
faucets: [],
|
|
5161
|
+
infoURL: 'https://junca-cash.world',
|
|
5162
|
+
shortName: 'junca',
|
|
5163
|
+
chainId: 668,
|
|
5164
|
+
networkId: 668,
|
|
5165
|
+
explorers: [
|
|
5166
|
+
{
|
|
5167
|
+
name: 'JuncaScan',
|
|
5168
|
+
url: 'https://scan.juncachain.com',
|
|
5169
|
+
standard: 'EIP3091'
|
|
5170
|
+
}
|
|
5171
|
+
]
|
|
5172
|
+
},
|
|
5173
|
+
669: {
|
|
5174
|
+
name: 'JuncaChain testnet',
|
|
5175
|
+
chain: 'JuncaChain testnet',
|
|
5176
|
+
rpc: [
|
|
5177
|
+
'https://rpc-testnet.juncachain.com',
|
|
5178
|
+
'wss://ws-testnet.juncachain.com'
|
|
5179
|
+
],
|
|
5180
|
+
faucets: ['https://faucet-testnet.juncachain.com'],
|
|
5181
|
+
nativeCurrency: {
|
|
5182
|
+
name: 'JuncaChain Testnet Native Token',
|
|
5183
|
+
symbol: 'JGCT',
|
|
5184
|
+
decimals: 18
|
|
5185
|
+
},
|
|
5186
|
+
infoURL: 'https://junca-cash.world',
|
|
5187
|
+
shortName: 'juncat',
|
|
5188
|
+
chainId: 669,
|
|
5189
|
+
networkId: 669,
|
|
5190
|
+
explorers: [
|
|
5191
|
+
{
|
|
5192
|
+
name: 'JuncaScan',
|
|
5193
|
+
url: 'https://scan-testnet.juncachain.com',
|
|
5194
|
+
standard: 'EIP3091'
|
|
5195
|
+
}
|
|
5196
|
+
]
|
|
5197
|
+
},
|
|
4942
5198
|
686: {
|
|
4943
5199
|
name: 'Karura Network',
|
|
4944
5200
|
chain: 'KAR',
|
|
@@ -5161,7 +5417,7 @@ exports.chains = {
|
|
|
5161
5417
|
networkId: 777
|
|
5162
5418
|
},
|
|
5163
5419
|
786: {
|
|
5164
|
-
name: 'MAAL
|
|
5420
|
+
name: 'MAAL Chain',
|
|
5165
5421
|
chain: 'MAAL',
|
|
5166
5422
|
icon: 'maal',
|
|
5167
5423
|
rpc: [
|
|
@@ -5171,7 +5427,7 @@ exports.chains = {
|
|
|
5171
5427
|
],
|
|
5172
5428
|
faucets: [],
|
|
5173
5429
|
nativeCurrency: { name: 'MAAL', symbol: 'MAAL', decimals: 18 },
|
|
5174
|
-
infoURL: 'https://www.
|
|
5430
|
+
infoURL: 'https://www.maalchain.com/',
|
|
5175
5431
|
shortName: 'maal',
|
|
5176
5432
|
chainId: 786,
|
|
5177
5433
|
networkId: 786,
|
|
@@ -5725,6 +5981,7 @@ exports.chains = {
|
|
|
5725
5981
|
'wss://rpc.v3.testnet.pulsechain.com/'
|
|
5726
5982
|
],
|
|
5727
5983
|
faucets: ['https://faucet.v3.testnet.pulsechain.com/'],
|
|
5984
|
+
status: 'deprecated',
|
|
5728
5985
|
nativeCurrency: { name: 'Test Pulse', symbol: 'tPLS', decimals: 18 }
|
|
5729
5986
|
},
|
|
5730
5987
|
943: {
|
|
@@ -5738,14 +5995,23 @@ exports.chains = {
|
|
|
5738
5995
|
rpc: [
|
|
5739
5996
|
'https://rpc.v4.testnet.pulsechain.com/',
|
|
5740
5997
|
'wss://rpc.v4.testnet.pulsechain.com/',
|
|
5741
|
-
'https://pulsechain-testnet.publicnode.com'
|
|
5998
|
+
'https://pulsechain-testnet.publicnode.com',
|
|
5999
|
+
'wss://pulsechain-testnet.publicnode.com'
|
|
5742
6000
|
],
|
|
5743
6001
|
features: [{ name: 'EIP155' }, { name: 'EIP1559' }],
|
|
5744
6002
|
faucets: ['https://faucet.v4.testnet.pulsechain.com/'],
|
|
5745
6003
|
ens: { registry: '0x00000000000C2E074eC69A0dFb2997BA6C7d2e1e' },
|
|
5746
|
-
status: '
|
|
5747
|
-
|
|
5748
|
-
nativeCurrency: { name: 'Test Pulse', symbol: 'tPLS', decimals: 18 }
|
|
6004
|
+
status: 'active',
|
|
6005
|
+
slip44: 60,
|
|
6006
|
+
nativeCurrency: { name: 'Test Pulse', symbol: 'tPLS', decimals: 18 },
|
|
6007
|
+
explorers: [
|
|
6008
|
+
{
|
|
6009
|
+
name: 'blockscout',
|
|
6010
|
+
url: 'https://scan.v4.testnet.pulsechain.com',
|
|
6011
|
+
icon: 'blockscout',
|
|
6012
|
+
standard: 'EIP3091'
|
|
6013
|
+
}
|
|
6014
|
+
]
|
|
5749
6015
|
},
|
|
5750
6016
|
956: {
|
|
5751
6017
|
name: 'muNode Testnet',
|
|
@@ -6288,6 +6554,34 @@ exports.chains = {
|
|
|
6288
6554
|
bridges: [{ url: 'https://bridge.metis.io' }]
|
|
6289
6555
|
}
|
|
6290
6556
|
},
|
|
6557
|
+
1089: {
|
|
6558
|
+
name: 'Humans.ai Mainnet',
|
|
6559
|
+
chain: 'Humans',
|
|
6560
|
+
rpc: [
|
|
6561
|
+
'https://jsonrpc.humans.nodestake.top',
|
|
6562
|
+
'https://humans-mainnet-evm.itrocket.net:443',
|
|
6563
|
+
'https://humans-evm-rpc.staketab.org:443',
|
|
6564
|
+
'https://evm.humans.stakepool.dev.br',
|
|
6565
|
+
'https://mainnet-humans-evm.konsortech.xyz',
|
|
6566
|
+
'https://evm-rpc.mainnet.humans.zone'
|
|
6567
|
+
],
|
|
6568
|
+
faucets: [],
|
|
6569
|
+
nativeCurrency: { name: 'HEART', symbol: 'HEART', decimals: 18 },
|
|
6570
|
+
features: [{ name: 'EIP155' }, { name: 'EIP1559' }],
|
|
6571
|
+
infoURL: 'https://humans.ai',
|
|
6572
|
+
shortName: 'humans',
|
|
6573
|
+
chainId: 1089,
|
|
6574
|
+
networkId: 1089,
|
|
6575
|
+
icon: 'humans',
|
|
6576
|
+
explorers: [
|
|
6577
|
+
{
|
|
6578
|
+
name: 'explorer.guru',
|
|
6579
|
+
url: 'https://humans.explorers.guru',
|
|
6580
|
+
icon: 'humans',
|
|
6581
|
+
standard: 'none'
|
|
6582
|
+
}
|
|
6583
|
+
]
|
|
6584
|
+
},
|
|
6291
6585
|
1099: {
|
|
6292
6586
|
name: 'MOAC mainnet',
|
|
6293
6587
|
chain: 'MOAC',
|
|
@@ -6333,6 +6627,26 @@ exports.chains = {
|
|
|
6333
6627
|
bridges: [{ url: 'https://bridge.zkevm-rpc.com' }]
|
|
6334
6628
|
}
|
|
6335
6629
|
},
|
|
6630
|
+
1107: {
|
|
6631
|
+
name: 'BLXq Testnet',
|
|
6632
|
+
chain: 'BLXQ',
|
|
6633
|
+
icon: 'blxq',
|
|
6634
|
+
rpc: ['https://testnetq1.blx.org'],
|
|
6635
|
+
faucets: [],
|
|
6636
|
+
nativeCurrency: { name: 'BLXQ', symbol: 'BLXQ', decimals: 18 },
|
|
6637
|
+
infoURL: 'https://blx.org',
|
|
6638
|
+
shortName: 'blxq',
|
|
6639
|
+
chainId: 1107,
|
|
6640
|
+
networkId: 1107,
|
|
6641
|
+
explorers: [
|
|
6642
|
+
{
|
|
6643
|
+
name: 'BLXq Explorer',
|
|
6644
|
+
url: 'https://explorer.blx.org',
|
|
6645
|
+
icon: 'blxq',
|
|
6646
|
+
standard: 'none'
|
|
6647
|
+
}
|
|
6648
|
+
]
|
|
6649
|
+
},
|
|
6336
6650
|
1111: {
|
|
6337
6651
|
name: 'WEMIX3.0 Mainnet',
|
|
6338
6652
|
chain: 'WEMIX',
|
|
@@ -6465,6 +6779,25 @@ exports.chains = {
|
|
|
6465
6779
|
icon: 'defichain-network',
|
|
6466
6780
|
explorers: []
|
|
6467
6781
|
},
|
|
6782
|
+
1133: {
|
|
6783
|
+
name: 'DeFiMetaChain',
|
|
6784
|
+
icon: 'changi',
|
|
6785
|
+
chain: 'DFI',
|
|
6786
|
+
rpc: ['https://testnet-dmc.mydefichain.com:20551'],
|
|
6787
|
+
faucets: ['http://tc04.mydefichain.com/faucet'],
|
|
6788
|
+
nativeCurrency: { name: 'DeFiChain Token', symbol: 'DFI', decimals: 18 },
|
|
6789
|
+
infoURL: 'https://defichain.com',
|
|
6790
|
+
shortName: 'changi',
|
|
6791
|
+
chainId: 1133,
|
|
6792
|
+
networkId: 1133,
|
|
6793
|
+
explorers: [
|
|
6794
|
+
{
|
|
6795
|
+
name: 'MetaScan',
|
|
6796
|
+
url: 'https://meta.defiscan.live',
|
|
6797
|
+
standard: 'EIP3091'
|
|
6798
|
+
}
|
|
6799
|
+
]
|
|
6800
|
+
},
|
|
6468
6801
|
1138: {
|
|
6469
6802
|
name: 'AmStar Testnet',
|
|
6470
6803
|
chain: 'AmStar',
|
|
@@ -7438,7 +7771,11 @@ exports.chains = {
|
|
|
7438
7771
|
title: 'Tenet Mainnet',
|
|
7439
7772
|
chain: 'TENET',
|
|
7440
7773
|
icon: 'tenet',
|
|
7441
|
-
rpc: [
|
|
7774
|
+
rpc: [
|
|
7775
|
+
'https://rpc.tenet.org',
|
|
7776
|
+
'https://tenet-evm.publicnode.com',
|
|
7777
|
+
'wss://tenet-evm.publicnode.com'
|
|
7778
|
+
],
|
|
7442
7779
|
faucets: [],
|
|
7443
7780
|
nativeCurrency: { name: 'TENET', symbol: 'TENET', decimals: 18 },
|
|
7444
7781
|
infoURL: 'https://tenet.org/',
|
|
@@ -8112,6 +8449,46 @@ exports.chains = {
|
|
|
8112
8449
|
}
|
|
8113
8450
|
]
|
|
8114
8451
|
},
|
|
8452
|
+
1985: {
|
|
8453
|
+
name: 'SatoshIE',
|
|
8454
|
+
chain: 'TUSHY',
|
|
8455
|
+
rpc: ['http://rpc.satosh.ie'],
|
|
8456
|
+
faucets: [],
|
|
8457
|
+
nativeCurrency: { name: 'Tushy Token', symbol: 'TUSHY', decimals: 18 },
|
|
8458
|
+
infoURL: 'https://satosh.ie',
|
|
8459
|
+
shortName: 'satoshie',
|
|
8460
|
+
chainId: 1985,
|
|
8461
|
+
networkId: 1985,
|
|
8462
|
+
icon: 'satoshie',
|
|
8463
|
+
explorers: [
|
|
8464
|
+
{
|
|
8465
|
+
name: 'mainnetexplorer',
|
|
8466
|
+
url: 'http://explore.satosh.ie',
|
|
8467
|
+
icon: 'satoshie',
|
|
8468
|
+
standard: 'none'
|
|
8469
|
+
}
|
|
8470
|
+
]
|
|
8471
|
+
},
|
|
8472
|
+
1986: {
|
|
8473
|
+
name: 'SatoshIE Testnet',
|
|
8474
|
+
chain: 'TUSHY',
|
|
8475
|
+
rpc: ['http://testnet.satosh.ie'],
|
|
8476
|
+
faucets: [],
|
|
8477
|
+
nativeCurrency: { name: 'Tushy Token', symbol: 'TUSHY', decimals: 18 },
|
|
8478
|
+
infoURL: 'https://satosh.ie',
|
|
8479
|
+
shortName: 'satoshie_testnet',
|
|
8480
|
+
chainId: 1986,
|
|
8481
|
+
networkId: 1986,
|
|
8482
|
+
icon: 'satoshie',
|
|
8483
|
+
explorers: [
|
|
8484
|
+
{
|
|
8485
|
+
name: 'testnetexplorer',
|
|
8486
|
+
url: 'http://explore-testnet.satosh.ie',
|
|
8487
|
+
icon: 'satoshie',
|
|
8488
|
+
standard: 'none'
|
|
8489
|
+
}
|
|
8490
|
+
]
|
|
8491
|
+
},
|
|
8115
8492
|
1987: {
|
|
8116
8493
|
name: 'EtherGem',
|
|
8117
8494
|
chain: 'EGEM',
|
|
@@ -8515,6 +8892,25 @@ exports.chains = {
|
|
|
8515
8892
|
}
|
|
8516
8893
|
]
|
|
8517
8894
|
},
|
|
8895
|
+
2038: {
|
|
8896
|
+
name: 'Shrapnel Testnet',
|
|
8897
|
+
chain: 'SHRAPNEL',
|
|
8898
|
+
rpc: ['https://subnets.avax.network/shrapnel/testnet/rpc'],
|
|
8899
|
+
features: [{ name: 'EIP1559' }],
|
|
8900
|
+
faucets: [],
|
|
8901
|
+
nativeCurrency: { name: 'SHRAPG', symbol: 'SHRAPG', decimals: 18 },
|
|
8902
|
+
infoURL: 'https://www.shrapnel.com/',
|
|
8903
|
+
shortName: 'shraptest',
|
|
8904
|
+
chainId: 2038,
|
|
8905
|
+
networkId: 2038,
|
|
8906
|
+
explorers: [
|
|
8907
|
+
{
|
|
8908
|
+
name: 'SHRAPNEL Explorer',
|
|
8909
|
+
url: 'https://subnets-test.avax.network/shrapnel',
|
|
8910
|
+
standard: 'EIP3091'
|
|
8911
|
+
}
|
|
8912
|
+
]
|
|
8913
|
+
},
|
|
8518
8914
|
2043: {
|
|
8519
8915
|
name: 'OriginTrail Parachain',
|
|
8520
8916
|
chain: 'OTP',
|
|
@@ -8720,6 +9116,18 @@ exports.chains = {
|
|
|
8720
9116
|
}
|
|
8721
9117
|
]
|
|
8722
9118
|
},
|
|
9119
|
+
2137: {
|
|
9120
|
+
name: 'BigShortBets',
|
|
9121
|
+
chain: 'BIGSB',
|
|
9122
|
+
rpc: ['https://market.bigsb.io', 'wss://market.bigsb.io'],
|
|
9123
|
+
faucets: [],
|
|
9124
|
+
nativeCurrency: { name: 'USD Coin', symbol: 'USDC', decimals: 18 },
|
|
9125
|
+
infoURL: 'https://bigshortbets.com/',
|
|
9126
|
+
shortName: 'bigsb',
|
|
9127
|
+
chainId: 2137,
|
|
9128
|
+
networkId: 2137,
|
|
9129
|
+
explorers: []
|
|
9130
|
+
},
|
|
8723
9131
|
2138: {
|
|
8724
9132
|
name: 'Defi Oracle Meta Testnet',
|
|
8725
9133
|
chain: 'dfiometatest',
|
|
@@ -8932,7 +9340,8 @@ exports.chains = {
|
|
|
8932
9340
|
'https://kava-evm.rpc.thirdweb.com',
|
|
8933
9341
|
'wss://wevm.kava.io',
|
|
8934
9342
|
'wss://wevm2.kava.io',
|
|
8935
|
-
'https://kava-evm.publicnode.com'
|
|
9343
|
+
'https://kava-evm.publicnode.com',
|
|
9344
|
+
'wss://kava-evm.publicnode.com'
|
|
8936
9345
|
],
|
|
8937
9346
|
faucets: [],
|
|
8938
9347
|
nativeCurrency: { name: 'Kava', symbol: 'KAVA', decimals: 18 },
|
|
@@ -9350,6 +9759,29 @@ exports.chains = {
|
|
|
9350
9759
|
}
|
|
9351
9760
|
]
|
|
9352
9761
|
},
|
|
9762
|
+
2710: {
|
|
9763
|
+
name: 'Morphism Testnet',
|
|
9764
|
+
chain: 'ETH',
|
|
9765
|
+
rpc: ['https://rpc-testnet.morphism.xyz'],
|
|
9766
|
+
faucets: [],
|
|
9767
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
9768
|
+
infoURL: 'https://morphism.xyz',
|
|
9769
|
+
shortName: 'tmorph',
|
|
9770
|
+
chainId: 2710,
|
|
9771
|
+
networkId: 2710,
|
|
9772
|
+
explorers: [
|
|
9773
|
+
{
|
|
9774
|
+
name: 'Morphism Testnet Explorer',
|
|
9775
|
+
url: 'https://explorer-testnet.morphism.xyz',
|
|
9776
|
+
standard: 'EIP3091'
|
|
9777
|
+
}
|
|
9778
|
+
],
|
|
9779
|
+
parent: {
|
|
9780
|
+
type: 'L2',
|
|
9781
|
+
chain: 'eip155-1',
|
|
9782
|
+
bridges: [{ url: 'https://bridge-testnet.morphism.xyz' }]
|
|
9783
|
+
}
|
|
9784
|
+
},
|
|
9353
9785
|
2888: {
|
|
9354
9786
|
name: 'Boba Network Goerli Testnet',
|
|
9355
9787
|
chain: 'ETH',
|
|
@@ -9426,6 +9858,7 @@ exports.chains = {
|
|
|
9426
9858
|
3003: {
|
|
9427
9859
|
name: 'Canxium Mainnet',
|
|
9428
9860
|
chain: 'CAU',
|
|
9861
|
+
icon: 'canxium',
|
|
9429
9862
|
rpc: ['https://rpc.canxium.org'],
|
|
9430
9863
|
faucets: [],
|
|
9431
9864
|
nativeCurrency: { name: 'Canxium', symbol: 'CAU', decimals: 18 },
|
|
@@ -9520,6 +9953,28 @@ exports.chains = {
|
|
|
9520
9953
|
slip44: 1,
|
|
9521
9954
|
explorers: []
|
|
9522
9955
|
},
|
|
9956
|
+
3269: {
|
|
9957
|
+
name: 'Dubxcoin network',
|
|
9958
|
+
chain: 'DUBX',
|
|
9959
|
+
rpc: ['https://rpcmain.arabianchain.org'],
|
|
9960
|
+
faucets: [],
|
|
9961
|
+
nativeCurrency: { name: 'Dubxcoin mainnet', symbol: 'DUBX', decimals: 18 },
|
|
9962
|
+
infoURL: 'https://arabianchain.org',
|
|
9963
|
+
shortName: 'dubx',
|
|
9964
|
+
chainId: 3269,
|
|
9965
|
+
networkId: 3269
|
|
9966
|
+
},
|
|
9967
|
+
3270: {
|
|
9968
|
+
name: 'Dubxcoin testnet',
|
|
9969
|
+
chain: 'TESTDUBX',
|
|
9970
|
+
rpc: ['https://rpctestnet.arabianchain.org'],
|
|
9971
|
+
faucets: ['https://faucet.arabianchain.org/'],
|
|
9972
|
+
nativeCurrency: { name: 'Dubxcoin testnet', symbol: 'TDUBX', decimals: 18 },
|
|
9973
|
+
infoURL: 'https://arabianchain.org',
|
|
9974
|
+
shortName: 'testdubx',
|
|
9975
|
+
chainId: 3270,
|
|
9976
|
+
networkId: 3270
|
|
9977
|
+
},
|
|
9523
9978
|
3306: {
|
|
9524
9979
|
name: 'Debounce Subnet Testnet',
|
|
9525
9980
|
chain: 'Debounce Network',
|
|
@@ -9831,13 +10286,13 @@ exports.chains = {
|
|
|
9831
10286
|
]
|
|
9832
10287
|
},
|
|
9833
10288
|
3701: {
|
|
9834
|
-
name: 'Xpla
|
|
9835
|
-
chain: '
|
|
10289
|
+
name: 'Xpla Testnet',
|
|
10290
|
+
chain: 'XPLATest',
|
|
9836
10291
|
rpc: ['https://dimension-rpc.xpla.dev'],
|
|
9837
|
-
faucets: ['https://faucet.xpla.io
|
|
10292
|
+
faucets: ['https://faucet.xpla.io'],
|
|
9838
10293
|
nativeCurrency: { name: 'XPLA', symbol: 'XPLA', decimals: 18 },
|
|
9839
|
-
infoURL: 'https://xpla.io
|
|
9840
|
-
shortName: '
|
|
10294
|
+
infoURL: 'https://xpla.io',
|
|
10295
|
+
shortName: 'xplatest',
|
|
9841
10296
|
chainId: 3701,
|
|
9842
10297
|
networkId: 3701,
|
|
9843
10298
|
icon: 'xpla',
|
|
@@ -9847,7 +10302,8 @@ exports.chains = {
|
|
|
9847
10302
|
url: 'https://explorer.xpla.io',
|
|
9848
10303
|
standard: 'none'
|
|
9849
10304
|
}
|
|
9850
|
-
]
|
|
10305
|
+
],
|
|
10306
|
+
status: 'deprecated'
|
|
9851
10307
|
},
|
|
9852
10308
|
3737: {
|
|
9853
10309
|
name: 'Crossbell',
|
|
@@ -10070,7 +10526,8 @@ exports.chains = {
|
|
|
10070
10526
|
chain: 'FTM',
|
|
10071
10527
|
rpc: [
|
|
10072
10528
|
'https://rpc.testnet.fantom.network',
|
|
10073
|
-
'https://fantom-testnet.publicnode.com'
|
|
10529
|
+
'https://fantom-testnet.publicnode.com',
|
|
10530
|
+
'wss://fantom-testnet.publicnode.com'
|
|
10074
10531
|
],
|
|
10075
10532
|
faucets: ['https://faucet.fantom.network'],
|
|
10076
10533
|
nativeCurrency: { name: 'Fantom', symbol: 'FTM', decimals: 18 },
|
|
@@ -10555,7 +11012,11 @@ exports.chains = {
|
|
|
10555
11012
|
name: 'Mantle',
|
|
10556
11013
|
chain: 'ETH',
|
|
10557
11014
|
icon: 'mantle',
|
|
10558
|
-
rpc: [
|
|
11015
|
+
rpc: [
|
|
11016
|
+
'https://rpc.mantle.xyz',
|
|
11017
|
+
'https://mantle.publicnode.com',
|
|
11018
|
+
'wss://mantle.publicnode.com'
|
|
11019
|
+
],
|
|
10559
11020
|
faucets: [],
|
|
10560
11021
|
nativeCurrency: { name: 'Mantle', symbol: 'MNT', decimals: 18 },
|
|
10561
11022
|
infoURL: 'https://mantle.xyz',
|
|
@@ -10740,6 +11201,33 @@ exports.chains = {
|
|
|
10740
11201
|
chainId: 5315,
|
|
10741
11202
|
networkId: 5315
|
|
10742
11203
|
},
|
|
11204
|
+
5353: {
|
|
11205
|
+
name: 'Tritanium Testnet',
|
|
11206
|
+
chain: 'TRITANIUM',
|
|
11207
|
+
rpc: [
|
|
11208
|
+
'https://nodetestnet-station-one.tritanium.network/',
|
|
11209
|
+
'https://nodetestnet-station-two.tritanium.network/'
|
|
11210
|
+
],
|
|
11211
|
+
faucets: ['https://faucet.tritanium.network'],
|
|
11212
|
+
nativeCurrency: {
|
|
11213
|
+
name: 'Tritanium Native Token',
|
|
11214
|
+
symbol: 'tTRN',
|
|
11215
|
+
decimals: 18
|
|
11216
|
+
},
|
|
11217
|
+
infoURL: 'https://tritanium.network',
|
|
11218
|
+
shortName: 'ttrn',
|
|
11219
|
+
chainId: 5353,
|
|
11220
|
+
networkId: 5353,
|
|
11221
|
+
icon: 'tritanium',
|
|
11222
|
+
explorers: [
|
|
11223
|
+
{
|
|
11224
|
+
name: 'TRITANIUM Testnet Explorer',
|
|
11225
|
+
icon: 'tritanium',
|
|
11226
|
+
url: 'https://testnet.tritanium.network',
|
|
11227
|
+
standard: 'none'
|
|
11228
|
+
}
|
|
11229
|
+
]
|
|
11230
|
+
},
|
|
10743
11231
|
5551: {
|
|
10744
11232
|
name: 'Nahmii Mainnet',
|
|
10745
11233
|
chain: 'Nahmii',
|
|
@@ -10868,7 +11356,8 @@ exports.chains = {
|
|
|
10868
11356
|
rpc: [
|
|
10869
11357
|
'https://rpc.tanenbaum.io',
|
|
10870
11358
|
'wss://rpc.tanenbaum.io/wss',
|
|
10871
|
-
'https://syscoin-tanenbaum-evm.publicnode.com'
|
|
11359
|
+
'https://syscoin-tanenbaum-evm.publicnode.com',
|
|
11360
|
+
'wss://syscoin-tanenbaum-evm.publicnode.com'
|
|
10872
11361
|
],
|
|
10873
11362
|
faucets: ['https://faucet.tanenbaum.io'],
|
|
10874
11363
|
nativeCurrency: { name: 'Testnet Syscoin', symbol: 'tSYS', decimals: 18 },
|
|
@@ -11174,7 +11663,8 @@ exports.chains = {
|
|
|
11174
11663
|
chain: 'IRIShub',
|
|
11175
11664
|
rpc: [
|
|
11176
11665
|
'https://evmrpc.irishub-1.irisnet.org',
|
|
11177
|
-
'https://iris-evm.publicnode.com'
|
|
11666
|
+
'https://iris-evm.publicnode.com',
|
|
11667
|
+
'wss://iris-evm.publicnode.com'
|
|
11178
11668
|
],
|
|
11179
11669
|
features: [{ name: 'EIP155' }, { name: 'EIP1559' }],
|
|
11180
11670
|
faucets: [],
|
|
@@ -11373,11 +11863,14 @@ exports.chains = {
|
|
|
11373
11863
|
status: 'incubating'
|
|
11374
11864
|
},
|
|
11375
11865
|
7332: {
|
|
11376
|
-
name: 'Horizen EON',
|
|
11866
|
+
name: 'Horizen EON Mainnet',
|
|
11377
11867
|
shortName: 'EON',
|
|
11378
11868
|
chain: 'EON',
|
|
11379
11869
|
icon: 'eon',
|
|
11380
|
-
rpc: [
|
|
11870
|
+
rpc: [
|
|
11871
|
+
'https://eon-rpc.horizenlabs.io/ethv1',
|
|
11872
|
+
'https://rpc.ankr.com/horizen_eon'
|
|
11873
|
+
],
|
|
11381
11874
|
features: [{ name: 'EIP155' }, { name: 'EIP1559' }],
|
|
11382
11875
|
faucets: [],
|
|
11383
11876
|
nativeCurrency: { name: 'Zencash', symbol: 'ZEN', decimals: 18 },
|
|
@@ -12023,7 +12516,8 @@ exports.chains = {
|
|
|
12023
12516
|
'https://developer-access-mainnet.base.org/',
|
|
12024
12517
|
'https://base.gateway.tenderly.co',
|
|
12025
12518
|
'wss://base.gateway.tenderly.co',
|
|
12026
|
-
'https://base.publicnode.com'
|
|
12519
|
+
'https://base.publicnode.com',
|
|
12520
|
+
'wss://base.publicnode.com'
|
|
12027
12521
|
],
|
|
12028
12522
|
faucets: [],
|
|
12029
12523
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
@@ -12380,7 +12874,7 @@ exports.chains = {
|
|
|
12380
12874
|
9001: {
|
|
12381
12875
|
name: 'Evmos',
|
|
12382
12876
|
chain: 'Evmos',
|
|
12383
|
-
rpc: ['https://evmos-evm.publicnode.com'],
|
|
12877
|
+
rpc: ['https://evmos-evm.publicnode.com', 'wss://evmos-evm.publicnode.com'],
|
|
12384
12878
|
faucets: [],
|
|
12385
12879
|
nativeCurrency: { name: 'Evmos', symbol: 'EVMOS', decimals: 18 },
|
|
12386
12880
|
infoURL: 'https://evmos.org',
|
|
@@ -12980,6 +13474,25 @@ exports.chains = {
|
|
|
12980
13474
|
}
|
|
12981
13475
|
]
|
|
12982
13476
|
},
|
|
13477
|
+
10395: {
|
|
13478
|
+
name: 'Worldland Testnet',
|
|
13479
|
+
chain: 'Worldland',
|
|
13480
|
+
icon: 'worldland',
|
|
13481
|
+
rpc: ['https://gwangju.worldland.foundation'],
|
|
13482
|
+
faucets: [],
|
|
13483
|
+
nativeCurrency: { name: 'Worldland', symbol: 'WL', decimals: 18 },
|
|
13484
|
+
infoURL: 'https://worldland.foundation',
|
|
13485
|
+
shortName: 'TWLC',
|
|
13486
|
+
chainId: 10395,
|
|
13487
|
+
networkId: 10395,
|
|
13488
|
+
explorers: [
|
|
13489
|
+
{
|
|
13490
|
+
name: 'Worldland Explorer',
|
|
13491
|
+
url: 'https://testscan.worldland.foundation',
|
|
13492
|
+
standard: 'EIP3091'
|
|
13493
|
+
}
|
|
13494
|
+
]
|
|
13495
|
+
},
|
|
12983
13496
|
10507: {
|
|
12984
13497
|
name: 'Numbers Mainnet',
|
|
12985
13498
|
chain: 'NUM',
|
|
@@ -13166,7 +13679,7 @@ exports.chains = {
|
|
|
13166
13679
|
name: 'HashBit Mainnet',
|
|
13167
13680
|
chain: 'HBIT',
|
|
13168
13681
|
rpc: ['https://mainnet-rpc.hashbit.org', 'https://rpc.hashbit.org'],
|
|
13169
|
-
faucets: [
|
|
13682
|
+
faucets: [],
|
|
13170
13683
|
nativeCurrency: {
|
|
13171
13684
|
name: 'HashBit Native Token',
|
|
13172
13685
|
symbol: 'HBIT',
|
|
@@ -13187,7 +13700,11 @@ exports.chains = {
|
|
|
13187
13700
|
11235: {
|
|
13188
13701
|
name: 'Haqq Network',
|
|
13189
13702
|
chain: 'Haqq',
|
|
13190
|
-
rpc: [
|
|
13703
|
+
rpc: [
|
|
13704
|
+
'https://rpc.eth.haqq.network',
|
|
13705
|
+
'https://haqq-evm.publicnode.com',
|
|
13706
|
+
'wss://haqq-evm.publicnode.com'
|
|
13707
|
+
],
|
|
13191
13708
|
faucets: [],
|
|
13192
13709
|
nativeCurrency: { name: 'Islamic Coin', symbol: 'ISLM', decimals: 18 },
|
|
13193
13710
|
infoURL: 'https://islamiccoin.net',
|
|
@@ -13268,6 +13785,25 @@ exports.chains = {
|
|
|
13268
13785
|
}
|
|
13269
13786
|
]
|
|
13270
13787
|
},
|
|
13788
|
+
11891: {
|
|
13789
|
+
name: 'Polygon Supernet Arianee',
|
|
13790
|
+
chain: 'Arianee',
|
|
13791
|
+
rpc: ['https://rpc.polygonsupernet.public.arianee.net'],
|
|
13792
|
+
faucets: [],
|
|
13793
|
+
nativeCurrency: { name: 'Arianee', symbol: 'ARIA20', decimals: 18 },
|
|
13794
|
+
infoURL: 'https://arianee.org',
|
|
13795
|
+
shortName: 'Arianee',
|
|
13796
|
+
chainId: 11891,
|
|
13797
|
+
networkId: 11891,
|
|
13798
|
+
explorers: [
|
|
13799
|
+
{
|
|
13800
|
+
name: 'Polygon Supernet Arianee Explorer',
|
|
13801
|
+
url: 'https://polygonsupernet.explorer.arianee.net',
|
|
13802
|
+
standard: 'EIP3091'
|
|
13803
|
+
}
|
|
13804
|
+
],
|
|
13805
|
+
parent: { chain: 'eip155-1', type: 'L2' }
|
|
13806
|
+
},
|
|
13271
13807
|
12009: {
|
|
13272
13808
|
name: 'SatoshiChain Mainnet',
|
|
13273
13809
|
chain: 'SATS',
|
|
@@ -13439,6 +13975,25 @@ exports.chains = {
|
|
|
13439
13975
|
}
|
|
13440
13976
|
]
|
|
13441
13977
|
},
|
|
13978
|
+
12890: {
|
|
13979
|
+
name: 'Quantum Chain Testnet',
|
|
13980
|
+
chain: 'QNET',
|
|
13981
|
+
icon: 'qnet',
|
|
13982
|
+
rpc: ['https://testnet-rpc.quantumscan.org'],
|
|
13983
|
+
faucets: [],
|
|
13984
|
+
nativeCurrency: { name: 'Quantum Chain', symbol: 'QNET', decimals: 18 },
|
|
13985
|
+
infoURL: 'https://quantumnetwork.gg',
|
|
13986
|
+
shortName: 'qnet',
|
|
13987
|
+
chainId: 12890,
|
|
13988
|
+
networkId: 12890,
|
|
13989
|
+
explorers: [
|
|
13990
|
+
{
|
|
13991
|
+
name: 'Quantum Scan Testnet',
|
|
13992
|
+
url: 'https://testnet.quantumscan.org',
|
|
13993
|
+
standard: 'EIP3091'
|
|
13994
|
+
}
|
|
13995
|
+
]
|
|
13996
|
+
},
|
|
13442
13997
|
13000: {
|
|
13443
13998
|
name: 'SPS',
|
|
13444
13999
|
chain: 'SPS',
|
|
@@ -14056,6 +14611,26 @@ exports.chains = {
|
|
|
14056
14611
|
}
|
|
14057
14612
|
]
|
|
14058
14613
|
},
|
|
14614
|
+
22222: {
|
|
14615
|
+
name: 'Nautilus Mainnet',
|
|
14616
|
+
chain: 'ETH',
|
|
14617
|
+
icon: 'nautilus',
|
|
14618
|
+
rpc: ['https://api.nautilus.nautchain.xyz'],
|
|
14619
|
+
faucets: [],
|
|
14620
|
+
nativeCurrency: { name: 'Zebec', symbol: 'ZBC', decimals: 18 },
|
|
14621
|
+
infoURL: 'https://docs.nautchain.xyz',
|
|
14622
|
+
shortName: 'NAUTCHAIN',
|
|
14623
|
+
chainId: 22222,
|
|
14624
|
+
networkId: 22222,
|
|
14625
|
+
explorers: [
|
|
14626
|
+
{
|
|
14627
|
+
name: 'Nautscan',
|
|
14628
|
+
url: 'https://nautscan.com',
|
|
14629
|
+
standard: 'EIP3091',
|
|
14630
|
+
icon: 'nautilus'
|
|
14631
|
+
}
|
|
14632
|
+
]
|
|
14633
|
+
},
|
|
14059
14634
|
22776: {
|
|
14060
14635
|
name: 'MAP Mainnet',
|
|
14061
14636
|
chain: 'MAP',
|
|
@@ -14323,6 +14898,25 @@ exports.chains = {
|
|
|
14323
14898
|
}
|
|
14324
14899
|
]
|
|
14325
14900
|
},
|
|
14901
|
+
30103: {
|
|
14902
|
+
name: 'Cerium Testnet',
|
|
14903
|
+
chain: 'CAU',
|
|
14904
|
+
icon: 'canxium',
|
|
14905
|
+
rpc: ['https://cerium-rpc.canxium.net'],
|
|
14906
|
+
faucets: [],
|
|
14907
|
+
nativeCurrency: { name: 'Canxium', symbol: 'CAU', decimals: 18 },
|
|
14908
|
+
infoURL: 'https://canxium.org',
|
|
14909
|
+
shortName: 'ceri',
|
|
14910
|
+
chainId: 30103,
|
|
14911
|
+
networkId: 30103,
|
|
14912
|
+
explorers: [
|
|
14913
|
+
{
|
|
14914
|
+
name: 'canxium explorer',
|
|
14915
|
+
url: 'https://cerium-explorer.canxium.net',
|
|
14916
|
+
standard: 'none'
|
|
14917
|
+
}
|
|
14918
|
+
]
|
|
14919
|
+
},
|
|
14326
14920
|
31102: {
|
|
14327
14921
|
name: 'Ethersocial Network',
|
|
14328
14922
|
chain: 'ESN',
|
|
@@ -14576,6 +15170,29 @@ exports.chains = {
|
|
|
14576
15170
|
}
|
|
14577
15171
|
]
|
|
14578
15172
|
},
|
|
15173
|
+
38401: {
|
|
15174
|
+
name: 'ConnectorManager Robin',
|
|
15175
|
+
chain: 'Rangers',
|
|
15176
|
+
icon: 'rangers',
|
|
15177
|
+
rpc: ['https://robin-cm.rangersprotocol.com/api/jsonrpc'],
|
|
15178
|
+
faucets: ['https://robin-faucet.rangersprotocol.com'],
|
|
15179
|
+
nativeCurrency: {
|
|
15180
|
+
name: 'Rangers Protocol Gas',
|
|
15181
|
+
symbol: 'ttRPG',
|
|
15182
|
+
decimals: 18
|
|
15183
|
+
},
|
|
15184
|
+
infoURL: 'https://rangersprotocol.com',
|
|
15185
|
+
shortName: 'ttrpg',
|
|
15186
|
+
chainId: 38401,
|
|
15187
|
+
networkId: 38401,
|
|
15188
|
+
explorers: [
|
|
15189
|
+
{
|
|
15190
|
+
name: 'rangersscan-robin',
|
|
15191
|
+
url: 'https://robin-rangersscan.rangersprotocol.com',
|
|
15192
|
+
standard: 'none'
|
|
15193
|
+
}
|
|
15194
|
+
]
|
|
15195
|
+
},
|
|
14579
15196
|
39797: {
|
|
14580
15197
|
name: 'Energi Mainnet',
|
|
14581
15198
|
chain: 'NRG',
|
|
@@ -14648,7 +15265,8 @@ exports.chains = {
|
|
|
14648
15265
|
'https://arbitrum-mainnet.infura.io/v3/${INFURA_API_KEY}',
|
|
14649
15266
|
'https://arb-mainnet.g.alchemy.com/v2/${ALCHEMY_API_KEY}',
|
|
14650
15267
|
'https://arb1.arbitrum.io/rpc',
|
|
14651
|
-
'https://arbitrum-one.publicnode.com'
|
|
15268
|
+
'https://arbitrum-one.publicnode.com',
|
|
15269
|
+
'wss://arbitrum-one.publicnode.com'
|
|
14652
15270
|
],
|
|
14653
15271
|
faucets: [],
|
|
14654
15272
|
explorers: [
|
|
@@ -14679,7 +15297,8 @@ exports.chains = {
|
|
|
14679
15297
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
14680
15298
|
rpc: [
|
|
14681
15299
|
'https://nova.arbitrum.io/rpc',
|
|
14682
|
-
'https://arbitrum-nova.publicnode.com'
|
|
15300
|
+
'https://arbitrum-nova.publicnode.com',
|
|
15301
|
+
'wss://arbitrum-nova.publicnode.com'
|
|
14683
15302
|
],
|
|
14684
15303
|
faucets: [],
|
|
14685
15304
|
explorers: [
|
|
@@ -14705,7 +15324,7 @@ exports.chains = {
|
|
|
14705
15324
|
networkId: 42220,
|
|
14706
15325
|
nativeCurrency: { name: 'CELO', symbol: 'CELO', decimals: 18 },
|
|
14707
15326
|
rpc: ['https://forno.celo.org', 'wss://forno.celo.org/ws'],
|
|
14708
|
-
faucets: [
|
|
15327
|
+
faucets: [],
|
|
14709
15328
|
infoURL: 'https://docs.celo.org/',
|
|
14710
15329
|
explorers: [
|
|
14711
15330
|
{
|
|
@@ -14798,7 +15417,8 @@ exports.chains = {
|
|
|
14798
15417
|
icon: 'avax',
|
|
14799
15418
|
rpc: [
|
|
14800
15419
|
'https://api.avax-test.network/ext/bc/C/rpc',
|
|
14801
|
-
'https://avalanche-fuji-c-chain.publicnode.com'
|
|
15420
|
+
'https://avalanche-fuji-c-chain.publicnode.com',
|
|
15421
|
+
'wss://avalanche-fuji-c-chain.publicnode.com'
|
|
14802
15422
|
],
|
|
14803
15423
|
faucets: ['https://faucet.avax-test.network/'],
|
|
14804
15424
|
nativeCurrency: { name: 'Avalanche', symbol: 'AVAX', decimals: 18 },
|
|
@@ -14820,10 +15440,11 @@ exports.chains = {
|
|
|
14820
15440
|
icon: 'avax',
|
|
14821
15441
|
rpc: [
|
|
14822
15442
|
'https://api.avax.network/ext/bc/C/rpc',
|
|
14823
|
-
'https://avalanche-c-chain.publicnode.com'
|
|
15443
|
+
'https://avalanche-c-chain.publicnode.com',
|
|
15444
|
+
'wss://avalanche-c-chain.publicnode.com'
|
|
14824
15445
|
],
|
|
14825
15446
|
features: [{ name: 'EIP1559' }],
|
|
14826
|
-
faucets: [
|
|
15447
|
+
faucets: [],
|
|
14827
15448
|
nativeCurrency: { name: 'Avalanche', symbol: 'AVAX', decimals: 18 },
|
|
14828
15449
|
infoURL: 'https://www.avax.network/',
|
|
14829
15450
|
shortName: 'avax',
|
|
@@ -15160,7 +15781,7 @@ exports.chains = {
|
|
|
15160
15781
|
chain: 'ETH',
|
|
15161
15782
|
rpc: [
|
|
15162
15783
|
'https://rpc.titan.tokamak.network',
|
|
15163
|
-
'wss://rpc.titan.tokamak.network
|
|
15784
|
+
'wss://rpc.titan.tokamak.network'
|
|
15164
15785
|
],
|
|
15165
15786
|
faucets: [],
|
|
15166
15787
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
@@ -15958,6 +16579,63 @@ exports.chains = {
|
|
|
15958
16579
|
}
|
|
15959
16580
|
]
|
|
15960
16581
|
},
|
|
16582
|
+
78430: {
|
|
16583
|
+
name: 'Amplify Subnet',
|
|
16584
|
+
chain: 'AMPLIFY',
|
|
16585
|
+
rpc: ['https://subnets.avax.network/amplify/testnet/rpc'],
|
|
16586
|
+
features: [{ name: 'EIP1559' }],
|
|
16587
|
+
faucets: [],
|
|
16588
|
+
nativeCurrency: { name: 'AMP', symbol: 'AMP', decimals: 18 },
|
|
16589
|
+
infoURL: 'https://www.avax.network',
|
|
16590
|
+
shortName: 'amplify',
|
|
16591
|
+
chainId: 78430,
|
|
16592
|
+
networkId: 78430,
|
|
16593
|
+
explorers: [
|
|
16594
|
+
{
|
|
16595
|
+
name: 'AMPLIFY Explorer',
|
|
16596
|
+
url: 'https://subnets-test.avax.network/amplify',
|
|
16597
|
+
standard: 'EIP3091'
|
|
16598
|
+
}
|
|
16599
|
+
]
|
|
16600
|
+
},
|
|
16601
|
+
78431: {
|
|
16602
|
+
name: 'Bulletin Subnet',
|
|
16603
|
+
chain: 'BULLETIN',
|
|
16604
|
+
rpc: ['https://subnets.avax.network/bulletin/testnet/rpc'],
|
|
16605
|
+
features: [{ name: 'EIP1559' }],
|
|
16606
|
+
faucets: [],
|
|
16607
|
+
nativeCurrency: { name: 'BLT', symbol: 'BLT', decimals: 18 },
|
|
16608
|
+
infoURL: 'https://www.avax.network',
|
|
16609
|
+
shortName: 'bulletin',
|
|
16610
|
+
chainId: 78431,
|
|
16611
|
+
networkId: 78431,
|
|
16612
|
+
explorers: [
|
|
16613
|
+
{
|
|
16614
|
+
name: 'BULLETIN Explorer',
|
|
16615
|
+
url: 'https://subnets-test.avax.network/bulletin',
|
|
16616
|
+
standard: 'EIP3091'
|
|
16617
|
+
}
|
|
16618
|
+
]
|
|
16619
|
+
},
|
|
16620
|
+
78432: {
|
|
16621
|
+
name: 'Conduit Subnet',
|
|
16622
|
+
chain: 'CONDUIT',
|
|
16623
|
+
rpc: ['https://subnets.avax.network/conduit/testnet/rpc'],
|
|
16624
|
+
features: [{ name: 'EIP1559' }],
|
|
16625
|
+
faucets: [],
|
|
16626
|
+
nativeCurrency: { name: 'CON', symbol: 'CON', decimals: 18 },
|
|
16627
|
+
infoURL: 'https://www.avax.network',
|
|
16628
|
+
shortName: 'conduit',
|
|
16629
|
+
chainId: 78432,
|
|
16630
|
+
networkId: 78432,
|
|
16631
|
+
explorers: [
|
|
16632
|
+
{
|
|
16633
|
+
name: 'CONDUIT Explorer',
|
|
16634
|
+
url: 'https://subnets-test.avax.network/conduit',
|
|
16635
|
+
standard: 'EIP3091'
|
|
16636
|
+
}
|
|
16637
|
+
]
|
|
16638
|
+
},
|
|
15961
16639
|
79879: {
|
|
15962
16640
|
name: 'Gold Smart Chain Testnet',
|
|
15963
16641
|
chain: 'STAND',
|
|
@@ -15983,10 +16661,9 @@ exports.chains = {
|
|
|
15983
16661
|
chain: 'Polygon',
|
|
15984
16662
|
icon: 'polygon',
|
|
15985
16663
|
rpc: [
|
|
15986
|
-
'https://matic-mumbai.chainstacklabs.com',
|
|
15987
16664
|
'https://rpc-mumbai.maticvigil.com',
|
|
15988
|
-
'https://matic-testnet-archive-rpc.bwarelabs.com',
|
|
15989
16665
|
'https://polygon-mumbai-bor.publicnode.com',
|
|
16666
|
+
'wss://polygon-mumbai-bor.publicnode.com',
|
|
15990
16667
|
'https://polygon-mumbai.gateway.tenderly.co',
|
|
15991
16668
|
'wss://polygon-mumbai.gateway.tenderly.co'
|
|
15992
16669
|
],
|
|
@@ -16128,7 +16805,8 @@ exports.chains = {
|
|
|
16128
16805
|
'https://goerli.base.org',
|
|
16129
16806
|
'https://base-goerli.gateway.tenderly.co',
|
|
16130
16807
|
'wss://base-goerli.gateway.tenderly.co',
|
|
16131
|
-
'https://base-goerli.publicnode.com'
|
|
16808
|
+
'https://base-goerli.publicnode.com',
|
|
16809
|
+
'wss://base-goerli.publicnode.com'
|
|
16132
16810
|
],
|
|
16133
16811
|
faucets: ['https://www.coinbase.com/faucets/base-ethereum-goerli-faucet'],
|
|
16134
16812
|
nativeCurrency: { name: 'Goerli Ether', symbol: 'ETH', decimals: 18 },
|
|
@@ -16182,6 +16860,26 @@ exports.chains = {
|
|
|
16182
16860
|
chainId: 85449,
|
|
16183
16861
|
networkId: 48501
|
|
16184
16862
|
},
|
|
16863
|
+
88002: {
|
|
16864
|
+
name: 'Nautilus Proteus Testnet',
|
|
16865
|
+
chain: 'ETH',
|
|
16866
|
+
icon: 'nautilus',
|
|
16867
|
+
rpc: ['https://api.proteus.nautchain.xyz/solana'],
|
|
16868
|
+
faucets: ['https://proteusfaucet.nautchain.xyz'],
|
|
16869
|
+
nativeCurrency: { name: 'Zebec Test Token', symbol: 'tZBC', decimals: 18 },
|
|
16870
|
+
infoURL: 'https://docs.nautchain.xyz',
|
|
16871
|
+
shortName: 'NAUTTest',
|
|
16872
|
+
chainId: 88002,
|
|
16873
|
+
networkId: 88002,
|
|
16874
|
+
explorers: [
|
|
16875
|
+
{
|
|
16876
|
+
name: 'Nautscan',
|
|
16877
|
+
url: 'https://proteus.nautscan.com',
|
|
16878
|
+
standard: 'EIP3091',
|
|
16879
|
+
icon: 'nautilus'
|
|
16880
|
+
}
|
|
16881
|
+
]
|
|
16882
|
+
},
|
|
16185
16883
|
88880: {
|
|
16186
16884
|
name: 'Chiliz Scoville Testnet',
|
|
16187
16885
|
chain: 'CHZ',
|
|
@@ -16245,7 +16943,7 @@ exports.chains = {
|
|
|
16245
16943
|
]
|
|
16246
16944
|
},
|
|
16247
16945
|
91002: {
|
|
16248
|
-
name: 'Nautilus Chain',
|
|
16946
|
+
name: 'Nautilus Trition Chain',
|
|
16249
16947
|
title: 'Nautilus Trition Testnet',
|
|
16250
16948
|
chain: 'ETH',
|
|
16251
16949
|
icon: 'nautilus',
|
|
@@ -17816,7 +18514,8 @@ exports.chains = {
|
|
|
17816
18514
|
},
|
|
17817
18515
|
rpc: [
|
|
17818
18516
|
'https://goerli-rollup.arbitrum.io/rpc',
|
|
17819
|
-
'https://arbitrum-goerli.publicnode.com'
|
|
18517
|
+
'https://arbitrum-goerli.publicnode.com',
|
|
18518
|
+
'wss://arbitrum-goerli.publicnode.com'
|
|
17820
18519
|
],
|
|
17821
18520
|
faucets: [],
|
|
17822
18521
|
infoURL: 'https://arbitrum.io/',
|
|
@@ -17833,6 +18532,30 @@ exports.chains = {
|
|
|
17833
18532
|
bridges: [{ url: 'https://bridge.arbitrum.io/' }]
|
|
17834
18533
|
}
|
|
17835
18534
|
},
|
|
18535
|
+
421614: {
|
|
18536
|
+
name: 'Arbitrum Sepolia',
|
|
18537
|
+
title: 'Arbitrum Sepolia Rollup Testnet',
|
|
18538
|
+
chain: 'ETH',
|
|
18539
|
+
rpc: ['https://sepolia-rollup.arbitrum.io/rpc'],
|
|
18540
|
+
faucets: [],
|
|
18541
|
+
nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 },
|
|
18542
|
+
infoURL: 'https://arbitrum.io',
|
|
18543
|
+
shortName: 'arb-sep',
|
|
18544
|
+
chainId: 421614,
|
|
18545
|
+
networkId: 421614,
|
|
18546
|
+
explorers: [
|
|
18547
|
+
{
|
|
18548
|
+
name: 'Arbitrum Sepolia Rollup Testnet Explorer',
|
|
18549
|
+
url: 'https://sepolia-explorer.arbitrum.io',
|
|
18550
|
+
standard: 'EIP3091'
|
|
18551
|
+
}
|
|
18552
|
+
],
|
|
18553
|
+
parent: {
|
|
18554
|
+
type: 'L2',
|
|
18555
|
+
chain: 'eip155-11155111',
|
|
18556
|
+
bridges: [{ url: 'https://bridge.arbitrum.io' }]
|
|
18557
|
+
}
|
|
18558
|
+
},
|
|
17836
18559
|
424242: {
|
|
17837
18560
|
name: 'Fastex Chain testnet',
|
|
17838
18561
|
chain: 'FTN',
|
|
@@ -18104,7 +18827,7 @@ exports.chains = {
|
|
|
18104
18827
|
title: 'BESC Mainnet',
|
|
18105
18828
|
chain: 'BESC',
|
|
18106
18829
|
rpc: ['https://mainnet-rpc.bescscan.io'],
|
|
18107
|
-
faucets: [
|
|
18830
|
+
faucets: [],
|
|
18108
18831
|
nativeCurrency: {
|
|
18109
18832
|
name: 'BeanEco SmartChain',
|
|
18110
18833
|
symbol: 'BESC',
|
|
@@ -18122,6 +18845,31 @@ exports.chains = {
|
|
|
18122
18845
|
}
|
|
18123
18846
|
]
|
|
18124
18847
|
},
|
|
18848
|
+
622277: {
|
|
18849
|
+
name: 'Rethereum Mainnet',
|
|
18850
|
+
chain: 'RTH',
|
|
18851
|
+
rpc: [
|
|
18852
|
+
'https://rpc.rethereum.org',
|
|
18853
|
+
'https://rethereum.rpc.restratagem.com',
|
|
18854
|
+
'https://rpc.rthcentral.org'
|
|
18855
|
+
],
|
|
18856
|
+
faucets: [],
|
|
18857
|
+
nativeCurrency: { name: 'Rethereum', symbol: 'RTH', decimals: 18 },
|
|
18858
|
+
features: [{ name: 'EIP155' }, { name: 'EIP1559' }],
|
|
18859
|
+
infoURL: 'https://www.rethereum.org',
|
|
18860
|
+
shortName: 'rth',
|
|
18861
|
+
chainId: 622277,
|
|
18862
|
+
networkId: 622277,
|
|
18863
|
+
icon: 'rethereum',
|
|
18864
|
+
explorers: [
|
|
18865
|
+
{
|
|
18866
|
+
name: 'rethereum',
|
|
18867
|
+
url: 'https://explorer.rethereum.org',
|
|
18868
|
+
icon: 'blockscout',
|
|
18869
|
+
standard: 'EIP3091'
|
|
18870
|
+
}
|
|
18871
|
+
]
|
|
18872
|
+
},
|
|
18125
18873
|
641230: {
|
|
18126
18874
|
name: 'Bear Network Chain Mainnet',
|
|
18127
18875
|
chain: 'BRNKC',
|
|
@@ -18294,7 +19042,7 @@ exports.chains = {
|
|
|
18294
19042
|
name: 'Posichain Mainnet Shard 0',
|
|
18295
19043
|
chain: 'PSC',
|
|
18296
19044
|
rpc: ['https://api.posichain.org', 'https://api.s0.posichain.org'],
|
|
18297
|
-
faucets: [
|
|
19045
|
+
faucets: [],
|
|
18298
19046
|
nativeCurrency: {
|
|
18299
19047
|
name: 'Posichain Native Token',
|
|
18300
19048
|
symbol: 'POSI',
|
|
@@ -19076,7 +19824,13 @@ exports.chains = {
|
|
|
19076
19824
|
20181205: {
|
|
19077
19825
|
name: 'quarkblockchain',
|
|
19078
19826
|
chain: 'QKI',
|
|
19079
|
-
rpc: [
|
|
19827
|
+
rpc: [
|
|
19828
|
+
'https://hz.rpc.qkiscan.cn',
|
|
19829
|
+
'https://jp.rpc.qkiscan.io',
|
|
19830
|
+
'https://rpc1.qkiscan.io',
|
|
19831
|
+
'https://rpc2.qkiscan.io',
|
|
19832
|
+
'https://rpc3.qkiscan.io'
|
|
19833
|
+
],
|
|
19080
19834
|
faucets: [],
|
|
19081
19835
|
nativeCurrency: {
|
|
19082
19836
|
name: 'quarkblockchain Native Token',
|
|
@@ -19086,7 +19840,10 @@ exports.chains = {
|
|
|
19086
19840
|
infoURL: 'https://quarkblockchain.org/',
|
|
19087
19841
|
shortName: 'qki',
|
|
19088
19842
|
chainId: 20181205,
|
|
19089
|
-
networkId: 20181205
|
|
19843
|
+
networkId: 20181205,
|
|
19844
|
+
explorers: [
|
|
19845
|
+
{ name: 'qkiscan', url: 'https://qkiscan.io', standard: 'EIP3091' }
|
|
19846
|
+
]
|
|
19090
19847
|
},
|
|
19091
19848
|
20201022: {
|
|
19092
19849
|
name: 'Pego Network',
|