eth-chainlist 0.0.689 → 0.0.691
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 +138 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.691 (2025-09-30)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.690 ([4084372](https://github.com/poowf/eth-chainlist/commit/4084372a2e4435237d68612f512440636509f921))
|
9
|
+
* update chain data ([0fe8488](https://github.com/poowf/eth-chainlist/commit/0fe84886b4d4baa62a57fd142626ca7af91ac157))
|
10
|
+
|
11
|
+
### 0.0.690 (2025-09-29)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.689 ([ad9072e](https://github.com/poowf/eth-chainlist/commit/ad9072eeed82ce4eefb5a828575b589010ec4509))
|
17
|
+
* update chain data ([5137ff8](https://github.com/poowf/eth-chainlist/commit/5137ff80712818e599f1a46c5a849eb45de812cf))
|
18
|
+
|
3
19
|
### 0.0.689 (2025-09-21)
|
4
20
|
|
5
21
|
|
package/data/chain.js
CHANGED
@@ -3563,7 +3563,7 @@ const chainArray = [
|
|
3563
3563
|
{
|
3564
3564
|
name: 'ENI Mainnet',
|
3565
3565
|
chain: 'ENI',
|
3566
|
-
rpc: [ 'https://rpc.eniac.network' ],
|
3566
|
+
rpc: [ 'https://rpc.eniac.network', 'wss://rpc.eniac.network/ws/' ],
|
3567
3567
|
faucets: [],
|
3568
3568
|
nativeCurrency: { name: 'EGAS', symbol: 'EGAS', decimals: 18 },
|
3569
3569
|
infoURL: 'https://eniac.network/',
|
@@ -12589,6 +12589,33 @@ const chainArray = [
|
|
12589
12589
|
}
|
12590
12590
|
]
|
12591
12591
|
},
|
12592
|
+
{
|
12593
|
+
name: 'Injective Testnet',
|
12594
|
+
chain: 'Injective',
|
12595
|
+
icon: 'injective',
|
12596
|
+
rpc: [
|
12597
|
+
'https://k8s.testnet.json-rpc.injective.network',
|
12598
|
+
'wss://k8s.testnet.ws.injective.network',
|
12599
|
+
'https://injectiveevm-testnet-rpc.polkachu.com',
|
12600
|
+
'wss://injectiveevm-testnet-rpc.polkachu.com'
|
12601
|
+
],
|
12602
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
12603
|
+
faucets: [ 'https://testnet.faucet.injective.network' ],
|
12604
|
+
nativeCurrency: { name: 'Injective', symbol: 'INJ', decimals: 18 },
|
12605
|
+
infoURL: 'https://injective.com',
|
12606
|
+
shortName: 'injective-testnet',
|
12607
|
+
chainId: 1439,
|
12608
|
+
networkId: 1439,
|
12609
|
+
slip44: 60,
|
12610
|
+
explorers: [
|
12611
|
+
{
|
12612
|
+
name: 'blockscout',
|
12613
|
+
url: 'https://testnet.blockscout.injective.network',
|
12614
|
+
icon: 'blockscout',
|
12615
|
+
standard: 'EIP3091'
|
12616
|
+
}
|
12617
|
+
]
|
12618
|
+
},
|
12592
12619
|
{
|
12593
12620
|
name: 'Living Assets Mainnet',
|
12594
12621
|
chain: 'LAS',
|
@@ -13528,6 +13555,33 @@ const chainArray = [
|
|
13528
13555
|
}
|
13529
13556
|
]
|
13530
13557
|
},
|
13558
|
+
{
|
13559
|
+
name: 'Injective',
|
13560
|
+
chain: 'Injective',
|
13561
|
+
icon: 'injective',
|
13562
|
+
rpc: [
|
13563
|
+
'https://sentry.evm-rpc.injective.network',
|
13564
|
+
'wss://sentry.evm-ws.injective.network',
|
13565
|
+
'https://injectiveevm-rpc.polkachu.com',
|
13566
|
+
'wss://injectiveevm-ws.polkachu.com'
|
13567
|
+
],
|
13568
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
13569
|
+
faucets: [ 'https://injective.com/getinj' ],
|
13570
|
+
nativeCurrency: { name: 'Injective', symbol: 'INJ', decimals: 18 },
|
13571
|
+
infoURL: 'https://injective.com',
|
13572
|
+
shortName: 'injective',
|
13573
|
+
chainId: 1776,
|
13574
|
+
networkId: 1776,
|
13575
|
+
slip44: 60,
|
13576
|
+
explorers: [
|
13577
|
+
{
|
13578
|
+
name: 'blockscout',
|
13579
|
+
url: 'https://blockscout.injective.network',
|
13580
|
+
icon: 'blockscout',
|
13581
|
+
standard: 'EIP3091'
|
13582
|
+
}
|
13583
|
+
]
|
13584
|
+
},
|
13531
13585
|
{
|
13532
13586
|
name: 'Gauss Mainnet',
|
13533
13587
|
chain: 'Gauss',
|
@@ -25115,6 +25169,18 @@ const chainArray = [
|
|
25115
25169
|
explorers: [],
|
25116
25170
|
parent: { type: 'L2', chain: 'eip155-4', bridges: [] }
|
25117
25171
|
},
|
25172
|
+
{
|
25173
|
+
name: 'GIWA',
|
25174
|
+
chain: 'ETH',
|
25175
|
+
rpc: [],
|
25176
|
+
faucets: [],
|
25177
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
25178
|
+
infoURL: 'https://giwa.io',
|
25179
|
+
shortName: 'giwa',
|
25180
|
+
chainId: 9134,
|
25181
|
+
networkId: 9134,
|
25182
|
+
status: 'incubating'
|
25183
|
+
},
|
25118
25184
|
{
|
25119
25185
|
name: 'Rinia Testnet Old',
|
25120
25186
|
chain: 'FIRE',
|
@@ -36406,6 +36472,27 @@ const chainArray = [
|
|
36406
36472
|
}
|
36407
36473
|
]
|
36408
36474
|
},
|
36475
|
+
{
|
36476
|
+
name: 'GIWA Sepolia Testnet',
|
36477
|
+
chain: 'ETH',
|
36478
|
+
rpc: [ 'https://sepolia-rpc.giwa.io' ],
|
36479
|
+
faucets: [ 'https://faucet.giwa.io' ],
|
36480
|
+
nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 },
|
36481
|
+
infoURL: 'https://giwa.io',
|
36482
|
+
shortName: 'giwasepolia',
|
36483
|
+
chainId: 91342,
|
36484
|
+
networkId: 91342,
|
36485
|
+
slip44: 1,
|
36486
|
+
icon: 'giwaTestnet',
|
36487
|
+
explorers: [
|
36488
|
+
{
|
36489
|
+
name: 'GIWA Sepolia Blockscout',
|
36490
|
+
url: 'https://sepolia-explorer.giwa.io',
|
36491
|
+
icon: 'blockscout',
|
36492
|
+
standard: 'EIP3091'
|
36493
|
+
}
|
36494
|
+
]
|
36495
|
+
},
|
36409
36496
|
{
|
36410
36497
|
name: 'Combo Testnet',
|
36411
36498
|
chain: 'Combo',
|
@@ -40587,6 +40674,56 @@ const chainArray = [
|
|
40587
40674
|
}
|
40588
40675
|
]
|
40589
40676
|
},
|
40677
|
+
{
|
40678
|
+
name: 'Silent Data Mainnet',
|
40679
|
+
chain: 'Silent Data',
|
40680
|
+
rpc: [ 'https://mainnet.silentdata.com/${SILENTDATA_AUTH_TOKEN}' ],
|
40681
|
+
faucets: [],
|
40682
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
40683
|
+
infoURL: 'https://www.silentdata.com',
|
40684
|
+
shortName: 'silent-data-mainnet',
|
40685
|
+
chainId: 380929,
|
40686
|
+
networkId: 380929,
|
40687
|
+
icon: 'silentdata',
|
40688
|
+
explorers: [
|
40689
|
+
{
|
40690
|
+
name: 'Silent Data Mainnet Explorer',
|
40691
|
+
url: 'https://explorer-mainnet.rollup.silentdata.com',
|
40692
|
+
icon: 'silentdata',
|
40693
|
+
standard: 'EIP3091'
|
40694
|
+
}
|
40695
|
+
],
|
40696
|
+
parent: {
|
40697
|
+
type: 'L2',
|
40698
|
+
chain: 'eip155-1',
|
40699
|
+
bridges: [ { url: 'https://bridge-mainnet.rollup.silentdata.com' } ]
|
40700
|
+
}
|
40701
|
+
},
|
40702
|
+
{
|
40703
|
+
name: 'Silent Data Testnet',
|
40704
|
+
chain: 'Silent Data',
|
40705
|
+
rpc: [ 'https://testnet.silentdata.com/${SILENTDATA_AUTH_TOKEN}' ],
|
40706
|
+
faucets: [],
|
40707
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
40708
|
+
infoURL: 'https://www.silentdata.com',
|
40709
|
+
shortName: 'silent-data-testnet',
|
40710
|
+
chainId: 381185,
|
40711
|
+
networkId: 381185,
|
40712
|
+
icon: 'silentdata-testnet',
|
40713
|
+
explorers: [
|
40714
|
+
{
|
40715
|
+
name: 'Silent Data Testnet Explorer',
|
40716
|
+
url: 'https://explorer-testnet.rollup.silentdata.com',
|
40717
|
+
icon: 'silentdata-testnet',
|
40718
|
+
standard: 'EIP3091'
|
40719
|
+
}
|
40720
|
+
],
|
40721
|
+
parent: {
|
40722
|
+
type: 'L2',
|
40723
|
+
chain: 'eip155-11155111',
|
40724
|
+
bridges: [ { url: 'https://bridge-testnet.rollup.silentdata.com' } ]
|
40725
|
+
}
|
40726
|
+
},
|
40590
40727
|
{
|
40591
40728
|
name: 'Metal C-Chain',
|
40592
40729
|
chain: 'Metal',
|