edge-core-js 1.12.0 → 1.13.1
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 +8 -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/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 +0 -1
- package/lib/core/actions.js +0 -1
- package/lib/core/context/internal-api.js +2 -2
- package/lib/core/currency/wallet/currency-wallet-callbacks.js +0 -1
- package/lib/core/currency/wallet/currency-wallet-pixie.js +0 -1
- package/lib/core/currency/wallet/currency-wallet-reducer.js +0 -1
- 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 +13 -1
- package/lib/io/fetch-cors-proxy.js +6 -1
- package/lib/node/index.js +469 -409
- package/lib/types/types.js +12 -0
- package/lib/util/file-helpers.js +0 -2
- package/package.json +1 -1
- package/src/types/types.ts +13 -1
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,14 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
+
## 1.13.1 (2023-12-06)
|
|
6
|
+
|
|
7
|
+
- added: Extra cors servers to distribute load
|
|
8
|
+
|
|
9
|
+
## 1.13.0 (2023-12-05)
|
|
10
|
+
|
|
11
|
+
- added: `EdgeAccount.createCurrencyWallets`, for creating multiple wallets at once.
|
|
12
|
+
|
|
5
13
|
## 1.12.0 (2023-11-30)
|
|
6
14
|
|
|
7
15
|
- added: Accept an `onNewTokens` callback from `EdgeCurrencyEngine`.
|