eth-chainlist 0.0.140 → 0.0.142
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 +60 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.142 (2023-05-04)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.141 ([15c6e08](https://github.com/poowf/eth-chainlist/commit/15c6e08b3f2d5ca3a0ca19c905d4a6613bde6412))
|
9
|
+
* update chain data ([a018df3](https://github.com/poowf/eth-chainlist/commit/a018df3191a4a538b6e32c6f604219be31af7de7))
|
10
|
+
|
11
|
+
### 0.0.141 (2023-05-03)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.140 ([9ede8c3](https://github.com/poowf/eth-chainlist/commit/9ede8c3cb358f8f5ea90acfb2d5a006aeb4dfaae))
|
17
|
+
* update chain data ([fc30c75](https://github.com/poowf/eth-chainlist/commit/fc30c75e734dc929494c5b1d5b16d3711ae414fa))
|
18
|
+
|
3
19
|
### 0.0.140 (2023-04-30)
|
4
20
|
|
5
21
|
|
package/data/chain.js
CHANGED
@@ -1761,6 +1761,26 @@ const chainArray = [
|
|
1761
1761
|
}
|
1762
1762
|
]
|
1763
1763
|
},
|
1764
|
+
{
|
1765
|
+
name: 'Six Protocol',
|
1766
|
+
chain: 'SIXNET',
|
1767
|
+
icon: 'six',
|
1768
|
+
rpc: [ 'https://sixnet-rpc-evm.sixprotocol.net' ],
|
1769
|
+
faucets: [],
|
1770
|
+
nativeCurrency: { name: 'SIX evm token', symbol: 'SIX', decimals: 18 },
|
1771
|
+
infoURL: 'https://six.network/',
|
1772
|
+
shortName: 'six',
|
1773
|
+
chainId: 98,
|
1774
|
+
networkId: 98,
|
1775
|
+
explorers: [
|
1776
|
+
{
|
1777
|
+
name: 'SIX Scan',
|
1778
|
+
url: 'https://sixscan.io/sixnet',
|
1779
|
+
standard: 'none',
|
1780
|
+
icon: 'six'
|
1781
|
+
}
|
1782
|
+
]
|
1783
|
+
},
|
1764
1784
|
{
|
1765
1785
|
name: 'POA Network Core',
|
1766
1786
|
chain: 'POA',
|
@@ -2296,6 +2316,26 @@ const chainArray = [
|
|
2296
2316
|
],
|
2297
2317
|
icon: 'alyx'
|
2298
2318
|
},
|
2319
|
+
{
|
2320
|
+
name: 'Deamchain Mainnet',
|
2321
|
+
chain: 'Deamchain',
|
2322
|
+
icon: 'deam',
|
2323
|
+
rpc: [ 'https://mainnet.deamchain.com' ],
|
2324
|
+
faucets: [],
|
2325
|
+
nativeCurrency: { name: 'Deamchain Native Token', symbol: 'DEAM', decimals: 18 },
|
2326
|
+
infoURL: 'https://deamchain.com',
|
2327
|
+
shortName: 'deam',
|
2328
|
+
chainId: 136,
|
2329
|
+
networkId: 136,
|
2330
|
+
explorers: [
|
2331
|
+
{
|
2332
|
+
name: 'Deamchain Block Explorer',
|
2333
|
+
url: 'https://scan.deamchain.com',
|
2334
|
+
standard: 'EIP3091',
|
2335
|
+
icon: 'deam'
|
2336
|
+
}
|
2337
|
+
]
|
2338
|
+
},
|
2299
2339
|
{
|
2300
2340
|
name: 'Polygon Mainnet',
|
2301
2341
|
chain: 'Polygon',
|
@@ -2925,6 +2965,26 @@ const chainArray = [
|
|
2925
2965
|
}
|
2926
2966
|
]
|
2927
2967
|
},
|
2968
|
+
{
|
2969
|
+
name: 'Deamchain Testnet',
|
2970
|
+
chain: 'Deamchain',
|
2971
|
+
icon: 'deam',
|
2972
|
+
rpc: [ 'https://testnet.deamchain.com' ],
|
2973
|
+
faucets: [ 'https://faucet.deamchain.com' ],
|
2974
|
+
nativeCurrency: { name: 'Deamchain Native Token', symbol: 'DEAM', decimals: 18 },
|
2975
|
+
infoURL: 'https://deamchain.com',
|
2976
|
+
shortName: 'deamtest',
|
2977
|
+
chainId: 236,
|
2978
|
+
networkId: 236,
|
2979
|
+
explorers: [
|
2980
|
+
{
|
2981
|
+
name: 'Deamchain Testnet Explorer',
|
2982
|
+
url: 'https://testnet-scan.deamchain.com',
|
2983
|
+
standard: 'EIP3091',
|
2984
|
+
icon: 'deam'
|
2985
|
+
}
|
2986
|
+
]
|
2987
|
+
},
|
2928
2988
|
{
|
2929
2989
|
name: 'Energy Web Chain',
|
2930
2990
|
chain: 'Energy Web Chain',
|