eth-chainlist 0.0.270 → 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 +16 -0
- package/data/chain.js +64 -8
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
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
|
+
|
11
|
+
### 0.0.271 (2023-10-31)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.270 ([10b60f8](https://github.com/poowf/eth-chainlist/commit/10b60f8890e6a1602c263aebb33366880e0350b6))
|
17
|
+
* update chain data ([8af4c04](https://github.com/poowf/eth-chainlist/commit/8af4c04be930b8e821496ddb85bf8e7cd79893bb))
|
18
|
+
|
3
19
|
### 0.0.270 (2023-10-30)
|
4
20
|
|
5
21
|
|
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',
|
@@ -3263,10 +3271,29 @@ const chainArray = [
|
|
3263
3271
|
}
|
3264
3272
|
]
|
3265
3273
|
},
|
3274
|
+
{
|
3275
|
+
name: 'VinuChain Testnet',
|
3276
|
+
chain: 'VinuChain Testnet',
|
3277
|
+
rpc: [ 'https://vinufoundation-rpc.com' ],
|
3278
|
+
faucets: [],
|
3279
|
+
nativeCurrency: { name: 'VinuChain', symbol: 'VС', decimals: 18 },
|
3280
|
+
infoURL: 'https://vitainu.org',
|
3281
|
+
shortName: 'VCTEST',
|
3282
|
+
chainId: 206,
|
3283
|
+
networkId: 206,
|
3284
|
+
icon: 'vitainu-testnet',
|
3285
|
+
explorers: [
|
3286
|
+
{
|
3287
|
+
name: 'VinuScan Testnet',
|
3288
|
+
url: 'https://testnet.vinuscan.com',
|
3289
|
+
icon: 'vinuscan-testnet',
|
3290
|
+
standard: 'none'
|
3291
|
+
}
|
3292
|
+
]
|
3293
|
+
},
|
3266
3294
|
{
|
3267
3295
|
name: 'VinuChain Network',
|
3268
3296
|
chain: 'VinuChain',
|
3269
|
-
icon: 'vitainu',
|
3270
3297
|
rpc: [ 'https://vinuchain-rpc.com' ],
|
3271
3298
|
faucets: [],
|
3272
3299
|
nativeCurrency: { name: 'VinuChain', symbol: 'VС', decimals: 18 },
|
@@ -3274,6 +3301,7 @@ const chainArray = [
|
|
3274
3301
|
shortName: 'VC',
|
3275
3302
|
chainId: 207,
|
3276
3303
|
networkId: 207,
|
3304
|
+
icon: 'vitainu',
|
3277
3305
|
explorers: [
|
3278
3306
|
{
|
3279
3307
|
name: 'VinuScan',
|
@@ -11106,10 +11134,13 @@ const chainArray = [
|
|
11106
11134
|
{
|
11107
11135
|
name: 'Beam',
|
11108
11136
|
chain: 'BEAM',
|
11109
|
-
rpc: [
|
11137
|
+
rpc: [
|
11138
|
+
'https://subnets.avax.network/beam/mainnet/rpc',
|
11139
|
+
'wss://subnets.avax.network/beam/mainnet/ws'
|
11140
|
+
],
|
11110
11141
|
features: [ { name: 'EIP1559' } ],
|
11111
|
-
faucets: [],
|
11112
|
-
nativeCurrency: { name: '
|
11142
|
+
faucets: [ 'https://faucet.onbeam.com' ],
|
11143
|
+
nativeCurrency: { name: 'Beam', symbol: 'BEAM', decimals: 18 },
|
11113
11144
|
infoURL: 'https://www.onbeam.com',
|
11114
11145
|
shortName: 'beam',
|
11115
11146
|
icon: 'beam',
|
@@ -14440,10 +14471,16 @@ const chainArray = [
|
|
14440
14471
|
{
|
14441
14472
|
name: 'Beam Testnet',
|
14442
14473
|
chain: 'BEAM',
|
14443
|
-
rpc: [
|
14474
|
+
rpc: [
|
14475
|
+
'https://subnets.avax.network/beam/testnet/rpc',
|
14476
|
+
'wss://subnets.avax.network/beam/testnet/ws'
|
14477
|
+
],
|
14444
14478
|
features: [ { name: 'EIP1559' } ],
|
14445
|
-
faucets: [
|
14446
|
-
|
14479
|
+
faucets: [
|
14480
|
+
'https://faucet.avax.network/?subnet=beam',
|
14481
|
+
'https://faucet.onbeam.com'
|
14482
|
+
],
|
14483
|
+
nativeCurrency: { name: 'Beam', symbol: 'BEAM', decimals: 18 },
|
14447
14484
|
infoURL: 'https://www.onbeam.com',
|
14448
14485
|
shortName: 'beam-testnet',
|
14449
14486
|
icon: 'beam',
|
@@ -20857,6 +20894,25 @@ const chainArray = [
|
|
20857
20894
|
}
|
20858
20895
|
]
|
20859
20896
|
},
|
20897
|
+
{
|
20898
|
+
name: 'Frame Testnet',
|
20899
|
+
chain: 'ETH',
|
20900
|
+
rpc: [ 'https://rpc.testnet.frame.xyz/http' ],
|
20901
|
+
faucets: [ 'https://faucet.triangleplatform.com/frame/testnet' ],
|
20902
|
+
nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 },
|
20903
|
+
icon: 'frameTestnet',
|
20904
|
+
infoURL: 'https://www.frame.xyz/',
|
20905
|
+
shortName: 'frametest',
|
20906
|
+
chainId: 68840142,
|
20907
|
+
networkId: 68840142,
|
20908
|
+
explorers: [
|
20909
|
+
{
|
20910
|
+
name: 'Frame Testnet Explorer',
|
20911
|
+
url: 'https://explorer.testnet.frame.xyz',
|
20912
|
+
standard: 'EIP3091'
|
20913
|
+
}
|
20914
|
+
]
|
20915
|
+
},
|
20860
20916
|
{
|
20861
20917
|
name: 'T.E.A.M Blockchain',
|
20862
20918
|
chain: 'TEAM',
|