edge-core-js 1.3.2 → 1.3.4
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 +22 -13
- package/android/src/main/assets/edge-core-js/edge-core.js +1 -1
- package/android/src/main/java/app/edge/reactnative/core/EdgeCoreWebView.java +4 -3
- package/ios/EdgeCoreWebView.swift +3 -4
- package/lib/io/react-native/react-native-worker.js +47 -16
- package/lib/io/react-native/yaob-callbacks.js +4 -1
- package/package.json +1 -1
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# edge-core-js
|
|
2
2
|
|
|
3
|
+
## v1.3.4 (2023-07-26)
|
|
4
|
+
|
|
5
|
+
- fixed: Escape bridge strings closer to serialization, for possibly better performance.
|
|
6
|
+
- fixed: Fallback to CORS-safe fetch functions on all errors to fix inconsistency with error messages across platforms.
|
|
7
|
+
|
|
8
|
+
## v1.3.3 (2023-07-24)
|
|
9
|
+
|
|
10
|
+
- changed: Add fallback to bridged `fetch` if request to edge-cors-proxy server fails
|
|
11
|
+
|
|
3
12
|
## v1.3.2 (2023-07-13)
|
|
4
13
|
|
|
5
14
|
- Changed: Added a fallback to edge-cors-proxy server to `fetch` method on `EdgeIo`.
|
|
@@ -38,19 +47,19 @@
|
|
|
38
47
|
- changed: Fix the `listRecoveryQuestionChoices` return type
|
|
39
48
|
- changed: Allow usernames to be `undefined`
|
|
40
49
|
- removed: Ethereum hacks
|
|
41
|
-
|
|
42
|
-
|
|
50
|
+
- Ethereum address derivation.
|
|
51
|
+
- `EdgeAccount.signEthereumTransaction`
|
|
43
52
|
- removed: Deprecated client-side token methods
|
|
44
|
-
|
|
45
|
-
|
|
46
|
-
|
|
47
|
-
|
|
48
|
-
|
|
49
|
-
|
|
50
|
-
|
|
53
|
+
- `EdgeCurrencyEngine.getEnabledTokens` (no longer used)
|
|
54
|
+
- `EdgeCurrencyEngine.getTokenStatus` (no longer used)
|
|
55
|
+
- `EdgeCurrencyWallet.addCustomToken`
|
|
56
|
+
- `EdgeCurrencyWallet.changeEnabledTokens`
|
|
57
|
+
- `EdgeCurrencyWallet.disableTokens`
|
|
58
|
+
- `EdgeCurrencyWallet.enableTokens`
|
|
59
|
+
- `EdgeCurrencyWallet.getEnabledTokens`
|
|
51
60
|
- removed: Deprecated display-key properties
|
|
52
|
-
|
|
53
|
-
|
|
61
|
+
- `EdgeCurrencyWallet.displayPrivateSeed`
|
|
62
|
+
- `EdgeCurrencyWallet.displayPublicSeed`
|
|
54
63
|
- removed: Deprecated `EdgeAccount.loginKey` property
|
|
55
64
|
- removed: Deprecated `keys` properties on `EdgeAccount` and `EdgeCurrencyWallet`
|
|
56
65
|
- removed: Deprecated `EdgeTransaction.amountSatoshi`
|
|
@@ -58,8 +67,8 @@
|
|
|
58
67
|
- removed: Unused `EdgeTransaction.wallet`
|
|
59
68
|
- removed: Unused `getTransactions` parameters
|
|
60
69
|
- removed: Unused type definitions
|
|
61
|
-
|
|
62
|
-
|
|
70
|
+
- `EdgeBitcoinPrivateKeyOptions`
|
|
71
|
+
- `EdgeCreatePrivateKeyOptions`
|
|
63
72
|
- removed: No longer allow the OTP key to be passed as `EdgeAccountOptions.otp`. This parameter only accepts 6-digit OTP codes now. Pass the key as `EdgeAccountOptions.otpKey` instead.
|
|
64
73
|
|
|
65
74
|
## v0.21.5 (2023-05-24)
|