eth-chainlist 0.0.159 → 0.0.161
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 +62 -34
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.161 (2023-06-01)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.160 ([0e96c6b](https://github.com/poowf/eth-chainlist/commit/0e96c6b5571994f02784f3ed3d706be9c0265750))
|
9
|
+
* update chain data ([eb8b58c](https://github.com/poowf/eth-chainlist/commit/eb8b58cfef7107ab36d53d05b008ec18f99f0d4e))
|
10
|
+
|
11
|
+
### 0.0.160 (2023-05-30)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.159 ([92b579f](https://github.com/poowf/eth-chainlist/commit/92b579fd3aa74c9316a344cb44392318df3994fe))
|
17
|
+
* update chain data ([dc1488c](https://github.com/poowf/eth-chainlist/commit/dc1488c358ce3becd17547557b0efa57fb5831bb))
|
18
|
+
|
3
19
|
### 0.0.159 (2023-05-29)
|
4
20
|
|
5
21
|
|
package/data/chain.js
CHANGED
@@ -1836,18 +1836,21 @@ const chainArray = [
|
|
1836
1836
|
icon: 'gnosis',
|
1837
1837
|
rpc: [
|
1838
1838
|
'https://rpc.gnosischain.com',
|
1839
|
+
'https://rpc.gnosis.gateway.fm',
|
1839
1840
|
'https://rpc.ankr.com/gnosis',
|
1840
1841
|
'https://gnosischain-rpc.gateway.pokt.network',
|
1841
1842
|
'https://gnosis-mainnet.public.blastapi.io',
|
1843
|
+
'https://gnosis.api.onfinality.io/public',
|
1844
|
+
'https://gnosis.blockpi.network/v1/rpc/public',
|
1845
|
+
'https://web3endpoints.com/gnosischain-mainnet',
|
1842
1846
|
'wss://rpc.gnosischain.com/wss'
|
1843
1847
|
],
|
1844
1848
|
faucets: [
|
1845
1849
|
'https://gnosisfaucet.com',
|
1846
|
-
'https://faucet.gimlu.com/gnosis',
|
1847
1850
|
'https://stakely.io/faucet/gnosis-chain-xdai',
|
1848
1851
|
'https://faucet.prussia.dev/xdai'
|
1849
1852
|
],
|
1850
|
-
nativeCurrency: { name: 'xDAI', symbol: '
|
1853
|
+
nativeCurrency: { name: 'xDAI', symbol: 'XDAI', decimals: 18 },
|
1851
1854
|
infoURL: 'https://docs.gnosischain.com',
|
1852
1855
|
shortName: 'gno',
|
1853
1856
|
chainId: 100,
|
@@ -3411,26 +3414,17 @@ const chainArray = [
|
|
3411
3414
|
explorers: []
|
3412
3415
|
},
|
3413
3416
|
{
|
3414
|
-
name: 'Optimism on
|
3417
|
+
name: '(deprecated) Optimism on GC',
|
3415
3418
|
chain: 'OGC',
|
3416
|
-
rpc: [
|
3417
|
-
|
3418
|
-
'wss://optimism.gnosischain.com/wss'
|
3419
|
-
],
|
3420
|
-
faucets: [ 'https://faucet.gimlu.com/gnosis' ],
|
3419
|
+
rpc: [],
|
3420
|
+
faucets: [],
|
3421
3421
|
nativeCurrency: { name: 'xDAI', symbol: 'xDAI', decimals: 18 },
|
3422
|
-
infoURL: 'https://www.xdaichain.com/for-developers/optimism-optimistic-rollups-on-gc',
|
3423
3422
|
shortName: 'ogc',
|
3424
3423
|
chainId: 300,
|
3425
3424
|
networkId: 300,
|
3426
|
-
|
3427
|
-
|
3428
|
-
|
3429
|
-
url: 'https://blockscout.com/xdai/optimism',
|
3430
|
-
icon: 'blockscout',
|
3431
|
-
standard: 'EIP3091'
|
3432
|
-
}
|
3433
|
-
]
|
3425
|
+
infoURL: 'https://docs.gnosischain.com',
|
3426
|
+
explorers: [],
|
3427
|
+
status: 'deprecated'
|
3434
3428
|
},
|
3435
3429
|
{
|
3436
3430
|
name: 'Bobaopera',
|
@@ -8328,6 +8322,27 @@ const chainArray = [
|
|
8328
8322
|
}
|
8329
8323
|
]
|
8330
8324
|
},
|
8325
|
+
{
|
8326
|
+
name: 'PLAYA3ULL GAMES',
|
8327
|
+
chain: '3ULL',
|
8328
|
+
rpc: [ 'https://api.mainnet.playa3ull.games' ],
|
8329
|
+
faucets: [],
|
8330
|
+
nativeCurrency: { name: '3ULL', symbol: '3ULL', decimals: 18 },
|
8331
|
+
features: [ { name: 'EIP1559' } ],
|
8332
|
+
infoURL: 'https://playa3ull.games',
|
8333
|
+
shortName: '3ULL',
|
8334
|
+
chainId: 3011,
|
8335
|
+
networkId: 3011,
|
8336
|
+
icon: 'playa3ull',
|
8337
|
+
explorers: [
|
8338
|
+
{
|
8339
|
+
name: 'PLAYA3ULL GAMES Explorer',
|
8340
|
+
url: 'https://3011.routescan.io',
|
8341
|
+
icon: 'playa3ull',
|
8342
|
+
standard: 'EIP3091'
|
8343
|
+
}
|
8344
|
+
]
|
8345
|
+
},
|
8331
8346
|
{
|
8332
8347
|
name: 'Orlando Chain',
|
8333
8348
|
chain: 'ORL',
|
@@ -11060,15 +11075,16 @@ const chainArray = [
|
|
11060
11075
|
networkId: 10101
|
11061
11076
|
},
|
11062
11077
|
{
|
11063
|
-
name: 'Chiado Testnet',
|
11064
|
-
chain: '
|
11078
|
+
name: 'Gnosis Chiado Testnet',
|
11079
|
+
chain: 'GNO',
|
11065
11080
|
icon: 'gnosis',
|
11066
11081
|
rpc: [
|
11067
11082
|
'https://rpc.chiadochain.net',
|
11068
|
-
'https://rpc.
|
11083
|
+
'https://rpc.chiado.gnosis.gateway.fm',
|
11084
|
+
'wss://rpc.chiadochain.net/wss'
|
11069
11085
|
],
|
11070
11086
|
faucets: [ 'https://gnosisfaucet.com' ],
|
11071
|
-
nativeCurrency: { name: 'Chiado xDAI', symbol: '
|
11087
|
+
nativeCurrency: { name: 'Chiado xDAI', symbol: 'XDAI', decimals: 18 },
|
11072
11088
|
infoURL: 'https://docs.gnosischain.com',
|
11073
11089
|
shortName: 'chi',
|
11074
11090
|
chainId: 10200,
|
@@ -13246,6 +13262,25 @@ const chainArray = [
|
|
13246
13262
|
}
|
13247
13263
|
]
|
13248
13264
|
},
|
13265
|
+
{
|
13266
|
+
name: 'AxelChain Dev-Net',
|
13267
|
+
chain: 'AXEL',
|
13268
|
+
rpc: [ 'https://aium-rpc-dev.viacube.com' ],
|
13269
|
+
faucets: [],
|
13270
|
+
nativeCurrency: { name: 'Axelium', symbol: 'AIUM', decimals: 18 },
|
13271
|
+
infoURL: 'https://www.axel.org',
|
13272
|
+
shortName: 'aium-dev',
|
13273
|
+
chainId: 61800,
|
13274
|
+
networkId: 61800,
|
13275
|
+
icon: 'axelium',
|
13276
|
+
explorers: [
|
13277
|
+
{
|
13278
|
+
name: 'AxelChain Dev-Net Explorer',
|
13279
|
+
url: 'https://devexplorer2.viacube.com',
|
13280
|
+
standard: 'EIP3091'
|
13281
|
+
}
|
13282
|
+
]
|
13283
|
+
},
|
13249
13284
|
{
|
13250
13285
|
name: 'Etica Mainnet',
|
13251
13286
|
chain: 'Etica Protocol (ETI/EGAZ)',
|
@@ -14274,24 +14309,17 @@ const chainArray = [
|
|
14274
14309
|
]
|
14275
14310
|
},
|
14276
14311
|
{
|
14277
|
-
name: 'Deprecated
|
14312
|
+
name: 'Deprecated CHI',
|
14278
14313
|
chain: 'CHI1',
|
14279
14314
|
icon: 'gnosis',
|
14280
|
-
rpc: [
|
14281
|
-
faucets: [
|
14315
|
+
rpc: [],
|
14316
|
+
faucets: [],
|
14282
14317
|
nativeCurrency: { name: 'Chiado xDAI', symbol: 'xDAI', decimals: 18 },
|
14283
14318
|
infoURL: 'https://docs.gnosischain.com',
|
14284
14319
|
shortName: 'chi1',
|
14285
14320
|
chainId: 100100,
|
14286
14321
|
networkId: 100100,
|
14287
|
-
explorers: [
|
14288
|
-
{
|
14289
|
-
name: 'blockscout',
|
14290
|
-
url: 'https://blockscout-chiado.gnosistestnet.com',
|
14291
|
-
icon: 'blockscout',
|
14292
|
-
standard: 'EIP3091'
|
14293
|
-
}
|
14294
|
-
],
|
14322
|
+
explorers: [],
|
14295
14323
|
status: 'deprecated'
|
14296
14324
|
},
|
14297
14325
|
{
|
@@ -14554,7 +14582,7 @@ const chainArray = [
|
|
14554
14582
|
'https://rpc.main.siberium.net.ru'
|
14555
14583
|
],
|
14556
14584
|
faucets: [],
|
14557
|
-
nativeCurrency: { name: 'Siberium', symbol: '
|
14585
|
+
nativeCurrency: { name: 'Siberium', symbol: 'SIBR', decimals: 18 },
|
14558
14586
|
infoURL: 'https://siberium.net',
|
14559
14587
|
shortName: 'sbr',
|
14560
14588
|
chainId: 111111,
|
@@ -15496,7 +15524,7 @@ const chainArray = [
|
|
15496
15524
|
},
|
15497
15525
|
{
|
15498
15526
|
name: 'Scroll Alpha Testnet Block Explorer',
|
15499
|
-
url: 'https://
|
15527
|
+
url: 'https://scrollscan.co',
|
15500
15528
|
standard: 'EIP3091'
|
15501
15529
|
}
|
15502
15530
|
],
|