edge-core-js 0.19.36 → 0.19.37
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/android/src/main/assets/edge-core-js/edge-core.js.LICENSE.txt +2 -0
- package/android/src/main/assets/edge-core-js/edge-core.js.map +1 -1
- package/lib/core/account/account-reducer.js +14 -0
- package/lib/core/account/plugin-api.js +18 -0
- package/lib/core/actions.js +9 -0
- package/lib/core/currency/wallet/currency-wallet-pixie.js +30 -10
- package/lib/core/currency/wallet/currency-wallet-reducer.js +12 -1
- package/lib/core/swap/swap-api.js +30 -9
- package/lib/node/index.js +95 -19
- package/lib/types/types.js +10 -0
- package/lib/types/types.ts +14 -4
- package/lib/types.d.ts +8 -1
- package/package.json +1 -1
- package/src/types/types.js +11 -1
- package/android/src/main/assets/edge-core-js/index.html +0 -25
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,14 @@
|
|
|
1
1
|
# edge-core-js
|
|
2
2
|
|
|
3
|
+
## v0.19.37 (2023-01-06)
|
|
4
|
+
|
|
5
|
+
- added: Always-enabled tokens. The currency engine checks these for balances and transactions, but they do not appear in the per-wallet enabled token lists.
|
|
6
|
+
- `EdgeCurrencyConfig.alwaysEnabledTokenIds`
|
|
7
|
+
- `EdgeCurrencyConfig.changeAlwaysEnabledTokenIds`
|
|
8
|
+
- added: `EdgeCurrencyTools.checkPublicKey`, which provides a mechanism for currency plugins to refresh their cached public keys if necessary.
|
|
9
|
+
- added: `EdgeSwapInfo.isDex` and `EdgeSwapRequestOptions.preferType`, to always prefer DEX swaps over centralized swaps.
|
|
10
|
+
- changed: Always select the "transfer" plugin if it returns a quote, regardless of price.
|
|
11
|
+
|
|
3
12
|
## v0.19.36 (2022-12-26)
|
|
4
13
|
|
|
5
14
|
- added: Accelerate Transaction API
|