@metamask/eth-ledger-bridge-keyring 12.0.0 → 12.0.1
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 +14 -1
- package/package.json +6 -5
- package/v2.js +3 -0
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,18 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [12.0.1]
|
|
11
|
+
|
|
12
|
+
### Changed
|
|
13
|
+
|
|
14
|
+
- Bump `@metamask/account-api` from `^1.0.2` to `^1.0.3` ([#518](https://github.com/MetaMask/accounts/pull/518))
|
|
15
|
+
- Bump `@metamask/keyring-api` from `^23.0.0` to `^23.0.1` ([#518](https://github.com/MetaMask/accounts/pull/518))
|
|
16
|
+
- Bump `@metamask/keyring-sdk` from `^2.0.0` to `^2.0.1` ([#518](https://github.com/MetaMask/accounts/pull/518))
|
|
17
|
+
|
|
18
|
+
### Fixed
|
|
19
|
+
|
|
20
|
+
- Workaround Browserify subpath export for `/v2` ([#516](https://github.com/MetaMask/accounts/pull/516))
|
|
21
|
+
|
|
10
22
|
## [12.0.0]
|
|
11
23
|
|
|
12
24
|
### Added
|
|
@@ -405,7 +417,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
405
417
|
|
|
406
418
|
- Support new versions of ethereumjs/tx ([#68](https://github.com/MetaMask/eth-ledger-bridge-keyring/pull/68))
|
|
407
419
|
|
|
408
|
-
[Unreleased]: https://github.com/MetaMask/accounts/compare/@metamask/eth-ledger-bridge-keyring@12.0.
|
|
420
|
+
[Unreleased]: https://github.com/MetaMask/accounts/compare/@metamask/eth-ledger-bridge-keyring@12.0.1...HEAD
|
|
421
|
+
[12.0.1]: https://github.com/MetaMask/accounts/compare/@metamask/eth-ledger-bridge-keyring@12.0.0...@metamask/eth-ledger-bridge-keyring@12.0.1
|
|
409
422
|
[12.0.0]: https://github.com/MetaMask/accounts/compare/@metamask/eth-ledger-bridge-keyring@11.4.0...@metamask/eth-ledger-bridge-keyring@12.0.0
|
|
410
423
|
[11.4.0]: https://github.com/MetaMask/accounts/compare/@metamask/eth-ledger-bridge-keyring@11.3.1...@metamask/eth-ledger-bridge-keyring@11.4.0
|
|
411
424
|
[11.3.1]: https://github.com/MetaMask/accounts/compare/@metamask/eth-ledger-bridge-keyring@11.3.0...@metamask/eth-ledger-bridge-keyring@11.3.1
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "@metamask/eth-ledger-bridge-keyring",
|
|
3
|
-
"version": "12.0.
|
|
3
|
+
"version": "12.0.1",
|
|
4
4
|
"description": "A MetaMask compatible keyring, for ledger hardware wallets",
|
|
5
5
|
"keywords": [
|
|
6
6
|
"ethereum",
|
|
@@ -44,7 +44,8 @@
|
|
|
44
44
|
"main": "./dist/index.cjs",
|
|
45
45
|
"types": "./dist/index.d.cts",
|
|
46
46
|
"files": [
|
|
47
|
-
"dist/"
|
|
47
|
+
"dist/",
|
|
48
|
+
"v2.js"
|
|
48
49
|
],
|
|
49
50
|
"scripts": {
|
|
50
51
|
"build": "ts-bridge --project tsconfig.build.json --verbose --clean --no-references",
|
|
@@ -69,8 +70,8 @@
|
|
|
69
70
|
"@ledgerhq/hw-app-eth": "^6.42.0",
|
|
70
71
|
"@metamask/eth-sig-util": "^8.2.0",
|
|
71
72
|
"@metamask/hw-wallet-sdk": "^0.8.0",
|
|
72
|
-
"@metamask/keyring-api": "^23.0.
|
|
73
|
-
"@metamask/keyring-sdk": "^2.0.
|
|
73
|
+
"@metamask/keyring-api": "^23.0.1",
|
|
74
|
+
"@metamask/keyring-sdk": "^2.0.1",
|
|
74
75
|
"hdkey": "^2.1.0"
|
|
75
76
|
},
|
|
76
77
|
"devDependencies": {
|
|
@@ -81,7 +82,7 @@
|
|
|
81
82
|
"@ledgerhq/types-cryptoassets": "^7.15.1",
|
|
82
83
|
"@ledgerhq/types-devices": "^6.25.3",
|
|
83
84
|
"@ledgerhq/types-live": "^6.52.0",
|
|
84
|
-
"@metamask/account-api": "^1.0.
|
|
85
|
+
"@metamask/account-api": "^1.0.3",
|
|
85
86
|
"@metamask/auto-changelog": "^3.4.4",
|
|
86
87
|
"@metamask/keyring-utils": "^3.2.0",
|
|
87
88
|
"@metamask/utils": "^11.11.0",
|
package/v2.js
ADDED