eth-chainlist 0.0.89 → 0.0.91
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 +49 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.91 (2023-03-03)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.90 ([687af50](https://github.com/poowf/eth-chainlist/commit/687af507328dd610c498c7c70c29c0773efeb7f5))
|
9
|
+
* update chain data ([d0e0739](https://github.com/poowf/eth-chainlist/commit/d0e0739bea871e2903c77e7af1ab6df79edfdca6))
|
10
|
+
|
11
|
+
### 0.0.90 (2023-03-02)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.89 ([e21a79c](https://github.com/poowf/eth-chainlist/commit/e21a79c8e2a0f08d1d92307cba525e6930ea33bb))
|
17
|
+
* update chain data ([5ea0d18](https://github.com/poowf/eth-chainlist/commit/5ea0d188a68319c5030012f5f372e796b2db987b))
|
18
|
+
|
3
19
|
### 0.0.89 (2023-03-01)
|
4
20
|
|
5
21
|
|
package/data/chain.js
CHANGED
@@ -5002,7 +5002,7 @@ const chainArray = [
|
|
5002
5002
|
name: 'Dogcoin Mainnet',
|
5003
5003
|
chain: 'DOGS',
|
5004
5004
|
icon: 'dogs',
|
5005
|
-
rpc: [ 'https://mainnet-rpc.dogcoin.
|
5005
|
+
rpc: [ 'https://mainnet-rpc.dogcoin.me' ],
|
5006
5006
|
faucets: [ 'https://faucet.dogcoin.network' ],
|
5007
5007
|
nativeCurrency: { name: 'Dogcoin', symbol: 'DOGS', decimals: 18 },
|
5008
5008
|
infoURL: 'https://dogcoin.network',
|
@@ -8251,6 +8251,24 @@ const chainArray = [
|
|
8251
8251
|
}
|
8252
8252
|
]
|
8253
8253
|
},
|
8254
|
+
{
|
8255
|
+
name: 'KLYNTAR',
|
8256
|
+
chain: 'KLY',
|
8257
|
+
rpc: [
|
8258
|
+
'https://evm.klyntar.org/kly_evm_rpc',
|
8259
|
+
'https://evm.klyntarscan.org/kly_evm_rpc'
|
8260
|
+
],
|
8261
|
+
faucets: [],
|
8262
|
+
nativeCurrency: { name: 'KLYNTAR', symbol: 'KLY', decimals: 18 },
|
8263
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
8264
|
+
infoURL: 'https://klyntar.org',
|
8265
|
+
shortName: 'kly',
|
8266
|
+
chainId: 7331,
|
8267
|
+
networkId: 7331,
|
8268
|
+
icon: 'klyntar',
|
8269
|
+
explorers: [],
|
8270
|
+
status: 'incubating'
|
8271
|
+
},
|
8254
8272
|
{
|
8255
8273
|
name: 'Shyft Mainnet',
|
8256
8274
|
chain: 'SHYFT',
|
@@ -9006,7 +9024,7 @@ const chainArray = [
|
|
9006
9024
|
name: 'Dogcoin Testnet',
|
9007
9025
|
chain: 'DOGS',
|
9008
9026
|
icon: 'dogs',
|
9009
|
-
rpc: [ 'https://testnet-rpc.dogcoin.
|
9027
|
+
rpc: [ 'https://testnet-rpc.dogcoin.me' ],
|
9010
9028
|
faucets: [ 'https://faucet.dogcoin.network' ],
|
9011
9029
|
nativeCurrency: { name: 'Dogcoin', symbol: 'DOGS', decimals: 18 },
|
9012
9030
|
infoURL: 'https://dogcoin.network',
|
@@ -12096,6 +12114,35 @@ const chainArray = [
|
|
12096
12114
|
}
|
12097
12115
|
]
|
12098
12116
|
},
|
12117
|
+
{
|
12118
|
+
name: 'Siberium Network',
|
12119
|
+
chain: 'SBR',
|
12120
|
+
rpc: [
|
12121
|
+
'https://rpc.main.siberium.net',
|
12122
|
+
'https://rpc.main.siberium.net.ru'
|
12123
|
+
],
|
12124
|
+
faucets: [],
|
12125
|
+
nativeCurrency: { name: 'Siberium', symbol: 'SBR', decimals: 18 },
|
12126
|
+
infoURL: 'https://siberium.net',
|
12127
|
+
shortName: 'sbr',
|
12128
|
+
chainId: 111111,
|
12129
|
+
networkId: 111111,
|
12130
|
+
icon: 'siberium',
|
12131
|
+
explorers: [
|
12132
|
+
{
|
12133
|
+
name: 'Siberium Mainnet Explorer - blockscout - 1',
|
12134
|
+
url: 'https://explorer.main.siberium.net',
|
12135
|
+
icon: 'siberium',
|
12136
|
+
standard: 'EIP3091'
|
12137
|
+
},
|
12138
|
+
{
|
12139
|
+
name: 'Siberium Mainnet Explorer - blockscout - 2',
|
12140
|
+
url: 'https://explorer.main.siberium.net.ru',
|
12141
|
+
icon: 'siberium',
|
12142
|
+
standard: 'EIP3091'
|
12143
|
+
}
|
12144
|
+
]
|
12145
|
+
},
|
12099
12146
|
{
|
12100
12147
|
name: 'ETND Chain Mainnets',
|
12101
12148
|
chain: 'ETND',
|