@swapkit/wallet-keystore 5.0.1 → 5.0.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 +13 -0
- package/package.json +2 -2
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# @swapkit/wallet-keystore
|
|
2
2
|
|
|
3
|
+
## 5.0.3
|
|
4
|
+
|
|
5
|
+
### Patch Changes
|
|
6
|
+
|
|
7
|
+
- [#346](https://github.com/swapkit/sdk/pull/346) [`8cca094`](https://github.com/swapkit/sdk/commit/8cca094c278b7d89dff8625b4ced3664f8a51209) Thanks [@towanTG](https://github.com/towanTG)! - Make wallet options and SwapKit error keys extensible through module augmentation plus runtime registration. Extension error codes should use the reserved 80000-89999 range, and wallet registrations are automatically added to the default `SKConfig` wallet list. (via @swapkit/helpers@5.1.0)
|
|
8
|
+
- Update generated token lists. (via @swapkit/helpers@5.1.0)
|
|
9
|
+
|
|
10
|
+
## 5.0.2
|
|
11
|
+
|
|
12
|
+
### Patch Changes
|
|
13
|
+
|
|
14
|
+
- Update generated token lists. (via @swapkit/helpers@5.0.2)
|
|
15
|
+
|
|
3
16
|
## 5.0.1
|
|
4
17
|
|
|
5
18
|
### Patch Changes
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"author": "swapkit-dev",
|
|
3
|
-
"dependencies": { "@swapkit/helpers": "5.0
|
|
3
|
+
"dependencies": { "@swapkit/helpers": "5.1.0", "@swapkit/toolboxes": "5.1.2", "@swapkit/wallet-core": "5.0.3" },
|
|
4
4
|
"description": "SwapKit - Wallet Keystore",
|
|
5
5
|
"exports": { ".": { "default": "./dist/index.js", "types": "./dist/types/index.d.ts" } },
|
|
6
6
|
"files": ["dist/", "CHANGELOG.md"],
|
|
@@ -22,5 +22,5 @@
|
|
|
22
22
|
"type-check:go": "tsgo"
|
|
23
23
|
},
|
|
24
24
|
"type": "module",
|
|
25
|
-
"version": "5.0.
|
|
25
|
+
"version": "5.0.3"
|
|
26
26
|
}
|