eth-chainlist 0.0.335 → 0.0.337
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 +79 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.337 (2024-02-10)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.336 ([3d40e63](https://github.com/poowf/eth-chainlist/commit/3d40e636fec2b95d1176b93c5819fed3422dafd8))
|
9
|
+
* update chain data ([7b34a69](https://github.com/poowf/eth-chainlist/commit/7b34a69ff304d45a0d6e8640635f912c2e58cf73))
|
10
|
+
|
11
|
+
### 0.0.336 (2024-02-07)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.335 ([6d95b6b](https://github.com/poowf/eth-chainlist/commit/6d95b6b0343627079c5035324b8492a08078c2d3))
|
17
|
+
* update chain data ([b476a49](https://github.com/poowf/eth-chainlist/commit/b476a49e1f73edd4f7ed0be45358277c9ba0bdb1))
|
18
|
+
|
3
19
|
### 0.0.335 (2024-02-06)
|
4
20
|
|
5
21
|
|
package/data/chain.js
CHANGED
@@ -5150,6 +5150,20 @@ const chainArray = [
|
|
5150
5150
|
}
|
5151
5151
|
]
|
5152
5152
|
},
|
5153
|
+
{
|
5154
|
+
name: 'Syndicate Chain',
|
5155
|
+
title: 'Syndicate Chain',
|
5156
|
+
chain: 'Syndicate',
|
5157
|
+
rpc: [ 'https://rpc-mainnet.syndicate.io' ],
|
5158
|
+
faucets: [],
|
5159
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
5160
|
+
infoURL: 'https://syndicate.io',
|
5161
|
+
shortName: 'syndicate-chain-mainnet',
|
5162
|
+
chainId: 510,
|
5163
|
+
networkId: 510,
|
5164
|
+
status: 'incubating',
|
5165
|
+
icon: 'syndicate'
|
5166
|
+
},
|
5153
5167
|
{
|
5154
5168
|
name: 'Double-A Chain Mainnet',
|
5155
5169
|
chain: 'AAC',
|
@@ -7488,10 +7502,12 @@ const chainArray = [
|
|
7488
7502
|
nativeCurrency: { name: 'DYM', symbol: 'DYM', decimals: 18 },
|
7489
7503
|
infoURL: 'https://dymension.xyz',
|
7490
7504
|
shortName: 'dymension',
|
7505
|
+
icon: 'dymension',
|
7491
7506
|
chainId: 1100,
|
7492
7507
|
networkId: 1100,
|
7493
|
-
explorers: [
|
7494
|
-
|
7508
|
+
explorers: [
|
7509
|
+
{ name: 'dym.fyi', url: 'https://dym.fyi', standard: 'EIP3091' }
|
7510
|
+
]
|
7495
7511
|
},
|
7496
7512
|
{
|
7497
7513
|
name: 'Polygon zkEVM',
|
@@ -9963,6 +9979,17 @@ const chainArray = [
|
|
9963
9979
|
}
|
9964
9980
|
]
|
9965
9981
|
},
|
9982
|
+
{
|
9983
|
+
name: 'Swan Saturn Testnet',
|
9984
|
+
chain: 'SWAN',
|
9985
|
+
rpc: [ 'https://saturn-rpc.swanchain.io' ],
|
9986
|
+
faucets: [],
|
9987
|
+
nativeCurrency: { name: 'SWANETH', symbol: 'SWAN', decimals: 18 },
|
9988
|
+
infoURL: 'https://swanchain.io/',
|
9989
|
+
shortName: 'swan',
|
9990
|
+
chainId: 2024,
|
9991
|
+
networkId: 2024
|
9992
|
+
},
|
9966
9993
|
{
|
9967
9994
|
name: 'Rangers Protocol Mainnet',
|
9968
9995
|
chain: 'Rangers',
|
@@ -12265,6 +12292,27 @@ const chainArray = [
|
|
12265
12292
|
}
|
12266
12293
|
]
|
12267
12294
|
},
|
12295
|
+
{
|
12296
|
+
name: 'Merlin Mainnet',
|
12297
|
+
title: 'Merlin Mainnet',
|
12298
|
+
chain: 'Merlin',
|
12299
|
+
rpc: [ 'https://rpc.merlinchain.io' ],
|
12300
|
+
faucets: [],
|
12301
|
+
nativeCurrency: { name: 'BTC', symbol: 'BTC', decimals: 18 },
|
12302
|
+
infoURL: 'https://merlinchain.io',
|
12303
|
+
shortName: 'Merlin-Mainnet',
|
12304
|
+
chainId: 4200,
|
12305
|
+
networkId: 4200,
|
12306
|
+
icon: 'merlin',
|
12307
|
+
explorers: [
|
12308
|
+
{
|
12309
|
+
name: 'blockscout',
|
12310
|
+
url: 'https://scan.merlinchain.io',
|
12311
|
+
icon: 'merlin',
|
12312
|
+
standard: 'EIP3091'
|
12313
|
+
}
|
12314
|
+
]
|
12315
|
+
},
|
12268
12316
|
{
|
12269
12317
|
name: 'LUKSO Testnet',
|
12270
12318
|
chain: 'LUKSO Testnet',
|
@@ -12752,6 +12800,34 @@ const chainArray = [
|
|
12752
12800
|
}
|
12753
12801
|
]
|
12754
12802
|
},
|
12803
|
+
{
|
12804
|
+
name: 'Syndicate Testnet',
|
12805
|
+
title: 'Syndicate Testnet',
|
12806
|
+
chain: 'Syndicate',
|
12807
|
+
rpc: [ 'https://rpc-testnet.syndicate.io' ],
|
12808
|
+
faucets: [],
|
12809
|
+
nativeCurrency: { name: 'S-Ether', symbol: 'ETH', decimals: 18 },
|
12810
|
+
infoURL: 'https://syndicate.io',
|
12811
|
+
shortName: 'syndicate-chain-testnet',
|
12812
|
+
chainId: 5100,
|
12813
|
+
networkId: 5100,
|
12814
|
+
status: 'incubating',
|
12815
|
+
icon: 'syndicate'
|
12816
|
+
},
|
12817
|
+
{
|
12818
|
+
name: 'Syndicate Frame Chain',
|
12819
|
+
title: 'Syndicate Frame Chain',
|
12820
|
+
chain: 'Syndicate Frame',
|
12821
|
+
rpc: [ 'https://rpc-frame.syndicate.io' ],
|
12822
|
+
faucets: [],
|
12823
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
12824
|
+
infoURL: 'https://syndicate.io',
|
12825
|
+
shortName: 'syndicate-chain-frame',
|
12826
|
+
chainId: 5101,
|
12827
|
+
networkId: 5101,
|
12828
|
+
status: 'incubating',
|
12829
|
+
icon: 'syndicate'
|
12830
|
+
},
|
12755
12831
|
{
|
12756
12832
|
name: 'Bahamut',
|
12757
12833
|
title: 'Bahamut mainnet',
|
@@ -21094,7 +21170,7 @@ const chainArray = [
|
|
21094
21170
|
chain: 'ETH',
|
21095
21171
|
status: 'active',
|
21096
21172
|
icon: 'taiko',
|
21097
|
-
rpc: [ 'https://rpc.katla.taiko.xyz' ],
|
21173
|
+
rpc: [ 'https://rpc.katla.taiko.xyz', 'wss://rpc.katla.taiko.xyz' ],
|
21098
21174
|
faucets: [],
|
21099
21175
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
21100
21176
|
infoURL: 'https://taiko.xyz',
|