eth-chainlist 0.0.581 → 0.0.583
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 +94 -21
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.583 (2025-01-10)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.582 ([79ea6cf](https://github.com/poowf/eth-chainlist/commit/79ea6cf4502d6c8d71626269229ebe8f328fb357))
|
9
|
+
* update chain data ([573b2e2](https://github.com/poowf/eth-chainlist/commit/573b2e2ac19a23d7eb035fd9abace0bb22c693cf))
|
10
|
+
|
11
|
+
### 0.0.582 (2025-01-09)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.581 ([3429211](https://github.com/poowf/eth-chainlist/commit/3429211f2ab95bb47ca348d22d134e7cb0b8790a))
|
17
|
+
* update chain data ([0f54a69](https://github.com/poowf/eth-chainlist/commit/0f54a6993358db609fbb7c65b0a1c59bd1349bbb))
|
18
|
+
|
3
19
|
### 0.0.581 (2025-01-08)
|
4
20
|
|
5
21
|
|
package/data/chain.js
CHANGED
@@ -6726,6 +6726,18 @@ const chainArray = [
|
|
6726
6726
|
}
|
6727
6727
|
]
|
6728
6728
|
},
|
6729
|
+
{
|
6730
|
+
name: 'Standard Mainnet',
|
6731
|
+
chain: 'STND',
|
6732
|
+
rpc: [],
|
6733
|
+
faucets: [],
|
6734
|
+
nativeCurrency: { name: 'Standard', symbol: 'STND', decimals: 18 },
|
6735
|
+
infoURL: 'https://standardweb3.com',
|
6736
|
+
shortName: 'stnd',
|
6737
|
+
chainId: 486,
|
6738
|
+
networkId: 486,
|
6739
|
+
status: 'incubating'
|
6740
|
+
},
|
6729
6741
|
{
|
6730
6742
|
name: 'Rupaya',
|
6731
6743
|
chain: 'RUPX',
|
@@ -7694,6 +7706,37 @@ const chainArray = [
|
|
7694
7706
|
}
|
7695
7707
|
]
|
7696
7708
|
},
|
7709
|
+
{
|
7710
|
+
name: 'Janction',
|
7711
|
+
chain: 'Janction',
|
7712
|
+
rpc: [ 'https://rpc.janction.io', 'wss://rpc.janction.io' ],
|
7713
|
+
faucets: [],
|
7714
|
+
nativeCurrency: { name: 'Janction', symbol: 'JCT', decimals: 18 },
|
7715
|
+
infoURL: 'https://janction.io',
|
7716
|
+
shortName: 'janction',
|
7717
|
+
chainId: 678,
|
7718
|
+
networkId: 678,
|
7719
|
+
icon: 'janction',
|
7720
|
+
explorers: [],
|
7721
|
+
parent: { type: 'L2', chain: 'eip155-1', bridges: [] }
|
7722
|
+
},
|
7723
|
+
{
|
7724
|
+
name: 'Janction Testnet',
|
7725
|
+
chain: 'Janction Testnet',
|
7726
|
+
rpc: [
|
7727
|
+
'https://rpc_testnet.janction.io',
|
7728
|
+
'wss://rpc_testnet.janction.io'
|
7729
|
+
],
|
7730
|
+
faucets: [],
|
7731
|
+
nativeCurrency: { name: 'Janction', symbol: 'JCT', decimals: 18 },
|
7732
|
+
infoURL: 'https://janction.io',
|
7733
|
+
shortName: 'janction_testnet',
|
7734
|
+
chainId: 679,
|
7735
|
+
networkId: 679,
|
7736
|
+
icon: 'janction',
|
7737
|
+
explorers: [],
|
7738
|
+
parent: { type: 'L2', chain: 'eip155-1', bridges: [] }
|
7739
|
+
},
|
7697
7740
|
{
|
7698
7741
|
name: 'Karura Network',
|
7699
7742
|
chain: 'KAR',
|
@@ -11711,39 +11754,44 @@ const chainArray = [
|
|
11711
11754
|
{
|
11712
11755
|
name: 'Elysium Testnet',
|
11713
11756
|
title: 'An L1, carbon-neutral, tree-planting, metaverse dedicated blockchain created by VulcanForged',
|
11714
|
-
chain: '
|
11715
|
-
rpc: [ 'https://
|
11716
|
-
faucets: [],
|
11717
|
-
nativeCurrency: { name: '
|
11718
|
-
infoURL: 'https://
|
11719
|
-
shortName: '
|
11757
|
+
chain: 'Atlantis',
|
11758
|
+
rpc: [ 'https://rpc.atlantischain.network' ],
|
11759
|
+
faucets: [ 'https://faucet.atlantischain.network' ],
|
11760
|
+
nativeCurrency: { name: 'ELY', symbol: 'ELY', decimals: 18 },
|
11761
|
+
infoURL: 'https://elysiumchain.tech',
|
11762
|
+
shortName: 'ATL',
|
11720
11763
|
chainId: 1338,
|
11721
11764
|
networkId: 1338,
|
11722
|
-
slip44: 1,
|
11723
11765
|
explorers: [
|
11724
11766
|
{
|
11725
|
-
name: '
|
11726
|
-
url: 'https://
|
11727
|
-
standard: '
|
11767
|
+
name: 'Atlantis explorer',
|
11768
|
+
url: 'https://blockscout.atlantischain.network',
|
11769
|
+
standard: 'EIP3091'
|
11728
11770
|
}
|
11729
11771
|
]
|
11730
11772
|
},
|
11731
11773
|
{
|
11732
11774
|
name: 'Elysium Mainnet',
|
11733
|
-
title: 'An L1, carbon-neutral, tree-planting, metaverse dedicated blockchain
|
11775
|
+
title: 'An L1, carbon-neutral, tree-planting, metaverse dedicated blockchain.',
|
11734
11776
|
chain: 'Elysium',
|
11735
|
-
rpc: [ 'https://rpc.elysiumchain.tech
|
11736
|
-
faucets: [],
|
11737
|
-
nativeCurrency: { name: '
|
11738
|
-
infoURL: 'https://
|
11739
|
-
shortName: '
|
11777
|
+
rpc: [ 'https://rpc.elysiumchain.tech', 'https://rpc.elysiumchain.us' ],
|
11778
|
+
faucets: [ 'https://faucet.elysiumchain.tech' ],
|
11779
|
+
nativeCurrency: { name: 'ELY', symbol: 'ELY', decimals: 18 },
|
11780
|
+
infoURL: 'https://elysiumchain.tech/',
|
11781
|
+
shortName: 'ELY',
|
11740
11782
|
chainId: 1339,
|
11741
11783
|
networkId: 1339,
|
11784
|
+
icon: 'elysium',
|
11742
11785
|
explorers: [
|
11743
11786
|
{
|
11744
11787
|
name: 'Elysium mainnet explorer',
|
11745
11788
|
url: 'https://explorer.elysiumchain.tech',
|
11746
|
-
standard: '
|
11789
|
+
standard: 'EIP3091'
|
11790
|
+
},
|
11791
|
+
{
|
11792
|
+
name: 'Elysium blockscout explorer',
|
11793
|
+
url: 'https://blockscout.elysiumchain.tech',
|
11794
|
+
standard: 'EIP3091'
|
11747
11795
|
}
|
11748
11796
|
]
|
11749
11797
|
},
|
@@ -13478,9 +13526,9 @@ const chainArray = [
|
|
13478
13526
|
]
|
13479
13527
|
},
|
13480
13528
|
{
|
13481
|
-
name: 'Minato',
|
13482
|
-
shortName: 'minato',
|
13483
|
-
title: 'Soneium
|
13529
|
+
name: 'Soneium Testnet Minato',
|
13530
|
+
shortName: 'soneium-minato',
|
13531
|
+
title: 'Soneium Testnet Minato',
|
13484
13532
|
chain: 'ETH',
|
13485
13533
|
icon: 'minato',
|
13486
13534
|
rpc: [ 'https://rpc.minato.soneium.org' ],
|
@@ -13492,7 +13540,7 @@ const chainArray = [
|
|
13492
13540
|
explorers: [
|
13493
13541
|
{
|
13494
13542
|
name: 'Blockscout Minato explorer',
|
13495
|
-
url: 'https://
|
13543
|
+
url: 'https://soneium-minato.blockscout.com',
|
13496
13544
|
standard: 'EIP3091'
|
13497
13545
|
}
|
13498
13546
|
],
|
@@ -15669,6 +15717,18 @@ const chainArray = [
|
|
15669
15717
|
}
|
15670
15718
|
]
|
15671
15719
|
},
|
15720
|
+
{
|
15721
|
+
name: 'Standard Testnet',
|
15722
|
+
chain: 'STND Testnet',
|
15723
|
+
rpc: [],
|
15724
|
+
faucets: [],
|
15725
|
+
nativeCurrency: { name: 'Standard', symbol: 'STND', decimals: 18 },
|
15726
|
+
infoURL: 'https://standardweb3.com',
|
15727
|
+
shortName: 'stndtestnet',
|
15728
|
+
chainId: 2426,
|
15729
|
+
networkId: 2426,
|
15730
|
+
status: 'incubating'
|
15731
|
+
},
|
15672
15732
|
{
|
15673
15733
|
name: 'Polygon zkEVM Cardona Testnet',
|
15674
15734
|
title: 'Polygon zkEVM Cardona Testnet',
|
@@ -20941,6 +21001,19 @@ const chainArray = [
|
|
20941
21001
|
networkId: 7077,
|
20942
21002
|
explorers: []
|
20943
21003
|
},
|
21004
|
+
{
|
21005
|
+
name: 'Bharat Blockchain Network',
|
21006
|
+
chain: 'BBNT',
|
21007
|
+
rpc: [ 'https://bbnrpc.testnet.bharatblockchain.io' ],
|
21008
|
+
faucets: [ 'https://www.bon.bharatblockchain.io/faucet' ],
|
21009
|
+
nativeCurrency: { name: 'BBNT', symbol: 'BBN', decimals: 18 },
|
21010
|
+
features: [],
|
21011
|
+
infoURL: 'https://bharatblockchain.io/',
|
21012
|
+
shortName: 'bbnt',
|
21013
|
+
chainId: 7099,
|
21014
|
+
networkId: 7099,
|
21015
|
+
explorers: []
|
21016
|
+
},
|
20944
21017
|
{
|
20945
21018
|
name: 'Nume',
|
20946
21019
|
title: 'Nume',
|