eth-chainlist 0.0.141 → 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 +8 -0
- package/data/chain.js +40 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
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
|
+
|
3
11
|
### 0.0.141 (2023-05-03)
|
4
12
|
|
5
13
|
|
package/data/chain.js
CHANGED
@@ -2316,6 +2316,26 @@ const chainArray = [
|
|
2316
2316
|
],
|
2317
2317
|
icon: 'alyx'
|
2318
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
|
+
},
|
2319
2339
|
{
|
2320
2340
|
name: 'Polygon Mainnet',
|
2321
2341
|
chain: 'Polygon',
|
@@ -2945,6 +2965,26 @@ const chainArray = [
|
|
2945
2965
|
}
|
2946
2966
|
]
|
2947
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
|
+
},
|
2948
2988
|
{
|
2949
2989
|
name: 'Energy Web Chain',
|
2950
2990
|
chain: 'Energy Web Chain',
|