@ecency/wallets 1.3.9 → 1.3.11
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/dist/ecency-sdk.es.js
CHANGED
|
@@ -22659,10 +22659,10 @@ function f1(a) {
|
|
|
22659
22659
|
throw new Error("[SDK][Wallets] – no account data to save wallets");
|
|
22660
22660
|
const i = cc(
|
|
22661
22661
|
(r = b.profile) == null ? void 0 : r.tokens
|
|
22662
|
-
), p = s.map(({ currency: e, type: t,
|
|
22662
|
+
), p = s.map(({ currency: e, type: t, privateKey: o, username: u, ...d }) => ({
|
|
22663
22663
|
symbol: e,
|
|
22664
22664
|
type: t,
|
|
22665
|
-
meta:
|
|
22665
|
+
meta: d
|
|
22666
22666
|
})) ?? [], f = cc(p, !0), l = p.filter(
|
|
22667
22667
|
({ type: e }) => e !== "CHAIN"
|
|
22668
22668
|
), n = $t.pipe(
|
|
@@ -1,7 +1,7 @@
|
|
|
1
1
|
import { EcencyTokenMetadata } from '../types';
|
|
2
2
|
/**
|
|
3
3
|
* Saving of token(s) metadata to Hive profile
|
|
4
|
-
* It may
|
|
4
|
+
* It may contain: external wallets(see EcencyWalletCurrency), Hive tokens arrangement
|
|
5
5
|
*
|
|
6
6
|
* Basically, this mutation is a convenient wrapper for update profile operation
|
|
7
7
|
*/
|