eth-chainlist 0.0.658 → 0.0.659

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 CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ### 0.0.659 (2025-05-25)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.658 ([700c116](https://github.com/poowf/eth-chainlist/commit/700c116ce07b4d2d28184bab0ae5130be5f8350c))
9
+ * update chain data ([217c583](https://github.com/poowf/eth-chainlist/commit/217c583a48fc295afd936fb175249dbe5f7c0b37))
10
+
3
11
  ### 0.0.658 (2025-05-24)
4
12
 
5
13
 
package/data/chain.js CHANGED
@@ -44067,17 +44067,29 @@ const chainArray = [
44067
44067
  },
44068
44068
  {
44069
44069
  name: 'RISE Testnet',
44070
- chain: 'RISE',
44071
- rpc: [],
44072
- faucets: [],
44073
- nativeCurrency: { name: 'ETH', symbol: 'ETH', decimals: 18 },
44070
+ chain: 'ETH',
44071
+ rpc: [ 'https://testnet.riselabs.xyz', 'wss://testnet.riselabs.xyz/ws' ],
44072
+ faucets: [ 'https://faucet.testnet.riselabs.xyz' ],
44073
+ nativeCurrency: { name: 'RISE Testnet Ether', symbol: 'ETH', decimals: 18 },
44074
44074
  features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
44075
44075
  infoURL: 'https://www.riselabs.xyz/',
44076
44076
  shortName: 'rise-testnet',
44077
44077
  chainId: 11155931,
44078
44078
  networkId: 11155931,
44079
44079
  icon: 'rise',
44080
- explorers: []
44080
+ explorers: [
44081
+ {
44082
+ name: 'blockscout',
44083
+ url: 'https://explorer.testnet.riselabs.xyz',
44084
+ icon: 'blockscout',
44085
+ standard: 'EIP3091'
44086
+ }
44087
+ ],
44088
+ parent: {
44089
+ type: 'L2',
44090
+ chain: 'eip155-11155111',
44091
+ bridges: [ { url: 'https://bridge-ui.testnet.riselabs.xyz' } ]
44092
+ }
44081
44093
  },
44082
44094
  {
44083
44095
  name: 'R0AR Testnet',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.658",
3
+ "version": "0.0.659",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {