eth-chainlist 0.0.212 → 0.0.213

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 CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ### 0.0.213 (2023-08-18)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.212 ([cc75423](https://github.com/poowf/eth-chainlist/commit/cc75423f6f565f825408df06c247c4d388341da2))
9
+ * update chain data ([fbba11b](https://github.com/poowf/eth-chainlist/commit/fbba11b062afbbe81d2203ab0fc719b22ba25450))
10
+
3
11
  ### 0.0.212 (2023-08-17)
4
12
 
5
13
 
package/data/chain.js CHANGED
@@ -8246,6 +8246,25 @@ const chainArray = [
8246
8246
  }
8247
8247
  ]
8248
8248
  },
8249
+ {
8250
+ name: 'Kiwi Subnet',
8251
+ chain: 'KIWI',
8252
+ rpc: [ 'https://subnets.avax.network/kiwi/testnet/rpc' ],
8253
+ features: [ { name: 'EIP1559' } ],
8254
+ faucets: [],
8255
+ nativeCurrency: { name: 'Shrapgas', symbol: 'SHRAP', decimals: 18 },
8256
+ infoURL: '',
8257
+ shortName: 'kiwi',
8258
+ chainId: 2037,
8259
+ networkId: 2037,
8260
+ explorers: [
8261
+ {
8262
+ name: 'KIWI Explorer',
8263
+ url: 'https://subnets-test.avax.network/kiwi',
8264
+ standard: 'EIP3091'
8265
+ }
8266
+ ]
8267
+ },
8249
8268
  {
8250
8269
  name: 'OriginTrail Parachain',
8251
8270
  chain: 'OTP',
@@ -8707,7 +8726,13 @@ const chainArray = [
8707
8726
  {
8708
8727
  name: 'SOMA Network Testnet',
8709
8728
  chain: 'SOMA',
8710
- rpc: [ 'https://data-testnet-v1.somanetwork.io/' ],
8729
+ rpc: [
8730
+ 'https://data-testnet-v1.somanetwork.io/',
8731
+ 'https://testnet-au-server-2.somanetwork.io',
8732
+ 'https://testnet-au-server-1.somanetwork.io',
8733
+ 'https://testnet-sg-server-1.somanetwork.io',
8734
+ 'https://testnet-sg-server-2.somanetwork.io'
8735
+ ],
8711
8736
  faucets: [ 'https://faucet.somanetwork.io' ],
8712
8737
  nativeCurrency: { name: 'SMA', symbol: 'tSMA', decimals: 18 },
8713
8738
  infoURL: 'https://somanetwork.io',
@@ -8748,7 +8773,12 @@ const chainArray = [
8748
8773
  {
8749
8774
  name: 'SOMA Network Mainnet',
8750
8775
  chain: 'SOMA',
8751
- rpc: [ 'https://data-mainnet-v1.somanetwork.io/' ],
8776
+ rpc: [
8777
+ 'https://data-mainnet-v1.somanetwork.io/',
8778
+ 'https://id-mainnet.somanetwork.io',
8779
+ 'https://hk-mainnet.somanetwork.io',
8780
+ 'https://sg-mainnet.somanetwork.io'
8781
+ ],
8752
8782
  faucets: [ 'https://airdrop.somanetwork.io' ],
8753
8783
  nativeCurrency: { name: 'Soma Native Token', symbol: 'SMA', decimals: 18 },
8754
8784
  infoURL: 'https://somanetwork.io',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.212",
3
+ "version": "0.0.213",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {