edge-core-js 0.19.32 → 0.19.34
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 +13 -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.LICENSE.txt +2 -0
- package/lib/core/account/account-api.js +9 -11
- package/lib/core/account/account-files.js +14 -7
- package/lib/core/account/account-init.js +5 -3
- package/lib/core/account/account-pixie.js +6 -4
- package/lib/core/account/custom-tokens.js +5 -3
- package/lib/core/account/lobby-api.js +23 -24
- package/lib/core/account/plugin-api.js +2 -2
- package/lib/core/context/context-api.js +2 -2
- package/lib/core/context/context-pixie.js +7 -1
- package/lib/core/currency/currency-reducer.js +5 -4
- package/lib/core/currency/wallet/currency-wallet-api.js +12 -15
- package/lib/core/currency/wallet/currency-wallet-callbacks.js +24 -20
- package/lib/core/currency/wallet/currency-wallet-export.js +1 -1
- package/lib/core/currency/wallet/currency-wallet-files.js +3 -3
- package/lib/core/currency/wallet/currency-wallet-pixie.js +19 -16
- package/lib/core/currency/wallet/currency-wallet-reducer.js +7 -5
- package/lib/core/exchange/exchange-pixie.js +19 -24
- package/lib/core/exchange/exchange-reducer.js +2 -2
- package/lib/core/exchange/exchange-selectors.js +4 -1
- package/lib/core/fake/fake-io.js +0 -1
- package/lib/core/fake/fake-world.js +2 -2
- package/lib/core/log/log.js +1 -0
- package/lib/core/login/create.js +24 -17
- package/lib/core/login/keys.js +4 -3
- package/lib/core/login/login-messages.js +12 -11
- package/lib/core/login/login-stash.js +1 -1
- package/lib/core/login/login.js +1 -1
- package/lib/core/login/otp.js +3 -4
- package/lib/core/login/password.js +1 -1
- package/lib/core/login/pin2.js +2 -2
- package/lib/core/login/recovery2.js +8 -9
- package/lib/core/plugins/plugins-actions.js +3 -2
- package/lib/core/plugins/plugins-selectors.js +2 -1
- package/lib/core/root.js +29 -22
- package/lib/core/scrypt/scrypt-pixie.js +8 -9
- package/lib/core/scrypt/scrypt-selectors.js +3 -2
- package/lib/core/storage/encrypt-disklet.js +8 -10
- package/lib/core/storage/repo.js +3 -4
- package/lib/exports.d.ts +14 -5
- package/lib/io/browser/browser-io.js +0 -1
- package/lib/io/node/node-io.js +0 -1
- package/lib/io/react-native/react-native-types.js +2 -1
- package/lib/io/react-native/react-native-webview.js +1 -3
- package/lib/io/react-native/react-native-worker.js +18 -17
- package/lib/io/react-native/yaob-callbacks.js +1 -1
- package/lib/node/index.js +248 -215
- package/lib/react-native.js +33 -14
- package/lib/types/exports.js +8 -0
- package/lib/types/exports.ts +15 -5
- package/lib/types/types.js +7 -0
- package/lib/types/types.ts +9 -2
- package/lib/types.d.ts +8 -2
- package/lib/util/crypto/ethereum.js +1 -1
- package/lib/util/file-helpers.js +1 -1
- package/lib/util/periodic-task.js +1 -1
- package/package.json +4 -4
- package/src/types/exports.js +13 -5
- package/src/types/types.js +10 -3
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,18 @@
|
|
|
1
1
|
# edge-core-js
|
|
2
2
|
|
|
3
|
+
## v0.19.34 (2022-12-16)
|
|
4
|
+
|
|
5
|
+
- fixed: Export more accurate TypeScript definitions for our React Native components.
|
|
6
|
+
|
|
7
|
+
## v0.19.33 (2022-11-25)
|
|
8
|
+
|
|
9
|
+
- added: New options for getReceiveAddress
|
|
10
|
+
- changed: Upgrade biggystring to 4.0.0
|
|
11
|
+
- changed: Increase BCH replay protection transaction value amount
|
|
12
|
+
- changed: Upgrade redux to 4.2.0
|
|
13
|
+
- changed: Upgrade redux-keto to 0.3.5
|
|
14
|
+
- fixed: Login server override testing
|
|
15
|
+
|
|
3
16
|
## v0.19.32 (2022-11-14)
|
|
4
17
|
|
|
5
18
|
- added: `EdgeTransaction.walletId`.
|