eth-chainlist 0.0.462 → 0.0.464
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +16 -0
- package/data/chain.js +182 -14
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.464 (2024-08-13)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.463 ([0f397f7](https://github.com/poowf/eth-chainlist/commit/0f397f74c10cdeaaa12ffe249c155dfb315c4306))
|
9
|
+
* update chain data ([ce39127](https://github.com/poowf/eth-chainlist/commit/ce39127fee3ea1b56a2622bf193505b07e3c1b62))
|
10
|
+
|
11
|
+
### 0.0.463 (2024-08-11)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.462 ([250eff6](https://github.com/poowf/eth-chainlist/commit/250eff6abb1b661988b44386cb42b617d3f93c87))
|
17
|
+
* update chain data ([4d489ec](https://github.com/poowf/eth-chainlist/commit/4d489ecd61d46b838fc7c28d84de7b060f55feac))
|
18
|
+
|
3
19
|
### 0.0.462 (2024-08-10)
|
4
20
|
|
5
21
|
|
package/data/chain.js
CHANGED
@@ -8535,7 +8535,7 @@ const chainArray = [
|
|
8535
8535
|
chain: 'KAIA',
|
8536
8536
|
rpc: [ 'https://public-en.kairos.node.kaia.io' ],
|
8537
8537
|
faucets: [ 'https://faucet.kaia.io' ],
|
8538
|
-
nativeCurrency: { name: 'KAIA', symbol: '
|
8538
|
+
nativeCurrency: { name: 'KAIA', symbol: 'KLAY', decimals: 18 },
|
8539
8539
|
infoURL: 'https://kaia.io/',
|
8540
8540
|
shortName: 'kaia-kairos',
|
8541
8541
|
chainId: 1001,
|
@@ -9730,6 +9730,26 @@ const chainArray = [
|
|
9730
9730
|
],
|
9731
9731
|
status: 'active'
|
9732
9732
|
},
|
9733
|
+
{
|
9734
|
+
name: 'Bitcoin Protocol Testnet',
|
9735
|
+
chain: 'BTCP Testnet',
|
9736
|
+
icon: 'btcprotocol',
|
9737
|
+
rpc: [ 'https://testnet-chain.btcprotocol.io/' ],
|
9738
|
+
faucets: [],
|
9739
|
+
nativeCurrency: { name: 'BTC Protocol', symbol: 'BTCP', decimals: 18 },
|
9740
|
+
infoURL: 'https://btcprotocol.io/',
|
9741
|
+
shortName: 'BTCP',
|
9742
|
+
chainId: 1227,
|
9743
|
+
networkId: 1227,
|
9744
|
+
explorers: [
|
9745
|
+
{
|
9746
|
+
name: 'BTCP explorer',
|
9747
|
+
url: 'https://explorer.btcprotocol.io',
|
9748
|
+
standard: 'EIP3091'
|
9749
|
+
}
|
9750
|
+
],
|
9751
|
+
status: 'active'
|
9752
|
+
},
|
9733
9753
|
{
|
9734
9754
|
name: 'Exzo Network Mainnet',
|
9735
9755
|
chain: 'EXZO',
|
@@ -17577,6 +17597,24 @@ const chainArray = [
|
|
17577
17597
|
networkId: 6502,
|
17578
17598
|
explorers: []
|
17579
17599
|
},
|
17600
|
+
{
|
17601
|
+
name: 'Flamma Testnet',
|
17602
|
+
chain: 'Flamma',
|
17603
|
+
rpc: [ 'https://testnetrpc.flamma.network' ],
|
17604
|
+
faucets: [],
|
17605
|
+
nativeCurrency: { name: 'Flamma', symbol: 'FLA', decimals: 18 },
|
17606
|
+
infoURL: 'https://flamma.network',
|
17607
|
+
shortName: 'FlammaTestnet',
|
17608
|
+
chainId: 6550,
|
17609
|
+
networkId: 6550,
|
17610
|
+
explorers: [
|
17611
|
+
{
|
17612
|
+
name: 'flascan',
|
17613
|
+
url: 'https://testnet.flascan.net',
|
17614
|
+
standard: 'EIP3091'
|
17615
|
+
}
|
17616
|
+
]
|
17617
|
+
},
|
17580
17618
|
{
|
17581
17619
|
name: 'Scolcoin WeiChain Testnet',
|
17582
17620
|
chain: 'SCOLWEI-testnet',
|
@@ -19157,9 +19195,9 @@ const chainArray = [
|
|
19157
19195
|
{
|
19158
19196
|
name: 'Kaia Mainnet',
|
19159
19197
|
chain: 'KAIA',
|
19160
|
-
rpc: [ 'https://public-en
|
19198
|
+
rpc: [ 'https://public-en.node.kaia.io' ],
|
19161
19199
|
faucets: [],
|
19162
|
-
nativeCurrency: { name: 'KAIA', symbol: '
|
19200
|
+
nativeCurrency: { name: 'KAIA', symbol: 'KLAY', decimals: 18 },
|
19163
19201
|
infoURL: 'https://kaia.io',
|
19164
19202
|
shortName: 'kaia-mainnet',
|
19165
19203
|
chainId: 8217,
|
@@ -24900,6 +24938,29 @@ const chainArray = [
|
|
24900
24938
|
}
|
24901
24939
|
]
|
24902
24940
|
},
|
24941
|
+
{
|
24942
|
+
name: 'Aleph Zero EVM',
|
24943
|
+
chain: 'Aleph Zero EVM',
|
24944
|
+
icon: 'aleph-zero',
|
24945
|
+
rpc: [
|
24946
|
+
'https://rpc.alephzero.raas.gelato.cloud',
|
24947
|
+
'wss://ws.alephzero.raas.gelato.cloud'
|
24948
|
+
],
|
24949
|
+
faucets: [],
|
24950
|
+
nativeCurrency: { name: 'Aleph Zero', symbol: 'AZERO', decimals: 18 },
|
24951
|
+
infoURL: 'https://alephzero.org/',
|
24952
|
+
shortName: 'aleph-zero',
|
24953
|
+
chainId: 41455,
|
24954
|
+
networkId: 41455,
|
24955
|
+
explorers: [
|
24956
|
+
{
|
24957
|
+
name: 'Aleph Zero EVM Mainnet Explorer',
|
24958
|
+
url: 'https://evm-explorer.alephzero.org',
|
24959
|
+
icon: 'aleph-zero',
|
24960
|
+
standard: 'none'
|
24961
|
+
}
|
24962
|
+
]
|
24963
|
+
},
|
24903
24964
|
{
|
24904
24965
|
name: 'Opulent-X BETA',
|
24905
24966
|
chainId: 41500,
|
@@ -25105,6 +25166,25 @@ const chainArray = [
|
|
25105
25166
|
}
|
25106
25167
|
]
|
25107
25168
|
},
|
25169
|
+
{
|
25170
|
+
name: 'AssetChain Testnet',
|
25171
|
+
chain: 'RWA',
|
25172
|
+
rpc: [ 'https://enugu-rpc.assetchain.org' ],
|
25173
|
+
faucets: [ 'https://faucet.assetchain.org' ],
|
25174
|
+
nativeCurrency: { name: 'Real World Asset', symbol: 'RWA', decimals: 18 },
|
25175
|
+
infoURL: 'https://docs.assetchain.org',
|
25176
|
+
shortName: 'rwa',
|
25177
|
+
chainId: 42421,
|
25178
|
+
networkId: 42421,
|
25179
|
+
icon: 'assetchain',
|
25180
|
+
explorers: [
|
25181
|
+
{
|
25182
|
+
name: 'Asset Chain Testnet Explorer',
|
25183
|
+
url: 'https://scan-testnet.assetchain.org',
|
25184
|
+
standard: 'EIP3091'
|
25185
|
+
}
|
25186
|
+
]
|
25187
|
+
},
|
25108
25188
|
{
|
25109
25189
|
name: 'ZKFair Mainnet',
|
25110
25190
|
title: 'ZKFair Mainnet',
|
@@ -25438,6 +25518,35 @@ const chainArray = [
|
|
25438
25518
|
}
|
25439
25519
|
]
|
25440
25520
|
},
|
25521
|
+
{
|
25522
|
+
name: 'Blessnet',
|
25523
|
+
chain: 'ETH',
|
25524
|
+
rpc: [
|
25525
|
+
'https://blessnet.calderachain.xyz/http',
|
25526
|
+
'wss://blessnet.calderachain.xyz/ws'
|
25527
|
+
],
|
25528
|
+
faucets: [],
|
25529
|
+
nativeCurrency: { name: 'Bless', symbol: 'BLESS', decimals: 18 },
|
25530
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
25531
|
+
infoURL: 'https://blessnet.io',
|
25532
|
+
shortName: 'bless',
|
25533
|
+
chainId: 45513,
|
25534
|
+
networkId: 45513,
|
25535
|
+
icon: 'bless',
|
25536
|
+
explorers: [
|
25537
|
+
{
|
25538
|
+
name: 'blockscout',
|
25539
|
+
url: 'https://blessnet.calderaexplorer.xyz',
|
25540
|
+
icon: 'bless',
|
25541
|
+
standard: 'EIP3091'
|
25542
|
+
}
|
25543
|
+
],
|
25544
|
+
parent: {
|
25545
|
+
type: 'L2',
|
25546
|
+
chain: 'eip155-42161',
|
25547
|
+
bridges: [ { url: 'https://blessnet.bridge.caldera.xyz' } ]
|
25548
|
+
}
|
25549
|
+
},
|
25441
25550
|
{
|
25442
25551
|
name: 'Fusion Testnet',
|
25443
25552
|
chain: 'FSN',
|
@@ -25466,7 +25575,10 @@ const chainArray = [
|
|
25466
25575
|
{
|
25467
25576
|
name: 'Neo X Mainnet',
|
25468
25577
|
chain: 'Neo X',
|
25469
|
-
rpc: [
|
25578
|
+
rpc: [
|
25579
|
+
'https://mainnet-1.rpc.banelabs.org',
|
25580
|
+
'https://mainnet-2.rpc.banelabs.org'
|
25581
|
+
],
|
25470
25582
|
faucets: [],
|
25471
25583
|
nativeCurrency: { name: 'Gas', symbol: 'GAS', decimals: 18 },
|
25472
25584
|
infoURL: 'https://neo.org/',
|
@@ -25544,7 +25656,7 @@ const chainArray = [
|
|
25544
25656
|
name: 'Zircuit Testnet',
|
25545
25657
|
chain: 'Zircuit Testnet',
|
25546
25658
|
icon: 'zircuit',
|
25547
|
-
rpc: [ '
|
25659
|
+
rpc: [ 'http://zircuit1-testnet.p2pify.com/' ],
|
25548
25660
|
faucets: [],
|
25549
25661
|
nativeCurrency: { name: 'ETH', symbol: 'ETH', decimals: 18 },
|
25550
25662
|
infoURL: 'https://www.zircuit.com/',
|
@@ -25554,7 +25666,7 @@ const chainArray = [
|
|
25554
25666
|
explorers: [
|
25555
25667
|
{
|
25556
25668
|
name: 'Zircuit',
|
25557
|
-
url: 'https://explorer.zircuit.com',
|
25669
|
+
url: 'https://explorer.testnet.zircuit.com',
|
25558
25670
|
icon: 'zircuit',
|
25559
25671
|
standard: 'none'
|
25560
25672
|
}
|
@@ -25564,14 +25676,21 @@ const chainArray = [
|
|
25564
25676
|
name: 'Zircuit Mainnet',
|
25565
25677
|
chain: 'Zircuit Mainnet',
|
25566
25678
|
icon: 'zircuit',
|
25567
|
-
rpc: [],
|
25679
|
+
rpc: [ 'https://zircuit1-mainnet.p2pify.com/' ],
|
25568
25680
|
faucets: [],
|
25569
25681
|
nativeCurrency: { name: 'ETH', symbol: 'ETH', decimals: 18 },
|
25570
25682
|
infoURL: 'https://www.zircuit.com/',
|
25571
25683
|
shortName: 'zircuit-mainnet',
|
25572
25684
|
chainId: 48900,
|
25573
25685
|
networkId: 48900,
|
25574
|
-
explorers: [
|
25686
|
+
explorers: [
|
25687
|
+
{
|
25688
|
+
name: 'Zircuit',
|
25689
|
+
url: 'https://explorer.zircuit.com',
|
25690
|
+
icon: 'zircuit',
|
25691
|
+
standard: 'none'
|
25692
|
+
}
|
25693
|
+
]
|
25575
25694
|
},
|
25576
25695
|
{
|
25577
25696
|
name: 'Wireshape Floripa Testnet',
|
@@ -26001,6 +26120,24 @@ const chainArray = [
|
|
26001
26120
|
}
|
26002
26121
|
]
|
26003
26122
|
},
|
26123
|
+
{
|
26124
|
+
name: 'Flamma Mainnet',
|
26125
|
+
chain: 'Flamma',
|
26126
|
+
rpc: [ 'https://rpc.flamma.network' ],
|
26127
|
+
faucets: [],
|
26128
|
+
nativeCurrency: { name: 'Flamma', symbol: 'FLA', decimals: 18 },
|
26129
|
+
infoURL: 'https://flamma.network',
|
26130
|
+
shortName: 'FlammaMainnet',
|
26131
|
+
chainId: 55614,
|
26132
|
+
networkId: 55614,
|
26133
|
+
explorers: [
|
26134
|
+
{
|
26135
|
+
name: 'flascan',
|
26136
|
+
url: 'https://flascan.net',
|
26137
|
+
standard: 'EIP3091'
|
26138
|
+
}
|
26139
|
+
]
|
26140
|
+
},
|
26004
26141
|
{
|
26005
26142
|
name: 'Lambda Chain Mainnet',
|
26006
26143
|
chain: 'Lambda Chain',
|
@@ -28022,21 +28159,21 @@ const chainArray = [
|
|
28022
28159
|
]
|
28023
28160
|
},
|
28024
28161
|
{
|
28025
|
-
name: '
|
28162
|
+
name: 'InoAi',
|
28026
28163
|
chain: 'INOAI',
|
28027
28164
|
faucets: [],
|
28028
28165
|
rpc: [ 'https://inoai-network.com' ],
|
28029
|
-
nativeCurrency: { name: '
|
28030
|
-
infoURL: 'https://inoai.info',
|
28031
|
-
shortName: '
|
28166
|
+
nativeCurrency: { name: 'InoAi', symbol: 'INO', decimals: 18 },
|
28167
|
+
infoURL: 'https://docs.inoai.info/',
|
28168
|
+
shortName: 'INO',
|
28032
28169
|
chainId: 88559,
|
28033
28170
|
networkId: 88559,
|
28034
28171
|
icon: 'inoai',
|
28035
28172
|
explorers: [
|
28036
28173
|
{
|
28037
|
-
name: 'inoai
|
28174
|
+
name: 'inoai.live',
|
28038
28175
|
url: 'https://inoai.live',
|
28039
|
-
standard: '
|
28176
|
+
standard: 'EIP3091'
|
28040
28177
|
}
|
28041
28178
|
]
|
28042
28179
|
},
|
@@ -33847,6 +33984,37 @@ const chainArray = [
|
|
33847
33984
|
}
|
33848
33985
|
]
|
33849
33986
|
},
|
33987
|
+
{
|
33988
|
+
name: 'Blessnet Sepolia',
|
33989
|
+
chain: 'ETH',
|
33990
|
+
rpc: [
|
33991
|
+
'https://blessnet-sepolia-testnet.rpc.caldera.xyz/http',
|
33992
|
+
'wss://blessnet-sepolia-testnet.rpc.caldera.xyz/ws'
|
33993
|
+
],
|
33994
|
+
faucets: [ 'https://blessnet-sepolia-testnet.hub.caldera.xyz' ],
|
33995
|
+
nativeCurrency: { name: 'Bless', symbol: 'BLESS', decimals: 18 },
|
33996
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
33997
|
+
infoURL: 'https://blessnet.io',
|
33998
|
+
shortName: 'bless-sepolia',
|
33999
|
+
chainId: 11145513,
|
34000
|
+
networkId: 11145513,
|
34001
|
+
icon: 'bless',
|
34002
|
+
explorers: [
|
34003
|
+
{
|
34004
|
+
name: 'blockscout',
|
34005
|
+
url: 'https://blessnet-sepolia-testnet.explorer.caldera.xyz',
|
34006
|
+
icon: 'bless',
|
34007
|
+
standard: 'EIP3091'
|
34008
|
+
}
|
34009
|
+
],
|
34010
|
+
parent: {
|
34011
|
+
type: 'L2',
|
34012
|
+
chain: 'eip155-421614',
|
34013
|
+
bridges: [
|
34014
|
+
{ url: 'https://blessnet-sepolia-testnet.bridge.caldera.xyz' }
|
34015
|
+
]
|
34016
|
+
}
|
34017
|
+
},
|
33850
34018
|
{
|
33851
34019
|
name: 'Sepolia',
|
33852
34020
|
title: 'Ethereum Testnet Sepolia',
|