eth-chainlist 0.0.168 → 0.0.170
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 +87 -9
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
@@ -1,5 +1,21 @@
|
|
1
1
|
# Changelog
|
2
2
|
|
3
|
+
### 0.0.170 (2023-06-16)
|
4
|
+
|
5
|
+
|
6
|
+
### Maintenance
|
7
|
+
|
8
|
+
* **release:** 0.0.169 ([d8a80af](https://github.com/poowf/eth-chainlist/commit/d8a80afd2deef913854c8a5f424d350f1dc432df))
|
9
|
+
* update chain data ([d01eb91](https://github.com/poowf/eth-chainlist/commit/d01eb9101ceb6fdf0acf0b1df9f5d152b7672bd7))
|
10
|
+
|
11
|
+
### 0.0.169 (2023-06-15)
|
12
|
+
|
13
|
+
|
14
|
+
### Maintenance
|
15
|
+
|
16
|
+
* **release:** 0.0.168 ([ea5f26e](https://github.com/poowf/eth-chainlist/commit/ea5f26eecfdf471973ca75f83883c88aa4355493))
|
17
|
+
* update chain data ([ac0d751](https://github.com/poowf/eth-chainlist/commit/ac0d7519373640abd827785297209631a136d7e4))
|
18
|
+
|
3
19
|
### 0.0.168 (2023-06-13)
|
4
20
|
|
5
21
|
|
package/data/chain.js
CHANGED
@@ -1728,17 +1728,26 @@ const chainArray = [
|
|
1728
1728
|
]
|
1729
1729
|
},
|
1730
1730
|
{
|
1731
|
-
name: '
|
1732
|
-
chain: '
|
1733
|
-
rpc: [ 'https://
|
1734
|
-
faucets: [],
|
1735
|
-
nativeCurrency: { name: '
|
1736
|
-
|
1737
|
-
|
1731
|
+
name: 'CamDL Mainnet',
|
1732
|
+
chain: 'CADL',
|
1733
|
+
rpc: [ 'https://rpc1.camdl.gov.kh/' ],
|
1734
|
+
faucets: [ 'https://faucet.camdl.gov.kh/' ],
|
1735
|
+
nativeCurrency: { name: 'CADL', symbol: 'CADL', decimals: 18 },
|
1736
|
+
features: [ { name: 'EIP155' } ],
|
1737
|
+
infoURL: 'https://camdl.gov.kh/',
|
1738
|
+
shortName: 'camdl',
|
1738
1739
|
chainId: 95,
|
1739
1740
|
networkId: 95,
|
1740
|
-
|
1741
|
-
|
1741
|
+
redFlags: [ 'reusedChainId' ],
|
1742
|
+
icon: 'camdl',
|
1743
|
+
explorers: [
|
1744
|
+
{
|
1745
|
+
name: 'CamDL Block Explorer',
|
1746
|
+
url: 'https://explorer.camdl.gov.kh',
|
1747
|
+
standard: 'EIP3091'
|
1748
|
+
}
|
1749
|
+
],
|
1750
|
+
status: 'active'
|
1742
1751
|
},
|
1743
1752
|
{
|
1744
1753
|
name: 'Bitkub Chain',
|
@@ -2633,6 +2642,25 @@ const chainArray = [
|
|
2633
2642
|
chainId: 163,
|
2634
2643
|
networkId: 163
|
2635
2644
|
},
|
2645
|
+
{
|
2646
|
+
name: 'Omni Testnet 1',
|
2647
|
+
chain: 'Omni',
|
2648
|
+
rpc: [ 'https://testnet-1.omni.network' ],
|
2649
|
+
features: [ { name: 'EIP155' } ],
|
2650
|
+
faucets: [],
|
2651
|
+
nativeCurrency: { name: 'Omni', symbol: 'OMNI', decimals: 18 },
|
2652
|
+
infoURL: 'https://docs.omni.network/',
|
2653
|
+
shortName: 'omni_testnet',
|
2654
|
+
chainId: 165,
|
2655
|
+
networkId: 165,
|
2656
|
+
explorers: [
|
2657
|
+
{
|
2658
|
+
name: 'Omni Explorer',
|
2659
|
+
url: 'https://testnet-1.explorer.omni.network',
|
2660
|
+
standard: 'EIP3091'
|
2661
|
+
}
|
2662
|
+
]
|
2663
|
+
},
|
2636
2664
|
{
|
2637
2665
|
name: 'Atoshi Testnet',
|
2638
2666
|
chain: 'ATOSHI',
|
@@ -7698,6 +7726,17 @@ const chainArray = [
|
|
7698
7726
|
chainId: 2043,
|
7699
7727
|
networkId: 2043
|
7700
7728
|
},
|
7729
|
+
{
|
7730
|
+
name: 'Shrapnel Subnet',
|
7731
|
+
chain: 'shrapnel',
|
7732
|
+
rpc: [ 'https://subnets.avax.network/shrapnel/mainnet/rpc' ],
|
7733
|
+
faucets: [],
|
7734
|
+
nativeCurrency: { name: 'Shrapnel Gas Token', symbol: 'SHRAPG', decimals: 18 },
|
7735
|
+
infoURL: 'https://www.shrapnel.com/',
|
7736
|
+
shortName: 'Shrapnel',
|
7737
|
+
chainId: 2044,
|
7738
|
+
networkId: 2044
|
7739
|
+
},
|
7701
7740
|
{
|
7702
7741
|
name: 'Stratos Testnet',
|
7703
7742
|
chain: 'STOS',
|
@@ -13278,6 +13317,27 @@ const chainArray = [
|
|
13278
13317
|
}
|
13279
13318
|
]
|
13280
13319
|
},
|
13320
|
+
{
|
13321
|
+
name: 'Titan',
|
13322
|
+
chain: 'ETH',
|
13323
|
+
rpc: [
|
13324
|
+
'https://rpc.titan.tokamak.network',
|
13325
|
+
'wss://rpc.titan.tokamak.network/ws'
|
13326
|
+
],
|
13327
|
+
faucets: [],
|
13328
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
13329
|
+
infoURL: 'https://tokamak.network',
|
13330
|
+
shortName: 'teth',
|
13331
|
+
chainId: 55004,
|
13332
|
+
networkId: 55004,
|
13333
|
+
explorers: [
|
13334
|
+
{
|
13335
|
+
name: 'blockscout',
|
13336
|
+
url: 'https://explorer.titan.tokamak.network',
|
13337
|
+
standard: 'EIP3091'
|
13338
|
+
}
|
13339
|
+
]
|
13340
|
+
},
|
13281
13341
|
{
|
13282
13342
|
name: 'REI Chain Mainnet',
|
13283
13343
|
chain: 'REI',
|
@@ -16478,6 +16538,24 @@ const chainArray = [
|
|
16478
16538
|
networkId: 7762959,
|
16479
16539
|
slip44: 184
|
16480
16540
|
},
|
16541
|
+
{
|
16542
|
+
name: 'Zora',
|
16543
|
+
chain: 'ETH',
|
16544
|
+
rpc: [ 'https://rpc.zora.co/' ],
|
16545
|
+
faucets: [],
|
16546
|
+
nativeCurrency: { name: 'Ether', symbol: 'ETH', decimals: 18 },
|
16547
|
+
infoURL: 'https://zora.co',
|
16548
|
+
shortName: 'zora',
|
16549
|
+
chainId: 7777777,
|
16550
|
+
networkId: 7777777,
|
16551
|
+
explorers: [
|
16552
|
+
{
|
16553
|
+
name: 'Zora Network Explorer',
|
16554
|
+
url: 'https://explorer.zora.co',
|
16555
|
+
standard: 'EIP3091'
|
16556
|
+
}
|
16557
|
+
]
|
16558
|
+
},
|
16481
16559
|
{
|
16482
16560
|
name: 'Plian Mainnet Subchain 1',
|
16483
16561
|
chain: 'Plian',
|