eth-chainlist 0.0.225 → 0.0.227
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 +71 -0
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.227 (2023-09-06)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.226 ([696f6f1](https://github.com/poowf/eth-chainlist/commit/696f6f149c26d71857b4b3d71f2c506f07d4a381))
|
9
|
+
* update chain data ([37457f0](https://github.com/poowf/eth-chainlist/commit/37457f080256426400e4a2cbe57afe1550175750))
|
10
|
+
|
11
|
+
### 0.0.226 (2023-09-04)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.225 ([2a73cdb](https://github.com/poowf/eth-chainlist/commit/2a73cdbceeb8880ce86ca5636f4726c029cf4af4))
|
17
|
+
* update chain data ([b871ba4](https://github.com/poowf/eth-chainlist/commit/b871ba4020fab71c557db43d379637148205ff87))
|
18
|
+
|
3
19
|
### 0.0.225 (2023-09-02)
|
4
20
|
|
5
21
|
|
package/data/chain.js
CHANGED
@@ -1957,6 +1957,7 @@ const chainArray = [
|
|
1957
1957
|
{
|
1958
1958
|
name: 'Worldland Mainnet',
|
1959
1959
|
chain: 'Worldland',
|
1960
|
+
icon: 'worldland',
|
1960
1961
|
rpc: [ 'https://seoul.worldland.foundation' ],
|
1961
1962
|
faucets: [],
|
1962
1963
|
nativeCurrency: { name: 'Worldland', symbol: 'WL', decimals: 18 },
|
@@ -3354,6 +3355,31 @@ const chainArray = [
|
|
3354
3355
|
}
|
3355
3356
|
]
|
3356
3357
|
},
|
3358
|
+
{
|
3359
|
+
name: 'Kroma',
|
3360
|
+
chain: 'ETH',
|
3361
|
+
rpc: [ 'https://api.kroma.network' ],
|
3362
|
+
faucets: [],
|
3363
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
3364
|
+
infoURL: 'https://kroma.network',
|
3365
|
+
icon: 'kroma',
|
3366
|
+
shortName: 'kroma',
|
3367
|
+
chainId: 255,
|
3368
|
+
networkId: 255,
|
3369
|
+
explorers: [
|
3370
|
+
{
|
3371
|
+
name: 'blockscout',
|
3372
|
+
url: 'https://blockscout.kroma.network',
|
3373
|
+
icon: 'blockscout',
|
3374
|
+
standard: 'EIP3091'
|
3375
|
+
}
|
3376
|
+
],
|
3377
|
+
parent: {
|
3378
|
+
type: 'L2',
|
3379
|
+
chain: 'eip155-1',
|
3380
|
+
bridges: [ { url: 'https://kroma.network/bridge' } ]
|
3381
|
+
}
|
3382
|
+
},
|
3357
3383
|
{
|
3358
3384
|
name: 'Huobi ECO Chain Testnet',
|
3359
3385
|
chain: 'Heco',
|
@@ -6340,6 +6366,26 @@ const chainArray = [
|
|
6340
6366
|
bridges: [ { url: 'https://bridge.zkevm-rpc.com' } ]
|
6341
6367
|
}
|
6342
6368
|
},
|
6369
|
+
{
|
6370
|
+
name: 'BLXq Testnet',
|
6371
|
+
chain: 'BLXQ',
|
6372
|
+
icon: 'blxq',
|
6373
|
+
rpc: [ 'https://testnetq1.blx.org' ],
|
6374
|
+
faucets: [],
|
6375
|
+
nativeCurrency: { name: 'BLXQ', symbol: 'BLXQ', decimals: 18 },
|
6376
|
+
infoURL: 'https://blx.org',
|
6377
|
+
shortName: 'blxq',
|
6378
|
+
chainId: 1107,
|
6379
|
+
networkId: 1107,
|
6380
|
+
explorers: [
|
6381
|
+
{
|
6382
|
+
name: 'BLXq Explorer',
|
6383
|
+
url: 'https://explorer.blx.org',
|
6384
|
+
icon: 'blxq',
|
6385
|
+
standard: 'none'
|
6386
|
+
}
|
6387
|
+
]
|
6388
|
+
},
|
6343
6389
|
{
|
6344
6390
|
name: 'WEMIX3.0 Mainnet',
|
6345
6391
|
chain: 'WEMIX',
|
@@ -13021,6 +13067,7 @@ const chainArray = [
|
|
13021
13067
|
{
|
13022
13068
|
name: 'Worldland Testnet',
|
13023
13069
|
chain: 'Worldland',
|
13070
|
+
icon: 'worldland',
|
13024
13071
|
rpc: [ 'https://gwangju.worldland.foundation' ],
|
13025
13072
|
faucets: [],
|
13026
13073
|
nativeCurrency: { name: 'Worldland', symbol: 'WL', decimals: 18 },
|
@@ -18002,6 +18049,30 @@ const chainArray = [
|
|
18002
18049
|
bridges: [ { url: 'https://bridge.arbitrum.io/' } ]
|
18003
18050
|
}
|
18004
18051
|
},
|
18052
|
+
{
|
18053
|
+
name: 'Arbitrum Sepolia',
|
18054
|
+
title: 'Arbitrum Sepolia Rollup Testnet',
|
18055
|
+
chain: 'ETH',
|
18056
|
+
rpc: [ 'https://sepolia-rollup.abitrum.io/rpc' ],
|
18057
|
+
faucets: [],
|
18058
|
+
nativeCurrency: { name: 'Sepolia Ether', symbol: 'ETH', decimals: 18 },
|
18059
|
+
infoURL: 'https://arbitrum.io',
|
18060
|
+
shortName: 'arb-sep',
|
18061
|
+
chainId: 421614,
|
18062
|
+
networkId: 421614,
|
18063
|
+
explorers: [
|
18064
|
+
{
|
18065
|
+
name: 'Arbitrum Sepolia Rollup Testnet Explorer',
|
18066
|
+
url: 'https://sepolia-explorer.arbitrum.io',
|
18067
|
+
standard: 'EIP3091'
|
18068
|
+
}
|
18069
|
+
],
|
18070
|
+
parent: {
|
18071
|
+
type: 'L2',
|
18072
|
+
chain: 'eip155-11155111',
|
18073
|
+
bridges: [ { url: 'https://bridge.arbitrum.io' } ]
|
18074
|
+
}
|
18075
|
+
},
|
18005
18076
|
{
|
18006
18077
|
name: 'Fastex Chain testnet',
|
18007
18078
|
chain: 'FTN',
|