@swapkit/wallet-keystore 4.4.7 → 4.4.8

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.
Files changed (2) hide show
  1. package/CHANGELOG.md +6 -0
  2. package/package.json +2 -2
package/CHANGELOG.md CHANGED
@@ -1,5 +1,11 @@
1
1
  # @swapkit/wallet-keystore
2
2
 
3
+ ## 4.4.8
4
+
5
+ ### Patch Changes
6
+
7
+ - [#290](https://github.com/swapkit/sdk/pull/290) [`4e7d2d7`](https://github.com/swapkit/sdk/commit/4e7d2d72b4c1254d16a8a6084843bd49d0795b3b) Thanks [@olegpetroveth](https://github.com/olegpetroveth)! - Add TON native balance sweep. `createTransaction`/`transfer` accept a `sweep` flag that sets the `CARRY_ALL_REMAINING_BALANCE | IGNORE_ERRORS` send mode so the wallet sends its full balance minus fees. `TONTransactionMessage` gains an optional `sendMode` override (read per-transfer from the first message by `sign`/`estimateTransactionFee`). Sweep is native-only; jetton sweeps throw. (via @swapkit/toolboxes@4.19.0)
8
+
3
9
  ## 4.4.7
4
10
 
5
11
  ### Patch Changes
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "author": "swapkit-dev",
3
- "dependencies": { "@swapkit/helpers": "4.15.1", "@swapkit/toolboxes": "4.18.0", "@swapkit/wallet-core": "4.3.8" },
3
+ "dependencies": { "@swapkit/helpers": "4.15.1", "@swapkit/toolboxes": "4.19.0", "@swapkit/wallet-core": "4.3.8" },
4
4
  "description": "SwapKit - Wallet Keystore",
5
5
  "exports": {
6
6
  ".": { "import": "./dist/index.js", "require": "./dist/index.cjs", "types": "./dist/types/index.d.ts" }
@@ -24,5 +24,5 @@
24
24
  "type-check:go": "tsgo"
25
25
  },
26
26
  "type": "module",
27
- "version": "4.4.7"
27
+ "version": "4.4.8"
28
28
  }