eth-chainlist 0.0.368 → 0.0.370
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +16 -0
- package/data/chain.js +506 -22
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.370 (2024-04-04)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.369 ([92d1e47](https://github.com/poowf/eth-chainlist/commit/92d1e47e1dcc1fb44b8836a1fd68b5be695fb491))
|
9
|
+
* update chain data ([8c2274e](https://github.com/poowf/eth-chainlist/commit/8c2274ec1b145a8cdd940d2d93c406970b2bcaef))
|
10
|
+
|
11
|
+
### 0.0.369 (2024-04-03)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.368 ([c66e640](https://github.com/poowf/eth-chainlist/commit/c66e6408594405efe6d98f13183ef1f8960d856e))
|
17
|
+
* update chain data ([090c689](https://github.com/poowf/eth-chainlist/commit/090c6897e2b9063265a1227eece2ec5106bf97ef))
|
18
|
+
|
3
19
|
### 0.0.368 (2024-04-02)
|
4
20
|
|
5
21
|
|
package/data/chain.js
CHANGED
@@ -3093,6 +3093,46 @@ const chainArray = [
|
|
3093
3093
|
}
|
3094
3094
|
]
|
3095
3095
|
},
|
3096
|
+
{
|
3097
|
+
name: 'Roburna Mainnet',
|
3098
|
+
chain: 'RBA',
|
3099
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
3100
|
+
rpc: [ 'https://dataseed.roburna.com' ],
|
3101
|
+
faucets: [],
|
3102
|
+
nativeCurrency: { name: 'Roburna', symbol: 'RBA', decimals: 18 },
|
3103
|
+
infoURL: 'https://www.roburna.com/',
|
3104
|
+
shortName: 'rba',
|
3105
|
+
chainId: 158,
|
3106
|
+
networkId: 158,
|
3107
|
+
icon: 'roburna',
|
3108
|
+
explorers: [
|
3109
|
+
{
|
3110
|
+
name: 'Rbascan Explorer',
|
3111
|
+
url: 'https://rbascan.com',
|
3112
|
+
standard: 'EIP3091'
|
3113
|
+
}
|
3114
|
+
]
|
3115
|
+
},
|
3116
|
+
{
|
3117
|
+
name: 'Roburna Testnet',
|
3118
|
+
chain: 'RBAT',
|
3119
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
3120
|
+
rpc: [ 'https://preseed-testnet-1.roburna.com' ],
|
3121
|
+
faucets: [],
|
3122
|
+
nativeCurrency: { name: 'Roburna', symbol: 'RBAT', decimals: 18 },
|
3123
|
+
infoURL: 'https://www.roburna.com/',
|
3124
|
+
shortName: 'rbat',
|
3125
|
+
chainId: 159,
|
3126
|
+
networkId: 159,
|
3127
|
+
icon: 'roburna',
|
3128
|
+
explorers: [
|
3129
|
+
{
|
3130
|
+
name: 'Rbascan Testnet Explorer',
|
3131
|
+
url: 'https://testnet.rbascan.com',
|
3132
|
+
standard: 'EIP3091'
|
3133
|
+
}
|
3134
|
+
]
|
3135
|
+
},
|
3096
3136
|
{
|
3097
3137
|
name: 'Armonia Eva Chain Mainnet',
|
3098
3138
|
chain: 'Eva',
|
@@ -4979,6 +5019,44 @@ const chainArray = [
|
|
4979
5019
|
],
|
4980
5020
|
status: 'active'
|
4981
5021
|
},
|
5022
|
+
{
|
5023
|
+
name: 'Near Mainnet',
|
5024
|
+
chain: 'NEAR',
|
5025
|
+
rpc: [],
|
5026
|
+
icon: 'near',
|
5027
|
+
faucets: [],
|
5028
|
+
nativeCurrency: { name: 'NEAR', symbol: 'NEAR', decimals: 18 },
|
5029
|
+
infoURL: 'https://near.org/',
|
5030
|
+
shortName: 'near',
|
5031
|
+
chainId: 397,
|
5032
|
+
networkId: 397,
|
5033
|
+
explorers: [
|
5034
|
+
{
|
5035
|
+
name: 'Near Blocks',
|
5036
|
+
url: 'https://nearblocks.io',
|
5037
|
+
standard: 'none'
|
5038
|
+
}
|
5039
|
+
]
|
5040
|
+
},
|
5041
|
+
{
|
5042
|
+
name: 'Near Testnet',
|
5043
|
+
chain: 'NEAR',
|
5044
|
+
rpc: [],
|
5045
|
+
icon: 'near',
|
5046
|
+
faucets: [],
|
5047
|
+
nativeCurrency: { name: 'Testnet NEAR', symbol: 'NEAR', decimals: 18 },
|
5048
|
+
infoURL: 'https://aurora.dev',
|
5049
|
+
shortName: 'near-testnet',
|
5050
|
+
chainId: 398,
|
5051
|
+
networkId: 398,
|
5052
|
+
explorers: [
|
5053
|
+
{
|
5054
|
+
name: 'Near blocks',
|
5055
|
+
url: 'https://testnet.nearblocks.io',
|
5056
|
+
standard: 'none'
|
5057
|
+
}
|
5058
|
+
]
|
5059
|
+
},
|
4982
5060
|
{
|
4983
5061
|
name: 'Nativ3 Mainnet',
|
4984
5062
|
chainId: 399,
|
@@ -7459,21 +7537,25 @@ const chainArray = [
|
|
7459
7537
|
name: 'Klaytn Testnet Baobab',
|
7460
7538
|
chain: 'KLAY',
|
7461
7539
|
rpc: [
|
7462
|
-
'https://
|
7463
|
-
'https://
|
7464
|
-
'wss://klaytn-baobab.drpc.org'
|
7540
|
+
'https://public-en-baobab.klaytn.net',
|
7541
|
+
'https://api.baobab.klaytn.net:8651'
|
7465
7542
|
],
|
7466
7543
|
faucets: [ 'https://baobab.wallet.klaytn.com/access?next=faucet' ],
|
7467
7544
|
nativeCurrency: { name: 'KLAY', symbol: 'KLAY', decimals: 18 },
|
7468
|
-
infoURL: 'https://
|
7545
|
+
infoURL: 'https://klaytn.foundation',
|
7469
7546
|
shortName: 'Baobab',
|
7470
7547
|
chainId: 1001,
|
7471
7548
|
networkId: 1001,
|
7472
7549
|
slip44: 1,
|
7473
7550
|
explorers: [
|
7474
7551
|
{
|
7475
|
-
name: '
|
7476
|
-
url: 'https://
|
7552
|
+
name: 'Klaytnscope',
|
7553
|
+
url: 'https://baobab.klaytnscope.com',
|
7554
|
+
standard: 'EIP3091'
|
7555
|
+
},
|
7556
|
+
{
|
7557
|
+
name: 'Klaytnfinder',
|
7558
|
+
url: 'https://baobab.klaytnfinder.io',
|
7477
7559
|
standard: 'EIP3091'
|
7478
7560
|
}
|
7479
7561
|
]
|
@@ -7550,6 +7632,26 @@ const chainArray = [
|
|
7550
7632
|
}
|
7551
7633
|
]
|
7552
7634
|
},
|
7635
|
+
{
|
7636
|
+
name: 'Jumbochain Mainnet',
|
7637
|
+
chain: 'Jumbo',
|
7638
|
+
rpc: [ 'https://rpcpriv.jumbochain.org' ],
|
7639
|
+
faucets: [],
|
7640
|
+
nativeCurrency: { name: 'JNFTC', symbol: 'JNFTC', decimals: 18 },
|
7641
|
+
features: [ { name: 'EIP155' } ],
|
7642
|
+
infoURL: 'https://jumbochain.org',
|
7643
|
+
shortName: 'Jumboscan',
|
7644
|
+
chainId: 1009,
|
7645
|
+
networkId: 1009,
|
7646
|
+
slip44: 1,
|
7647
|
+
explorers: [
|
7648
|
+
{
|
7649
|
+
name: 'Jumboscan',
|
7650
|
+
url: 'https://jumboscan.jumbochain.org',
|
7651
|
+
standard: 'EIP3091'
|
7652
|
+
}
|
7653
|
+
]
|
7654
|
+
},
|
7553
7655
|
{
|
7554
7656
|
name: 'Evrice Network',
|
7555
7657
|
chain: 'EVC',
|
@@ -11329,6 +11431,30 @@ const chainArray = [
|
|
11329
11431
|
}
|
11330
11432
|
]
|
11331
11433
|
},
|
11434
|
+
{
|
11435
|
+
name: 'RSS3 VSL Sepolia Testnet',
|
11436
|
+
chain: 'RSS3',
|
11437
|
+
rpc: [ 'https://rpc.testnet.rss3.io' ],
|
11438
|
+
faucets: [],
|
11439
|
+
nativeCurrency: { name: 'RSS3', symbol: 'RSS3', decimals: 18 },
|
11440
|
+
infoURL: 'https://rss3.io',
|
11441
|
+
shortName: 'rss3-testnet',
|
11442
|
+
chainId: 2331,
|
11443
|
+
networkId: 2331,
|
11444
|
+
icon: 'rss3-testnet',
|
11445
|
+
explorers: [
|
11446
|
+
{
|
11447
|
+
name: 'RSS3 VSL Sepolia Testnet Scan',
|
11448
|
+
url: 'https://scan.testnet.rss3.io',
|
11449
|
+
standard: 'EIP3091'
|
11450
|
+
}
|
11451
|
+
],
|
11452
|
+
parent: {
|
11453
|
+
type: 'L2',
|
11454
|
+
chain: 'eip155-11155111',
|
11455
|
+
bridges: [ { url: 'https://explorer.testnet.rss3.io/bridge' } ]
|
11456
|
+
}
|
11457
|
+
},
|
11332
11458
|
{
|
11333
11459
|
name: 'SOMA Network Mainnet',
|
11334
11460
|
chain: 'SOMA',
|
@@ -11607,19 +11733,20 @@ const chainArray = [
|
|
11607
11733
|
]
|
11608
11734
|
},
|
11609
11735
|
{
|
11610
|
-
name: 'Karak
|
11736
|
+
name: 'Karak Goerli',
|
11611
11737
|
chain: 'Karak',
|
11612
11738
|
icon: 'karak',
|
11739
|
+
status: 'deprecated',
|
11613
11740
|
rpc: [ 'https://goerli.node1.karak.network' ],
|
11614
11741
|
faucets: [],
|
11615
11742
|
nativeCurrency: { name: 'Karak', symbol: 'KRK', decimals: 18 },
|
11616
11743
|
infoURL: 'https://karak.network',
|
11617
|
-
shortName: 'karak-
|
11744
|
+
shortName: 'karak-goerli',
|
11618
11745
|
chainId: 2511,
|
11619
11746
|
networkId: 2511,
|
11620
11747
|
explorers: [
|
11621
11748
|
{
|
11622
|
-
name: 'Karak
|
11749
|
+
name: 'Karak Goerli Explorer',
|
11623
11750
|
url: 'https://goerli.scan.karak.network',
|
11624
11751
|
standard: 'EIP3091'
|
11625
11752
|
}
|
@@ -13663,6 +13790,25 @@ const chainArray = [
|
|
13663
13790
|
}
|
13664
13791
|
]
|
13665
13792
|
},
|
13793
|
+
{
|
13794
|
+
name: 'ONIGIRI Test Subnet',
|
13795
|
+
chain: 'ONIGIRI',
|
13796
|
+
rpc: [ 'https://subnets.avax.network/onigiri/testnet/rpc' ],
|
13797
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
13798
|
+
faucets: [],
|
13799
|
+
nativeCurrency: { name: 'ONIGIRI', symbol: 'ONGR', decimals: 18 },
|
13800
|
+
infoURL: 'https://www.ongr.org/',
|
13801
|
+
shortName: 'onigiri',
|
13802
|
+
chainId: 5039,
|
13803
|
+
networkId: 5039,
|
13804
|
+
explorers: [
|
13805
|
+
{
|
13806
|
+
name: 'ONIGIRI Explorer',
|
13807
|
+
url: 'https://subnets-test.avax.network/onigiri',
|
13808
|
+
standard: 'EIP3091'
|
13809
|
+
}
|
13810
|
+
]
|
13811
|
+
},
|
13666
13812
|
{
|
13667
13813
|
name: 'Syndicate Testnet',
|
13668
13814
|
title: 'Syndicate Testnet',
|
@@ -15305,6 +15451,26 @@ const chainArray = [
|
|
15305
15451
|
networkId: 8029,
|
15306
15452
|
slip44: 1
|
15307
15453
|
},
|
15454
|
+
{
|
15455
|
+
name: 'Karak Sepolia',
|
15456
|
+
chain: 'Karak',
|
15457
|
+
icon: 'karak',
|
15458
|
+
rpc: [ 'https://rpc.sepolia.karak.network' ],
|
15459
|
+
faucets: [],
|
15460
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
15461
|
+
infoURL: 'https://karak.network',
|
15462
|
+
shortName: 'karak-sepolia',
|
15463
|
+
chainId: 8054,
|
15464
|
+
networkId: 8054,
|
15465
|
+
explorers: [
|
15466
|
+
{
|
15467
|
+
name: 'Karak Sepolia Explorer',
|
15468
|
+
url: 'https://explorer.sepolia.karak.network',
|
15469
|
+
standard: 'EIP3091'
|
15470
|
+
}
|
15471
|
+
],
|
15472
|
+
parent: { type: 'L2', chain: 'eip155-11155111' }
|
15473
|
+
},
|
15308
15474
|
{
|
15309
15475
|
name: 'Shardeum Liberty 1.X',
|
15310
15476
|
chain: 'Shardeum',
|
@@ -15557,10 +15723,10 @@ const chainArray = [
|
|
15557
15723
|
{
|
15558
15724
|
name: 'Klaytn Mainnet Cypress',
|
15559
15725
|
chain: 'KLAY',
|
15560
|
-
rpc: [ 'https://public-
|
15726
|
+
rpc: [ 'https://public-en-cypress.klaytn.net' ],
|
15561
15727
|
faucets: [],
|
15562
15728
|
nativeCurrency: { name: 'KLAY', symbol: 'KLAY', decimals: 18 },
|
15563
|
-
infoURL: 'https://
|
15729
|
+
infoURL: 'https://klaytn.foundation',
|
15564
15730
|
shortName: 'Cypress',
|
15565
15731
|
chainId: 8217,
|
15566
15732
|
networkId: 8217,
|
@@ -15569,7 +15735,12 @@ const chainArray = [
|
|
15569
15735
|
{
|
15570
15736
|
name: 'Klaytnscope',
|
15571
15737
|
url: 'https://scope.klaytn.com',
|
15572
|
-
standard: '
|
15738
|
+
standard: 'EIP3091'
|
15739
|
+
},
|
15740
|
+
{
|
15741
|
+
name: 'Klaytnfinder',
|
15742
|
+
url: 'https://klaytnfinder.io',
|
15743
|
+
standard: 'EIP3091'
|
15573
15744
|
}
|
15574
15745
|
]
|
15575
15746
|
},
|
@@ -16147,6 +16318,54 @@ const chainArray = [
|
|
16147
16318
|
}
|
16148
16319
|
]
|
16149
16320
|
},
|
16321
|
+
{
|
16322
|
+
name: 'Shido Testnet Block',
|
16323
|
+
chain: 'Shido Testnet',
|
16324
|
+
rpc: [
|
16325
|
+
'https://rpc-testnet-nodes.shidoscan.com',
|
16326
|
+
'wss://wss-testnet-nodes.shidoscan.com'
|
16327
|
+
],
|
16328
|
+
faucets: [ 'https://testnet.shidoscan.com/faucet' ],
|
16329
|
+
nativeCurrency: { name: 'Shido Testnet Token', symbol: 'SHIDO', decimals: 18 },
|
16330
|
+
infoURL: 'https://www.nexablock.io',
|
16331
|
+
shortName: 'ShidoTestnet',
|
16332
|
+
chainId: 9007,
|
16333
|
+
networkId: 9007,
|
16334
|
+
icon: 'shidoChain',
|
16335
|
+
explorers: [
|
16336
|
+
{
|
16337
|
+
name: 'Shidoblock Testnet Explorer',
|
16338
|
+
url: 'https://testnet.shidoscan.com',
|
16339
|
+
standard: 'none',
|
16340
|
+
icon: 'shidoChain'
|
16341
|
+
}
|
16342
|
+
]
|
16343
|
+
},
|
16344
|
+
{
|
16345
|
+
name: 'Shido Mainnet Block',
|
16346
|
+
chain: 'Shido Mainnet',
|
16347
|
+
rpc: [
|
16348
|
+
'https://rpc-nodes.shidoscan.com',
|
16349
|
+
'wss://wss-nodes.shidoscan.com',
|
16350
|
+
'https://rpc-delta-nodes.shidoscan.com',
|
16351
|
+
'wss://wss-delta-nodes.shidoscan.com'
|
16352
|
+
],
|
16353
|
+
faucets: [],
|
16354
|
+
nativeCurrency: { name: 'Shido Mainnet Token', symbol: 'SHIDO', decimals: 18 },
|
16355
|
+
infoURL: 'https://shido.io',
|
16356
|
+
shortName: 'Shido',
|
16357
|
+
chainId: 9008,
|
16358
|
+
networkId: 9008,
|
16359
|
+
icon: 'shidoChain',
|
16360
|
+
explorers: [
|
16361
|
+
{
|
16362
|
+
name: 'Shidoblock Mainnet Explorer',
|
16363
|
+
url: 'https://shidoscan.com',
|
16364
|
+
standard: 'none',
|
16365
|
+
icon: 'shidoChain'
|
16366
|
+
}
|
16367
|
+
]
|
16368
|
+
},
|
16150
16369
|
{
|
16151
16370
|
name: 'BerylBit Mainnet',
|
16152
16371
|
chain: 'BRB',
|
@@ -17176,6 +17395,26 @@ const chainArray = [
|
|
17176
17395
|
}
|
17177
17396
|
]
|
17178
17397
|
},
|
17398
|
+
{
|
17399
|
+
name: 'Shine Chain',
|
17400
|
+
chain: 'SC20',
|
17401
|
+
rpc: [ 'https://rpc.shinescan.io' ],
|
17402
|
+
faucets: [],
|
17403
|
+
nativeCurrency: { name: 'Shine', symbol: 'SC20', decimals: 18 },
|
17404
|
+
infoURL: 'https://shinechain.tech',
|
17405
|
+
shortName: 'SC20',
|
17406
|
+
chainId: 11221,
|
17407
|
+
networkId: 11221,
|
17408
|
+
icon: 'shine',
|
17409
|
+
explorers: [
|
17410
|
+
{
|
17411
|
+
name: 'shinescan',
|
17412
|
+
url: 'https://shinescan.io',
|
17413
|
+
icon: 'shine',
|
17414
|
+
standard: 'none'
|
17415
|
+
}
|
17416
|
+
]
|
17417
|
+
},
|
17179
17418
|
{
|
17180
17419
|
name: 'Haqq Network',
|
17181
17420
|
chain: 'Haqq',
|
@@ -17494,6 +17733,30 @@ const chainArray = [
|
|
17494
17733
|
],
|
17495
17734
|
parent: { type: 'L2', chain: 'eip155-43113' }
|
17496
17735
|
},
|
17736
|
+
{
|
17737
|
+
name: 'RSS3 VSL Mainnet',
|
17738
|
+
chain: 'RSS3',
|
17739
|
+
rpc: [ 'https://rpc.rss3.io' ],
|
17740
|
+
faucets: [],
|
17741
|
+
nativeCurrency: { name: 'RSS3', symbol: 'RSS3', decimals: 18 },
|
17742
|
+
infoURL: 'https://rss3.io',
|
17743
|
+
shortName: 'rss3',
|
17744
|
+
chainId: 12553,
|
17745
|
+
networkId: 12553,
|
17746
|
+
icon: 'rss3',
|
17747
|
+
explorers: [
|
17748
|
+
{
|
17749
|
+
name: 'RSS3 VSL Scan',
|
17750
|
+
url: 'https://scan.rss3.io',
|
17751
|
+
standard: 'EIP3091'
|
17752
|
+
}
|
17753
|
+
],
|
17754
|
+
parent: {
|
17755
|
+
type: 'L2',
|
17756
|
+
chain: 'eip155-1',
|
17757
|
+
bridges: [ { url: 'https://explorer.rss3.io/bridge' } ]
|
17758
|
+
}
|
17759
|
+
},
|
17497
17760
|
{
|
17498
17761
|
name: 'Rikeza Network Testnet',
|
17499
17762
|
title: 'Rikeza Network Testnet',
|
@@ -17730,6 +17993,25 @@ const chainArray = [
|
|
17730
17993
|
}
|
17731
17994
|
]
|
17732
17995
|
},
|
17996
|
+
{
|
17997
|
+
name: 'EVOLVE Testnet',
|
17998
|
+
chain: 'EVO',
|
17999
|
+
icon: 'evolveIcon',
|
18000
|
+
rpc: [ 'https://testnet-rpc.evolveblockchain.io' ],
|
18001
|
+
faucets: [ 'https://faucet.evolveblockchain.io' ],
|
18002
|
+
nativeCurrency: { name: 'Evolve', symbol: 'EVO', decimals: 18 },
|
18003
|
+
infoURL: 'https://evolveblockchain.io',
|
18004
|
+
shortName: 'evo',
|
18005
|
+
chainId: 14324,
|
18006
|
+
networkId: 14324,
|
18007
|
+
explorers: [
|
18008
|
+
{
|
18009
|
+
name: 'Evolve Testnet Explorer',
|
18010
|
+
url: 'https://testnet.evolveblockchain.io',
|
18011
|
+
standard: 'EIP3091'
|
18012
|
+
}
|
18013
|
+
]
|
18014
|
+
},
|
17733
18015
|
{
|
17734
18016
|
name: 'Vitruveo Testnet',
|
17735
18017
|
title: 'Vitruveo is a blockchain for Creators',
|
@@ -18265,20 +18547,20 @@ const chainArray = [
|
|
18265
18547
|
}
|
18266
18548
|
},
|
18267
18549
|
{
|
18268
|
-
name: 'MXC zkEVM
|
18550
|
+
name: 'MXC zkEVM Moonchain',
|
18269
18551
|
chain: 'MXC zkEVM',
|
18270
18552
|
icon: 'mxczkevm',
|
18271
18553
|
rpc: [ 'https://rpc.mxc.com' ],
|
18272
18554
|
faucets: [],
|
18273
|
-
nativeCurrency: { name: 'MXC zkEVM
|
18555
|
+
nativeCurrency: { name: 'MXC zkEVM Moonchain', symbol: 'MXC', decimals: 18 },
|
18274
18556
|
infoURL: 'https://doc.mxc.com/docs/intro',
|
18275
18557
|
shortName: 'MXCzkEVM',
|
18276
18558
|
chainId: 18686,
|
18277
18559
|
networkId: 18686,
|
18278
18560
|
explorers: [
|
18279
18561
|
{
|
18280
|
-
name: 'MXC zkEVM
|
18281
|
-
url: 'https://explorer.
|
18562
|
+
name: 'MXC zkEVM Moonchain',
|
18563
|
+
url: 'https://explorer.moonchain.com',
|
18282
18564
|
standard: 'EIP3091'
|
18283
18565
|
}
|
18284
18566
|
]
|
@@ -20760,6 +21042,32 @@ const chainArray = [
|
|
20760
21042
|
}
|
20761
21043
|
]
|
20762
21044
|
},
|
21045
|
+
{
|
21046
|
+
name: 'OPTOPIA Testnet',
|
21047
|
+
chain: 'ETH',
|
21048
|
+
rpc: [ 'https://rpc-testnet.optopia.ai' ],
|
21049
|
+
faucets: [],
|
21050
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
21051
|
+
features: [ { name: 'EIP1559' } ],
|
21052
|
+
infoURL: 'https://optopia.ai',
|
21053
|
+
shortName: 'OPTOPIA-Testnet',
|
21054
|
+
chainId: 62049,
|
21055
|
+
networkId: 62049,
|
21056
|
+
icon: 'optopia',
|
21057
|
+
explorers: [
|
21058
|
+
{
|
21059
|
+
name: 'optopia-testnet-scan',
|
21060
|
+
url: 'https://scan-testnet.optopia.ai',
|
21061
|
+
icon: 'optopia',
|
21062
|
+
standard: 'EIP3091'
|
21063
|
+
}
|
21064
|
+
],
|
21065
|
+
parent: {
|
21066
|
+
type: 'L2',
|
21067
|
+
chain: 'eip155-11155111',
|
21068
|
+
bridges: [ { url: 'https://bridge-testnet.optopia.ai' } ]
|
21069
|
+
}
|
21070
|
+
},
|
20763
21071
|
{
|
20764
21072
|
name: 'Celo Baklava Testnet',
|
20765
21073
|
chainId: 62320,
|
@@ -21222,6 +21530,25 @@ const chainArray = [
|
|
21222
21530
|
}
|
21223
21531
|
]
|
21224
21532
|
},
|
21533
|
+
{
|
21534
|
+
name: 'BORAchain mainnet',
|
21535
|
+
chain: 'BORA',
|
21536
|
+
icon: 'bora',
|
21537
|
+
rpc: [ 'https://public-node.api.boraportal.io/bora/mainnet' ],
|
21538
|
+
faucets: [],
|
21539
|
+
nativeCurrency: { name: 'BGAS', symbol: 'BGAS', decimals: 18 },
|
21540
|
+
infoURL: 'https://www.boraportal.com',
|
21541
|
+
shortName: 'BORAchain',
|
21542
|
+
chainId: 77001,
|
21543
|
+
networkId: 77001,
|
21544
|
+
explorers: [
|
21545
|
+
{
|
21546
|
+
name: 'BORAchainscope',
|
21547
|
+
url: 'https://scope.boraportal.com',
|
21548
|
+
standard: 'EIP3091'
|
21549
|
+
}
|
21550
|
+
]
|
21551
|
+
},
|
21225
21552
|
{
|
21226
21553
|
name: 'Foundry Chain Testnet',
|
21227
21554
|
chain: 'tFNC',
|
@@ -21723,6 +22050,24 @@ const chainArray = [
|
|
21723
22050
|
}
|
21724
22051
|
]
|
21725
22052
|
},
|
22053
|
+
{
|
22054
|
+
name: 'ZEDXION',
|
22055
|
+
chain: 'ZEDXION',
|
22056
|
+
rpc: [ 'https://mainnet-rpc.zedscan.net' ],
|
22057
|
+
faucets: [],
|
22058
|
+
nativeCurrency: { name: 'Zedxion', symbol: 'zedx', decimals: 9 },
|
22059
|
+
infoURL: 'https://docs.zedscan.net',
|
22060
|
+
shortName: 'ZEDX',
|
22061
|
+
chainId: 83872,
|
22062
|
+
networkId: 83872,
|
22063
|
+
explorers: [
|
22064
|
+
{
|
22065
|
+
name: 'Zedscan',
|
22066
|
+
url: 'http://zedscan.net',
|
22067
|
+
standard: 'EIP3091'
|
22068
|
+
}
|
22069
|
+
]
|
22070
|
+
},
|
21726
22071
|
{
|
21727
22072
|
name: 'Base Goerli Testnet',
|
21728
22073
|
chain: 'ETH',
|
@@ -21838,6 +22183,25 @@ const chainArray = [
|
|
21838
22183
|
}
|
21839
22184
|
]
|
21840
22185
|
},
|
22186
|
+
{
|
22187
|
+
name: 'Unit Zero Testnet',
|
22188
|
+
chain: 'Unit Zero',
|
22189
|
+
rpc: [ 'https://rpc-testnet.unit0.dev' ],
|
22190
|
+
faucets: [],
|
22191
|
+
nativeCurrency: { name: 'UNIT0', symbol: 'UNIT0', decimals: 18 },
|
22192
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
22193
|
+
infoURL: 'https://units.network',
|
22194
|
+
shortName: 'unit0-testnet',
|
22195
|
+
chainId: 88817,
|
22196
|
+
networkId: 88817,
|
22197
|
+
explorers: [
|
22198
|
+
{
|
22199
|
+
name: 'explorer-testnet',
|
22200
|
+
url: 'https://explorer-testnet.unit0.dev',
|
22201
|
+
standard: 'EIP3091'
|
22202
|
+
}
|
22203
|
+
]
|
22204
|
+
},
|
21841
22205
|
{
|
21842
22206
|
name: 'Unit Zero Stagenet',
|
21843
22207
|
chain: 'Unit Zero',
|
@@ -22749,8 +23113,7 @@ const chainArray = [
|
|
22749
23113
|
{ url: 'https://re.al/bridge' },
|
22750
23114
|
{ url: 'https://bridge.gelato.network/bridge/real' }
|
22751
23115
|
]
|
22752
|
-
}
|
22753
|
-
status: 'incubating'
|
23116
|
+
}
|
22754
23117
|
},
|
22755
23118
|
{
|
22756
23119
|
name: 'Metachain One Mainnet',
|
@@ -25463,7 +25826,7 @@ const chainArray = [
|
|
25463
25826
|
faucets: [],
|
25464
25827
|
nativeCurrency: { name: 'MXC Wannsee zkEVM Testnet', symbol: 'MXC', decimals: 18 },
|
25465
25828
|
infoURL: 'https://wannsee.mxc.com/docs/intro',
|
25466
|
-
shortName: '
|
25829
|
+
shortName: 'MXCdiscontinued',
|
25467
25830
|
chainId: 5167003,
|
25468
25831
|
networkId: 5167003,
|
25469
25832
|
slip44: 1,
|
@@ -25475,6 +25838,26 @@ const chainArray = [
|
|
25475
25838
|
}
|
25476
25839
|
]
|
25477
25840
|
},
|
25841
|
+
{
|
25842
|
+
name: 'Moonchain Geneva Testnet',
|
25843
|
+
chain: 'MXC zkEVM',
|
25844
|
+
icon: 'mxc',
|
25845
|
+
rpc: [ 'https://geneva-rpc.moonchain.com' ],
|
25846
|
+
faucets: [],
|
25847
|
+
nativeCurrency: { name: 'Moonchain Geneva Testnet', symbol: 'MXC', decimals: 18 },
|
25848
|
+
infoURL: 'https://doc.mxc.com/docs/intro',
|
25849
|
+
shortName: 'MXC',
|
25850
|
+
chainId: 5167004,
|
25851
|
+
networkId: 5167004,
|
25852
|
+
slip44: 1,
|
25853
|
+
explorers: [
|
25854
|
+
{
|
25855
|
+
name: 'Moonchain Geneva Testnet',
|
25856
|
+
url: 'https://geneva-explorer.moonchain.com',
|
25857
|
+
standard: 'EIP3091'
|
25858
|
+
}
|
25859
|
+
]
|
25860
|
+
},
|
25478
25861
|
{
|
25479
25862
|
name: 'Electroneum Testnet',
|
25480
25863
|
chain: 'Electroneum',
|
@@ -26495,6 +26878,40 @@ const chainArray = [
|
|
26495
26878
|
}
|
26496
26879
|
]
|
26497
26880
|
},
|
26881
|
+
{
|
26882
|
+
name: 'Polygon Blackberry',
|
26883
|
+
title: 'Polygon Blackberry Testnet',
|
26884
|
+
chain: 'ETH',
|
26885
|
+
rpc: [
|
26886
|
+
'https://rpc.polygon-blackberry.gelato.digital',
|
26887
|
+
'wss://ws.polygon-blackberry.gelato.digital'
|
26888
|
+
],
|
26889
|
+
faucets: [],
|
26890
|
+
nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 },
|
26891
|
+
infoURL: 'https://raas.gelato.network/rollups/details/public/polygon-blackberry',
|
26892
|
+
shortName: 'polygon-blackberry',
|
26893
|
+
chainId: 94204209,
|
26894
|
+
networkId: 94204209,
|
26895
|
+
slip44: 60,
|
26896
|
+
explorers: [
|
26897
|
+
{
|
26898
|
+
name: 'blockscout',
|
26899
|
+
url: 'https://polygon-blackberry.gelatoscout.com',
|
26900
|
+
icon: 'blockscout',
|
26901
|
+
standard: 'EIP3091'
|
26902
|
+
}
|
26903
|
+
],
|
26904
|
+
parent: {
|
26905
|
+
type: 'L2',
|
26906
|
+
chain: 'eip155-11155111',
|
26907
|
+
bridges: [
|
26908
|
+
{
|
26909
|
+
url: 'https://bridge.gelato.network/bridge/polygon-blackberry'
|
26910
|
+
}
|
26911
|
+
]
|
26912
|
+
},
|
26913
|
+
status: 'active'
|
26914
|
+
},
|
26498
26915
|
{
|
26499
26916
|
name: 'Joys Digital TestNet',
|
26500
26917
|
chain: 'TOYS',
|
@@ -26507,11 +26924,48 @@ const chainArray = [
|
|
26507
26924
|
networkId: 99415706,
|
26508
26925
|
slip44: 1
|
26509
26926
|
},
|
26927
|
+
{
|
26928
|
+
name: 'OP Celestia Raspberry',
|
26929
|
+
title: 'OP Celestia Raspberry Testnet',
|
26930
|
+
chain: 'ETH',
|
26931
|
+
rpc: [
|
26932
|
+
'https://rpc.opcelestia-raspberry.gelato.digital',
|
26933
|
+
'wss://ws.opcelestia-raspberry.gelato.digital'
|
26934
|
+
],
|
26935
|
+
faucets: [],
|
26936
|
+
nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 },
|
26937
|
+
infoURL: 'https://raas.gelato.network/rollups/details/public/opcelestia-raspberry',
|
26938
|
+
shortName: 'opcelestia-raspberry',
|
26939
|
+
chainId: 123420111,
|
26940
|
+
networkId: 123420111,
|
26941
|
+
slip44: 60,
|
26942
|
+
explorers: [
|
26943
|
+
{
|
26944
|
+
name: 'blockscout',
|
26945
|
+
url: 'https://opcelestia-raspberry.gelatoscout.com',
|
26946
|
+
icon: 'blockscout',
|
26947
|
+
standard: 'EIP3091'
|
26948
|
+
}
|
26949
|
+
],
|
26950
|
+
parent: {
|
26951
|
+
type: 'L2',
|
26952
|
+
chain: 'eip155-11155111',
|
26953
|
+
bridges: [
|
26954
|
+
{
|
26955
|
+
url: 'https://bridge.gelato.network/bridge/opcelestia-raspberry'
|
26956
|
+
}
|
26957
|
+
]
|
26958
|
+
},
|
26959
|
+
status: 'active'
|
26960
|
+
},
|
26510
26961
|
{
|
26511
26962
|
name: 'Plume Testnet',
|
26512
26963
|
title: 'Plume Sepolia Rollup Testnet',
|
26513
26964
|
chain: 'ETH',
|
26514
|
-
rpc: [
|
26965
|
+
rpc: [
|
26966
|
+
'https://testnet-rpc.plumenetwork.xyz/http',
|
26967
|
+
'wss://testnet-rpc.plumenetwork.xyz/ws'
|
26968
|
+
],
|
26515
26969
|
faucets: [],
|
26516
26970
|
nativeCurrency: { name: 'Plume Sepolia Ether', symbol: 'ETH', decimals: 18 },
|
26517
26971
|
infoURL: 'https://www.plumenetwork.xyz/',
|
@@ -26523,7 +26977,7 @@ const chainArray = [
|
|
26523
26977
|
explorers: [
|
26524
26978
|
{
|
26525
26979
|
name: 'Blockscout',
|
26526
|
-
url: 'https://
|
26980
|
+
url: 'https://testnet-explorer.plumenetwork.xyz',
|
26527
26981
|
icon: 'blockscout',
|
26528
26982
|
standard: 'EIP3091'
|
26529
26983
|
}
|
@@ -26531,7 +26985,7 @@ const chainArray = [
|
|
26531
26985
|
parent: {
|
26532
26986
|
type: 'L2',
|
26533
26987
|
chain: 'eip155-11155111',
|
26534
|
-
bridges: [ { url: 'https://
|
26988
|
+
bridges: [ { url: 'https://testnet-bridge.plumenetwork.xyz' } ]
|
26535
26989
|
}
|
26536
26990
|
},
|
26537
26991
|
{
|
@@ -27562,6 +28016,36 @@ const chainArray = [
|
|
27562
28016
|
explorers: [],
|
27563
28017
|
status: 'incubating'
|
27564
28018
|
},
|
28019
|
+
{
|
28020
|
+
name: 'Arbitrum Blueberry',
|
28021
|
+
title: 'Arbitrum Blueberry Testnet',
|
28022
|
+
chain: 'ETH',
|
28023
|
+
rpc: [
|
28024
|
+
'https://rpc.arb-blueberry.gelato.digital',
|
28025
|
+
'wss://ws.arb-blueberry.gelato.digital'
|
28026
|
+
],
|
28027
|
+
faucets: [],
|
28028
|
+
nativeCurrency: { name: 'GelatoCGT', symbol: 'CGT', decimals: 18 },
|
28029
|
+
infoURL: 'https://raas.gelato.network/rollups/details/public/arb-blueberry',
|
28030
|
+
shortName: 'arb-blueberry',
|
28031
|
+
chainId: 88153591557,
|
28032
|
+
networkId: 88153591557,
|
28033
|
+
slip44: 60,
|
28034
|
+
explorers: [
|
28035
|
+
{
|
28036
|
+
name: 'blockscout',
|
28037
|
+
url: 'https://arb-blueberry.gelatoscout.com',
|
28038
|
+
icon: 'blockscout',
|
28039
|
+
standard: 'EIP3091'
|
28040
|
+
}
|
28041
|
+
],
|
28042
|
+
parent: {
|
28043
|
+
type: 'L2',
|
28044
|
+
chain: 'eip155-421614',
|
28045
|
+
bridges: [ { url: 'https://bridge.gelato.network/bridge/arb-blueberry' } ]
|
28046
|
+
},
|
28047
|
+
status: 'active'
|
28048
|
+
},
|
27565
28049
|
{
|
27566
28050
|
name: 'Kakarot Sepolia',
|
27567
28051
|
chain: 'ETH',
|