@ledgerhq/connect-kit 1.1.8 → 1.1.10

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 CHANGED
@@ -7,6 +7,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## Unreleased
9
9
 
10
+ ## 1.1.10 - 2024-01-24
11
+ Fix connect-kit dependencies
12
+ Update connect-kit README
13
+
14
+ ## 1.1.9 - 2024-01-18
15
+ Export SupportedProviders and EthereumProvider
16
+ Bumps node version (16->20) in connect-kit release workflow
17
+
10
18
  ## 1.1.8 - 2023-12-14
11
19
  New version fix
12
20
 
package/README.md CHANGED
@@ -1,4 +1,3 @@
1
1
  # Ledger Connect Kit
2
2
 
3
- Please use Connect Kit Loader, read the information available on the
4
- [connect-kit-loader](../connect-kit-loader) package.
3
+ Ledger Connect Kit lets you connect your DApps to Ledger hardware wallets.
@@ -19,8 +19,7 @@ interface EthereumProvider {
19
19
  }
20
20
 
21
21
  declare enum SupportedProviders {
22
- Ethereum = "Ethereum",
23
- Solana = "Solana"
22
+ Ethereum = "Ethereum"
24
23
  }
25
24
  declare enum SupportedProviderImplementations {
26
25
  LedgerConnect = "LedgerConnect",
@@ -72,4 +71,4 @@ declare function checkSupport(options: CheckSupportOptions): CheckSupportResult;
72
71
 
73
72
  declare const enableDebugLogs: () => void;
74
73
 
75
- export { checkSupport, enableDebugLogs, getProvider };
74
+ export { EthereumProvider, SupportedProviders, checkSupport, enableDebugLogs, getProvider };