edge-core-js 2.2.0 → 2.3.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 +9 -0
- package/android/src/main/assets/edge-core-js/edge-core.js +1 -1
- package/lib/core/account/account-api.js +2 -2
- package/lib/core/account/account-pixie.js +3 -6
- package/lib/core/account/lobby-api.js +1 -3
- package/lib/core/actions.js +6 -0
- package/lib/core/context/context-pixie.js +47 -2
- package/lib/core/context/info-cache-file.js +18 -0
- package/lib/core/currency/currency-pixie.js +32 -2
- package/lib/core/currency/wallet/currency-wallet-callbacks.js +3 -7
- package/lib/core/currency/wallet/currency-wallet-files.js +18 -16
- package/lib/core/currency/wallet/metadata.js +2 -1
- package/lib/core/fake/fake-db.js +3 -3
- package/lib/core/fake/fake-server.js +6 -6
- package/lib/core/fake/fake-world.js +5 -2
- package/lib/core/plugins/plugins-actions.js +6 -3
- package/lib/core/plugins/plugins-selectors.js +1 -1
- package/lib/core/root-reducer.js +21 -2
- package/lib/core/root.js +33 -16
- package/lib/core/storage/storage-actions.js +3 -3
- package/lib/core/swap/swap-api.js +5 -4
- package/lib/flow/types.js +6 -2
- package/lib/io/react-native/native-bridge.js +1 -0
- package/lib/node/index.js +179 -82
- package/lib/types/types.js +4 -0
- package/lib/util/match-json.js +47 -0
- package/package.json +1 -1
- package/src/types/types.ts +6 -2
- package/lib/core/context/context-reducer.js +0 -31
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
+
## 2.3.0 (2024-03-23)
|
|
6
|
+
|
|
7
|
+
- added: `EdgeCorePluginOptions.infoPayload`, containing arbitrary JSON provided by the info server.
|
|
8
|
+
- added: `EdgeCurrencyPlugin.updateInfoPayload`, called when we the core fetches a fresh payload from the info server.
|
|
9
|
+
|
|
10
|
+
## 2.2.1 (2024-02-21)
|
|
11
|
+
|
|
12
|
+
- fixed: Correctly save `enabledTokenIds` when creating a new wallet.
|
|
13
|
+
|
|
5
14
|
## 2.2.0 (2024-02-12)
|
|
6
15
|
|
|
7
16
|
- added: Accept an `enabledTokens` parameter to the `createCurrencyWallets` method.
|