eth-chainlist 0.0.507 → 0.0.508
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 +117 -4
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,13 @@
|
|
|
1
1
|
# Changelog
|
|
2
2
|
|
|
3
|
+
### 0.0.508 (2024-10-05)
|
|
4
|
+
|
|
5
|
+
|
|
6
|
+
### Maintenance
|
|
7
|
+
|
|
8
|
+
* **release:** 0.0.507 ([d5cab33](https://github.com/poowf/eth-chainlist/commit/d5cab332bf4229967d5e8239b87a8e6f16d0d3e5))
|
|
9
|
+
* update chain data ([5ee8140](https://github.com/poowf/eth-chainlist/commit/5ee814032a2e12af1dd4aedaddf7e94e54c2fe72))
|
|
10
|
+
|
|
3
11
|
### 0.0.507 (2024-10-04)
|
|
4
12
|
|
|
5
13
|
|
package/data/chain.js
CHANGED
|
@@ -7112,6 +7112,52 @@ const chainArray = [
|
|
|
7112
7112
|
bridges: [ { url: 'https://redstone.xyz/deposit' } ]
|
|
7113
7113
|
}
|
|
7114
7114
|
},
|
|
7115
|
+
{
|
|
7116
|
+
name: 'Matchain',
|
|
7117
|
+
chain: 'Matchain',
|
|
7118
|
+
icon: 'matchain',
|
|
7119
|
+
rpc: [ 'https://rpc.matchain.io' ],
|
|
7120
|
+
faucets: [],
|
|
7121
|
+
nativeCurrency: { name: 'BNB', symbol: 'BNB', decimals: 18 },
|
|
7122
|
+
infoURL: 'https://www.matchain.io',
|
|
7123
|
+
shortName: 'Matchain',
|
|
7124
|
+
chainId: 698,
|
|
7125
|
+
networkId: 698,
|
|
7126
|
+
slip44: 714,
|
|
7127
|
+
explorers: [
|
|
7128
|
+
{
|
|
7129
|
+
name: 'Matchscan',
|
|
7130
|
+
url: 'https://matchscan.io',
|
|
7131
|
+
icon: 'matchain',
|
|
7132
|
+
standard: 'EIP3091'
|
|
7133
|
+
}
|
|
7134
|
+
],
|
|
7135
|
+
parent: {
|
|
7136
|
+
type: 'L2',
|
|
7137
|
+
chain: 'eip155-56',
|
|
7138
|
+
bridges: [ { url: 'https://bnb-bridge.matchain.io' } ]
|
|
7139
|
+
}
|
|
7140
|
+
},
|
|
7141
|
+
{
|
|
7142
|
+
name: 'Matchain Testnet',
|
|
7143
|
+
chain: 'Matchain',
|
|
7144
|
+
icon: 'matchain',
|
|
7145
|
+
rpc: [ 'https://testnet-rpc.matchain.io' ],
|
|
7146
|
+
faucets: [],
|
|
7147
|
+
nativeCurrency: { name: 'BNB', symbol: 'BNB', decimals: 18 },
|
|
7148
|
+
infoURL: 'https://www.matchain.io',
|
|
7149
|
+
shortName: 'tMatchain',
|
|
7150
|
+
chainId: 699,
|
|
7151
|
+
networkId: 699,
|
|
7152
|
+
explorers: [
|
|
7153
|
+
{
|
|
7154
|
+
name: 'Matchscan Testnet',
|
|
7155
|
+
url: 'https://testnet.matchscan.io',
|
|
7156
|
+
standard: 'EIP3091',
|
|
7157
|
+
icon: 'matchain'
|
|
7158
|
+
}
|
|
7159
|
+
]
|
|
7160
|
+
},
|
|
7115
7161
|
{
|
|
7116
7162
|
name: 'Star Social Testnet',
|
|
7117
7163
|
chain: 'SNS',
|
|
@@ -14172,19 +14218,19 @@ const chainArray = [
|
|
|
14172
14218
|
parent: { type: 'L2', chain: 'eip155-248' }
|
|
14173
14219
|
},
|
|
14174
14220
|
{
|
|
14175
|
-
name: '
|
|
14176
|
-
chain: '
|
|
14221
|
+
name: 'K2 Mainnet',
|
|
14222
|
+
chain: 'K2',
|
|
14177
14223
|
icon: 'karak',
|
|
14178
14224
|
rpc: [ 'https://rpc.karak.network' ],
|
|
14179
14225
|
faucets: [],
|
|
14180
14226
|
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
|
14181
14227
|
infoURL: 'https://karak.network',
|
|
14182
|
-
shortName: '
|
|
14228
|
+
shortName: 'K2-mainnet',
|
|
14183
14229
|
chainId: 2410,
|
|
14184
14230
|
networkId: 2410,
|
|
14185
14231
|
explorers: [
|
|
14186
14232
|
{
|
|
14187
|
-
name: '
|
|
14233
|
+
name: 'K2 Mainnet Explorer',
|
|
14188
14234
|
url: 'https://explorer.karak.network',
|
|
14189
14235
|
standard: 'EIP3091'
|
|
14190
14236
|
}
|
|
@@ -21279,6 +21325,24 @@ const chainArray = [
|
|
|
21279
21325
|
}
|
|
21280
21326
|
]
|
|
21281
21327
|
},
|
|
21328
|
+
{
|
|
21329
|
+
name: 'Tabi Testnetv2',
|
|
21330
|
+
chain: 'TabiNetworkv2',
|
|
21331
|
+
rpc: [ 'https://rpc.testnetv2.tabichain.com' ],
|
|
21332
|
+
faucets: [ 'https://carnival.tabichain.com' ],
|
|
21333
|
+
nativeCurrency: { name: 'Tabi', symbol: 'TABI', decimals: 18 },
|
|
21334
|
+
infoURL: 'https://www.tabichain.com',
|
|
21335
|
+
shortName: 'tabitestv2',
|
|
21336
|
+
chainId: 9788,
|
|
21337
|
+
networkId: 9788,
|
|
21338
|
+
explorers: [
|
|
21339
|
+
{
|
|
21340
|
+
name: 'Tabi Testnet V2 Explorer',
|
|
21341
|
+
url: 'https://testnetv2.tabiscan.com',
|
|
21342
|
+
standard: 'none'
|
|
21343
|
+
}
|
|
21344
|
+
]
|
|
21345
|
+
},
|
|
21282
21346
|
{
|
|
21283
21347
|
name: 'Tabi Testnet',
|
|
21284
21348
|
chain: 'TabiNetwork',
|
|
@@ -21588,6 +21652,25 @@ const chainArray = [
|
|
|
21588
21652
|
}
|
|
21589
21653
|
]
|
|
21590
21654
|
},
|
|
21655
|
+
{
|
|
21656
|
+
name: 'MFEV CHAIN MAINNET',
|
|
21657
|
+
chain: 'MFEV CHAIN',
|
|
21658
|
+
rpc: [ 'https://rpc.mfevscan.com' ],
|
|
21659
|
+
faucets: [],
|
|
21660
|
+
nativeCurrency: { name: 'MFEV', symbol: 'MFEV', decimals: 18 },
|
|
21661
|
+
infoURL: 'https://mfevscan.com',
|
|
21662
|
+
shortName: 'mfevscan',
|
|
21663
|
+
chainId: 9982,
|
|
21664
|
+
networkId: 9982,
|
|
21665
|
+
slip44: 108,
|
|
21666
|
+
explorers: [
|
|
21667
|
+
{
|
|
21668
|
+
name: 'MFEV CHAIN',
|
|
21669
|
+
url: 'https://mfevscan.com',
|
|
21670
|
+
standard: 'EIP3091'
|
|
21671
|
+
}
|
|
21672
|
+
]
|
|
21673
|
+
},
|
|
21591
21674
|
{
|
|
21592
21675
|
name: 'Agung Network',
|
|
21593
21676
|
chain: 'Agung',
|
|
@@ -28217,6 +28300,21 @@ const chainArray = [
|
|
|
28217
28300
|
}
|
|
28218
28301
|
]
|
|
28219
28302
|
},
|
|
28303
|
+
{
|
|
28304
|
+
name: 'Geist Mainnet',
|
|
28305
|
+
chain: 'Geist',
|
|
28306
|
+
rpc: [],
|
|
28307
|
+
faucets: [],
|
|
28308
|
+
nativeCurrency: { name: 'Aavegotchi GHST Token', symbol: 'GHST', decimals: 18 },
|
|
28309
|
+
features: [],
|
|
28310
|
+
infoURL: 'https://playongeist.com',
|
|
28311
|
+
shortName: 'Geist',
|
|
28312
|
+
chainId: 63157,
|
|
28313
|
+
networkId: 63157,
|
|
28314
|
+
status: 'incubating',
|
|
28315
|
+
icon: 'geist',
|
|
28316
|
+
explorers: []
|
|
28317
|
+
},
|
|
28220
28318
|
{
|
|
28221
28319
|
name: 'CratD2C Testnet',
|
|
28222
28320
|
chain: 'CRATD2C',
|
|
@@ -33608,6 +33706,21 @@ const chainArray = [
|
|
|
33608
33706
|
}
|
|
33609
33707
|
]
|
|
33610
33708
|
},
|
|
33709
|
+
{
|
|
33710
|
+
name: 'Polter Testnet',
|
|
33711
|
+
chain: 'Geist',
|
|
33712
|
+
rpc: [],
|
|
33713
|
+
faucets: [],
|
|
33714
|
+
nativeCurrency: { name: 'Polter GHST', symbol: 'GHST', decimals: 18 },
|
|
33715
|
+
features: [],
|
|
33716
|
+
infoURL: 'https://playongeist.com',
|
|
33717
|
+
shortName: 'poltergeist',
|
|
33718
|
+
chainId: 631571,
|
|
33719
|
+
networkId: 631571,
|
|
33720
|
+
status: 'incubating',
|
|
33721
|
+
icon: 'polterGeist',
|
|
33722
|
+
explorers: []
|
|
33723
|
+
},
|
|
33611
33724
|
{
|
|
33612
33725
|
name: 'Bear Network Chain Mainnet',
|
|
33613
33726
|
chain: 'BRNKC',
|