@revoke.cash/chains 36.0.0 → 37.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 +458 -23
- package/dist/src/enums.d.ts +45 -5
- package/dist/src/enums.js +45 -5
- package/package.json +1 -1
package/dist/src/chains.js
CHANGED
|
@@ -323,6 +323,8 @@ exports.chains = {
|
|
|
323
323
|
'https://flare.rpc.thirdweb.com',
|
|
324
324
|
'https://flare-bundler.etherspot.io',
|
|
325
325
|
'https://rpc.ankr.com/flare',
|
|
326
|
+
'https://01-gravelines-003-01.rpc.tatum.io/ext/bc/C/rpc',
|
|
327
|
+
'https://01-vinthill-003-02.rpc.tatum.io/ext/bc/C/rpc',
|
|
326
328
|
'https://rpc.ftso.au/flare',
|
|
327
329
|
'https://flare.enosys.global/ext/C/rpc',
|
|
328
330
|
'https://flare.solidifi.app/ext/C/rpc'
|
|
@@ -364,7 +366,10 @@ exports.chains = {
|
|
|
364
366
|
icon: 'coston',
|
|
365
367
|
rpc: [
|
|
366
368
|
'https://coston-api.flare.network/ext/C/rpc',
|
|
367
|
-
'https://
|
|
369
|
+
'https://songbird-testnet-coston.rpc.thirdweb.com',
|
|
370
|
+
'https://01-gravelines-004-01.rpc.tatum.io/ext/bc/C/rpc',
|
|
371
|
+
'https://02-chicago-004-02.rpc.tatum.io/ext/bc/C/rpc',
|
|
372
|
+
'https://02-tokyo-004-03.rpc.tatum.io/ext/bc/C/rpc',
|
|
368
373
|
'https://coston.enosys.global/ext/C/rpc'
|
|
369
374
|
],
|
|
370
375
|
features: [{ name: 'EIP155' }, { name: 'EIP1559' }],
|
|
@@ -432,6 +437,9 @@ exports.chains = {
|
|
|
432
437
|
icon: 'songbird',
|
|
433
438
|
rpc: [
|
|
434
439
|
'https://songbird-api.flare.network/ext/C/rpc',
|
|
440
|
+
'https://01-gravelines-006-01.rpc.tatum.io/ext/bc/C/rpc',
|
|
441
|
+
'https://01-vinthill-006-02.rpc.tatum.io/ext/bc/C/rpc',
|
|
442
|
+
'https://02-tokyo-006-03.rpc.tatum.io/ext/bc/C/rpc',
|
|
435
443
|
'https://rpc.ftso.au/songbird',
|
|
436
444
|
'https://songbird.enosys.global/ext/C/rpc',
|
|
437
445
|
'https://songbird.solidifi.app/ext/C/rpc'
|
|
@@ -2439,6 +2447,9 @@ exports.chains = {
|
|
|
2439
2447
|
'https://coston2-api.flare.network/ext/C/rpc',
|
|
2440
2448
|
'https://flare-testnet-coston2.rpc.thirdweb.com',
|
|
2441
2449
|
'https://flaretestnet-bundler.etherspot.io',
|
|
2450
|
+
'https://01-gravelines-005-01.rpc.tatum.io/ext/bc/C/rpc',
|
|
2451
|
+
'https://02-chicago-005-02.rpc.tatum.io/ext/bc/C/rpc',
|
|
2452
|
+
'https://02-tokyo-005-03.rpc.tatum.io/ext/bc/C/rpc',
|
|
2442
2453
|
'https://coston2.enosys.global/ext/C/rpc'
|
|
2443
2454
|
],
|
|
2444
2455
|
features: [{ name: 'EIP155' }, { name: 'EIP1559' }],
|
|
@@ -2887,23 +2898,25 @@ exports.chains = {
|
|
|
2887
2898
|
name: 'Defi Oracle Meta Mainnet',
|
|
2888
2899
|
chain: 'dfiometa',
|
|
2889
2900
|
icon: 'defioraclemeta',
|
|
2890
|
-
rpc: [
|
|
2891
|
-
'https://rpc.public-0138.defi-oracle.io',
|
|
2892
|
-
'wss://rpc.public-0138.defi-oracle.io'
|
|
2893
|
-
],
|
|
2901
|
+
rpc: ['https://rpc.defi-oracle.io', 'wss://wss.defi-oracle.io'],
|
|
2894
2902
|
features: [{ name: 'EIP155' }, { name: 'EIP1559' }],
|
|
2895
2903
|
faucets: [],
|
|
2896
2904
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
2897
|
-
infoURL: 'https://defi-oracle.io/',
|
|
2905
|
+
infoURL: 'https://info.defi-oracle.io/',
|
|
2898
2906
|
shortName: 'dfio-meta-main',
|
|
2899
2907
|
chainId: 138,
|
|
2900
2908
|
networkId: 1,
|
|
2901
2909
|
slip44: 60,
|
|
2902
2910
|
ens: { registry: '0x57f1887a8BF19b14fC0dF6Fd9B2acc9Af147eA85' },
|
|
2903
2911
|
explorers: [
|
|
2912
|
+
{
|
|
2913
|
+
name: 'Blockscout Explorer',
|
|
2914
|
+
url: 'https://blockscout.defi-oracle.io',
|
|
2915
|
+
standard: 'none'
|
|
2916
|
+
},
|
|
2904
2917
|
{
|
|
2905
2918
|
name: 'Quorum Explorer',
|
|
2906
|
-
url: 'https://
|
|
2919
|
+
url: 'https://explorer.defi-oracle.io',
|
|
2907
2920
|
standard: 'none'
|
|
2908
2921
|
}
|
|
2909
2922
|
]
|
|
@@ -5050,6 +5063,27 @@ exports.chains = {
|
|
|
5050
5063
|
chainId: 385,
|
|
5051
5064
|
networkId: 385
|
|
5052
5065
|
},
|
|
5066
|
+
395: {
|
|
5067
|
+
name: 'CamDL Testnet',
|
|
5068
|
+
chain: 'CADL',
|
|
5069
|
+
rpc: ['https://rpc1.testnet.camdl.gov.kh/'],
|
|
5070
|
+
faucets: ['https://faucet.testnet.camdl.gov.kh/'],
|
|
5071
|
+
nativeCurrency: { name: 'CADL', symbol: 'CADL', decimals: 18 },
|
|
5072
|
+
features: [{ name: 'EIP155' }],
|
|
5073
|
+
infoURL: 'https://camdl.gov.kh/',
|
|
5074
|
+
shortName: 'camdl-testnet',
|
|
5075
|
+
chainId: 395,
|
|
5076
|
+
networkId: 395,
|
|
5077
|
+
icon: 'camdl',
|
|
5078
|
+
explorers: [
|
|
5079
|
+
{
|
|
5080
|
+
name: 'CamDL Testnet Explorer',
|
|
5081
|
+
url: 'https://explorer.testnet.camdl.gov.kh',
|
|
5082
|
+
standard: 'EIP3091'
|
|
5083
|
+
}
|
|
5084
|
+
],
|
|
5085
|
+
status: 'active'
|
|
5086
|
+
},
|
|
5053
5087
|
399: {
|
|
5054
5088
|
name: 'Nativ3 Mainnet',
|
|
5055
5089
|
chainId: 399,
|
|
@@ -7108,6 +7142,27 @@ exports.chains = {
|
|
|
7108
7142
|
networkId: 910,
|
|
7109
7143
|
slip44: 1
|
|
7110
7144
|
},
|
|
7145
|
+
911: {
|
|
7146
|
+
name: 'TAPROOT Mainnet',
|
|
7147
|
+
title: 'TAPROOT Mainnet',
|
|
7148
|
+
chain: 'TAPROOT CHAIN',
|
|
7149
|
+
rpc: ['https://rpc.taprootchain.io'],
|
|
7150
|
+
faucets: [],
|
|
7151
|
+
nativeCurrency: { name: 'TBTC', symbol: 'TBTC', decimals: 18 },
|
|
7152
|
+
infoURL: 'https://taprootchain.io',
|
|
7153
|
+
shortName: 'TAPROOT-Mainnet',
|
|
7154
|
+
chainId: 911,
|
|
7155
|
+
networkId: 911,
|
|
7156
|
+
icon: 'taproot',
|
|
7157
|
+
explorers: [
|
|
7158
|
+
{
|
|
7159
|
+
name: 'TAPROOT Scan',
|
|
7160
|
+
url: 'https://scan.taprootchain.io',
|
|
7161
|
+
icon: 'taproot',
|
|
7162
|
+
standard: 'EIP3091'
|
|
7163
|
+
}
|
|
7164
|
+
]
|
|
7165
|
+
},
|
|
7111
7166
|
917: {
|
|
7112
7167
|
name: 'Rinia Testnet',
|
|
7113
7168
|
chain: 'FIRE',
|
|
@@ -7934,7 +7989,8 @@ exports.chains = {
|
|
|
7934
7989
|
'https://evm.humans.stakepool.dev.br',
|
|
7935
7990
|
'https://mainnet-humans-evm.konsortech.xyz',
|
|
7936
7991
|
'https://evm-rpc.mainnet.humans.zone',
|
|
7937
|
-
'https://json-rpc.humans.bh.rocks'
|
|
7992
|
+
'https://json-rpc.humans.bh.rocks',
|
|
7993
|
+
'https://evm-rpc.humans.huginn.tech'
|
|
7938
7994
|
],
|
|
7939
7995
|
faucets: [],
|
|
7940
7996
|
nativeCurrency: { name: 'HEART', symbol: 'HEART', decimals: 18 },
|
|
@@ -13875,6 +13931,24 @@ exports.chains = {
|
|
|
13875
13931
|
chainId: 5105,
|
|
13876
13932
|
networkId: 5105
|
|
13877
13933
|
},
|
|
13934
|
+
5106: {
|
|
13935
|
+
name: 'Azra Testnet',
|
|
13936
|
+
chain: 'Azra Testnet',
|
|
13937
|
+
rpc: ['https://rpc-azra-testnet-6hz86owb1n.t.conduit.xyz'],
|
|
13938
|
+
faucets: [],
|
|
13939
|
+
nativeCurrency: { name: 'ETH', symbol: 'ETH', decimals: 18 },
|
|
13940
|
+
infoURL: 'https://azragames.com',
|
|
13941
|
+
shortName: 'azra-testnet',
|
|
13942
|
+
chainId: 5106,
|
|
13943
|
+
networkId: 5106,
|
|
13944
|
+
explorers: [
|
|
13945
|
+
{
|
|
13946
|
+
name: 'blockscout',
|
|
13947
|
+
url: 'https://explorerl2new-azra-testnet-6hz86owb1n.t.conduit.xyz',
|
|
13948
|
+
standard: 'EIP3091'
|
|
13949
|
+
}
|
|
13950
|
+
]
|
|
13951
|
+
},
|
|
13878
13952
|
5165: {
|
|
13879
13953
|
name: 'Bahamut',
|
|
13880
13954
|
title: 'Bahamut mainnet',
|
|
@@ -14028,6 +14102,20 @@ exports.chains = {
|
|
|
14028
14102
|
}
|
|
14029
14103
|
]
|
|
14030
14104
|
},
|
|
14105
|
+
5439: {
|
|
14106
|
+
name: 'Egochain',
|
|
14107
|
+
chainId: 5439,
|
|
14108
|
+
shortName: 'egax',
|
|
14109
|
+
chain: 'EGAX',
|
|
14110
|
+
networkId: 5439,
|
|
14111
|
+
nativeCurrency: { name: 'EGAX', symbol: 'EGAX', decimals: 18 },
|
|
14112
|
+
rpc: ['https://mainnet.egochain.org'],
|
|
14113
|
+
faucets: [],
|
|
14114
|
+
infoURL: 'https://docs.egochain.org/',
|
|
14115
|
+
explorers: [
|
|
14116
|
+
{ name: 'egoscan', url: 'https://egoscan.io', standard: 'EIP3091' }
|
|
14117
|
+
]
|
|
14118
|
+
},
|
|
14031
14119
|
5522: {
|
|
14032
14120
|
name: 'VEX EVM TESTNET',
|
|
14033
14121
|
chain: 'vex',
|
|
@@ -14155,6 +14243,25 @@ exports.chains = {
|
|
|
14155
14243
|
}
|
|
14156
14244
|
]
|
|
14157
14245
|
},
|
|
14246
|
+
5615: {
|
|
14247
|
+
name: 'Arcturus Testneet',
|
|
14248
|
+
chain: 'Arcturus',
|
|
14249
|
+
rpc: ['https://rpc-testnet.arcturuschain.io/'],
|
|
14250
|
+
faucets: ['https://faucet.arcturuschain.io'],
|
|
14251
|
+
nativeCurrency: { name: 'tARC', symbol: 'tARC', decimals: 18 },
|
|
14252
|
+
features: [{ name: 'EIP155' }, { name: 'EIP1559' }],
|
|
14253
|
+
infoURL: 'https://arcturuschain.io',
|
|
14254
|
+
shortName: 'arcturus-testnet',
|
|
14255
|
+
chainId: 5615,
|
|
14256
|
+
networkId: 5615,
|
|
14257
|
+
explorers: [
|
|
14258
|
+
{
|
|
14259
|
+
name: 'explorer-arcturus-testnet',
|
|
14260
|
+
url: 'https://testnet.arcscan.net',
|
|
14261
|
+
standard: 'EIP3091'
|
|
14262
|
+
}
|
|
14263
|
+
]
|
|
14264
|
+
},
|
|
14158
14265
|
5616: {
|
|
14159
14266
|
name: 'Arcturus Chain Testnet',
|
|
14160
14267
|
chain: 'ARCTURUS',
|
|
@@ -14308,6 +14415,24 @@ exports.chains = {
|
|
|
14308
14415
|
}
|
|
14309
14416
|
]
|
|
14310
14417
|
},
|
|
14418
|
+
6000: {
|
|
14419
|
+
name: 'BounceBit Testnet',
|
|
14420
|
+
chain: 'BounceBit',
|
|
14421
|
+
rpc: ['https://fullnode-testnet.bouncebitapi.com/'],
|
|
14422
|
+
faucets: [],
|
|
14423
|
+
nativeCurrency: { name: 'BounceBit', symbol: 'BB', decimals: 18 },
|
|
14424
|
+
infoURL: 'https://bouncebit.io',
|
|
14425
|
+
shortName: 'bouncebit-testnet',
|
|
14426
|
+
chainId: 6000,
|
|
14427
|
+
networkId: 6000,
|
|
14428
|
+
explorers: [
|
|
14429
|
+
{
|
|
14430
|
+
name: 'BBScan Testnet Explorer',
|
|
14431
|
+
url: 'https://bbscan.io',
|
|
14432
|
+
standard: 'none'
|
|
14433
|
+
}
|
|
14434
|
+
]
|
|
14435
|
+
},
|
|
14311
14436
|
6065: {
|
|
14312
14437
|
name: 'Tres Testnet',
|
|
14313
14438
|
chain: 'TresLeches',
|
|
@@ -15182,6 +15307,28 @@ exports.chains = {
|
|
|
15182
15307
|
}
|
|
15183
15308
|
]
|
|
15184
15309
|
},
|
|
15310
|
+
7798: {
|
|
15311
|
+
name: 'OpenEX LONG Testnet',
|
|
15312
|
+
title: 'OpenEX LONG Testnet',
|
|
15313
|
+
chain: 'OEX',
|
|
15314
|
+
icon: 'oex',
|
|
15315
|
+
rpc: ['https://long.rpc.openex.network/'],
|
|
15316
|
+
faucets: ['https://long.hub.openex.network/faucet'],
|
|
15317
|
+
nativeCurrency: { name: 'USDT Testnet', symbol: 'USDT', decimals: 18 },
|
|
15318
|
+
infoURL: 'https://openex.network',
|
|
15319
|
+
shortName: 'oex',
|
|
15320
|
+
chainId: 7798,
|
|
15321
|
+
networkId: 7798,
|
|
15322
|
+
slip44: 1,
|
|
15323
|
+
explorers: [
|
|
15324
|
+
{
|
|
15325
|
+
name: 'OpenEX Long Testnet Explorer',
|
|
15326
|
+
url: 'https://scan.long.openex.network',
|
|
15327
|
+
icon: 'oex',
|
|
15328
|
+
standard: 'EIP3091'
|
|
15329
|
+
}
|
|
15330
|
+
]
|
|
15331
|
+
},
|
|
15185
15332
|
7860: {
|
|
15186
15333
|
name: 'MaalChain Testnet',
|
|
15187
15334
|
chain: 'MaalChain Testnet',
|
|
@@ -16649,6 +16796,26 @@ exports.chains = {
|
|
|
16649
16796
|
}
|
|
16650
16797
|
]
|
|
16651
16798
|
},
|
|
16799
|
+
9911: {
|
|
16800
|
+
name: 'Espento Mainnet',
|
|
16801
|
+
chain: 'SPENT',
|
|
16802
|
+
rpc: ['https://rpc.escscan.com/'],
|
|
16803
|
+
faucets: [],
|
|
16804
|
+
nativeCurrency: { name: 'ESPENTO', symbol: 'SPENT', decimals: 18 },
|
|
16805
|
+
infoURL: 'https://espento.network',
|
|
16806
|
+
shortName: 'spent',
|
|
16807
|
+
chainId: 9911,
|
|
16808
|
+
networkId: 9911,
|
|
16809
|
+
icon: 'espento',
|
|
16810
|
+
explorers: [
|
|
16811
|
+
{
|
|
16812
|
+
name: 'escscan',
|
|
16813
|
+
url: 'https://escscan.com',
|
|
16814
|
+
icon: 'espento',
|
|
16815
|
+
standard: 'EIP3091'
|
|
16816
|
+
}
|
|
16817
|
+
]
|
|
16818
|
+
},
|
|
16652
16819
|
9977: {
|
|
16653
16820
|
name: 'Mind Smart Chain Testnet',
|
|
16654
16821
|
chain: 'tMIND',
|
|
@@ -17343,11 +17510,11 @@ exports.chains = {
|
|
|
17343
17510
|
]
|
|
17344
17511
|
},
|
|
17345
17512
|
11888: {
|
|
17346
|
-
name: '
|
|
17347
|
-
chain: '
|
|
17513
|
+
name: 'Santiment Intelligence Network',
|
|
17514
|
+
chain: 'Santiment Intelligence Network',
|
|
17348
17515
|
rpc: ['https://sanrchain-node.santiment.net'],
|
|
17349
17516
|
faucets: [],
|
|
17350
|
-
nativeCurrency: { name: '
|
|
17517
|
+
nativeCurrency: { name: 'SANR', symbol: 'SANR', decimals: 18 },
|
|
17351
17518
|
infoURL: 'https://sanr.app',
|
|
17352
17519
|
shortName: 'SAN',
|
|
17353
17520
|
chainId: 11888,
|
|
@@ -17360,8 +17527,8 @@ exports.chains = {
|
|
|
17360
17527
|
},
|
|
17361
17528
|
explorers: [
|
|
17362
17529
|
{
|
|
17363
|
-
name: '
|
|
17364
|
-
url: 'https://
|
|
17530
|
+
name: 'Santiment Intelligence Explorer',
|
|
17531
|
+
url: 'https://app-explorer-pos.sanr.app',
|
|
17365
17532
|
standard: 'none'
|
|
17366
17533
|
}
|
|
17367
17534
|
]
|
|
@@ -17711,6 +17878,26 @@ exports.chains = {
|
|
|
17711
17878
|
}
|
|
17712
17879
|
]
|
|
17713
17880
|
},
|
|
17881
|
+
13396: {
|
|
17882
|
+
name: 'Masa',
|
|
17883
|
+
chain: 'MASA',
|
|
17884
|
+
icon: 'masa',
|
|
17885
|
+
rpc: ['https://subnets.avax.network/masanetwork/mainnet/rpc'],
|
|
17886
|
+
features: [{ name: 'EIP1559' }],
|
|
17887
|
+
faucets: [],
|
|
17888
|
+
nativeCurrency: { name: 'Masa Token', symbol: 'MASA', decimals: 18 },
|
|
17889
|
+
infoURL: 'https://masa.finance',
|
|
17890
|
+
shortName: 'masa',
|
|
17891
|
+
chainId: 13396,
|
|
17892
|
+
networkId: 13396,
|
|
17893
|
+
explorers: [
|
|
17894
|
+
{
|
|
17895
|
+
name: 'Masa Explorer',
|
|
17896
|
+
url: 'https://subnets.avax.network/masa',
|
|
17897
|
+
standard: 'EIP3091'
|
|
17898
|
+
}
|
|
17899
|
+
]
|
|
17900
|
+
},
|
|
17714
17901
|
13473: {
|
|
17715
17902
|
name: 'Immutable zkEVM Testnet',
|
|
17716
17903
|
chain: 'Immutable zkEVM',
|
|
@@ -18265,7 +18452,7 @@ exports.chains = {
|
|
|
18265
18452
|
]
|
|
18266
18453
|
},
|
|
18267
18454
|
18231: {
|
|
18268
|
-
name: 'unreal',
|
|
18455
|
+
name: 'unreal-old',
|
|
18269
18456
|
title: 'unreal testnet for re.al',
|
|
18270
18457
|
chain: 'unreal',
|
|
18271
18458
|
rpc: [
|
|
@@ -18275,7 +18462,7 @@ exports.chains = {
|
|
|
18275
18462
|
nativeCurrency: { name: 'unreal Ether', symbol: 'ETH', decimals: 18 },
|
|
18276
18463
|
infoURL: 'https://raas.gelato.network/rollups/details/public/unreal',
|
|
18277
18464
|
faucets: [],
|
|
18278
|
-
shortName: 'unreal',
|
|
18465
|
+
shortName: 'unreal-old',
|
|
18279
18466
|
chainId: 18231,
|
|
18280
18467
|
networkId: 18231,
|
|
18281
18468
|
slip44: 60,
|
|
@@ -18288,10 +18475,37 @@ exports.chains = {
|
|
|
18288
18475
|
standard: 'EIP3091'
|
|
18289
18476
|
}
|
|
18290
18477
|
],
|
|
18478
|
+
parent: { type: 'L2', chain: 'eip155-11155111', bridges: [] },
|
|
18479
|
+
status: 'deprecated'
|
|
18480
|
+
},
|
|
18481
|
+
18233: {
|
|
18482
|
+
name: 'unreal',
|
|
18483
|
+
title: 'unreal testnet for re.al',
|
|
18484
|
+
chain: 'unreal',
|
|
18485
|
+
rpc: [
|
|
18486
|
+
'https://rpc.unreal-orbit.gelato.digital',
|
|
18487
|
+
'wss://ws.unreal-orbit.gelato.digital'
|
|
18488
|
+
],
|
|
18489
|
+
nativeCurrency: { name: 'unreal Ether', symbol: 'reETH', decimals: 18 },
|
|
18490
|
+
infoURL: 'https://raas.gelato.network/rollups/details/public/unreal',
|
|
18491
|
+
faucets: [],
|
|
18492
|
+
shortName: 'unreal',
|
|
18493
|
+
chainId: 18233,
|
|
18494
|
+
networkId: 18233,
|
|
18495
|
+
slip44: 60,
|
|
18496
|
+
icon: 'unreal',
|
|
18497
|
+
explorers: [
|
|
18498
|
+
{
|
|
18499
|
+
name: 'blockscout',
|
|
18500
|
+
url: 'https://unreal.blockscout.com',
|
|
18501
|
+
icon: 'unreal',
|
|
18502
|
+
standard: 'EIP3091'
|
|
18503
|
+
}
|
|
18504
|
+
],
|
|
18291
18505
|
parent: {
|
|
18292
18506
|
type: 'L2',
|
|
18293
|
-
chain: 'eip155-
|
|
18294
|
-
bridges: [{ url: 'https://bridge.
|
|
18507
|
+
chain: 'eip155-17000',
|
|
18508
|
+
bridges: [{ url: 'https://bridge.gelato.network/bridge/unreal' }]
|
|
18295
18509
|
}
|
|
18296
18510
|
},
|
|
18297
18511
|
18686: {
|
|
@@ -19800,6 +20014,20 @@ exports.chains = {
|
|
|
19800
20014
|
chainId: 43110,
|
|
19801
20015
|
networkId: 43110
|
|
19802
20016
|
},
|
|
20017
|
+
43111: {
|
|
20018
|
+
name: 'Hemi Network',
|
|
20019
|
+
chain: 'ETH',
|
|
20020
|
+
rpc: [],
|
|
20021
|
+
faucets: [],
|
|
20022
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
20023
|
+
infoURL: 'https://hemi.xyz',
|
|
20024
|
+
shortName: 'hemi',
|
|
20025
|
+
chainId: 43111,
|
|
20026
|
+
networkId: 43111,
|
|
20027
|
+
explorers: [],
|
|
20028
|
+
parent: { type: 'L2', chain: 'eip155-1' },
|
|
20029
|
+
status: 'incubating'
|
|
20030
|
+
},
|
|
19803
20031
|
43113: {
|
|
19804
20032
|
name: 'Avalanche Fuji Testnet',
|
|
19805
20033
|
chain: 'AVAX',
|
|
@@ -19914,6 +20142,26 @@ exports.chains = {
|
|
|
19914
20142
|
}
|
|
19915
20143
|
]
|
|
19916
20144
|
},
|
|
20145
|
+
44445: {
|
|
20146
|
+
name: 'Quantum Network',
|
|
20147
|
+
chain: 'Quantum',
|
|
20148
|
+
rpc: ['https://rpcqtm.avescoin.io'],
|
|
20149
|
+
faucets: [],
|
|
20150
|
+
nativeCurrency: { name: 'Quantum', symbol: 'QTM', decimals: 18 },
|
|
20151
|
+
infoURL: 'https://avescoin.io/',
|
|
20152
|
+
shortName: 'QTM',
|
|
20153
|
+
chainId: 44445,
|
|
20154
|
+
networkId: 44445,
|
|
20155
|
+
icon: 'quantum',
|
|
20156
|
+
explorers: [
|
|
20157
|
+
{
|
|
20158
|
+
name: 'Quantum Explorer',
|
|
20159
|
+
url: 'https://qtm.avescoin.io',
|
|
20160
|
+
icon: 'quantum',
|
|
20161
|
+
standard: 'EIP3091'
|
|
20162
|
+
}
|
|
20163
|
+
]
|
|
20164
|
+
},
|
|
19917
20165
|
44787: {
|
|
19918
20166
|
name: 'Celo Alfajores Testnet',
|
|
19919
20167
|
chainId: 44787,
|
|
@@ -21037,6 +21285,34 @@ exports.chains = {
|
|
|
21037
21285
|
}
|
|
21038
21286
|
]
|
|
21039
21287
|
},
|
|
21288
|
+
70700: {
|
|
21289
|
+
name: 'Proof of Play - Apex',
|
|
21290
|
+
chainId: 70700,
|
|
21291
|
+
shortName: 'pop-apex',
|
|
21292
|
+
chain: 'ETH',
|
|
21293
|
+
networkId: 70700,
|
|
21294
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
21295
|
+
rpc: ['https://rpc.apex.proofofplay.com'],
|
|
21296
|
+
faucets: [],
|
|
21297
|
+
explorers: [
|
|
21298
|
+
{
|
|
21299
|
+
name: 'Proof of Play Apex Explorer',
|
|
21300
|
+
url: 'https://explorer.apex.proofofplay.com',
|
|
21301
|
+
icon: 'pop-apex',
|
|
21302
|
+
standard: 'EIP3091'
|
|
21303
|
+
}
|
|
21304
|
+
],
|
|
21305
|
+
infoURL: 'https://proofofplay.com',
|
|
21306
|
+
icon: 'pop-apex',
|
|
21307
|
+
parent: {
|
|
21308
|
+
type: 'L2',
|
|
21309
|
+
chain: 'eip155-42161',
|
|
21310
|
+
bridges: [
|
|
21311
|
+
{ url: 'https://bridge.arbitrum.io' },
|
|
21312
|
+
{ url: 'https://relay.link/bridge/apex/' }
|
|
21313
|
+
]
|
|
21314
|
+
}
|
|
21315
|
+
},
|
|
21040
21316
|
71111: {
|
|
21041
21317
|
name: 'GuapcoinX',
|
|
21042
21318
|
chain: 'GuapcoinX',
|
|
@@ -21117,6 +21393,28 @@ exports.chains = {
|
|
|
21117
21393
|
}
|
|
21118
21394
|
]
|
|
21119
21395
|
},
|
|
21396
|
+
72778: {
|
|
21397
|
+
name: 'CAGA crypto Ankara testnet',
|
|
21398
|
+
chain: 'Ankara',
|
|
21399
|
+
rpc: [
|
|
21400
|
+
'https://www.ankara-cagacrypto.com',
|
|
21401
|
+
'wss://wss.ankara-cagacrypto.com'
|
|
21402
|
+
],
|
|
21403
|
+
faucets: [],
|
|
21404
|
+
nativeCurrency: { name: 'Caga', symbol: 'CAGA', decimals: 18 },
|
|
21405
|
+
infoURL: 'https://www.cagacrypto.com/',
|
|
21406
|
+
shortName: 'caga',
|
|
21407
|
+
chainId: 72778,
|
|
21408
|
+
networkId: 72778,
|
|
21409
|
+
icon: 'ankaracaga',
|
|
21410
|
+
explorers: [
|
|
21411
|
+
{
|
|
21412
|
+
name: 'ankara',
|
|
21413
|
+
url: 'https://explorer.ankara-cagacrypto.com',
|
|
21414
|
+
standard: 'EIP3091'
|
|
21415
|
+
}
|
|
21416
|
+
]
|
|
21417
|
+
},
|
|
21120
21418
|
72992: {
|
|
21121
21419
|
name: 'Grok Chain Mainnet',
|
|
21122
21420
|
chain: 'Grok',
|
|
@@ -21810,6 +22108,25 @@ exports.chains = {
|
|
|
21810
22108
|
}
|
|
21811
22109
|
]
|
|
21812
22110
|
},
|
|
22111
|
+
88819: {
|
|
22112
|
+
name: 'Unit Zero Stagenet',
|
|
22113
|
+
chain: 'Unit Zero',
|
|
22114
|
+
rpc: ['https://rpc-stagenet.unit0.dev'],
|
|
22115
|
+
faucets: [],
|
|
22116
|
+
nativeCurrency: { name: 'UNIT0', symbol: 'UNIT0', decimals: 18 },
|
|
22117
|
+
features: [{ name: 'EIP155' }, { name: 'EIP1559' }],
|
|
22118
|
+
infoURL: 'https://units.network',
|
|
22119
|
+
shortName: 'unit0-stagenet',
|
|
22120
|
+
chainId: 88819,
|
|
22121
|
+
networkId: 88819,
|
|
22122
|
+
explorers: [
|
|
22123
|
+
{
|
|
22124
|
+
name: 'explorer-stagenet',
|
|
22125
|
+
url: 'https://explorer-stagenet.unit0.dev',
|
|
22126
|
+
standard: 'EIP3091'
|
|
22127
|
+
}
|
|
22128
|
+
]
|
|
22129
|
+
},
|
|
21813
22130
|
88880: {
|
|
21814
22131
|
name: 'Chiliz Scoville Testnet',
|
|
21815
22132
|
chain: 'CHZ',
|
|
@@ -22383,12 +22700,13 @@ exports.chains = {
|
|
|
22383
22700
|
103454: {
|
|
22384
22701
|
name: 'Masa Testnet',
|
|
22385
22702
|
chain: 'MASA',
|
|
22703
|
+
icon: 'masa',
|
|
22386
22704
|
rpc: ['https://subnets.avax.network/masatestne/testnet/rpc'],
|
|
22387
22705
|
features: [{ name: 'EIP1559' }],
|
|
22388
22706
|
faucets: [],
|
|
22389
22707
|
nativeCurrency: { name: 'Masa Token', symbol: 'MASA', decimals: 18 },
|
|
22390
22708
|
infoURL: 'https://masa.finance',
|
|
22391
|
-
shortName: '
|
|
22709
|
+
shortName: 'masatest',
|
|
22392
22710
|
chainId: 103454,
|
|
22393
22711
|
networkId: 103454,
|
|
22394
22712
|
explorers: [
|
|
@@ -22675,6 +22993,37 @@ exports.chains = {
|
|
|
22675
22993
|
}
|
|
22676
22994
|
]
|
|
22677
22995
|
},
|
|
22996
|
+
111188: {
|
|
22997
|
+
name: 're.al',
|
|
22998
|
+
title: 're.al Real-World Assets network',
|
|
22999
|
+
chain: 're.al',
|
|
23000
|
+
rpc: ['https://real.drpc.org', 'wss://real.drpc.org'],
|
|
23001
|
+
nativeCurrency: { name: 're.al Ether', symbol: 'reETH', decimals: 18 },
|
|
23002
|
+
infoURL: 'https://re.al',
|
|
23003
|
+
faucets: [],
|
|
23004
|
+
shortName: 're-al',
|
|
23005
|
+
chainId: 111188,
|
|
23006
|
+
networkId: 111188,
|
|
23007
|
+
slip44: 60,
|
|
23008
|
+
icon: 'real',
|
|
23009
|
+
explorers: [
|
|
23010
|
+
{
|
|
23011
|
+
name: 'blockscout',
|
|
23012
|
+
url: 'https://explorer.re.al',
|
|
23013
|
+
icon: 'real',
|
|
23014
|
+
standard: 'EIP3091'
|
|
23015
|
+
}
|
|
23016
|
+
],
|
|
23017
|
+
parent: {
|
|
23018
|
+
type: 'L2',
|
|
23019
|
+
chain: 'eip155-1',
|
|
23020
|
+
bridges: [
|
|
23021
|
+
{ url: 'https://re.al/bridge' },
|
|
23022
|
+
{ url: 'https://bridge.gelato.network/bridge/real' }
|
|
23023
|
+
]
|
|
23024
|
+
},
|
|
23025
|
+
status: 'incubating'
|
|
23026
|
+
},
|
|
22678
23027
|
112358: {
|
|
22679
23028
|
name: 'Metachain One Mainnet',
|
|
22680
23029
|
chain: 'METAO',
|
|
@@ -23002,7 +23351,13 @@ exports.chains = {
|
|
|
23002
23351
|
200810: {
|
|
23003
23352
|
name: 'Bitlayer Testnet',
|
|
23004
23353
|
chain: 'Bitlayer',
|
|
23005
|
-
rpc: [
|
|
23354
|
+
rpc: [
|
|
23355
|
+
'https://testnet-rpc.bitlayer.org',
|
|
23356
|
+
'wss://testnet-ws.bitlayer.org',
|
|
23357
|
+
'https://testnet-rpc.bitlayer-rpc.com',
|
|
23358
|
+
'wss://testnet-ws.bitlayer-rpc.com',
|
|
23359
|
+
'https://rpc.ankr.com/bitlayer_testnet'
|
|
23360
|
+
],
|
|
23006
23361
|
faucets: ['https://www.bitlayer.org/faucet'],
|
|
23007
23362
|
nativeCurrency: { name: 'BTC', symbol: 'BTC', decimals: 18 },
|
|
23008
23363
|
infoURL: 'https://docs.bitlayer.org/',
|
|
@@ -23128,6 +23483,24 @@ exports.chains = {
|
|
|
23128
23483
|
}
|
|
23129
23484
|
]
|
|
23130
23485
|
},
|
|
23486
|
+
202401: {
|
|
23487
|
+
name: 'YMTECH-BESU Testnet',
|
|
23488
|
+
chain: 'YMTECH-BESU',
|
|
23489
|
+
rpc: ['http://39.119.118.216:8545'],
|
|
23490
|
+
faucets: [],
|
|
23491
|
+
nativeCurrency: { name: 'ETH', symbol: 'ETH', decimals: 18 },
|
|
23492
|
+
infoURL: 'https://www.ymtech.co.kr',
|
|
23493
|
+
shortName: 'YMTECH-BESU',
|
|
23494
|
+
chainId: 202401,
|
|
23495
|
+
networkId: 202401,
|
|
23496
|
+
explorers: [
|
|
23497
|
+
{
|
|
23498
|
+
name: 'YMTECH-BESU Chainlens',
|
|
23499
|
+
url: 'http://39.119.118.198',
|
|
23500
|
+
standard: 'none'
|
|
23501
|
+
}
|
|
23502
|
+
]
|
|
23503
|
+
},
|
|
23131
23504
|
202624: {
|
|
23132
23505
|
name: 'Jellie',
|
|
23133
23506
|
title: 'Twala Testnet Jellie',
|
|
@@ -24476,17 +24849,17 @@ exports.chains = {
|
|
|
24476
24849
|
]
|
|
24477
24850
|
},
|
|
24478
24851
|
696969: {
|
|
24479
|
-
name: 'Galadriel
|
|
24852
|
+
name: 'Galadriel Devnet',
|
|
24480
24853
|
chain: 'Galadriel',
|
|
24481
|
-
rpc: ['https://
|
|
24854
|
+
rpc: ['https://devnet.galadriel.com'],
|
|
24482
24855
|
faucets: ['https://docs.galadriel.com/faucet'],
|
|
24483
24856
|
nativeCurrency: {
|
|
24484
|
-
name: 'Galadriel
|
|
24857
|
+
name: 'Galadriel Devnet token',
|
|
24485
24858
|
symbol: 'GAL',
|
|
24486
24859
|
decimals: 18
|
|
24487
24860
|
},
|
|
24488
24861
|
infoURL: 'https://galadriel.com',
|
|
24489
|
-
shortName: 'galadriel-
|
|
24862
|
+
shortName: 'galadriel-devnet',
|
|
24490
24863
|
chainId: 696969,
|
|
24491
24864
|
networkId: 696969,
|
|
24492
24865
|
explorers: [
|
|
@@ -24546,6 +24919,27 @@ exports.chains = {
|
|
|
24546
24919
|
}
|
|
24547
24920
|
]
|
|
24548
24921
|
},
|
|
24922
|
+
743111: {
|
|
24923
|
+
name: 'Hemi Sepolia',
|
|
24924
|
+
chain: 'ETH',
|
|
24925
|
+
rpc: ['https://testnet.rpc.hemi.network/rpc'],
|
|
24926
|
+
faucets: [],
|
|
24927
|
+
nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 },
|
|
24928
|
+
infoURL: 'https://hemi.xyz',
|
|
24929
|
+
shortName: 'hemi-sep',
|
|
24930
|
+
chainId: 743111,
|
|
24931
|
+
networkId: 743111,
|
|
24932
|
+
explorers: [
|
|
24933
|
+
{
|
|
24934
|
+
name: 'blockscout',
|
|
24935
|
+
url: 'https://testnet.explorer.hemi.network',
|
|
24936
|
+
icon: 'blockscout',
|
|
24937
|
+
standard: 'EIP3091'
|
|
24938
|
+
}
|
|
24939
|
+
],
|
|
24940
|
+
parent: { type: 'L2', chain: 'eip155-11155111' },
|
|
24941
|
+
status: 'active'
|
|
24942
|
+
},
|
|
24549
24943
|
751230: {
|
|
24550
24944
|
name: 'Bear Network Chain Testnet',
|
|
24551
24945
|
chain: 'BRNKCTEST',
|
|
@@ -24968,6 +25362,27 @@ exports.chains = {
|
|
|
24968
25362
|
}
|
|
24969
25363
|
]
|
|
24970
25364
|
},
|
|
25365
|
+
1100789: {
|
|
25366
|
+
name: 'Netmind Chain Testnet',
|
|
25367
|
+
title: 'NetMind Chain Testnet',
|
|
25368
|
+
chain: 'NetMind',
|
|
25369
|
+
rpc: ['https://testblock.protago-dev.com'],
|
|
25370
|
+
faucets: [],
|
|
25371
|
+
nativeCurrency: { name: 'NMT', symbol: 'NMT', decimals: 18 },
|
|
25372
|
+
infoURL: 'https://netmind.ai',
|
|
25373
|
+
shortName: 'nmtTest',
|
|
25374
|
+
chainId: 1100789,
|
|
25375
|
+
networkId: 1100789,
|
|
25376
|
+
icon: 'netmind',
|
|
25377
|
+
explorers: [
|
|
25378
|
+
{
|
|
25379
|
+
name: 'NetMind Testnet Explorer',
|
|
25380
|
+
url: 'https://testbrower.protago-dev.com',
|
|
25381
|
+
icon: 'netmind',
|
|
25382
|
+
standard: 'EIP3091'
|
|
25383
|
+
}
|
|
25384
|
+
]
|
|
25385
|
+
},
|
|
24971
25386
|
1127469: {
|
|
24972
25387
|
name: 'Tiltyard Subnet',
|
|
24973
25388
|
chain: 'TILTYARD',
|
|
@@ -25943,6 +26358,26 @@ exports.chains = {
|
|
|
25943
26358
|
}
|
|
25944
26359
|
]
|
|
25945
26360
|
},
|
|
26361
|
+
20240324: {
|
|
26362
|
+
name: 'DeBank Sepolia Testnet',
|
|
26363
|
+
chain: 'DeBank',
|
|
26364
|
+
rpc: ['https://sepolia-rpc.testnet.debank.com'],
|
|
26365
|
+
faucets: [],
|
|
26366
|
+
icon: 'debank',
|
|
26367
|
+
nativeCurrency: { name: 'DeBank USD', symbol: 'USD', decimals: 18 },
|
|
26368
|
+
infoURL: 'https://debank.com',
|
|
26369
|
+
shortName: 'dbkse',
|
|
26370
|
+
chainId: 20240324,
|
|
26371
|
+
networkId: 20240324,
|
|
26372
|
+
slip44: 1,
|
|
26373
|
+
explorers: [
|
|
26374
|
+
{
|
|
26375
|
+
name: 'DeBank Chain Explorer',
|
|
26376
|
+
url: 'https://sepolia-explorer.testnet.debank.com',
|
|
26377
|
+
standard: 'EIP3091'
|
|
26378
|
+
}
|
|
26379
|
+
]
|
|
26380
|
+
},
|
|
25946
26381
|
20482050: {
|
|
25947
26382
|
name: 'Hokum Testnet',
|
|
25948
26383
|
chain: 'HokumTestnet',
|