eth-chainlist 0.0.151 → 0.0.152
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 +42 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.152 (2023-05-19)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.151 ([121083e](https://github.com/poowf/eth-chainlist/commit/121083e734ab8e3ead35b641e53670e56cfdb82c))
|
9
|
+
* update chain data ([d6f04dd](https://github.com/poowf/eth-chainlist/commit/d6f04dd9428e48f90a5062ac859af03a521a94df))
|
10
|
+
|
3
11
|
### 0.0.151 (2023-05-18)
|
4
12
|
|
5
13
|
|
package/data/chain.js
CHANGED
@@ -1699,6 +1699,27 @@ const chainArray = [
|
|
1699
1699
|
],
|
1700
1700
|
parent: { chain: 'eip155-90', type: 'shard' }
|
1701
1701
|
},
|
1702
|
+
{
|
1703
|
+
name: 'SwissDLT',
|
1704
|
+
chain: 'SDLT',
|
1705
|
+
rpc: [ 'https://rpc.swissdlt.ch' ],
|
1706
|
+
faucets: [],
|
1707
|
+
nativeCurrency: { name: 'BCTS', symbol: 'BCTS', decimals: 18 },
|
1708
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
1709
|
+
infoURL: 'https://bcts.ch',
|
1710
|
+
shortName: 'sdlt',
|
1711
|
+
chainId: 94,
|
1712
|
+
networkId: 94,
|
1713
|
+
icon: 'bcts',
|
1714
|
+
explorers: [
|
1715
|
+
{
|
1716
|
+
name: 'SwissDLT Explorer',
|
1717
|
+
url: 'https://explorer.swissdlt.ch',
|
1718
|
+
icon: 'bcts',
|
1719
|
+
standard: 'EIP3091'
|
1720
|
+
}
|
1721
|
+
]
|
1722
|
+
},
|
1702
1723
|
{
|
1703
1724
|
name: 'CryptoKylin Testnet',
|
1704
1725
|
chain: 'EOS',
|
@@ -7906,6 +7927,27 @@ const chainArray = [
|
|
7906
7927
|
}
|
7907
7928
|
]
|
7908
7929
|
},
|
7930
|
+
{
|
7931
|
+
name: 'SOMA Network Mainnet',
|
7932
|
+
chain: 'SOMA',
|
7933
|
+
rpc: [ 'https://data-mainnet-v1.somanetwork.io/' ],
|
7934
|
+
faucets: [ 'https://airdrop.somanetwork.io' ],
|
7935
|
+
nativeCurrency: { name: 'Soma Native Token', symbol: 'SMA', decimals: 18 },
|
7936
|
+
infoURL: 'https://somanetwork.io',
|
7937
|
+
shortName: 'smam',
|
7938
|
+
chainId: 2332,
|
7939
|
+
networkId: 2332,
|
7940
|
+
icon: 'soma',
|
7941
|
+
status: 'incubating',
|
7942
|
+
explorers: [
|
7943
|
+
{
|
7944
|
+
name: 'SOMA Explorer Mainnet',
|
7945
|
+
icon: 'soma',
|
7946
|
+
url: 'https://somascan.io',
|
7947
|
+
standard: 'none'
|
7948
|
+
}
|
7949
|
+
]
|
7950
|
+
},
|
7909
7951
|
{
|
7910
7952
|
name: 'Kroma Sepolia',
|
7911
7953
|
title: 'Kroma Testnet Sepolia',
|