edge-core-js 1.1.0 → 1.3.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 +12 -0
- package/android/src/main/assets/edge-core-js/edge-core.js +1 -1
- package/lib/client-side.js +60 -1
- package/lib/core/account/account-api.js +21 -5
- package/lib/core/currency/wallet/currency-wallet-api.js +111 -43
- package/lib/core/currency/wallet/currency-wallet-callbacks.js +1 -1
- package/lib/core/currency/wallet/currency-wallet-export.js +66 -74
- package/lib/core/fake/fake-server.js +98 -1
- package/lib/core/login/login-username.js +1 -1
- package/lib/flow/types.js +32 -0
- package/lib/node/index.js +294 -103
- package/lib/types/types.js +32 -0
- package/package.json +1 -1
- package/src/types/types.ts +32 -0
package/CHANGELOG.md
CHANGED
|
@@ -1,5 +1,17 @@
|
|
|
1
1
|
# edge-core-js
|
|
2
2
|
|
|
3
|
+
## v1.3.0 (2023-06-16)
|
|
4
|
+
|
|
5
|
+
- added: Add an `EdgeAccount.getPin` method.
|
|
6
|
+
- fixed: Allow the `EdgeAccount.username` property to update after calling `changeUsername`.
|
|
7
|
+
|
|
8
|
+
## v1.2.0 (2023-06-15)
|
|
9
|
+
|
|
10
|
+
- added: Add an `EdgeCurrencyWallet.streamTransactions` method.
|
|
11
|
+
- deprecated: Pagination options for `getTransactions`. Use `streamTransactions` if you need pagination.
|
|
12
|
+
- fixed: Add the correct URI to `changeUsername`, so it works.
|
|
13
|
+
- fixed: Send a 'transactionsChanged' event when editing metadata.
|
|
14
|
+
|
|
3
15
|
## v1.1.0 (2023-06-08)
|
|
4
16
|
|
|
5
17
|
- added: Add an `EdgeContext.forgetAccount` method.
|