edge-core-js 1.11.0 → 1.13.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 +12 -0
- package/android/src/main/assets/edge-core-js/edge-core.js +1 -1
- package/lib/core/account/account-api.js +47 -20
- package/lib/core/account/account-files.js +6 -3
- package/lib/core/account/account-init.js +14 -10
- package/lib/core/account/account-reducer.js +0 -1
- package/lib/core/account/plugin-api.js +7 -10
- package/lib/core/actions.js +16 -0
- package/lib/core/context/internal-api.js +2 -2
- package/lib/core/currency/wallet/currency-wallet-api.js +13 -15
- package/lib/core/currency/wallet/currency-wallet-callbacks.js +36 -3
- package/lib/core/currency/wallet/currency-wallet-cleaners.js +15 -5
- package/lib/core/currency/wallet/currency-wallet-files.js +56 -24
- package/lib/core/currency/wallet/currency-wallet-pixie.js +21 -19
- package/lib/core/currency/wallet/currency-wallet-reducer.js +43 -19
- package/lib/core/currency/wallet/enabled-tokens.js +3 -4
- package/lib/core/fake/fake-world.js +9 -2
- package/lib/core/log/log.js +0 -1
- package/lib/core/login/create.js +1 -1
- package/lib/core/login/keys.js +61 -277
- package/lib/core/login/login-types.js +2 -2
- package/lib/core/login/login.js +2 -4
- package/lib/core/login/splitting.js +236 -0
- package/lib/core/login/storage-keys.js +22 -0
- package/lib/core/storage/repo.js +3 -2
- package/lib/core/storage/storage-actions.js +3 -5
- package/lib/flow/types.js +22 -3
- package/lib/node/index.js +647 -495
- package/lib/types/types.js +19 -0
- package/lib/util/file-helpers.js +0 -2
- package/package.json +2 -2
- package/src/types/types.ts +22 -3
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,18 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
+
## 1.13.0 (2023-12-05)
|
|
6
|
+
|
|
7
|
+
- added: `EdgeAccount.createCurrencyWallets`, for creating multiple wallets at once.
|
|
8
|
+
|
|
9
|
+
## 1.12.0 (2023-11-30)
|
|
10
|
+
|
|
11
|
+
- added: Accept an `onNewTokens` callback from `EdgeCurrencyEngine`.
|
|
12
|
+
- added: Emit an `enabledDetectedTokens` event when auto-enabling tokens.
|
|
13
|
+
- added: Expose auto-detected tokens as `EdgeCurrencyWallet.detectedTokenIds`.
|
|
14
|
+
- changed: Save enabled tokens by their tokenId, not by their currency code.
|
|
15
|
+
- fixed: Add missing `export` to the `EdgeCorePluginFactory` type definition.
|
|
16
|
+
|
|
5
17
|
## 1.11.0 (2023-10-18)
|
|
6
18
|
|
|
7
19
|
- added: `EdgeAccount.fetchSwapQuotes`, to return all relevant quotes, and not just the best one.
|