@ledgerhq/connect-kit 1.1.8 → 1.1.9
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 +4 -0
- package/dist/umd/index.d.ts +2 -3
- package/dist/umd/index.js +50 -50
- package/dist/umd/index.js.map +1 -1
- package/dist/umd/lib/provider.d.ts +1 -2
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,10 @@ 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
|
+
|
|
10
14
|
## 1.1.8 - 2023-12-14
|
|
11
15
|
New version fix
|
|
12
16
|
|
package/dist/umd/index.d.ts
CHANGED
|
@@ -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 };
|