edge-core-js 2.4.0 → 2.6.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 +11 -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 +4 -1
- package/lib/core/currency/wallet/currency-wallet-reducer.js +11 -3
- package/lib/core/fake/fake-world.js +11 -1
- package/lib/core/login/airbitz-stashes.js +111 -0
- package/lib/core/root.js +22 -4
- package/lib/flow/exports.js +2 -1
- package/lib/flow/types.js +16 -2
- package/lib/node/index.js +119 -8
- package/lib/react-native.js +4 -2
- package/lib/types/exports.js +1 -0
- package/lib/types/types.js +14 -0
- package/package.json +5 -3
- package/src/types/exports.ts +2 -1
- package/src/types/types.ts +16 -2
- package/android/src/main/assets/edge-core-js/index.html +0 -25
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,17 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
+
## 2.6.0 (2024-05-21)
|
|
6
|
+
|
|
7
|
+
- added: Better documentation comments for the `EdgeObjectTemplate` types.
|
|
8
|
+
- changed: Expose the `EdgeTransaction.feeRateUsed` provided by the engine, and only use the on-disk copy as a fallback.
|
|
9
|
+
|
|
10
|
+
## 2.5.0 (2024-03-29)
|
|
11
|
+
|
|
12
|
+
- added: `EdgeContextOptions.airbitzSupport`, for loading legacy Airbitz data from disk.
|
|
13
|
+
- fixed: Export the `EdgeObjectTemplate` type.
|
|
14
|
+
- fixed: TypeScript v5 compatibility.
|
|
15
|
+
|
|
5
16
|
## 2.4.0 (2024-03-25)
|
|
6
17
|
|
|
7
18
|
- added: New `'failed'` value to confirmations field on `EdgeTransactions`
|