@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 +8 -0
- package/README.md +1 -2
- 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 +4 -4
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
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 };
|