eth-chainlist 0.0.64 → 0.0.66
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 +42 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.66 (2023-01-27)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.65 ([ebc973e](https://github.com/poowf/eth-chainlist/commit/ebc973edd4849a1a24c9ac965f0f621484153a56))
|
9
|
+
* update chain data ([c51b92a](https://github.com/poowf/eth-chainlist/commit/c51b92af860919c5fd9f1eb453f6cb7008b09f24))
|
10
|
+
|
11
|
+
### 0.0.65 (2023-01-26)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.64 ([78b4f6c](https://github.com/poowf/eth-chainlist/commit/78b4f6c2d64044c30c22fef2d4ef53de43c452bd))
|
17
|
+
* update chain data ([63afab4](https://github.com/poowf/eth-chainlist/commit/63afab493493c1d2aeee6b9bf5bc18fe9f48c161))
|
18
|
+
|
3
19
|
### 0.0.64 (2023-01-24)
|
4
20
|
|
5
21
|
|
package/data/chain.js
CHANGED
@@ -6195,6 +6195,46 @@ const chainArray = [
|
|
6195
6195
|
}
|
6196
6196
|
]
|
6197
6197
|
},
|
6198
|
+
{
|
6199
|
+
name: 'TCG Verse Mainnet',
|
6200
|
+
chain: 'TCG Verse',
|
6201
|
+
icon: 'tcg_verse',
|
6202
|
+
rpc: [ 'https://rpc.tcgverse.xyz' ],
|
6203
|
+
faucets: [],
|
6204
|
+
nativeCurrency: { name: 'OAS', symbol: 'OAS', decimals: 18 },
|
6205
|
+
infoURL: 'https://tcgverse.xyz/',
|
6206
|
+
shortName: 'TCGV',
|
6207
|
+
chainId: 2400,
|
6208
|
+
networkId: 2400,
|
6209
|
+
explorers: [
|
6210
|
+
{
|
6211
|
+
name: 'TCG Verse Explorer',
|
6212
|
+
url: 'https://explorer.tcgverse.xyz',
|
6213
|
+
standard: 'EIP3091'
|
6214
|
+
}
|
6215
|
+
],
|
6216
|
+
parent: { type: 'L2', chain: 'eip155-248' }
|
6217
|
+
},
|
6218
|
+
{
|
6219
|
+
name: 'XODEX',
|
6220
|
+
chain: 'XODEX',
|
6221
|
+
rpc: [ 'https://mainnet.xo-dex.com/rpc', 'https://xo-dex.io' ],
|
6222
|
+
faucets: [],
|
6223
|
+
nativeCurrency: { name: 'XODEX Native Token', symbol: 'XODEX', decimals: 18 },
|
6224
|
+
infoURL: 'https://xo-dex.com',
|
6225
|
+
shortName: 'xodex',
|
6226
|
+
chainId: 2415,
|
6227
|
+
networkId: 10,
|
6228
|
+
icon: 'xodex',
|
6229
|
+
explorers: [
|
6230
|
+
{
|
6231
|
+
name: 'XODEX Explorer',
|
6232
|
+
url: 'https://explorer.xo-dex.com',
|
6233
|
+
standard: 'EIP3091',
|
6234
|
+
icon: 'xodex'
|
6235
|
+
}
|
6236
|
+
]
|
6237
|
+
},
|
6198
6238
|
{
|
6199
6239
|
name: 'Kortho Mainnet',
|
6200
6240
|
chain: 'Kortho Chain',
|
@@ -11592,10 +11632,10 @@ const chainArray = [
|
|
11592
11632
|
{
|
11593
11633
|
name: 'ethereum Fair',
|
11594
11634
|
chainId: 513100,
|
11595
|
-
networkId:
|
11635
|
+
networkId: 513100,
|
11596
11636
|
shortName: 'etf',
|
11597
11637
|
chain: 'ETF',
|
11598
|
-
nativeCurrency: { name: '
|
11638
|
+
nativeCurrency: { name: 'EthereumFair', symbol: 'ETHF', decimals: 18 },
|
11599
11639
|
rpc: [ 'https://rpc.etherfair.org' ],
|
11600
11640
|
faucets: [],
|
11601
11641
|
explorers: [
|