eth-chainlist 0.0.13 → 0.0.15
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 +81 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,21 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
### 0.0.15 (2022-11-22)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Maintenance
|
|
7
|
+
|
|
8
|
+
* **release:** 0.0.14 ([4e98511](https://github.com/poowf/eth-chainlist/commit/4e985117024f49b5ba7b90ea988c3dab946a02b5))
|
|
9
|
+
* update chain data ([17ddbad](https://github.com/poowf/eth-chainlist/commit/17ddbad01fbb54f5e884949faa9b7ec89b4f1da0))
|
|
10
|
+
|
|
11
|
+
### 0.0.14 (2022-11-21)
|
|
12
|
+
|
|
13
|
+
|
|
14
|
+
### Maintenance
|
|
15
|
+
|
|
16
|
+
* **release:** 0.0.13 ([9aa6de8](https://github.com/poowf/eth-chainlist/commit/9aa6de847402f69f00b23864214e612dd0e90d49))
|
|
17
|
+
* update chain data ([7baa55c](https://github.com/poowf/eth-chainlist/commit/7baa55c2628940398f5282aa95b19489c442598c))
|
|
18
|
+
|
|
3
19
|
### 0.0.13 (2022-11-19)
|
|
4
20
|
|
|
5
21
|
|
package/data/chain.js
CHANGED
|
@@ -1918,6 +1918,30 @@ const chainArray = [
|
|
|
1918
1918
|
}
|
|
1919
1919
|
]
|
|
1920
1920
|
},
|
|
1921
|
+
{
|
|
1922
|
+
name: 'DeBank Testnet',
|
|
1923
|
+
chain: 'DeBank',
|
|
1924
|
+
rpc: [],
|
|
1925
|
+
faucets: [],
|
|
1926
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
1927
|
+
infoURL: '',
|
|
1928
|
+
shortName: 'debank-testnet',
|
|
1929
|
+
chainId: 115,
|
|
1930
|
+
networkId: 115,
|
|
1931
|
+
explorers: []
|
|
1932
|
+
},
|
|
1933
|
+
{
|
|
1934
|
+
name: 'DeBank Mainnet',
|
|
1935
|
+
chain: 'DeBank',
|
|
1936
|
+
rpc: [],
|
|
1937
|
+
faucets: [],
|
|
1938
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
1939
|
+
infoURL: '',
|
|
1940
|
+
shortName: 'debank-mainnet',
|
|
1941
|
+
chainId: 116,
|
|
1942
|
+
networkId: 116,
|
|
1943
|
+
explorers: []
|
|
1944
|
+
},
|
|
1921
1945
|
{
|
|
1922
1946
|
name: 'Fuse Mainnet',
|
|
1923
1947
|
chain: 'FUSE',
|
|
@@ -5575,6 +5599,42 @@ const chainArray = [
|
|
|
5575
5599
|
}
|
|
5576
5600
|
]
|
|
5577
5601
|
},
|
|
5602
|
+
{
|
|
5603
|
+
name: 'Pandonet',
|
|
5604
|
+
chain: 'Pando',
|
|
5605
|
+
rpc: [ 'https://eth-rpc-api.pandoproject.org/rpc' ],
|
|
5606
|
+
faucets: [],
|
|
5607
|
+
nativeCurrency: { name: 'Pando token ', symbol: 'PTX', decimals: 18 },
|
|
5608
|
+
infoURL: 'https://www.pandoproject.org/',
|
|
5609
|
+
shortName: 'pando-mainnet',
|
|
5610
|
+
chainId: 3601,
|
|
5611
|
+
networkId: 3601,
|
|
5612
|
+
explorers: [
|
|
5613
|
+
{
|
|
5614
|
+
name: 'Pando Mainnet Explorer',
|
|
5615
|
+
url: 'https://explorer.pandoproject.org',
|
|
5616
|
+
standard: 'none'
|
|
5617
|
+
}
|
|
5618
|
+
]
|
|
5619
|
+
},
|
|
5620
|
+
{
|
|
5621
|
+
name: 'Pando Testnet',
|
|
5622
|
+
chain: 'Pando',
|
|
5623
|
+
rpc: [ 'https://testnet.ethrpc.pandoproject.org/rpc' ],
|
|
5624
|
+
faucets: [],
|
|
5625
|
+
nativeCurrency: { name: 'Pando token ', symbol: 'PTX', decimals: 18 },
|
|
5626
|
+
infoURL: 'https://www.pandoproject.org/',
|
|
5627
|
+
shortName: 'pando-testnet',
|
|
5628
|
+
chainId: 3602,
|
|
5629
|
+
networkId: 3602,
|
|
5630
|
+
explorers: [
|
|
5631
|
+
{
|
|
5632
|
+
name: 'Pando Testnet Explorer',
|
|
5633
|
+
url: 'https://testnet.explorer.pandoproject.org',
|
|
5634
|
+
standard: 'none'
|
|
5635
|
+
}
|
|
5636
|
+
]
|
|
5637
|
+
},
|
|
5578
5638
|
{
|
|
5579
5639
|
name: 'Metacodechain',
|
|
5580
5640
|
chain: 'metacode',
|
|
@@ -6152,6 +6212,21 @@ const chainArray = [
|
|
|
6152
6212
|
bridges: [ { url: 'https://beta-bridge.lif3.com/' } ]
|
|
6153
6213
|
}
|
|
6154
6214
|
},
|
|
6215
|
+
{
|
|
6216
|
+
name: 'PolySmartChain',
|
|
6217
|
+
chain: 'PSC',
|
|
6218
|
+
rpc: [
|
|
6219
|
+
'https://seed0.polysmartchain.com/',
|
|
6220
|
+
'https://seed1.polysmartchain.com/',
|
|
6221
|
+
'https://seed2.polysmartchain.com/'
|
|
6222
|
+
],
|
|
6223
|
+
faucets: [],
|
|
6224
|
+
nativeCurrency: { name: 'PSC', symbol: 'PSC', decimals: 18 },
|
|
6225
|
+
infoURL: 'https://www.polysmartchain.com/',
|
|
6226
|
+
shortName: 'psc',
|
|
6227
|
+
chainId: 6999,
|
|
6228
|
+
networkId: 6999
|
|
6229
|
+
},
|
|
6155
6230
|
{
|
|
6156
6231
|
name: 'Ella the heart',
|
|
6157
6232
|
chain: 'ella',
|
|
@@ -7222,7 +7297,12 @@ const chainArray = [
|
|
|
7222
7297
|
title: 'Proof Of Memes Mainnet',
|
|
7223
7298
|
chain: 'POM',
|
|
7224
7299
|
icon: 'pom',
|
|
7225
|
-
rpc: [
|
|
7300
|
+
rpc: [
|
|
7301
|
+
'https://mainnet-rpc.memescan.io',
|
|
7302
|
+
'https://mainnet-rpc2.memescan.io',
|
|
7303
|
+
'https://mainnet-rpc3.memescan.io',
|
|
7304
|
+
'https://mainnet-rpc4.memescan.io'
|
|
7305
|
+
],
|
|
7226
7306
|
faucets: [],
|
|
7227
7307
|
nativeCurrency: { name: 'Proof Of Memes', symbol: 'POM', decimals: 18 },
|
|
7228
7308
|
infoURL: 'https://proofofmemes.org',
|