@metamask/keyring-api 0.1.2 → 0.1.3
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 +6 -1
- package/package.json +8 -3
package/CHANGELOG.md
CHANGED
@@ -6,6 +6,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
6
6
|
|
7
7
|
## [Unreleased]
|
8
8
|
|
9
|
+
## [0.1.3]
|
10
|
+
### Changed
|
11
|
+
- Downgrade snaps dependencies to `0.35.2-flask.1`. ([#25](https://github.com/MetaMask/keyring-api/pull/25))
|
12
|
+
|
9
13
|
## [0.1.2]
|
10
14
|
### Changed
|
11
15
|
- Update snaps dependencies. ([#21](https://github.com/MetaMask/keyring-api/pull/21))
|
@@ -25,7 +29,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
25
29
|
- SnapController keyring client. It is intended to be used by MetaMask to talk to the snap.
|
26
30
|
- Helper functions to create keyring handler in the snap.
|
27
31
|
|
28
|
-
[Unreleased]: https://github.com/MetaMask/keyring-api/compare/v0.1.
|
32
|
+
[Unreleased]: https://github.com/MetaMask/keyring-api/compare/v0.1.3...HEAD
|
33
|
+
[0.1.3]: https://github.com/MetaMask/keyring-api/compare/v0.1.2...v0.1.3
|
29
34
|
[0.1.2]: https://github.com/MetaMask/keyring-api/compare/v0.1.1...v0.1.2
|
30
35
|
[0.1.1]: https://github.com/MetaMask/keyring-api/compare/v0.1.0...v0.1.1
|
31
36
|
[0.1.0]: https://github.com/MetaMask/keyring-api/releases/tag/v0.1.0
|
package/package.json
CHANGED
@@ -1,7 +1,12 @@
|
|
1
1
|
{
|
2
2
|
"name": "@metamask/keyring-api",
|
3
|
-
"version": "0.1.
|
3
|
+
"version": "0.1.3",
|
4
4
|
"description": "MetaMask Keyring API",
|
5
|
+
"keywords": [
|
6
|
+
"metamask",
|
7
|
+
"keyring",
|
8
|
+
"snaps"
|
9
|
+
],
|
5
10
|
"homepage": "https://github.com/MetaMask/keyring-api#readme",
|
6
11
|
"bugs": {
|
7
12
|
"url": "https://github.com/MetaMask/keyring-api/issues"
|
@@ -32,8 +37,8 @@
|
|
32
37
|
},
|
33
38
|
"dependencies": {
|
34
39
|
"@metamask/providers": "^11.0.0",
|
35
|
-
"@metamask/snaps-controllers": "^
|
36
|
-
"@metamask/snaps-utils": "^
|
40
|
+
"@metamask/snaps-controllers": "^0.35.2-flask.1",
|
41
|
+
"@metamask/snaps-utils": "^0.35.2-flask.1",
|
37
42
|
"@metamask/utils": "^6.0.1",
|
38
43
|
"@types/uuid": "^9.0.1",
|
39
44
|
"superstruct": "^1.0.3",
|