eth-chainlist 0.0.258 → 0.0.260
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 +21 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.260 (2023-10-16)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.259 ([684638f](https://github.com/poowf/eth-chainlist/commit/684638f35c6cd116ab37b53405ecfe3fe49cf4f7))
|
9
|
+
* update chain data ([3636522](https://github.com/poowf/eth-chainlist/commit/3636522a8c6a311b7f1a89a41aea933a03ae78eb))
|
10
|
+
|
11
|
+
### 0.0.259 (2023-10-15)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.258 ([ffabb1b](https://github.com/poowf/eth-chainlist/commit/ffabb1b441387dc854eb5313294963d63a8d8cc4))
|
17
|
+
* update chain data ([a508bc8](https://github.com/poowf/eth-chainlist/commit/a508bc8375189fd223ea6bb0a29f102420224de2))
|
18
|
+
|
3
19
|
### 0.0.258 (2023-10-14)
|
4
20
|
|
5
21
|
|
package/data/chain.js
CHANGED
@@ -8386,6 +8386,25 @@ const chainArray = [
|
|
8386
8386
|
}
|
8387
8387
|
]
|
8388
8388
|
},
|
8389
|
+
{
|
8390
|
+
name: 'Sports Chain Network',
|
8391
|
+
chain: 'SCN',
|
8392
|
+
rpc: [ 'https://rpc.sportschainnetwork.xyz/' ],
|
8393
|
+
faucets: [],
|
8394
|
+
nativeCurrency: { name: 'SCN', symbol: 'SCN', decimals: 18 },
|
8395
|
+
infoURL: 'https://sportschainnetwork.xyz',
|
8396
|
+
shortName: 'SCN',
|
8397
|
+
chainId: 1904,
|
8398
|
+
networkId: 1904,
|
8399
|
+
icon: 'scn',
|
8400
|
+
explorers: [
|
8401
|
+
{
|
8402
|
+
name: 'blockscout',
|
8403
|
+
url: 'https://explorer.sportschainnetwork.xyz',
|
8404
|
+
standard: 'EIP3091'
|
8405
|
+
}
|
8406
|
+
]
|
8407
|
+
},
|
8389
8408
|
{
|
8390
8409
|
name: 'Bitcichain Mainnet',
|
8391
8410
|
chain: 'BITCI',
|
@@ -12054,7 +12073,7 @@ const chainArray = [
|
|
12054
12073
|
name: 'Bitrock Mainnet',
|
12055
12074
|
chain: 'Bitrock',
|
12056
12075
|
icon: 'bitrock',
|
12057
|
-
rpc: [ 'https://connect.bit-rock.io' ],
|
12076
|
+
rpc: [ 'https://connect.bit-rock.io', 'https://brockrpc.io' ],
|
12058
12077
|
faucets: [],
|
12059
12078
|
nativeCurrency: { name: 'BITROCK', symbol: 'BROCK', decimals: 18 },
|
12060
12079
|
infoURL: 'https://bit-rock.io',
|
@@ -12064,7 +12083,7 @@ const chainArray = [
|
|
12064
12083
|
explorers: [
|
12065
12084
|
{
|
12066
12085
|
name: 'Bitrock Explorer',
|
12067
|
-
url: 'https://
|
12086
|
+
url: 'https://explorer.bit-rock.io',
|
12068
12087
|
standard: 'EIP3091'
|
12069
12088
|
}
|
12070
12089
|
]
|