eth-chainlist 0.0.305 → 0.0.307
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 +84 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.307 (2023-12-18)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.306 ([56dcbcc](https://github.com/poowf/eth-chainlist/commit/56dcbcc57f375e5fd1b179ae4a9e12fc7842003c))
|
9
|
+
* update chain data ([a665685](https://github.com/poowf/eth-chainlist/commit/a665685c1923c592992f035430db64b10e7549a7))
|
10
|
+
|
11
|
+
### 0.0.306 (2023-12-16)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.305 ([5341204](https://github.com/poowf/eth-chainlist/commit/53412040e6fd983dd428fe027d7b8ec89eb835e7))
|
17
|
+
* update chain data ([f697d3c](https://github.com/poowf/eth-chainlist/commit/f697d3cbee93dc835183bee87641ace289875326))
|
18
|
+
|
3
19
|
### 0.0.305 (2023-12-15)
|
4
20
|
|
5
21
|
|
package/data/chain.js
CHANGED
@@ -9042,6 +9042,24 @@ const chainArray = [
|
|
9042
9042
|
slip44: 1,
|
9043
9043
|
icon: 'atlr'
|
9044
9044
|
},
|
9045
|
+
{
|
9046
|
+
name: 'RedeCoin',
|
9047
|
+
chain: 'REDEV2',
|
9048
|
+
rpc: [ 'https://rpc2.redecoin.eu' ],
|
9049
|
+
faucets: [],
|
9050
|
+
nativeCurrency: { name: 'RedeCoin', symbol: 'REDEV2', decimals: 18 },
|
9051
|
+
infoURL: 'https://www.redecoin.eu',
|
9052
|
+
shortName: 'rede',
|
9053
|
+
chainId: 1972,
|
9054
|
+
networkId: 1972,
|
9055
|
+
explorers: [
|
9056
|
+
{
|
9057
|
+
name: 'RedeCoin Explorer',
|
9058
|
+
url: 'https://explorer3.redecoin.eu',
|
9059
|
+
standard: 'none'
|
9060
|
+
}
|
9061
|
+
]
|
9062
|
+
},
|
9045
9063
|
{
|
9046
9064
|
name: 'ONUS Chain Mainnet',
|
9047
9065
|
title: 'ONUS Chain Mainnet',
|
@@ -9179,6 +9197,26 @@ const chainArray = [
|
|
9179
9197
|
}
|
9180
9198
|
]
|
9181
9199
|
},
|
9200
|
+
{
|
9201
|
+
name: 'Kyoto Testnet',
|
9202
|
+
chain: 'KYOTO',
|
9203
|
+
rpc: [ 'https://rpc.testnet.kyotoprotocol.io:8545' ],
|
9204
|
+
faucets: [ 'https://faucet.kyotoprotocol.io' ],
|
9205
|
+
nativeCurrency: { name: 'Kyoto', symbol: 'KYOTO', decimals: 18 },
|
9206
|
+
features: [ { name: 'EIP155' } ],
|
9207
|
+
infoURL: 'https://kyotoprotocol.io',
|
9208
|
+
shortName: 'kyoto-testnet',
|
9209
|
+
chainId: 1998,
|
9210
|
+
networkId: 1998,
|
9211
|
+
slip44: 1,
|
9212
|
+
explorers: [
|
9213
|
+
{
|
9214
|
+
name: 'Kyotoscan',
|
9215
|
+
url: 'https://testnet.kyotoscan.io',
|
9216
|
+
standard: 'EIP3091'
|
9217
|
+
}
|
9218
|
+
]
|
9219
|
+
},
|
9182
9220
|
{
|
9183
9221
|
name: 'Dogechain Mainnet',
|
9184
9222
|
chain: 'DC',
|
@@ -15255,6 +15293,26 @@ const chainArray = [
|
|
15255
15293
|
}
|
15256
15294
|
]
|
15257
15295
|
},
|
15296
|
+
{
|
15297
|
+
name: 'Immutable zkEVM',
|
15298
|
+
chain: 'Immutable zkEVM',
|
15299
|
+
rpc: [ 'https://rpc.immutable.com' ],
|
15300
|
+
faucets: [ 'https://docs.immutable.com/docs/zkEVM/guides/faucet' ],
|
15301
|
+
nativeCurrency: { name: 'IMX', symbol: 'IMX', decimals: 18 },
|
15302
|
+
infoURL: 'https://www.immutable.com',
|
15303
|
+
shortName: 'imx',
|
15304
|
+
chainId: 13371,
|
15305
|
+
networkId: 13371,
|
15306
|
+
icon: 'immutable',
|
15307
|
+
explorers: [
|
15308
|
+
{
|
15309
|
+
name: 'Immutable explorer',
|
15310
|
+
url: 'https://explorer.immutable.com',
|
15311
|
+
standard: 'EIP3091',
|
15312
|
+
icon: 'immutable'
|
15313
|
+
}
|
15314
|
+
]
|
15315
|
+
},
|
15258
15316
|
{
|
15259
15317
|
name: 'Phoenix Mainnet',
|
15260
15318
|
chain: 'Phoenix',
|
@@ -19944,6 +20002,27 @@ const chainArray = [
|
|
19944
20002
|
}
|
19945
20003
|
]
|
19946
20004
|
},
|
20005
|
+
{
|
20006
|
+
name: 'CONET Sebolia Testnet',
|
20007
|
+
chain: 'CONET',
|
20008
|
+
rpc: [ 'https://rpc1.conet.network' ],
|
20009
|
+
faucets: [],
|
20010
|
+
nativeCurrency: { name: 'CONET Sebolia', symbol: 'CONET', decimals: 18 },
|
20011
|
+
features: [ { name: 'EIP155' } ],
|
20012
|
+
infoURL: 'https://conet.network',
|
20013
|
+
shortName: 'conet-sebolia',
|
20014
|
+
chainId: 224422,
|
20015
|
+
networkId: 224422,
|
20016
|
+
slip44: 1,
|
20017
|
+
icon: 'conet',
|
20018
|
+
explorers: [
|
20019
|
+
{
|
20020
|
+
name: 'CONET Scan',
|
20021
|
+
url: 'https://scan.conet.network',
|
20022
|
+
standard: 'EIP3091'
|
20023
|
+
}
|
20024
|
+
]
|
20025
|
+
},
|
19947
20026
|
{
|
19948
20027
|
name: 'HashKey Chain Testnet',
|
19949
20028
|
chain: 'HashKey',
|
@@ -20504,7 +20583,10 @@ const chainArray = [
|
|
20504
20583
|
name: 'Arbitrum Sepolia',
|
20505
20584
|
title: 'Arbitrum Sepolia Rollup Testnet',
|
20506
20585
|
chain: 'ETH',
|
20507
|
-
rpc: [
|
20586
|
+
rpc: [
|
20587
|
+
'https://sepolia-rollup.arbitrum.io/rpc',
|
20588
|
+
'https://arbitrum-sepolia.infura.io/v3/${INFURA_API_KEY}'
|
20589
|
+
],
|
20508
20590
|
faucets: [],
|
20509
20591
|
nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 },
|
20510
20592
|
infoURL: 'https://arbitrum.io',
|
@@ -21134,7 +21216,7 @@ const chainArray = [
|
|
21134
21216
|
shortName: 'ria-dev',
|
21135
21217
|
nativeCurrency: { name: 'RIA', symbol: 'RIA', decimals: 18 },
|
21136
21218
|
rpc: [ 'https://rpc.evm.dusk-2.devnet.astria.org' ],
|
21137
|
-
faucets: [ 'https://faucet.evm.dusk-
|
21219
|
+
faucets: [ 'https://faucet.evm.dusk-2.devnet.astria.org/' ],
|
21138
21220
|
explorers: [
|
21139
21221
|
{
|
21140
21222
|
name: 'Astria EVM Dusknet Explorer',
|