@ecency/sdk 1.0.7 → 1.0.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.
@@ -420,7 +420,7 @@ function z(e) {
420
420
  return V(
421
421
  ["accounts", "update"],
422
422
  e,
423
- ({ newProfile: t }) => [
423
+ (t) => [
424
424
  [
425
425
  "account_update2",
426
426
  {
@@ -441,15 +441,15 @@ function Pe(e) {
441
441
  mutationKey: ["ecency-wallets", "save-wallet-to-metadata", e],
442
442
  mutationFn: ({
443
443
  wallets: n
444
- }) => t({
445
- ...Array.from(n.entries() ?? []).reduce(
444
+ }) => t(
445
+ Array.from(n.entries() ?? []).reduce(
446
446
  (s, [a, i]) => ({
447
447
  ...s,
448
448
  [a]: i.address
449
449
  }),
450
450
  {}
451
451
  )
452
- })
452
+ )
453
453
  });
454
454
  }
455
455
  export {
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@ecency/sdk",
3
3
  "private": false,
4
- "version": "1.0.7",
4
+ "version": "1.0.8",
5
5
  "type": "module",
6
6
  "license": "MIT",
7
7
  "main": "./dist/ecency-sdk.umd.js",