eth-chainlist 0.0.271 → 0.0.272
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 +8 -0
- package/data/chain.js +24 -7
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,13 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.272 (2023-11-01)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.271 ([a14ffcb](https://github.com/poowf/eth-chainlist/commit/a14ffcb704ff1bc9a2a351f551c55cd6bbeb0b39))
|
9
|
+
* update chain data ([78a0d72](https://github.com/poowf/eth-chainlist/commit/78a0d72e002bea3be1385b1fdb404332f76c2dbe))
|
10
|
+
|
3
11
|
### 0.0.271 (2023-10-31)
|
4
12
|
|
5
13
|
|
package/data/chain.js
CHANGED
@@ -2424,7 +2424,15 @@ const chainArray = [
|
|
2424
2424
|
shortName: 'fuse',
|
2425
2425
|
chainId: 122,
|
2426
2426
|
networkId: 122,
|
2427
|
-
icon: 'fuse'
|
2427
|
+
icon: 'fuse',
|
2428
|
+
explorers: [
|
2429
|
+
{
|
2430
|
+
name: 'blockscout',
|
2431
|
+
url: 'https://explorer.fuse.io',
|
2432
|
+
icon: 'blockscout',
|
2433
|
+
standard: 'EIP3091'
|
2434
|
+
}
|
2435
|
+
]
|
2428
2436
|
},
|
2429
2437
|
{
|
2430
2438
|
name: 'Fuse Sparknet',
|
@@ -11126,10 +11134,13 @@ const chainArray = [
|
|
11126
11134
|
{
|
11127
11135
|
name: 'Beam',
|
11128
11136
|
chain: 'BEAM',
|
11129
|
-
rpc: [
|
11137
|
+
rpc: [
|
11138
|
+
'https://subnets.avax.network/beam/mainnet/rpc',
|
11139
|
+
'wss://subnets.avax.network/beam/mainnet/ws'
|
11140
|
+
],
|
11130
11141
|
features: [ { name: 'EIP1559' } ],
|
11131
|
-
faucets: [],
|
11132
|
-
nativeCurrency: { name: '
|
11142
|
+
faucets: [ 'https://faucet.onbeam.com' ],
|
11143
|
+
nativeCurrency: { name: 'Beam', symbol: 'BEAM', decimals: 18 },
|
11133
11144
|
infoURL: 'https://www.onbeam.com',
|
11134
11145
|
shortName: 'beam',
|
11135
11146
|
icon: 'beam',
|
@@ -14460,10 +14471,16 @@ const chainArray = [
|
|
14460
14471
|
{
|
14461
14472
|
name: 'Beam Testnet',
|
14462
14473
|
chain: 'BEAM',
|
14463
|
-
rpc: [
|
14474
|
+
rpc: [
|
14475
|
+
'https://subnets.avax.network/beam/testnet/rpc',
|
14476
|
+
'wss://subnets.avax.network/beam/testnet/ws'
|
14477
|
+
],
|
14464
14478
|
features: [ { name: 'EIP1559' } ],
|
14465
|
-
faucets: [
|
14466
|
-
|
14479
|
+
faucets: [
|
14480
|
+
'https://faucet.avax.network/?subnet=beam',
|
14481
|
+
'https://faucet.onbeam.com'
|
14482
|
+
],
|
14483
|
+
nativeCurrency: { name: 'Beam', symbol: 'BEAM', decimals: 18 },
|
14467
14484
|
infoURL: 'https://www.onbeam.com',
|
14468
14485
|
shortName: 'beam-testnet',
|
14469
14486
|
icon: 'beam',
|