eth-chainlist 0.0.524 → 0.0.525
Sign up to get free protection for your applications and to get access to all the features.
- package/CHANGELOG.md +8 -0
- package/data/chain.js +75 -8
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.525 (2024-10-29)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.524 ([8ef78a8](https://github.com/poowf/eth-chainlist/commit/8ef78a8981f5990fdf7cf9d8add5d19bdd5ccffd))
|
9
|
+
* update chain data ([3d9b082](https://github.com/poowf/eth-chainlist/commit/3d9b082f9d411cc0aa1e71ba407e9b805c30cab4))
|
10
|
+
|
3
11
|
### 0.0.524 (2024-10-26)
|
4
12
|
|
5
13
|
|
package/data/chain.js
CHANGED
@@ -4370,6 +4370,25 @@ const chainArray = [
|
|
4370
4370
|
}
|
4371
4371
|
]
|
4372
4372
|
},
|
4373
|
+
{
|
4374
|
+
name: 'Cronos zkEVM Testnet',
|
4375
|
+
chain: 'CronosZkEVMTestnet',
|
4376
|
+
rpc: [ 'https://testnet.zkevm.cronos.org' ],
|
4377
|
+
faucets: [ 'https://zkevm.cronos.org/faucet' ],
|
4378
|
+
nativeCurrency: { name: 'Cronos zkEVM Test Coin', symbol: 'zkTCRO', decimals: 18 },
|
4379
|
+
infoURL: 'https://docs-zkevm.cronos.org',
|
4380
|
+
shortName: 'zkTCRO',
|
4381
|
+
chainId: 240,
|
4382
|
+
networkId: 240,
|
4383
|
+
slip44: 1,
|
4384
|
+
explorers: [
|
4385
|
+
{
|
4386
|
+
name: 'Cronos zkEVM Testnet Explorer',
|
4387
|
+
url: 'https://explorer.zkevm.cronos.org/testnet',
|
4388
|
+
standard: 'none'
|
4389
|
+
}
|
4390
|
+
]
|
4391
|
+
},
|
4373
4392
|
{
|
4374
4393
|
name: 'Plinga Mainnet',
|
4375
4394
|
chain: 'Plinga',
|
@@ -4801,19 +4820,24 @@ const chainArray = [
|
|
4801
4820
|
networkId: 278
|
4802
4821
|
},
|
4803
4822
|
{
|
4804
|
-
name: 'BPX
|
4823
|
+
name: 'BPX Chain',
|
4805
4824
|
chain: 'BPX',
|
4806
4825
|
icon: 'bpx',
|
4807
|
-
rpc: [
|
4808
|
-
|
4809
|
-
'https://bpx-dataseed.infinex.cc'
|
4810
|
-
],
|
4826
|
+
rpc: [ 'https://rpc.bpxchain.cc' ],
|
4827
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
4811
4828
|
faucets: [],
|
4812
4829
|
nativeCurrency: { name: 'BPX', symbol: 'BPX', decimals: 18 },
|
4813
4830
|
infoURL: 'https://bpxchain.cc',
|
4814
4831
|
shortName: 'bpx',
|
4815
4832
|
chainId: 279,
|
4816
|
-
networkId: 279
|
4833
|
+
networkId: 279,
|
4834
|
+
explorers: [
|
4835
|
+
{
|
4836
|
+
name: 'BPX Chain Block Explorer',
|
4837
|
+
url: 'https://explorer.bpxchain.cc',
|
4838
|
+
standard: 'EIP3091'
|
4839
|
+
}
|
4840
|
+
]
|
4817
4841
|
},
|
4818
4842
|
{
|
4819
4843
|
name: 'zkSync Era Goerli Testnet (deprecated)',
|
@@ -12422,6 +12446,33 @@ const chainArray = [
|
|
12422
12446
|
networkId: 1918,
|
12423
12447
|
explorers: []
|
12424
12448
|
},
|
12449
|
+
{
|
12450
|
+
name: 'Arvix Testnet',
|
12451
|
+
chain: 'Arvix',
|
12452
|
+
rpc: [
|
12453
|
+
'https://rpc-testnet-market.arvix.network',
|
12454
|
+
'https://rpc-dev-testnet.arvix.network'
|
12455
|
+
],
|
12456
|
+
faucets: [ 'https://claim-faucet.arvix.network' ],
|
12457
|
+
nativeCurrency: {
|
12458
|
+
name: 'Arvix Testnet Native Token',
|
12459
|
+
symbol: 'tARV',
|
12460
|
+
decimals: 18
|
12461
|
+
},
|
12462
|
+
infoURL: 'https://arvix.network',
|
12463
|
+
shortName: 'arvix',
|
12464
|
+
chainId: 1927,
|
12465
|
+
networkId: 1927,
|
12466
|
+
icon: 'arvix',
|
12467
|
+
explorers: [
|
12468
|
+
{
|
12469
|
+
name: 'Arvix Explorer Testnet',
|
12470
|
+
url: 'https://testnet.arvixscan.com',
|
12471
|
+
standard: 'EIP3091',
|
12472
|
+
icon: 'arvix'
|
12473
|
+
}
|
12474
|
+
]
|
12475
|
+
},
|
12425
12476
|
{
|
12426
12477
|
name: 'ONUS Chain Testnet',
|
12427
12478
|
title: 'ONUS Chain Testnet',
|
@@ -27005,7 +27056,7 @@ const chainArray = [
|
|
27005
27056
|
'wss://testnet.emerald.oasis.io/ws'
|
27006
27057
|
],
|
27007
27058
|
faucets: [ 'https://faucet.testnet.oasis.io/' ],
|
27008
|
-
nativeCurrency: { name: 'Emerald Rose', symbol: '
|
27059
|
+
nativeCurrency: { name: 'Emerald Test Rose', symbol: 'TEST', decimals: 18 },
|
27009
27060
|
infoURL: 'https://docs.oasis.io/dapp/emerald',
|
27010
27061
|
shortName: 'emerald-testnet',
|
27011
27062
|
chainId: 42261,
|
@@ -30399,11 +30450,26 @@ const chainArray = [
|
|
30399
30450
|
}
|
30400
30451
|
]
|
30401
30452
|
},
|
30453
|
+
{
|
30454
|
+
name: 'Unit Zero Mainnet',
|
30455
|
+
chain: 'Unit Zero',
|
30456
|
+
icon: 'unitzero',
|
30457
|
+
rpc: [ 'https://rpc.unit0.dev' ],
|
30458
|
+
faucets: [],
|
30459
|
+
nativeCurrency: { name: 'UNIT0', symbol: 'UNIT0', decimals: 18 },
|
30460
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
30461
|
+
infoURL: 'https://units.network',
|
30462
|
+
shortName: 'unit0-mainnet',
|
30463
|
+
chainId: 88811,
|
30464
|
+
networkId: 88811,
|
30465
|
+
explorers: []
|
30466
|
+
},
|
30402
30467
|
{
|
30403
30468
|
name: 'Unit Zero Testnet',
|
30404
30469
|
chain: 'Unit Zero',
|
30470
|
+
icon: 'unitzero',
|
30405
30471
|
rpc: [ 'https://rpc-testnet.unit0.dev' ],
|
30406
|
-
faucets: [],
|
30472
|
+
faucets: [ 'https://faucet-testnet.unit0.dev' ],
|
30407
30473
|
nativeCurrency: { name: 'UNIT0', symbol: 'UNIT0', decimals: 18 },
|
30408
30474
|
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
30409
30475
|
infoURL: 'https://units.network',
|
@@ -30421,6 +30487,7 @@ const chainArray = [
|
|
30421
30487
|
{
|
30422
30488
|
name: 'Unit Zero Stagenet',
|
30423
30489
|
chain: 'Unit Zero',
|
30490
|
+
icon: 'unitzero',
|
30424
30491
|
rpc: [ 'https://rpc-stagenet.unit0.dev' ],
|
30425
30492
|
faucets: [],
|
30426
30493
|
nativeCurrency: { name: 'UNIT0', symbol: 'UNIT0', decimals: 18 },
|