@metamask/snaps-sdk 6.7.0 → 6.8.0
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 +24 -1
- package/dist/error-wrappers.d.cts +192 -192
- package/dist/error-wrappers.d.mts +192 -192
- package/dist/internals/error-wrappers.d.cts +12 -12
- package/dist/internals/error-wrappers.d.mts +12 -12
- package/dist/jsx/components/form/index.cjs +0 -1
- package/dist/jsx/components/form/index.cjs.map +1 -1
- package/dist/jsx/components/form/index.d.cts +1 -3
- package/dist/jsx/components/form/index.d.cts.map +1 -1
- package/dist/jsx/components/form/index.d.mts +1 -3
- package/dist/jsx/components/form/index.d.mts.map +1 -1
- package/dist/jsx/components/form/index.mjs +0 -1
- package/dist/jsx/components/form/index.mjs.map +1 -1
- package/dist/jsx/validation.cjs +1 -12
- package/dist/jsx/validation.cjs.map +1 -1
- package/dist/jsx/validation.d.cts +1 -5
- package/dist/jsx/validation.d.cts.map +1 -1
- package/dist/jsx/validation.d.mts +1 -5
- package/dist/jsx/validation.d.mts.map +1 -1
- package/dist/jsx/validation.mjs +1 -11
- package/dist/jsx/validation.mjs.map +1 -1
- package/dist/types/handlers/signature.cjs.map +1 -1
- package/dist/types/handlers/signature.d.cts +1 -14
- package/dist/types/handlers/signature.d.cts.map +1 -1
- package/dist/types/handlers/signature.d.mts +1 -14
- package/dist/types/handlers/signature.d.mts.map +1 -1
- package/dist/types/handlers/signature.mjs.map +1 -1
- package/dist/types/methods/index.cjs +1 -0
- package/dist/types/methods/index.cjs.map +1 -1
- package/dist/types/methods/index.d.cts +1 -0
- package/dist/types/methods/index.d.cts.map +1 -1
- package/dist/types/methods/index.d.mts +1 -0
- package/dist/types/methods/index.d.mts.map +1 -1
- package/dist/types/methods/index.mjs +1 -0
- package/dist/types/methods/index.mjs.map +1 -1
- package/dist/types/methods/provider-request.cjs +3 -0
- package/dist/types/methods/provider-request.cjs.map +1 -0
- package/dist/types/methods/provider-request.d.cts +25 -0
- package/dist/types/methods/provider-request.d.cts.map +1 -0
- package/dist/types/methods/provider-request.d.mts +25 -0
- package/dist/types/methods/provider-request.d.mts.map +1 -0
- package/dist/types/methods/provider-request.mjs +2 -0
- package/dist/types/methods/provider-request.mjs.map +1 -0
- package/dist/types/methods/update-interface.cjs.map +1 -1
- package/dist/types/methods/update-interface.d.cts +2 -1
- package/dist/types/methods/update-interface.d.cts.map +1 -1
- package/dist/types/methods/update-interface.d.mts +2 -1
- package/dist/types/methods/update-interface.d.mts.map +1 -1
- package/dist/types/methods/update-interface.mjs.map +1 -1
- package/package.json +1 -1
- package/dist/jsx/components/form/AccountSelector.cjs +0 -25
- package/dist/jsx/components/form/AccountSelector.cjs.map +0 -1
- package/dist/jsx/components/form/AccountSelector.d.cts +0 -43
- package/dist/jsx/components/form/AccountSelector.d.cts.map +0 -1
- package/dist/jsx/components/form/AccountSelector.d.mts +0 -43
- package/dist/jsx/components/form/AccountSelector.d.mts.map +0 -1
- package/dist/jsx/components/form/AccountSelector.mjs +0 -22
- package/dist/jsx/components/form/AccountSelector.mjs.map +0 -1
package/CHANGELOG.md
CHANGED
|
@@ -7,6 +7,28 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
7
7
|
|
|
8
8
|
## [Unreleased]
|
|
9
9
|
|
|
10
|
+
## [6.8.0]
|
|
11
|
+
|
|
12
|
+
### Added
|
|
13
|
+
|
|
14
|
+
- Add `snap_experimentalProviderRequest` JSON-RPC method ([#2773](https://github.com/MetaMask/snaps/pull/2773))
|
|
15
|
+
- This method is experimental and will likely be removed in a future release.
|
|
16
|
+
|
|
17
|
+
### Changed
|
|
18
|
+
|
|
19
|
+
- Allow updating interface context ([#2809](https://github.com/MetaMask/snaps/pull/2809))
|
|
20
|
+
- `snap_updateInterface` now accepts a `context` parameter to update the
|
|
21
|
+
context of an interface.
|
|
22
|
+
- Remove `eth_sign` ([#2772](https://github.com/MetaMask/snaps/pull/2772))
|
|
23
|
+
- This method was removed from the MetaMask extension, so any references to it
|
|
24
|
+
in Snaps can be removed.
|
|
25
|
+
|
|
26
|
+
### Removed
|
|
27
|
+
|
|
28
|
+
- Remove `AccountSelector` component ([#2794](https://github.com/MetaMask/snaps/pull/2794))
|
|
29
|
+
- This is technically a breaking change, but the `AccountSelector` component was never actually implemented, so it
|
|
30
|
+
should not affect any existing code.
|
|
31
|
+
|
|
10
32
|
## [6.7.0]
|
|
11
33
|
|
|
12
34
|
### Added
|
|
@@ -361,7 +383,8 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
|
|
|
361
383
|
|
|
362
384
|
- Initial release of this package.
|
|
363
385
|
|
|
364
|
-
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-sdk@6.
|
|
386
|
+
[Unreleased]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-sdk@6.8.0...HEAD
|
|
387
|
+
[6.8.0]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-sdk@6.7.0...@metamask/snaps-sdk@6.8.0
|
|
365
388
|
[6.7.0]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-sdk@6.6.0...@metamask/snaps-sdk@6.7.0
|
|
366
389
|
[6.6.0]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-sdk@6.5.1...@metamask/snaps-sdk@6.6.0
|
|
367
390
|
[6.5.1]: https://github.com/MetaMask/snaps/compare/@metamask/snaps-sdk@6.5.0...@metamask/snaps-sdk@6.5.1
|