eth-chainlist 0.0.520 → 0.0.522
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 +123 -5
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
### 0.0.522 (2024-10-24)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Maintenance
|
|
7
|
+
|
|
8
|
+
* **release:** 0.0.521 ([dd4fd65](https://github.com/poowf/eth-chainlist/commit/dd4fd658263f2a960f2463446c4f8a27a2bb18d7))
|
|
9
|
+
* update chain data ([de7c951](https://github.com/poowf/eth-chainlist/commit/de7c951d889075e72773b4a6af268df69f419fae))
|
|
10
|
+
|
|
11
|
+
### 0.0.521 (2024-10-20)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Maintenance
|
|
15
|
+
|
|
16
|
+
* **release:** 0.0.520 ([6150a0c](https://github.com/poowf/eth-chainlist/commit/6150a0ce260c148484592b9ab375da3cf5695a64))
|
|
17
|
+
* update chain data ([8a098be](https://github.com/poowf/eth-chainlist/commit/8a098beee6769c9e2003abd1db48c05388bdf356))
|
|
18
|
+
|
|
3
19
|
### 0.0.520 (2024-10-19)
|
|
4
20
|
|
|
5
21
|
|
package/data/chain.js
CHANGED
|
@@ -941,7 +941,8 @@ const chainArray = [
|
|
|
941
941
|
rpc: [
|
|
942
942
|
'https://rpc.darwinia.network',
|
|
943
943
|
'https://darwinia-rpc.dcdao.box',
|
|
944
|
-
'https://darwinia-rpc.dwellir.com'
|
|
944
|
+
'https://darwinia-rpc.dwellir.com',
|
|
945
|
+
'https://darwinia.rpc.subquery.network/public'
|
|
945
946
|
],
|
|
946
947
|
faucets: [],
|
|
947
948
|
nativeCurrency: {
|
|
@@ -1027,7 +1028,8 @@ const chainArray = [
|
|
|
1027
1028
|
'https://erpc.xinfin.network',
|
|
1028
1029
|
'https://rpc.xinfin.network',
|
|
1029
1030
|
'https://rpc1.xinfin.network',
|
|
1030
|
-
'https://rpc
|
|
1031
|
+
'https://rpc.xdcrpc.com',
|
|
1032
|
+
'https://erpc.xdcrpc.com'
|
|
1031
1033
|
],
|
|
1032
1034
|
faucets: [],
|
|
1033
1035
|
nativeCurrency: { name: 'XinFin', symbol: 'XDC', decimals: 18 },
|
|
@@ -1037,6 +1039,12 @@ const chainArray = [
|
|
|
1037
1039
|
networkId: 50,
|
|
1038
1040
|
icon: 'xdc',
|
|
1039
1041
|
explorers: [
|
|
1042
|
+
{
|
|
1043
|
+
name: 'xdcscan',
|
|
1044
|
+
url: 'https://xdcscan.com',
|
|
1045
|
+
icon: 'blocksscan',
|
|
1046
|
+
standard: 'EIP3091'
|
|
1047
|
+
},
|
|
1040
1048
|
{
|
|
1041
1049
|
name: 'xdcscan',
|
|
1042
1050
|
url: 'https://xdcscan.io',
|
|
@@ -15039,6 +15047,31 @@ const chainArray = [
|
|
|
15039
15047
|
bridges: [ { url: 'https://bridge-holesky.morphl2.io' } ]
|
|
15040
15048
|
}
|
|
15041
15049
|
},
|
|
15050
|
+
{
|
|
15051
|
+
name: 'Morph',
|
|
15052
|
+
title: 'Morph Mainnet',
|
|
15053
|
+
chain: 'ETH',
|
|
15054
|
+
rpc: [ 'https://rpc.morphl2.io', 'wss://rpc.morphl2.io:8443' ],
|
|
15055
|
+
faucets: [],
|
|
15056
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
15057
|
+
infoURL: 'https://morphl2.io',
|
|
15058
|
+
shortName: 'morph',
|
|
15059
|
+
chainId: 2818,
|
|
15060
|
+
networkId: 2818,
|
|
15061
|
+
slip44: 1,
|
|
15062
|
+
explorers: [
|
|
15063
|
+
{
|
|
15064
|
+
name: 'Morph Mainnet Explorer',
|
|
15065
|
+
url: 'https://explorer.morphl2.io',
|
|
15066
|
+
standard: 'EIP3091'
|
|
15067
|
+
}
|
|
15068
|
+
],
|
|
15069
|
+
parent: {
|
|
15070
|
+
type: 'L2',
|
|
15071
|
+
chain: 'eip155-1',
|
|
15072
|
+
bridges: [ { url: 'https://bridge.morphl2.io/' } ]
|
|
15073
|
+
}
|
|
15074
|
+
},
|
|
15042
15075
|
{
|
|
15043
15076
|
name: 'HyperAGI Mainnet',
|
|
15044
15077
|
chain: 'HyperAGI',
|
|
@@ -17366,6 +17399,28 @@ const chainArray = [
|
|
|
17366
17399
|
}
|
|
17367
17400
|
]
|
|
17368
17401
|
},
|
|
17402
|
+
{
|
|
17403
|
+
name: 'Skate Mainnet',
|
|
17404
|
+
chain: 'ETH',
|
|
17405
|
+
rpc: [ 'https://rpc.skatechain.org/' ],
|
|
17406
|
+
faucets: [],
|
|
17407
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
17408
|
+
features: [ { name: 'EIP155' } ],
|
|
17409
|
+
infoURL: 'https://www.skatechain.org/',
|
|
17410
|
+
shortName: 'skate',
|
|
17411
|
+
chainId: 5050,
|
|
17412
|
+
networkId: 5050,
|
|
17413
|
+
icon: 'skate',
|
|
17414
|
+
explorers: [
|
|
17415
|
+
{
|
|
17416
|
+
name: 'Skate Explorer',
|
|
17417
|
+
url: 'https://scan.skatechain.org',
|
|
17418
|
+
standard: 'EIP3091'
|
|
17419
|
+
}
|
|
17420
|
+
],
|
|
17421
|
+
status: 'active',
|
|
17422
|
+
parent: { type: 'L2', chain: 'eip155-1', bridges: [ { url: '' } ] }
|
|
17423
|
+
},
|
|
17369
17424
|
{
|
|
17370
17425
|
name: 'Nollie Skatechain Testnet',
|
|
17371
17426
|
chain: 'Skatechain',
|
|
@@ -19145,12 +19200,12 @@ const chainArray = [
|
|
|
19145
19200
|
]
|
|
19146
19201
|
},
|
|
19147
19202
|
{
|
|
19148
|
-
name: 'exSat
|
|
19203
|
+
name: 'exSat Mainnet',
|
|
19149
19204
|
chain: 'exSat',
|
|
19150
19205
|
icon: 'exsat',
|
|
19151
19206
|
rpc: [ 'https://evm.exsat.network' ],
|
|
19152
19207
|
faucets: [],
|
|
19153
|
-
nativeCurrency: { name: '
|
|
19208
|
+
nativeCurrency: { name: 'Bitcoin', symbol: 'BTC', decimals: 18 },
|
|
19154
19209
|
infoURL: 'https://exsat.network/',
|
|
19155
19210
|
shortName: 'xsat',
|
|
19156
19211
|
chainId: 7200,
|
|
@@ -20674,7 +20729,7 @@ const chainArray = [
|
|
|
20674
20729
|
chain: 'IOTA EVM',
|
|
20675
20730
|
rpc: [
|
|
20676
20731
|
'https://json-rpc.evm.iotaledger.net',
|
|
20677
|
-
'
|
|
20732
|
+
'wss://ws.json-rpc.evm.iotaledger.net'
|
|
20678
20733
|
],
|
|
20679
20734
|
faucets: [],
|
|
20680
20735
|
nativeCurrency: { name: 'IOTA', symbol: 'IOTA', decimals: 18 },
|
|
@@ -22123,6 +22178,25 @@ const chainArray = [
|
|
|
22123
22178
|
}
|
|
22124
22179
|
]
|
|
22125
22180
|
},
|
|
22181
|
+
{
|
|
22182
|
+
name: 'AEON Chain',
|
|
22183
|
+
chain: 'AEON Chain',
|
|
22184
|
+
icon: 'aeon',
|
|
22185
|
+
rpc: [ 'https://node.aeon.xyz/rpc' ],
|
|
22186
|
+
faucets: [],
|
|
22187
|
+
nativeCurrency: { name: 'AEON Token', symbol: 'AEON', decimals: 18 },
|
|
22188
|
+
infoURL: '',
|
|
22189
|
+
shortName: 'aeon',
|
|
22190
|
+
chainId: 10025,
|
|
22191
|
+
networkId: 10025,
|
|
22192
|
+
explorers: [
|
|
22193
|
+
{
|
|
22194
|
+
name: 'AEON Explorer',
|
|
22195
|
+
url: 'https://scan.aeon.xyz',
|
|
22196
|
+
standard: 'none'
|
|
22197
|
+
}
|
|
22198
|
+
]
|
|
22199
|
+
},
|
|
22126
22200
|
{
|
|
22127
22201
|
name: 'Japan Open Chain Testnet',
|
|
22128
22202
|
chain: 'JOCT',
|
|
@@ -34679,6 +34753,30 @@ const chainArray = [
|
|
|
34679
34753
|
}
|
|
34680
34754
|
]
|
|
34681
34755
|
},
|
|
34756
|
+
{
|
|
34757
|
+
name: 'Zebro Smart Chain',
|
|
34758
|
+
chain: 'ZEBRO',
|
|
34759
|
+
rpc: [ 'https://rpc.zebrocoin.app', 'https://rpc1.zebrocoin.app' ],
|
|
34760
|
+
faucets: [],
|
|
34761
|
+
nativeCurrency: { name: 'Zebrocoin', symbol: 'ZEBRO', decimals: 18 },
|
|
34762
|
+
infoURL: 'https://zebrocoin.app',
|
|
34763
|
+
shortName: 'zebro',
|
|
34764
|
+
chainId: 786786,
|
|
34765
|
+
networkId: 786786,
|
|
34766
|
+
icon: 'zebrocoin',
|
|
34767
|
+
explorers: [
|
|
34768
|
+
{
|
|
34769
|
+
name: 'Zebrocoin Explorer',
|
|
34770
|
+
url: 'https://explorer.zebrocoin.app',
|
|
34771
|
+
standard: 'EIP3091'
|
|
34772
|
+
},
|
|
34773
|
+
{
|
|
34774
|
+
name: 'Zebrocoin Explorer1',
|
|
34775
|
+
url: 'https://explorer1.zebrocoin.app',
|
|
34776
|
+
standard: 'EIP3091'
|
|
34777
|
+
}
|
|
34778
|
+
]
|
|
34779
|
+
},
|
|
34682
34780
|
{
|
|
34683
34781
|
name: 'OctaSpace',
|
|
34684
34782
|
chain: 'OCTA',
|
|
@@ -34905,6 +35003,26 @@ const chainArray = [
|
|
|
34905
35003
|
}
|
|
34906
35004
|
]
|
|
34907
35005
|
},
|
|
35006
|
+
{
|
|
35007
|
+
name: 'exSat Testnet',
|
|
35008
|
+
chain: 'exSat',
|
|
35009
|
+
icon: 'exsat',
|
|
35010
|
+
rpc: [ 'https://evm-tst3.exsat.network' ],
|
|
35011
|
+
faucets: [],
|
|
35012
|
+
nativeCurrency: { name: 'Bitcoin', symbol: 'BTC', decimals: 18 },
|
|
35013
|
+
infoURL: 'https://exsat.network/',
|
|
35014
|
+
shortName: 'txsat',
|
|
35015
|
+
chainId: 839999,
|
|
35016
|
+
networkId: 839999,
|
|
35017
|
+
explorers: [
|
|
35018
|
+
{
|
|
35019
|
+
name: 'exSat Testnet Explorer',
|
|
35020
|
+
url: 'https://scan-testnet.exsat.network',
|
|
35021
|
+
standard: 'EIP3091'
|
|
35022
|
+
}
|
|
35023
|
+
],
|
|
35024
|
+
parent: { type: 'L2', chain: 'eip155-1', bridges: [ { url: '' } ] }
|
|
35025
|
+
},
|
|
34908
35026
|
{
|
|
34909
35027
|
name: 'RUNEVM Testnet',
|
|
34910
35028
|
chain: 'RuneVM',
|