eth-chainlist 0.0.540 → 0.0.542
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 +145 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
### 0.0.542 (2024-11-19)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Maintenance
|
|
7
|
+
|
|
8
|
+
* **release:** 0.0.541 ([56305f8](https://github.com/poowf/eth-chainlist/commit/56305f86040120145924abdef1306c8e44e844f1))
|
|
9
|
+
* update chain data ([81628d4](https://github.com/poowf/eth-chainlist/commit/81628d419374375e6e97340d3dfe13897ce4d9df))
|
|
10
|
+
|
|
11
|
+
### 0.0.541 (2024-11-16)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Maintenance
|
|
15
|
+
|
|
16
|
+
* **release:** 0.0.540 ([5e9528f](https://github.com/poowf/eth-chainlist/commit/5e9528f4d54313bc1ecd898f4ef9f78e1b16b80b))
|
|
17
|
+
* update chain data ([3581a7f](https://github.com/poowf/eth-chainlist/commit/3581a7fc6c309ba59eccce0cb580828ec512b30e))
|
|
18
|
+
|
|
3
19
|
### 0.0.540 (2024-11-15)
|
|
4
20
|
|
|
5
21
|
|
package/data/chain.js
CHANGED
|
@@ -3587,6 +3587,35 @@ const chainArray = [
|
|
|
3587
3587
|
icon: 'waterfall-main',
|
|
3588
3588
|
explorers: []
|
|
3589
3589
|
},
|
|
3590
|
+
{
|
|
3591
|
+
name: 'IOST Mainnet',
|
|
3592
|
+
chain: 'iost',
|
|
3593
|
+
rpc: [ 'https://iost-mainnet.alt.technology' ],
|
|
3594
|
+
faucets: [],
|
|
3595
|
+
nativeCurrency: { name: 'BNB Chain Native Token', symbol: 'BNB', decimals: 18 },
|
|
3596
|
+
infoURL: 'https://iost.io',
|
|
3597
|
+
shortName: 'iost-mainnet',
|
|
3598
|
+
chainId: 182,
|
|
3599
|
+
networkId: 182,
|
|
3600
|
+
icon: 'bnbchain',
|
|
3601
|
+
slip44: 714,
|
|
3602
|
+
explorers: [
|
|
3603
|
+
{
|
|
3604
|
+
name: 'IOSTscan',
|
|
3605
|
+
url: 'https://iost-mainnet-explorer.alt.technology',
|
|
3606
|
+
standard: 'EIP3091'
|
|
3607
|
+
}
|
|
3608
|
+
],
|
|
3609
|
+
parent: {
|
|
3610
|
+
type: 'L2',
|
|
3611
|
+
chain: 'eip155-56',
|
|
3612
|
+
bridges: [
|
|
3613
|
+
{
|
|
3614
|
+
url: 'https://10910bc5-8382-4ef5-bdc7-4c54c8f57e75.bridges.rollbridge.app/'
|
|
3615
|
+
}
|
|
3616
|
+
]
|
|
3617
|
+
}
|
|
3618
|
+
},
|
|
3590
3619
|
{
|
|
3591
3620
|
name: 'Ethernity',
|
|
3592
3621
|
chain: 'Ethernity',
|
|
@@ -4984,6 +5013,28 @@ const chainArray = [
|
|
|
4984
5013
|
}
|
|
4985
5014
|
]
|
|
4986
5015
|
},
|
|
5016
|
+
{
|
|
5017
|
+
name: 'DaVinci',
|
|
5018
|
+
chain: 'DCOIN',
|
|
5019
|
+
rpc: [ 'https://rpc.davinci.bz' ],
|
|
5020
|
+
faucets: [],
|
|
5021
|
+
nativeCurrency: { name: 'DaVinci', symbol: 'DCOIN', decimals: 18 },
|
|
5022
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
|
5023
|
+
infoURL: 'https://davinci.bz',
|
|
5024
|
+
shortName: 'davinci',
|
|
5025
|
+
chainId: 293,
|
|
5026
|
+
networkId: 293,
|
|
5027
|
+
icon: 'davinci',
|
|
5028
|
+
explorers: [
|
|
5029
|
+
{
|
|
5030
|
+
name: 'davinciscan',
|
|
5031
|
+
icon: 'blockscout',
|
|
5032
|
+
url: 'https://mainnet-explorer.davinci.bz',
|
|
5033
|
+
standard: 'EIP3091'
|
|
5034
|
+
}
|
|
5035
|
+
],
|
|
5036
|
+
status: 'active'
|
|
5037
|
+
},
|
|
4987
5038
|
{
|
|
4988
5039
|
name: 'Hedera Mainnet',
|
|
4989
5040
|
chain: 'Hedera',
|
|
@@ -11394,6 +11445,18 @@ const chainArray = [
|
|
|
11394
11445
|
},
|
|
11395
11446
|
redFlags: [ 'reusedChainId' ]
|
|
11396
11447
|
},
|
|
11448
|
+
{
|
|
11449
|
+
name: 'Islander',
|
|
11450
|
+
chain: 'Islander',
|
|
11451
|
+
rpc: [],
|
|
11452
|
+
nativeCurrency: { name: 'Islander', symbol: 'ISL', decimals: 18 },
|
|
11453
|
+
faucets: [],
|
|
11454
|
+
infoURL: '',
|
|
11455
|
+
shortName: 'isl',
|
|
11456
|
+
chainId: 1480,
|
|
11457
|
+
networkId: 1480,
|
|
11458
|
+
explorers: []
|
|
11459
|
+
},
|
|
11397
11460
|
{
|
|
11398
11461
|
name: 'Vitruveo Mainnet',
|
|
11399
11462
|
title: 'Vitruveo is a blockchain for Creators',
|
|
@@ -12677,10 +12740,29 @@ const chainArray = [
|
|
|
12677
12740
|
],
|
|
12678
12741
|
parent: {
|
|
12679
12742
|
type: 'L2',
|
|
12680
|
-
chain: 'eip155-
|
|
12743
|
+
chain: 'eip155-11155111',
|
|
12681
12744
|
bridges: [ { url: 'https://bridge.soneium.org/testnet' } ]
|
|
12682
12745
|
}
|
|
12683
12746
|
},
|
|
12747
|
+
{
|
|
12748
|
+
name: 'Bionix Testnet',
|
|
12749
|
+
chain: 'Bionix',
|
|
12750
|
+
rpc: [ 'https://testnet-chain.bionixnetwork.com' ],
|
|
12751
|
+
faucets: [],
|
|
12752
|
+
nativeCurrency: { name: 'Bionix', symbol: 'tBIO', decimals: 18 },
|
|
12753
|
+
icon: 'bionix',
|
|
12754
|
+
infoURL: 'https://bionixnetwork.com',
|
|
12755
|
+
shortName: 'tbio',
|
|
12756
|
+
chainId: 1949,
|
|
12757
|
+
networkId: 1949,
|
|
12758
|
+
explorers: [
|
|
12759
|
+
{
|
|
12760
|
+
name: 'Bionix Testnet Explorer',
|
|
12761
|
+
url: 'https://testnet.bionixnetwork.com',
|
|
12762
|
+
standard: 'none'
|
|
12763
|
+
}
|
|
12764
|
+
]
|
|
12765
|
+
},
|
|
12684
12766
|
{
|
|
12685
12767
|
name: 'D-Chain Mainnet',
|
|
12686
12768
|
chain: 'D-Chain',
|
|
@@ -20342,6 +20424,32 @@ const chainArray = [
|
|
|
20342
20424
|
}
|
|
20343
20425
|
]
|
|
20344
20426
|
},
|
|
20427
|
+
{
|
|
20428
|
+
name: 'arena-z',
|
|
20429
|
+
title: 'arena-z',
|
|
20430
|
+
chain: 'arena-z',
|
|
20431
|
+
rpc: [ 'https://rpc.arena-z.gg', 'wss://ws.arena-z.gg' ],
|
|
20432
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
20433
|
+
infoURL: 'https://raas.gelato.network/rollups/details/public/arena-z',
|
|
20434
|
+
faucets: [],
|
|
20435
|
+
shortName: 'arena-z',
|
|
20436
|
+
chainId: 7897,
|
|
20437
|
+
networkId: 7897,
|
|
20438
|
+
slip44: 60,
|
|
20439
|
+
icon: 'arena-z-mainnet',
|
|
20440
|
+
explorers: [
|
|
20441
|
+
{
|
|
20442
|
+
name: 'blockscout',
|
|
20443
|
+
url: 'https://explorer.arena-z.gg',
|
|
20444
|
+
standard: 'EIP3091'
|
|
20445
|
+
}
|
|
20446
|
+
],
|
|
20447
|
+
parent: {
|
|
20448
|
+
type: 'L2',
|
|
20449
|
+
chain: 'eip155-1',
|
|
20450
|
+
bridges: [ { url: 'https://bridge.gelato.network/bridge/arena-z' } ]
|
|
20451
|
+
}
|
|
20452
|
+
},
|
|
20345
20453
|
{
|
|
20346
20454
|
name: 'Dot Blox',
|
|
20347
20455
|
chain: 'DTBX',
|
|
@@ -26735,6 +26843,26 @@ const chainArray = [
|
|
|
26735
26843
|
],
|
|
26736
26844
|
redFlags: [ 'reusedChainId' ]
|
|
26737
26845
|
},
|
|
26846
|
+
{
|
|
26847
|
+
name: 'Mezo Matsnet Testnet',
|
|
26848
|
+
chain: 'Mezo',
|
|
26849
|
+
rpc: [ 'https://rpc.test.mezo.org' ],
|
|
26850
|
+
faucets: [ 'https://mezo.org/matsnet' ],
|
|
26851
|
+
nativeCurrency: { name: 'Bitcoin', symbol: 'BTC', decimals: 18 },
|
|
26852
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
|
26853
|
+
infoURL: 'https://mezo.org/',
|
|
26854
|
+
shortName: 'mezo',
|
|
26855
|
+
chainId: 31611,
|
|
26856
|
+
networkId: 31611,
|
|
26857
|
+
explorers: [
|
|
26858
|
+
{
|
|
26859
|
+
name: 'blockscout',
|
|
26860
|
+
url: 'https://explorer.test.mezo.org',
|
|
26861
|
+
icon: 'blockscout',
|
|
26862
|
+
standard: 'EIP3091'
|
|
26863
|
+
}
|
|
26864
|
+
]
|
|
26865
|
+
},
|
|
26738
26866
|
{
|
|
26739
26867
|
name: 'Xchain Mainnet',
|
|
26740
26868
|
chain: 'Xchain',
|
|
@@ -28834,6 +28962,20 @@ const chainArray = [
|
|
|
28834
28962
|
}
|
|
28835
28963
|
]
|
|
28836
28964
|
},
|
|
28965
|
+
{
|
|
28966
|
+
name: 'Ink',
|
|
28967
|
+
chain: 'ETH',
|
|
28968
|
+
rpc: [],
|
|
28969
|
+
faucets: [],
|
|
28970
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
|
28971
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
28972
|
+
infoURL: 'https://inkonchain.com',
|
|
28973
|
+
shortName: 'ink',
|
|
28974
|
+
chainId: 57073,
|
|
28975
|
+
networkId: 57073,
|
|
28976
|
+
explorers: [],
|
|
28977
|
+
status: 'incubating'
|
|
28978
|
+
},
|
|
28837
28979
|
{
|
|
28838
28980
|
name: 'COINSEC Network',
|
|
28839
28981
|
title: 'COINSEC Network',
|
|
@@ -36904,7 +37046,7 @@ const chainArray = [
|
|
|
36904
37046
|
networkId: 2611555
|
|
36905
37047
|
},
|
|
36906
37048
|
{
|
|
36907
|
-
name: 'Xterio Chain',
|
|
37049
|
+
name: 'Xterio Chain (ETH)',
|
|
36908
37050
|
chain: 'Xterio',
|
|
36909
37051
|
rpc: [ 'https://xterio-eth.alt.technology' ],
|
|
36910
37052
|
faucets: [],
|
|
@@ -36915,7 +37057,7 @@ const chainArray = [
|
|
|
36915
37057
|
networkId: 2702128,
|
|
36916
37058
|
explorers: [
|
|
36917
37059
|
{
|
|
36918
|
-
name: 'Xterio Chain Explorer',
|
|
37060
|
+
name: 'Xterio Chain (ETH) Explorer',
|
|
36919
37061
|
url: 'https://eth.xterscan.io',
|
|
36920
37062
|
standard: 'EIP3091'
|
|
36921
37063
|
}
|