edge-core-js 0.19.7 → 0.19.8
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 +10 -0
- package/android/src/main/assets/edge-core-js/edge-core.js +1 -1
- package/lib/core/account/account-api.js +27 -20
- package/lib/core/account/account-cleaners.js +12 -9
- package/lib/core/account/account-files.js +3 -3
- package/lib/core/account/account-init.js +6 -4
- package/lib/core/account/account-pixie.js +59 -53
- package/lib/core/account/account-reducer.js +29 -3
- package/lib/core/account/account-types.js +8 -0
- package/lib/core/account/custom-tokens.js +93 -0
- package/lib/core/account/lobby-api.js +1 -1
- package/lib/core/account/plugin-api.js +20 -7
- package/lib/core/actions.js +15 -0
- package/lib/core/currency/currency-pixie.js +4 -4
- package/lib/core/currency/currency-reducer.js +0 -28
- package/lib/core/currency/currency-selectors.js +6 -5
- package/lib/core/currency/wallet/currency-wallet-api.js +47 -31
- package/lib/core/currency/wallet/currency-wallet-callbacks.js +14 -15
- package/lib/core/currency/wallet/currency-wallet-files.js +19 -26
- package/lib/core/currency/wallet/currency-wallet-pixie.js +48 -71
- package/lib/core/currency/wallet/currency-wallet-reducer.js +4 -8
- package/lib/core/login/keys.js +22 -9
- package/lib/core/plugins/plugins-selectors.js +19 -25
- package/lib/node/index.js +501 -298
- package/lib/types/types.js +32 -0
- package/lib/types/types.ts +41 -9
- package/lib/types.d.ts +19 -4
- package/package.json +1 -1
- package/src/types/types.js +41 -9
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,15 @@
|
|
|
1
1
|
# edge-core-js
|
|
2
2
|
|
|
3
|
+
## v0.19.8 (2022-02-21)
|
|
4
|
+
|
|
5
|
+
- added: Define a new `EdgeToken` type and make that available as `EdgeCurrencyConfig.builtinTokens` and `EdgeCurrencyConfig.customTokens`.
|
|
6
|
+
- added: Define a new `EdgeCurrencyPlugin.getBuiltinTokens` method, and use that to populate `EdgeCurrencyConfig.builtinTokens` when available.
|
|
7
|
+
- added: Pass `EdgeToken` fields to `EdgeCurrencyEngine.addCustomToken`, along with the existing `EdgeMetaToken` fields.
|
|
8
|
+
- deprecated: `EdgeCurrencyInfo.defaultSettings`
|
|
9
|
+
- deprecated: `EdgeCurrencyInfo.metaTokens`
|
|
10
|
+
- deprecated: `EdgeCurrencyInfo.symbolImage`
|
|
11
|
+
- deprecated: `EdgeCurrencyInfo.symbolImageDarkMono`
|
|
12
|
+
|
|
3
13
|
## v0.19.7 (2022-02-15)
|
|
4
14
|
|
|
5
15
|
- added: Include an `imported` flag with all new wallet keys, to indicate whether they were derived freshly or imported from user-entered data.
|