eth-chainlist 0.0.370 → 0.0.372
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 +286 -8
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.372 (2024-04-08)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.371 ([87f3b81](https://github.com/poowf/eth-chainlist/commit/87f3b812cd8f24c0533900e3f037a7173c1d2b47))
|
9
|
+
* update chain data ([7596f10](https://github.com/poowf/eth-chainlist/commit/7596f10b491430baa01e920d08b4bcf265b00a91))
|
10
|
+
|
11
|
+
### 0.0.371 (2024-04-05)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.370 ([88d8612](https://github.com/poowf/eth-chainlist/commit/88d8612a9cfbef50b8516bf1494f7e6a5376ea24))
|
17
|
+
* update chain data ([e7249e5](https://github.com/poowf/eth-chainlist/commit/e7249e548cfeb0e20dbcc94b8d07c3b389d43683))
|
18
|
+
|
3
19
|
### 0.0.370 (2024-04-04)
|
4
20
|
|
5
21
|
|
package/data/chain.js
CHANGED
@@ -3215,6 +3215,20 @@ const chainArray = [
|
|
3215
3215
|
}
|
3216
3216
|
]
|
3217
3217
|
},
|
3218
|
+
{
|
3219
|
+
name: 'Omni',
|
3220
|
+
chain: 'Omni',
|
3221
|
+
status: 'incubating',
|
3222
|
+
rpc: [],
|
3223
|
+
features: [ { name: 'EIP155' } ],
|
3224
|
+
faucets: [],
|
3225
|
+
nativeCurrency: { name: 'Omni', symbol: 'OMNI', decimals: 18 },
|
3226
|
+
infoURL: 'https://docs.omni.network/',
|
3227
|
+
shortName: 'omni',
|
3228
|
+
chainId: 166,
|
3229
|
+
networkId: 166,
|
3230
|
+
slip44: 1
|
3231
|
+
},
|
3218
3232
|
{
|
3219
3233
|
name: 'Atoshi Testnet',
|
3220
3234
|
chain: 'ATOSHI',
|
@@ -3585,7 +3599,7 @@ const chainArray = [
|
|
3585
3599
|
chain: 'VinuChain Testnet',
|
3586
3600
|
rpc: [ 'https://vinufoundation-rpc.com' ],
|
3587
3601
|
faucets: [],
|
3588
|
-
nativeCurrency: { name: 'VinuChain', symbol: '
|
3602
|
+
nativeCurrency: { name: 'VinuChain', symbol: 'VC', decimals: 18 },
|
3589
3603
|
infoURL: 'https://vitainu.org',
|
3590
3604
|
shortName: 'VCTEST',
|
3591
3605
|
chainId: 206,
|
@@ -3606,7 +3620,7 @@ const chainArray = [
|
|
3606
3620
|
chain: 'VinuChain',
|
3607
3621
|
rpc: [ 'https://vinuchain-rpc.com' ],
|
3608
3622
|
faucets: [],
|
3609
|
-
nativeCurrency: { name: 'VinuChain', symbol: '
|
3623
|
+
nativeCurrency: { name: 'VinuChain', symbol: 'VC', decimals: 18 },
|
3610
3624
|
infoURL: 'https://vitainu.org',
|
3611
3625
|
shortName: 'VC',
|
3612
3626
|
chainId: 207,
|
@@ -4109,6 +4123,56 @@ const chainArray = [
|
|
4109
4123
|
}
|
4110
4124
|
]
|
4111
4125
|
},
|
4126
|
+
{
|
4127
|
+
name: 'Neura',
|
4128
|
+
title: 'Neura Mainnet',
|
4129
|
+
chain: 'NEURA',
|
4130
|
+
icon: 'neura',
|
4131
|
+
rpc: [],
|
4132
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
4133
|
+
faucets: [],
|
4134
|
+
nativeCurrency: { name: 'Ankr', symbol: 'ANKR', decimals: 18 },
|
4135
|
+
infoURL: 'https://www.neuraprotocol.io/',
|
4136
|
+
shortName: 'neura',
|
4137
|
+
chainId: 266,
|
4138
|
+
networkId: 266,
|
4139
|
+
status: 'incubating',
|
4140
|
+
explorers: []
|
4141
|
+
},
|
4142
|
+
{
|
4143
|
+
name: 'Neura Testnet',
|
4144
|
+
title: 'Neura Testnet',
|
4145
|
+
chain: 'NEURA',
|
4146
|
+
icon: 'neura',
|
4147
|
+
rpc: [],
|
4148
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
4149
|
+
faucets: [],
|
4150
|
+
nativeCurrency: { name: 'Testnet Ankr', symbol: 'ANKR', decimals: 18 },
|
4151
|
+
infoURL: 'https://www.neuraprotocol.io/',
|
4152
|
+
shortName: 'tneura',
|
4153
|
+
chainId: 267,
|
4154
|
+
networkId: 267,
|
4155
|
+
explorers: [],
|
4156
|
+
status: 'incubating',
|
4157
|
+
slip44: 1
|
4158
|
+
},
|
4159
|
+
{
|
4160
|
+
name: 'Neura Devnet',
|
4161
|
+
title: 'Neura Devnet',
|
4162
|
+
chain: 'NEURA',
|
4163
|
+
icon: 'neura',
|
4164
|
+
rpc: [],
|
4165
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
4166
|
+
faucets: [],
|
4167
|
+
nativeCurrency: { name: 'Devnet Ankr', symbol: 'ANKR', decimals: 18 },
|
4168
|
+
infoURL: 'https://www.neuraprotocol.io/',
|
4169
|
+
shortName: 'dneura',
|
4170
|
+
chainId: 268,
|
4171
|
+
networkId: 268,
|
4172
|
+
explorers: [],
|
4173
|
+
status: 'incubating',
|
4174
|
+
slip44: 1
|
4175
|
+
},
|
4112
4176
|
{
|
4113
4177
|
name: 'High Performance Blockchain',
|
4114
4178
|
chain: 'HPB',
|
@@ -4213,6 +4277,25 @@ const chainArray = [
|
|
4213
4277
|
bridges: [ { url: 'https://bridge.zksync.io/' } ]
|
4214
4278
|
}
|
4215
4279
|
},
|
4280
|
+
{
|
4281
|
+
name: 'Cronos zkEVM Testnet',
|
4282
|
+
chain: 'CronosZkEVMTestnet',
|
4283
|
+
rpc: [ 'https://rpc-zkevm-t0.cronos.org' ],
|
4284
|
+
faucets: [ 'https://zkevm-t0.cronos.org/faucet' ],
|
4285
|
+
nativeCurrency: { name: 'Cronos zkEVM Test Coin', symbol: 'TCRO', decimals: 18 },
|
4286
|
+
infoURL: 'https://docs.cronos.org/cronos-zkevm-chain/introduction-to-cronos-zkevm-chain-testnet',
|
4287
|
+
shortName: 'zktcro',
|
4288
|
+
chainId: 282,
|
4289
|
+
networkId: 282,
|
4290
|
+
slip44: 1,
|
4291
|
+
explorers: [
|
4292
|
+
{
|
4293
|
+
name: 'Cronos zkEVM Testnet Explorer',
|
4294
|
+
url: 'https://zkevm-t0.cronos.org/explorer',
|
4295
|
+
standard: 'none'
|
4296
|
+
}
|
4297
|
+
]
|
4298
|
+
},
|
4216
4299
|
{
|
4217
4300
|
name: 'Boba Network',
|
4218
4301
|
chain: 'ETH',
|
@@ -4505,6 +4588,24 @@ const chainArray = [
|
|
4505
4588
|
}
|
4506
4589
|
]
|
4507
4590
|
},
|
4591
|
+
{
|
4592
|
+
name: 'Furtheon',
|
4593
|
+
chain: 'Furtheon Network',
|
4594
|
+
rpc: [ 'https://rpc.furtheon.org' ],
|
4595
|
+
faucets: [],
|
4596
|
+
nativeCurrency: { name: 'Furtheon', symbol: 'FTH', decimals: 18 },
|
4597
|
+
infoURL: 'https://furtheon.org/',
|
4598
|
+
shortName: 'furtheon',
|
4599
|
+
chainId: 308,
|
4600
|
+
networkId: 308,
|
4601
|
+
explorers: [
|
4602
|
+
{
|
4603
|
+
name: 'furthscan',
|
4604
|
+
url: 'http://furthscan.com',
|
4605
|
+
standard: 'EIP3091'
|
4606
|
+
}
|
4607
|
+
]
|
4608
|
+
},
|
4508
4609
|
{
|
4509
4610
|
name: 'Wyzth Testnet',
|
4510
4611
|
chain: 'WYZ',
|
@@ -5616,6 +5717,26 @@ const chainArray = [
|
|
5616
5717
|
}
|
5617
5718
|
]
|
5618
5719
|
},
|
5720
|
+
{
|
5721
|
+
name: 'OpTrust Mainnet',
|
5722
|
+
chain: 'OpTrust',
|
5723
|
+
rpc: [ 'https://rpc.optrust.io' ],
|
5724
|
+
faucets: [],
|
5725
|
+
nativeCurrency: { name: 'BSC', symbol: 'BNB', decimals: 18 },
|
5726
|
+
infoURL: 'https://optrust.io',
|
5727
|
+
shortName: 'optrust',
|
5728
|
+
chainId: 537,
|
5729
|
+
networkId: 537,
|
5730
|
+
icon: 'optrust',
|
5731
|
+
explorers: [
|
5732
|
+
{
|
5733
|
+
name: 'OpTrust explorer',
|
5734
|
+
url: 'https://scan.optrust.io',
|
5735
|
+
icon: 'optrust',
|
5736
|
+
standard: 'none'
|
5737
|
+
}
|
5738
|
+
]
|
5739
|
+
},
|
5619
5740
|
{
|
5620
5741
|
name: 'PAWCHAIN Testnet',
|
5621
5742
|
chain: 'PAW',
|
@@ -9498,6 +9619,31 @@ const chainArray = [
|
|
9498
9619
|
bridges: [ { url: 'https://testnet-bridge.mintchain.io' } ]
|
9499
9620
|
}
|
9500
9621
|
},
|
9622
|
+
{
|
9623
|
+
name: 'Mint Sepolia Testnet',
|
9624
|
+
chain: 'ETH',
|
9625
|
+
rpc: [ 'https://sepolia-testnet-rpc.mintchain.io' ],
|
9626
|
+
faucets: [],
|
9627
|
+
nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 },
|
9628
|
+
infoURL: 'https://www.mintchain.io',
|
9629
|
+
shortName: 'mintsepoliatest',
|
9630
|
+
chainId: 1687,
|
9631
|
+
networkId: 1687,
|
9632
|
+
icon: 'mintTestnet',
|
9633
|
+
explorers: [
|
9634
|
+
{
|
9635
|
+
name: 'blockscout',
|
9636
|
+
url: 'https://sepolia-testnet-explorer.mintchain.io',
|
9637
|
+
icon: 'mintTestnet',
|
9638
|
+
standard: 'EIP3091'
|
9639
|
+
}
|
9640
|
+
],
|
9641
|
+
parent: {
|
9642
|
+
type: 'L2',
|
9643
|
+
chain: 'eip155-1',
|
9644
|
+
bridges: [ { url: 'https://sepolia-testnet-bridge.mintchain.io' } ]
|
9645
|
+
}
|
9646
|
+
},
|
9501
9647
|
{
|
9502
9648
|
name: 'LUDAN Mainnet',
|
9503
9649
|
chain: 'LUDAN',
|
@@ -10715,9 +10861,13 @@ const chainArray = [
|
|
10715
10861
|
chain: 'CFG',
|
10716
10862
|
icon: 'centrifuge',
|
10717
10863
|
rpc: [
|
10718
|
-
'
|
10864
|
+
'https://fullnode.centrifuge.io',
|
10865
|
+
'wss://fullnode.centrifuge.io',
|
10866
|
+
'https://centrifuge-parachain.api.onfinality.io/public',
|
10719
10867
|
'wss://centrifuge-parachain.api.onfinality.io/public-ws',
|
10868
|
+
'https://centrifuge-rpc.dwellir.com',
|
10720
10869
|
'wss://centrifuge-rpc.dwellir.com',
|
10870
|
+
'https://rpc-centrifuge.luckyfriday.io',
|
10721
10871
|
'wss://rpc-centrifuge.luckyfriday.io'
|
10722
10872
|
],
|
10723
10873
|
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
@@ -12031,6 +12181,25 @@ const chainArray = [
|
|
12031
12181
|
bridges: [ { url: 'https://gateway.boba.network' } ]
|
12032
12182
|
}
|
12033
12183
|
},
|
12184
|
+
{
|
12185
|
+
name: 'Elux Chain',
|
12186
|
+
chain: 'ELUX',
|
12187
|
+
icon: 'eluxchain',
|
12188
|
+
rpc: [ 'https://rpc.eluxscan.com' ],
|
12189
|
+
faucets: [],
|
12190
|
+
nativeCurrency: { name: 'Elux Chain', symbol: 'ELUX', decimals: 18 },
|
12191
|
+
infoURL: 'https://eluxscan.com',
|
12192
|
+
shortName: 'ELUX',
|
12193
|
+
chainId: 2907,
|
12194
|
+
networkId: 2907,
|
12195
|
+
explorers: [
|
12196
|
+
{
|
12197
|
+
name: 'blockscout',
|
12198
|
+
url: 'https://eluxscan.com',
|
12199
|
+
standard: 'none'
|
12200
|
+
}
|
12201
|
+
]
|
12202
|
+
},
|
12034
12203
|
{
|
12035
12204
|
name: 'HYCHAIN',
|
12036
12205
|
chainId: 2911,
|
@@ -13809,6 +13978,27 @@ const chainArray = [
|
|
13809
13978
|
}
|
13810
13979
|
]
|
13811
13980
|
},
|
13981
|
+
{
|
13982
|
+
name: 'Nollie Skatechain Testnet',
|
13983
|
+
chain: 'Skatechain',
|
13984
|
+
rpc: [ 'https://nollie-rpc.skatechain.org/' ],
|
13985
|
+
faucets: [],
|
13986
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
13987
|
+
features: [ { name: 'EIP155' } ],
|
13988
|
+
infoURL: '',
|
13989
|
+
shortName: 'nollie-testnet',
|
13990
|
+
chainId: 5051,
|
13991
|
+
networkId: 5051,
|
13992
|
+
icon: 'nollie',
|
13993
|
+
explorers: [
|
13994
|
+
{
|
13995
|
+
name: 'Nollie Skate Chain Testnet Explorer',
|
13996
|
+
url: 'https://nolliescan.skatechain.org',
|
13997
|
+
standard: 'EIP3091'
|
13998
|
+
}
|
13999
|
+
],
|
14000
|
+
status: 'active'
|
14001
|
+
},
|
13812
14002
|
{
|
13813
14003
|
name: 'Syndicate Testnet',
|
13814
14004
|
title: 'Syndicate Testnet',
|
@@ -14031,6 +14221,26 @@ const chainArray = [
|
|
14031
14221
|
chainId: 5315,
|
14032
14222
|
networkId: 5315
|
14033
14223
|
},
|
14224
|
+
{
|
14225
|
+
name: 'OpTrust Testnet',
|
14226
|
+
chain: 'OpTrust',
|
14227
|
+
rpc: [ 'https://rpctest.optrust.io' ],
|
14228
|
+
faucets: [],
|
14229
|
+
nativeCurrency: { name: 'TestBSC', symbol: 'tBNB', decimals: 18 },
|
14230
|
+
infoURL: 'https://optrust.io',
|
14231
|
+
shortName: 'toptrust',
|
14232
|
+
chainId: 5317,
|
14233
|
+
networkId: 5317,
|
14234
|
+
icon: 'optrust',
|
14235
|
+
explorers: [
|
14236
|
+
{
|
14237
|
+
name: 'OpTrust Testnet explorer',
|
14238
|
+
url: 'https://scantest.optrust.io',
|
14239
|
+
icon: 'optrust',
|
14240
|
+
standard: 'none'
|
14241
|
+
}
|
14242
|
+
]
|
14243
|
+
},
|
14034
14244
|
{
|
14035
14245
|
name: 'Tritanium Testnet',
|
14036
14246
|
chain: 'TRITANIUM',
|
@@ -14807,7 +15017,11 @@ const chainArray = [
|
|
14807
15017
|
name: 'ZetaChain Athens 3 Testnet',
|
14808
15018
|
chain: 'ZetaChain',
|
14809
15019
|
icon: 'zetachain',
|
14810
|
-
rpc: [
|
15020
|
+
rpc: [
|
15021
|
+
'https://zetachain-athens-evm.blockpi.network/v1/rpc/public',
|
15022
|
+
'wss://zetachain-athens.blockpi.network/rpc/v1/public/websocket',
|
15023
|
+
'https://zetachain-testnet-archive.allthatnode.com:8545'
|
15024
|
+
],
|
14811
15025
|
faucets: [ 'https://labs.zetachain.com/get-zeta' ],
|
14812
15026
|
nativeCurrency: { name: 'Zeta', symbol: 'ZETA', decimals: 18 },
|
14813
15027
|
infoURL: 'https://zetachain.com/docs',
|
@@ -18569,12 +18783,13 @@ const chainArray = [
|
|
18569
18783
|
name: 'Titan (TKX) Testnet',
|
18570
18784
|
chain: 'Titan (TKX)',
|
18571
18785
|
rpc: [
|
18572
|
-
'https://titan-testnet-json-rpc
|
18573
|
-
'https://titan-testnet-json-rpc-
|
18786
|
+
'https://titan-testnet-json-rpc.titanlab.io',
|
18787
|
+
'https://titan-testnet-json-rpc-1.titanlab.io',
|
18788
|
+
'https://titan-testnet-json-rpc-2.titanlab.io'
|
18574
18789
|
],
|
18575
18790
|
faucets: [],
|
18576
18791
|
nativeCurrency: { name: 'Titan tkx', symbol: 'TKX', decimals: 18 },
|
18577
|
-
infoURL: 'https://
|
18792
|
+
infoURL: 'https://titanlab.io',
|
18578
18793
|
shortName: 'titan_tkx-testnet',
|
18579
18794
|
chainId: 18889,
|
18580
18795
|
networkId: 18889,
|
@@ -18583,7 +18798,7 @@ const chainArray = [
|
|
18583
18798
|
explorers: [
|
18584
18799
|
{
|
18585
18800
|
name: 'Titan Explorer',
|
18586
|
-
url: 'https://titan-testnet-explorer-light.
|
18801
|
+
url: 'https://titan-testnet-explorer-light.titanlab.io/Titan%20Testnet',
|
18587
18802
|
standard: 'none',
|
18588
18803
|
icon: 'titan_tkx'
|
18589
18804
|
}
|
@@ -21476,6 +21691,50 @@ const chainArray = [
|
|
21476
21691
|
}
|
21477
21692
|
]
|
21478
21693
|
},
|
21694
|
+
{
|
21695
|
+
name: 'ICB Testnet',
|
21696
|
+
chain: 'ICBT',
|
21697
|
+
icon: 'icbnetwork',
|
21698
|
+
rpc: [
|
21699
|
+
'https://rpc1-testnet.icbnetwork.info/',
|
21700
|
+
'https://rpc2-testnet.icbnetwork.info/'
|
21701
|
+
],
|
21702
|
+
faucets: [],
|
21703
|
+
nativeCurrency: { name: 'ICB Testnet Token', symbol: 'ICBT', decimals: 18 },
|
21704
|
+
infoURL: 'https://icb.network',
|
21705
|
+
shortName: 'ICBT',
|
21706
|
+
chainId: 73114,
|
21707
|
+
networkId: 73114,
|
21708
|
+
explorers: [
|
21709
|
+
{
|
21710
|
+
name: 'ICB Tesnet Explorer',
|
21711
|
+
url: 'https://testnet.icbscan.io',
|
21712
|
+
standard: 'EIP3091'
|
21713
|
+
}
|
21714
|
+
]
|
21715
|
+
},
|
21716
|
+
{
|
21717
|
+
name: 'ICB Network',
|
21718
|
+
chain: 'ICB',
|
21719
|
+
icon: 'icbnetwork',
|
21720
|
+
rpc: [
|
21721
|
+
'https://rpc1-mainnet.icbnetwork.info/',
|
21722
|
+
'https://rpc2-mainnet.icbnetwork.info/'
|
21723
|
+
],
|
21724
|
+
faucets: [],
|
21725
|
+
nativeCurrency: { name: 'ICB Native Token', symbol: 'ICBX', decimals: 18 },
|
21726
|
+
infoURL: 'https://icb.network',
|
21727
|
+
shortName: 'ICBX',
|
21728
|
+
chainId: 73115,
|
21729
|
+
networkId: 73115,
|
21730
|
+
explorers: [
|
21731
|
+
{
|
21732
|
+
name: 'ICB Explorer',
|
21733
|
+
url: 'https://icbscan.io',
|
21734
|
+
standard: 'EIP3091'
|
21735
|
+
}
|
21736
|
+
]
|
21737
|
+
},
|
21479
21738
|
{
|
21480
21739
|
name: 'Energy Web Volta Testnet',
|
21481
21740
|
chain: 'Volta',
|
@@ -27355,6 +27614,25 @@ const chainArray = [
|
|
27355
27614
|
}
|
27356
27615
|
]
|
27357
27616
|
},
|
27617
|
+
{
|
27618
|
+
name: 'PTCESCAN Testnet',
|
27619
|
+
title: 'PTCESCAN Testnet',
|
27620
|
+
chain: 'PTCE',
|
27621
|
+
rpc: [ 'https://rpc-testnet.ptcscan.io' ],
|
27622
|
+
faucets: [ 'https://faucet.ptcscan.io/' ],
|
27623
|
+
nativeCurrency: { name: 'PTCE', symbol: 'PTCE', decimals: 18 },
|
27624
|
+
infoURL: 'https://ptcscan.io',
|
27625
|
+
shortName: 'PTCE',
|
27626
|
+
chainId: 889910245,
|
27627
|
+
networkId: 889910245,
|
27628
|
+
explorers: [
|
27629
|
+
{
|
27630
|
+
name: 'PTCESCAN Testnet Explorer',
|
27631
|
+
url: 'https://explorer-testnet.ptcscan.io',
|
27632
|
+
standard: 'EIP3091'
|
27633
|
+
}
|
27634
|
+
]
|
27635
|
+
},
|
27358
27636
|
{
|
27359
27637
|
name: 'SKALE Calypso Hub Testnet',
|
27360
27638
|
title: 'SKALE Calypso Hub Testnet',
|