eth-chainlist 0.0.549 → 0.0.550

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -1,5 +1,13 @@
1
1
  # Changelog
2
2
 
3
+ ### 0.0.550 (2024-11-28)
4
+
5
+
6
+ ### Maintenance
7
+
8
+ * **release:** 0.0.549 ([62da647](https://github.com/poowf/eth-chainlist/commit/62da647bfeb6fb3b871e4e678c1cebd3b0e68022))
9
+ * update chain data ([b8df63f](https://github.com/poowf/eth-chainlist/commit/b8df63f26936a14273c34fd6e282105e79a85cf1))
10
+
3
11
  ### 0.0.549 (2024-11-27)
4
12
 
5
13
 
package/data/chain.js CHANGED
@@ -3096,11 +3096,18 @@ const chainArray = [
3096
3096
  chainId: 151,
3097
3097
  networkId: 151,
3098
3098
  slip44: 824,
3099
- rpc: [],
3099
+ rpc: [ 'https://governors.mainnet.redbelly.network' ],
3100
3100
  faucets: [],
3101
3101
  infoURL: 'https://redbelly.network',
3102
3102
  nativeCurrency: { name: 'Redbelly Network Coin', symbol: 'RBNT', decimals: 18 },
3103
- status: 'incubating'
3103
+ status: 'active',
3104
+ explorers: [
3105
+ {
3106
+ name: 'Routescan',
3107
+ url: 'https://redbelly.routescan.io',
3108
+ standard: 'EIP3091'
3109
+ }
3110
+ ]
3104
3111
  },
3105
3112
  {
3106
3113
  name: 'Redbelly Network Devnet',
@@ -3127,9 +3134,9 @@ const chainArray = [
3127
3134
  nativeCurrency: { name: 'Redbelly Network Coin', symbol: 'RBNT', decimals: 18 },
3128
3135
  explorers: [
3129
3136
  {
3130
- name: 'Redbelly Network Testnet Explorer',
3131
- url: 'https://explorer.testnet.redbelly.network',
3132
- standard: 'none'
3137
+ name: 'Routescan',
3138
+ url: 'https://redbelly.testnet.routescan.io',
3139
+ standard: 'EIP3091'
3133
3140
  }
3134
3141
  ],
3135
3142
  status: 'active'
@@ -38991,7 +38998,27 @@ const chainArray = [
38991
38998
  url: 'https://maizenet-explorer.usecorn.com',
38992
38999
  standard: 'EIP3091'
38993
39000
  }
38994
- ]
39001
+ ],
39002
+ parent: { type: 'L2', chain: 'eip155-1' }
39003
+ },
39004
+ {
39005
+ name: 'Corn Testnet',
39006
+ chain: 'BTCN',
39007
+ rpc: [ 'https://testnet-rpc.usecorn.com' ],
39008
+ faucets: [],
39009
+ nativeCurrency: { name: 'Bitcorn', symbol: 'BTCN', decimals: 18 },
39010
+ infoURL: 'https://usecorn.com',
39011
+ shortName: 'btcn-testnet',
39012
+ chainId: 21000001,
39013
+ networkId: 21000001,
39014
+ explorers: [
39015
+ {
39016
+ name: 'Corn Testnet Explorer',
39017
+ url: 'https://testnet-explorer.usecorn.com',
39018
+ standard: 'EIP3091'
39019
+ }
39020
+ ],
39021
+ parent: { type: 'L2', chain: 'eip155-11155111' }
38995
39022
  },
38996
39023
  {
38997
39024
  name: 'Excelon Mainnet',
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "eth-chainlist",
3
- "version": "0.0.549",
3
+ "version": "0.0.550",
4
4
  "description": "List of EVM Chains",
5
5
  "main": "index.js",
6
6
  "scripts": {