edge-core-js 2.0.0 → 2.1.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 +14 -0
- package/android/src/main/assets/edge-core-js/edge-core.js +1 -1
- package/android/src/main/assets/edge-core-js/edge-core.js.map +1 -1
- package/lib/core/currency/wallet/currency-wallet-api.js +13 -7
- package/lib/core/currency/wallet/currency-wallet-cleaners.js +8 -5
- package/lib/core/swap/swap-api.js +12 -3
- package/lib/flow/types.js +17 -5
- package/lib/node/index.js +39 -13
- package/lib/types/types.js +12 -0
- package/lib/util/compare.js +20 -0
- package/lib/util/promise.js +2 -2
- package/package.json +1 -1
- package/src/types/types.ts +16 -4
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,19 @@
|
|
|
1
1
|
# edge-core-js
|
|
2
2
|
|
|
3
|
+
## Unreleased
|
|
4
|
+
|
|
5
|
+
## 2.1.0 (2024-01-18)
|
|
6
|
+
|
|
7
|
+
- added: Make swap timeouts adjustable.
|
|
8
|
+
- fixed: Provide a `currencyCode` fallback to `EdgeCurrencyEngine.getMaxSpendable`.
|
|
9
|
+
|
|
10
|
+
## 2.0.1 (2024-01-08)
|
|
11
|
+
|
|
12
|
+
- added: Missing asset action types (claim, claimOrder, swapNetworkFee, and transferNetworkFee).
|
|
13
|
+
- fixed: Avoid superfluous property updates.
|
|
14
|
+
- fixed: Correctly populate `tokenId` on `makeSpend` when using legacy currency plugins.
|
|
15
|
+
- fixed: Correctly write `assetAction` to disk.
|
|
16
|
+
|
|
3
17
|
## 2.0.0 (2024-01-04)
|
|
4
18
|
|
|
5
19
|
- added: `EdgeCurrencyWallet.saveTxAction` to add/edit `EdgeTransaction.savedAction`
|