eth-chainlist 0.0.533 → 0.0.535
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 +187 -13
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
### 0.0.535 (2024-11-08)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Maintenance
|
|
7
|
+
|
|
8
|
+
* **release:** 0.0.534 ([1b21619](https://github.com/poowf/eth-chainlist/commit/1b216198102af2b023dca13df6a6c3bf4d98bf40))
|
|
9
|
+
* update chain data ([2c2bbed](https://github.com/poowf/eth-chainlist/commit/2c2bbed3befc050beec053f1b957c7fb4b314827))
|
|
10
|
+
|
|
11
|
+
### 0.0.534 (2024-11-07)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Maintenance
|
|
15
|
+
|
|
16
|
+
* **release:** 0.0.533 ([2177709](https://github.com/poowf/eth-chainlist/commit/21777094ef356e31229009ac2f9b2875567e0a82))
|
|
17
|
+
* update chain data ([098b11c](https://github.com/poowf/eth-chainlist/commit/098b11c6d801f5db308e8f0bbc42dc82ca9b304b))
|
|
18
|
+
|
|
3
19
|
### 0.0.533 (2024-11-06)
|
|
4
20
|
|
|
5
21
|
|
package/data/chain.js
CHANGED
|
@@ -2921,16 +2921,17 @@ const chainArray = [
|
|
|
2921
2921
|
},
|
|
2922
2922
|
{
|
|
2923
2923
|
name: 'Eternal Mainnet',
|
|
2924
|
-
chain: '
|
|
2924
|
+
chain: 'ETE',
|
|
2925
2925
|
icon: 'eternal',
|
|
2926
2926
|
rpc: [
|
|
2927
2927
|
'https://mainnet.eternalcoin.io/v1',
|
|
2928
2928
|
'ws://mainnet.eternalcoin.io/v1/ws'
|
|
2929
2929
|
],
|
|
2930
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
|
2930
2931
|
faucets: [],
|
|
2931
|
-
nativeCurrency: { name: 'Eternal', symbol: '
|
|
2932
|
+
nativeCurrency: { name: 'Eternal', symbol: 'ETE', decimals: 18 },
|
|
2932
2933
|
infoURL: 'https://eternalcoin.io',
|
|
2933
|
-
shortName: '
|
|
2934
|
+
shortName: 'ETE',
|
|
2934
2935
|
chainId: 140,
|
|
2935
2936
|
networkId: 140
|
|
2936
2937
|
},
|
|
@@ -5115,7 +5116,7 @@ const chainArray = [
|
|
|
5115
5116
|
],
|
|
5116
5117
|
parent: {
|
|
5117
5118
|
type: 'L2',
|
|
5118
|
-
chain: 'eip155-
|
|
5119
|
+
chain: 'eip155-11155111',
|
|
5119
5120
|
bridges: [ { url: 'https://bridge.zksync.io/' } ]
|
|
5120
5121
|
},
|
|
5121
5122
|
redFlags: [ 'reusedChainId' ]
|
|
@@ -10581,6 +10582,7 @@ const chainArray = [
|
|
|
10581
10582
|
{
|
|
10582
10583
|
name: 'Moonbeam',
|
|
10583
10584
|
chain: 'MOON',
|
|
10585
|
+
icon: 'moonbeam',
|
|
10584
10586
|
rpc: [
|
|
10585
10587
|
'https://rpc.api.moonbeam.network',
|
|
10586
10588
|
'wss://wss.api.moonbeam.network',
|
|
@@ -10614,6 +10616,7 @@ const chainArray = [
|
|
|
10614
10616
|
{
|
|
10615
10617
|
name: 'Moonriver',
|
|
10616
10618
|
chain: 'MOON',
|
|
10619
|
+
icon: 'moonriver',
|
|
10617
10620
|
rpc: [
|
|
10618
10621
|
'https://rpc.api.moonriver.moonbeam.network',
|
|
10619
10622
|
'wss://wss.api.moonriver.moonbeam.network',
|
|
@@ -10659,6 +10662,7 @@ const chainArray = [
|
|
|
10659
10662
|
{
|
|
10660
10663
|
name: 'Moonbase Alpha',
|
|
10661
10664
|
chain: 'MOON',
|
|
10665
|
+
icon: 'moonbasealpha',
|
|
10662
10666
|
rpc: [
|
|
10663
10667
|
'https://rpc.api.moonbase.moonbeam.network',
|
|
10664
10668
|
'wss://wss.api.moonbase.moonbeam.network',
|
|
@@ -10673,7 +10677,7 @@ const chainArray = [
|
|
|
10673
10677
|
'https://moonbase-alpha.drpc.org',
|
|
10674
10678
|
'wss://moonbase-alpha.drpc.org'
|
|
10675
10679
|
],
|
|
10676
|
-
faucets: [],
|
|
10680
|
+
faucets: [ 'https://faucet.moonbeam.network/' ],
|
|
10677
10681
|
nativeCurrency: { name: 'Dev', symbol: 'DEV', decimals: 18 },
|
|
10678
10682
|
infoURL: 'https://docs.moonbeam.network/learn/platform/networks/moonbase/',
|
|
10679
10683
|
shortName: 'mbase',
|
|
@@ -12573,6 +12577,25 @@ const chainArray = [
|
|
|
12573
12577
|
}
|
|
12574
12578
|
]
|
|
12575
12579
|
},
|
|
12580
|
+
{
|
|
12581
|
+
name: 'Swell Network Testnet',
|
|
12582
|
+
chain: 'Swell L2 Testnet',
|
|
12583
|
+
rpc: [ 'https://swell-testnet.alt.technology' ],
|
|
12584
|
+
faucets: [],
|
|
12585
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
12586
|
+
infoURL: 'https://app.swellnetwork.io/layer2/swell-l2',
|
|
12587
|
+
shortName: 'swell-l2-testnet',
|
|
12588
|
+
chainId: 1924,
|
|
12589
|
+
networkId: 1924,
|
|
12590
|
+
explorers: [
|
|
12591
|
+
{
|
|
12592
|
+
name: 'swell-l2-testnet',
|
|
12593
|
+
icon: 'swell',
|
|
12594
|
+
url: 'https://swell-testnet-explorer.alt.technology',
|
|
12595
|
+
standard: 'none'
|
|
12596
|
+
}
|
|
12597
|
+
]
|
|
12598
|
+
},
|
|
12576
12599
|
{
|
|
12577
12600
|
name: 'Arvix Testnet',
|
|
12578
12601
|
chain: 'Arvix',
|
|
@@ -14926,6 +14949,27 @@ const chainArray = [
|
|
|
14926
14949
|
explorers: [],
|
|
14927
14950
|
status: 'active'
|
|
14928
14951
|
},
|
|
14952
|
+
{
|
|
14953
|
+
name: 'Bahamut horizon',
|
|
14954
|
+
title: 'Bahamut horizon',
|
|
14955
|
+
chain: 'Bahamut',
|
|
14956
|
+
icon: 'bahamut',
|
|
14957
|
+
rpc: [ 'https://horizon-fastex-testnet.zeeve.net' ],
|
|
14958
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
|
14959
|
+
faucets: [],
|
|
14960
|
+
nativeCurrency: { name: 'FTN', symbol: 'FTN', decimals: 18 },
|
|
14961
|
+
shortName: 'horizon',
|
|
14962
|
+
infoURL: 'https://bahamut.io',
|
|
14963
|
+
chainId: 2552,
|
|
14964
|
+
networkId: 2552,
|
|
14965
|
+
explorers: [
|
|
14966
|
+
{
|
|
14967
|
+
name: 'blockscout',
|
|
14968
|
+
url: 'https://horizon.ftnscan.com',
|
|
14969
|
+
standard: 'none'
|
|
14970
|
+
}
|
|
14971
|
+
]
|
|
14972
|
+
},
|
|
14929
14973
|
{
|
|
14930
14974
|
name: 'Kortho Mainnet',
|
|
14931
14975
|
chain: 'Kortho Chain',
|
|
@@ -15216,6 +15260,20 @@ const chainArray = [
|
|
|
15216
15260
|
}
|
|
15217
15261
|
]
|
|
15218
15262
|
},
|
|
15263
|
+
{
|
|
15264
|
+
name: 'Abstract',
|
|
15265
|
+
chain: 'Abstract',
|
|
15266
|
+
rpc: [],
|
|
15267
|
+
faucets: [],
|
|
15268
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
15269
|
+
infoURL: 'https://abs.xyz',
|
|
15270
|
+
shortName: 'abstract',
|
|
15271
|
+
chainId: 2741,
|
|
15272
|
+
networkId: 2741,
|
|
15273
|
+
icon: 'abstract',
|
|
15274
|
+
explorers: [],
|
|
15275
|
+
parent: { type: 'L2', chain: 'eip155-1', bridges: [] }
|
|
15276
|
+
},
|
|
15219
15277
|
{
|
|
15220
15278
|
name: 'Nanon',
|
|
15221
15279
|
title: 'Nanon Rollup',
|
|
@@ -20892,7 +20950,7 @@ const chainArray = [
|
|
|
20892
20950
|
{
|
|
20893
20951
|
name: 'basescan',
|
|
20894
20952
|
url: 'https://basescan.org',
|
|
20895
|
-
standard: '
|
|
20953
|
+
standard: 'EIP3091'
|
|
20896
20954
|
},
|
|
20897
20955
|
{
|
|
20898
20956
|
name: 'basescout',
|
|
@@ -21728,6 +21786,25 @@ const chainArray = [
|
|
|
21728
21786
|
}
|
|
21729
21787
|
]
|
|
21730
21788
|
},
|
|
21789
|
+
{
|
|
21790
|
+
name: 'KPA Smart Chain Testnet',
|
|
21791
|
+
chain: 'KSC',
|
|
21792
|
+
rpc: [
|
|
21793
|
+
'https://testnet-rpc1.koppachain.com/',
|
|
21794
|
+
'https://testnet-rpc2.koppachain.com/',
|
|
21795
|
+
'https://testnet-rpc3.koppachain.com/',
|
|
21796
|
+
'https://testnet-rpc4.koppachain.com/'
|
|
21797
|
+
],
|
|
21798
|
+
faucets: [ 'https://mint.koppachain.com' ],
|
|
21799
|
+
nativeCurrency: { name: 'KPA Smart Chain Testnet', symbol: 'tKPA', decimals: 18 },
|
|
21800
|
+
features: [],
|
|
21801
|
+
infoURL: 'https://koppachain.com',
|
|
21802
|
+
shortName: 'KPA',
|
|
21803
|
+
chainId: 9091,
|
|
21804
|
+
networkId: 9091,
|
|
21805
|
+
icon: 'koppa',
|
|
21806
|
+
explorers: []
|
|
21807
|
+
},
|
|
21731
21808
|
{
|
|
21732
21809
|
name: 'Genesis Coin',
|
|
21733
21810
|
chain: 'Genesis',
|
|
@@ -22534,6 +22611,21 @@ const chainArray = [
|
|
|
22534
22611
|
networkId: 10001,
|
|
22535
22612
|
slip44: 1
|
|
22536
22613
|
},
|
|
22614
|
+
{
|
|
22615
|
+
name: 'Warden Testnet',
|
|
22616
|
+
chain: 'WARD',
|
|
22617
|
+
rpc: [
|
|
22618
|
+
'https://evm.chiado.wardenprotocol.org',
|
|
22619
|
+
'wss://evm-ws.chiado.wardenprotocol.org'
|
|
22620
|
+
],
|
|
22621
|
+
faucets: [ 'https://faucet.chiado.wardenprotocol.org' ],
|
|
22622
|
+
nativeCurrency: { name: 'WARD', symbol: 'WARD', decimals: 18 },
|
|
22623
|
+
infoURL: 'https://wardenprotocol.org',
|
|
22624
|
+
icon: 'warden',
|
|
22625
|
+
shortName: 'ward',
|
|
22626
|
+
chainId: 10010,
|
|
22627
|
+
networkId: 10010
|
|
22628
|
+
},
|
|
22537
22629
|
{
|
|
22538
22630
|
name: 'Gon Chain',
|
|
22539
22631
|
chain: 'GonChain',
|
|
@@ -22971,6 +23063,38 @@ const chainArray = [
|
|
|
22971
23063
|
}
|
|
22972
23064
|
]
|
|
22973
23065
|
},
|
|
23066
|
+
{
|
|
23067
|
+
name: 'GameSwift Chain Testnet',
|
|
23068
|
+
title: 'GameSwift Chain Testnet',
|
|
23069
|
+
chain: 'gameswift-chain-testnet',
|
|
23070
|
+
rpc: [
|
|
23071
|
+
'https://rpc-testnet.gameswift.io',
|
|
23072
|
+
'wss://ws-testnet.gameswift.io'
|
|
23073
|
+
],
|
|
23074
|
+
nativeCurrency: { name: 'TGameSwift', symbol: 'tGS', decimals: 18 },
|
|
23075
|
+
infoURL: 'https://raas.gelato.network/rollups/details/public/gameswift-chain-testnet',
|
|
23076
|
+
faucets: [],
|
|
23077
|
+
shortName: 'gameswift-chain-testnet',
|
|
23078
|
+
chainId: 10888,
|
|
23079
|
+
networkId: 10888,
|
|
23080
|
+
slip44: 60,
|
|
23081
|
+
explorers: [
|
|
23082
|
+
{
|
|
23083
|
+
name: 'blockscout',
|
|
23084
|
+
url: 'https://testnet.gameswift.io',
|
|
23085
|
+
standard: 'EIP3091'
|
|
23086
|
+
}
|
|
23087
|
+
],
|
|
23088
|
+
parent: {
|
|
23089
|
+
type: 'L2',
|
|
23090
|
+
chain: 'eip155-11155111',
|
|
23091
|
+
bridges: [
|
|
23092
|
+
{
|
|
23093
|
+
url: 'https://testnet-bridge-gelato.gameswift.io/bridge/gameswift-chain-testnet'
|
|
23094
|
+
}
|
|
23095
|
+
]
|
|
23096
|
+
}
|
|
23097
|
+
},
|
|
22974
23098
|
{
|
|
22975
23099
|
name: 'Quadrans Blockchain',
|
|
22976
23100
|
chain: 'QDC',
|
|
@@ -23154,7 +23278,7 @@ const chainArray = [
|
|
|
23154
23278
|
networkId: 11124,
|
|
23155
23279
|
nativeCurrency: { name: 'ETH', symbol: 'ETH', decimals: 18 },
|
|
23156
23280
|
infoURL: 'https://abs.xyz/',
|
|
23157
|
-
shortName: '
|
|
23281
|
+
shortName: 'abstract-sepolia',
|
|
23158
23282
|
parent: {
|
|
23159
23283
|
type: 'L2',
|
|
23160
23284
|
chain: 'eip155-11155111',
|
|
@@ -27594,6 +27718,11 @@ const chainArray = [
|
|
|
27594
27718
|
networkId: 1,
|
|
27595
27719
|
slip44: 1,
|
|
27596
27720
|
explorers: [
|
|
27721
|
+
{
|
|
27722
|
+
name: 'snowscan-testnet',
|
|
27723
|
+
url: 'https://testnet.snowscan.xyz',
|
|
27724
|
+
standard: 'EIP3091'
|
|
27725
|
+
},
|
|
27597
27726
|
{
|
|
27598
27727
|
name: 'snowtrace',
|
|
27599
27728
|
url: 'https://testnet.snowtrace.io',
|
|
@@ -27619,6 +27748,11 @@ const chainArray = [
|
|
|
27619
27748
|
networkId: 43114,
|
|
27620
27749
|
slip44: 9005,
|
|
27621
27750
|
explorers: [
|
|
27751
|
+
{
|
|
27752
|
+
name: 'snowscan',
|
|
27753
|
+
url: 'https://snowscan.xyz',
|
|
27754
|
+
standard: 'EIP3091'
|
|
27755
|
+
},
|
|
27622
27756
|
{
|
|
27623
27757
|
name: 'snowtrace',
|
|
27624
27758
|
url: 'https://snowtrace.io',
|
|
@@ -28561,7 +28695,7 @@ const chainArray = [
|
|
|
28561
28695
|
],
|
|
28562
28696
|
parent: {
|
|
28563
28697
|
type: 'L2',
|
|
28564
|
-
chain: 'eip155-
|
|
28698
|
+
chain: 'eip155-56',
|
|
28565
28699
|
bridges: [ { url: 'https://gateway.boba.network' } ]
|
|
28566
28700
|
}
|
|
28567
28701
|
},
|
|
@@ -28786,7 +28920,7 @@ const chainArray = [
|
|
|
28786
28920
|
icon: 'linea',
|
|
28787
28921
|
parent: {
|
|
28788
28922
|
type: 'L2',
|
|
28789
|
-
chain: 'eip155-
|
|
28923
|
+
chain: 'eip155-11155111',
|
|
28790
28924
|
bridges: [ { url: 'https://bridge.linea.build/' } ]
|
|
28791
28925
|
},
|
|
28792
28926
|
explorers: [
|
|
@@ -30271,6 +30405,11 @@ const chainArray = [
|
|
|
30271
30405
|
networkId: 80002,
|
|
30272
30406
|
slip44: 1,
|
|
30273
30407
|
explorers: [
|
|
30408
|
+
{
|
|
30409
|
+
name: 'polygonscan-amoy',
|
|
30410
|
+
url: 'https://amoy.polygonscan.com',
|
|
30411
|
+
standard: 'EIP3091'
|
|
30412
|
+
},
|
|
30274
30413
|
{
|
|
30275
30414
|
name: 'polygonamoy',
|
|
30276
30415
|
url: 'https://www.oklink.com/amoy',
|
|
@@ -30682,6 +30821,11 @@ const chainArray = [
|
|
|
30682
30821
|
slip44: 1,
|
|
30683
30822
|
icon: 'baseTestnet',
|
|
30684
30823
|
explorers: [
|
|
30824
|
+
{
|
|
30825
|
+
name: 'basescan-sepolia',
|
|
30826
|
+
url: 'https://sepolia.basescan.org',
|
|
30827
|
+
standard: 'EIP3091'
|
|
30828
|
+
},
|
|
30685
30829
|
{
|
|
30686
30830
|
name: 'basescout',
|
|
30687
30831
|
url: 'https://base-sepolia.blockscout.com',
|
|
@@ -32361,6 +32505,26 @@ const chainArray = [
|
|
|
32361
32505
|
}
|
|
32362
32506
|
]
|
|
32363
32507
|
},
|
|
32508
|
+
{
|
|
32509
|
+
name: 'Odyssey Chain Mainnet',
|
|
32510
|
+
chain: 'DIONE',
|
|
32511
|
+
rpc: [ 'https://node.dioneprotocol.com/ext/bc/D/rpc' ],
|
|
32512
|
+
faucets: [],
|
|
32513
|
+
features: [ { name: 'EIP155' } ],
|
|
32514
|
+
infoURL: 'https://www.dioneprotocol.com',
|
|
32515
|
+
shortName: 'Odyssey',
|
|
32516
|
+
chainId: 153153,
|
|
32517
|
+
networkId: 153153,
|
|
32518
|
+
icon: 'odysseyChain',
|
|
32519
|
+
nativeCurrency: { name: 'DIONE', symbol: 'DIONE', decimals: 18 },
|
|
32520
|
+
explorers: [
|
|
32521
|
+
{
|
|
32522
|
+
name: 'Odyssey Scan',
|
|
32523
|
+
url: 'https://odysseyscan.com',
|
|
32524
|
+
standard: 'EIP3091'
|
|
32525
|
+
}
|
|
32526
|
+
]
|
|
32527
|
+
},
|
|
32364
32528
|
{
|
|
32365
32529
|
name: 'CryptoX',
|
|
32366
32530
|
chain: 'XCOIN',
|
|
@@ -34131,11 +34295,11 @@ const chainArray = [
|
|
|
34131
34295
|
},
|
|
34132
34296
|
{
|
|
34133
34297
|
name: 'Bitfinity Network Mainnet',
|
|
34134
|
-
chain: '
|
|
34298
|
+
chain: 'BTF',
|
|
34135
34299
|
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
|
34136
34300
|
rpc: [ 'https://mainnet.bitfinity.network' ],
|
|
34137
34301
|
faucets: [],
|
|
34138
|
-
nativeCurrency: { name: 'Bitfinity Token', symbol: '
|
|
34302
|
+
nativeCurrency: { name: 'Bitfinity Token', symbol: 'BTF', decimals: 18 },
|
|
34139
34303
|
infoURL: 'https://bitfinity.network',
|
|
34140
34304
|
shortName: 'bitfinity-mainnet',
|
|
34141
34305
|
chainId: 355110,
|
|
@@ -34151,11 +34315,11 @@ const chainArray = [
|
|
|
34151
34315
|
},
|
|
34152
34316
|
{
|
|
34153
34317
|
name: 'Bitfinity Network Testnet',
|
|
34154
|
-
chain: '
|
|
34318
|
+
chain: 'BTF',
|
|
34155
34319
|
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
|
34156
34320
|
rpc: [ 'https://testnet.bitfinity.network' ],
|
|
34157
34321
|
faucets: [ 'https://bitfinity.network/faucet' ],
|
|
34158
|
-
nativeCurrency: { name: 'Bitfinity Token', symbol: '
|
|
34322
|
+
nativeCurrency: { name: 'Bitfinity Token', symbol: 'BTF', decimals: 18 },
|
|
34159
34323
|
infoURL: 'https://bitfinity.network',
|
|
34160
34324
|
shortName: 'bitfinity-testnet',
|
|
34161
34325
|
chainId: 355113,
|
|
@@ -34466,6 +34630,11 @@ const chainArray = [
|
|
|
34466
34630
|
networkId: 421614,
|
|
34467
34631
|
slip44: 1,
|
|
34468
34632
|
explorers: [
|
|
34633
|
+
{
|
|
34634
|
+
name: 'arbiscan-sepolia',
|
|
34635
|
+
url: 'https://sepolia.arbiscan.io',
|
|
34636
|
+
standard: 'EIP3091'
|
|
34637
|
+
},
|
|
34469
34638
|
{
|
|
34470
34639
|
name: 'Arbitrum Sepolia Rollup Testnet Explorer',
|
|
34471
34640
|
url: 'https://sepolia-explorer.arbitrum.io',
|
|
@@ -37617,6 +37786,11 @@ const chainArray = [
|
|
|
37617
37786
|
networkId: 11155420,
|
|
37618
37787
|
slip44: 1,
|
|
37619
37788
|
explorers: [
|
|
37789
|
+
{
|
|
37790
|
+
name: 'etherscan-sepolia-optimism',
|
|
37791
|
+
url: 'https://sepolia-optimism.etherscan.io',
|
|
37792
|
+
standard: 'EIP3091'
|
|
37793
|
+
},
|
|
37620
37794
|
{
|
|
37621
37795
|
name: 'opscout',
|
|
37622
37796
|
url: 'https://optimism-sepolia.blockscout.com',
|