eth-chainlist 0.0.241 → 0.0.243
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 +45 -3
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.243 (2023-09-27)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.242 ([1d25239](https://github.com/poowf/eth-chainlist/commit/1d2523980208a0338024fb4a438074abafdba2e9))
|
9
|
+
* update chain data ([4257d52](https://github.com/poowf/eth-chainlist/commit/4257d52fe2663e8f7f677fb8b94c6fd432b13ac9))
|
10
|
+
|
11
|
+
### 0.0.242 (2023-09-26)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.241 ([bb01aae](https://github.com/poowf/eth-chainlist/commit/bb01aae7f39b22e829f6329153c8057357e3e7d8))
|
17
|
+
* update chain data ([4b74c88](https://github.com/poowf/eth-chainlist/commit/4b74c8834990f3d8c97940d2ffd3445343f1ffaf))
|
18
|
+
|
3
19
|
### 0.0.241 (2023-09-25)
|
4
20
|
|
5
21
|
|
package/data/chain.js
CHANGED
@@ -270,7 +270,10 @@ const chainArray = [
|
|
270
270
|
name: 'Flare Mainnet',
|
271
271
|
chain: 'FLR',
|
272
272
|
icon: 'flare',
|
273
|
-
rpc: [
|
273
|
+
rpc: [
|
274
|
+
'https://flare-api.flare.network/ext/C/rpc',
|
275
|
+
'https://rpc.ftso.au/flare'
|
276
|
+
],
|
274
277
|
faucets: [],
|
275
278
|
nativeCurrency: { name: 'Flare', symbol: 'FLR', decimals: 18 },
|
276
279
|
infoURL: 'https://flare.xyz',
|
@@ -2661,6 +2664,27 @@ const chainArray = [
|
|
2661
2664
|
}
|
2662
2665
|
]
|
2663
2666
|
},
|
2667
|
+
{
|
2668
|
+
name: 'ShimmerEVM Mainnet',
|
2669
|
+
title: 'ShimmerEVM Mainnet',
|
2670
|
+
chain: 'ShimmerEVM',
|
2671
|
+
rpc: [ 'https://json-rpc.evm.shimmer.network' ],
|
2672
|
+
faucets: [],
|
2673
|
+
nativeCurrency: { name: 'SMR', symbol: 'SMR', decimals: 18 },
|
2674
|
+
infoURL: 'https://shimmer.network',
|
2675
|
+
shortName: 'shimmerevm-mainnet',
|
2676
|
+
chainId: 148,
|
2677
|
+
networkId: 148,
|
2678
|
+
icon: 'shimmerevm',
|
2679
|
+
explorers: [
|
2680
|
+
{
|
2681
|
+
name: 'explorer',
|
2682
|
+
url: 'https://explorer.evm.shimmer.network',
|
2683
|
+
icon: 'shimmerevm',
|
2684
|
+
standard: 'EIP3091'
|
2685
|
+
}
|
2686
|
+
]
|
2687
|
+
},
|
2664
2688
|
{
|
2665
2689
|
name: 'Six Protocol Testnet',
|
2666
2690
|
chain: 'FIVENET',
|
@@ -6549,7 +6573,7 @@ const chainArray = [
|
|
6549
6573
|
shortName: 'humans',
|
6550
6574
|
chainId: 1089,
|
6551
6575
|
networkId: 1089,
|
6552
|
-
icon: 'humans',
|
6576
|
+
icon: 'humans-dark',
|
6553
6577
|
explorers: [
|
6554
6578
|
{
|
6555
6579
|
name: 'explorer.guru',
|
@@ -9353,7 +9377,7 @@ const chainArray = [
|
|
9353
9377
|
]
|
9354
9378
|
},
|
9355
9379
|
{
|
9356
|
-
name: '
|
9380
|
+
name: 'Krest Network',
|
9357
9381
|
chain: 'Krest',
|
9358
9382
|
icon: 'krest',
|
9359
9383
|
rpc: [ 'https://erpc-krest.peaq.network' ],
|
@@ -10680,6 +10704,19 @@ const chainArray = [
|
|
10680
10704
|
}
|
10681
10705
|
]
|
10682
10706
|
},
|
10707
|
+
{
|
10708
|
+
name: 'Humans.ai Testnet',
|
10709
|
+
chain: 'Humans Testnet',
|
10710
|
+
rpc: [ 'https://evm-rpc.testnet.humans.zone' ],
|
10711
|
+
faucets: [],
|
10712
|
+
nativeCurrency: { name: 'HEART', symbol: 'HEART', decimals: 18 },
|
10713
|
+
features: [ { name: 'EIP155' }, { name: 'EIP1559' } ],
|
10714
|
+
infoURL: 'https://humans.ai',
|
10715
|
+
shortName: 'humans_testnet',
|
10716
|
+
chainId: 4139,
|
10717
|
+
networkId: 4139,
|
10718
|
+
icon: 'humans-dark'
|
10719
|
+
},
|
10683
10720
|
{
|
10684
10721
|
name: 'Tipboxcoin Testnet',
|
10685
10722
|
chain: 'TPBX',
|
@@ -13229,6 +13266,11 @@ const chainArray = [
|
|
13229
13266
|
name: 'Polkadot.js',
|
13230
13267
|
url: 'https://polkadot.js.org/apps/?rpc=wss://wsspc1-qa.agung.peaq.network#/explorer',
|
13231
13268
|
standard: 'none'
|
13269
|
+
},
|
13270
|
+
{
|
13271
|
+
name: 'Subscan',
|
13272
|
+
url: 'https://agung.subscan.io',
|
13273
|
+
standard: 'none'
|
13232
13274
|
}
|
13233
13275
|
]
|
13234
13276
|
},
|