@ledgerhq/connect-kit 1.1.4 → 1.1.9

Sign up to get free protection for your applications and to get access to all the features.
package/CHANGELOG.md CHANGED
@@ -7,6 +7,13 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
7
7
 
8
8
  ## Unreleased
9
9
 
10
+ ## 1.1.9 - 2024-01-18
11
+ Export SupportedProviders and EthereumProvider
12
+ Bumps node version (16->20) in connect-kit release workflow
13
+
14
+ ## 1.1.8 - 2023-12-14
15
+ New version fix
16
+
10
17
  ## 1.1.4 - 2023-08-17
11
18
  Add configuration to segment to use custom proxy
12
19
 
@@ -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 };