edge-core-js 2.10.0 → 2.12.0
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/lib/core/account/plugin-api.js +5 -0
- package/lib/core/currency/wallet/currency-wallet-api.js +17 -6
- package/lib/flow/types.js +5 -0
- package/lib/node/index.js +23 -6
- package/lib/types/types.js +5 -0
- package/package.json +1 -1
- package/src/types/types.ts +5 -0
package/CHANGELOG.md
CHANGED
|
@@ -2,6 +2,15 @@
|
|
|
2
2
|
|
|
3
3
|
## Unreleased
|
|
4
4
|
|
|
5
|
+
## 2.12.0 (2024-08-12)
|
|
6
|
+
|
|
7
|
+
- added: `EdgeCurrencyEngine.otherMethodsWithKeys`. These methods will be added to `EdgeCurrencyEngine.otherMethods`, but the core will insert private keys as the first parameter.
|
|
8
|
+
|
|
9
|
+
## 2.11.0 (2024-08-07)
|
|
10
|
+
|
|
11
|
+
- added: `EdgeCurrencyTools.getDisplayPublicKeys` to get the master public keys for a wallet.
|
|
12
|
+
- added: `EdgeCurrencyConfig.getTokenId` to create a tokenId from an EdgeToken
|
|
13
|
+
|
|
5
14
|
## 2.10.0 (2024-07-30)
|
|
6
15
|
|
|
7
16
|
- added: `EdgeCurrencyWallet.signBytes` to sign raw bytes with a private key.
|
|
@@ -11,6 +20,10 @@
|
|
|
11
20
|
|
|
12
21
|
- fixed: Work with React Native bridgeless mode on iOS and Android.
|
|
13
22
|
|
|
23
|
+
## 2.9.1-1 (2024-08-07)
|
|
24
|
+
|
|
25
|
+
- added: `EdgeCurrencyConfig.getTokenId` to create a tokenId from an EdgeToken
|
|
26
|
+
|
|
14
27
|
## 2.9.1 (2024-07-24)
|
|
15
28
|
|
|
16
29
|
- fixed: Edge case for filtering transactions with empty txs (zero amount & fee)
|