@ecency/wallets 1.4.28 → 1.4.30

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.
@@ -2682,29 +2682,37 @@ var ACTION_ALIAS_MAP = {
2682
2682
  "withdraw-from-savings": "withdraw-saving" /* WithdrawFromSavings */,
2683
2683
  "withdraw-savings": "withdraw-saving" /* WithdrawFromSavings */,
2684
2684
  "savings-withdraw": "withdraw-saving" /* WithdrawFromSavings */,
2685
+ "transfer-from-savings": "withdraw-saving" /* WithdrawFromSavings */,
2685
2686
  "powerup": "power-up" /* PowerUp */,
2686
2687
  "power-down": "power-down" /* PowerDown */,
2687
2688
  "powerdown": "power-down" /* PowerDown */,
2689
+ "withdraw-vesting": "power-down" /* PowerDown */,
2688
2690
  "hp-delegate": "delegate" /* Delegate */,
2689
2691
  "delegate-hp": "delegate" /* Delegate */,
2690
2692
  "delegate-power": "delegate" /* Delegate */,
2693
+ "delegate-vesting-shares": "delegate" /* Delegate */,
2691
2694
  "undelegate-power": "undelegate" /* Undelegate */,
2692
2695
  "undelegate-token": "undelegate" /* Undelegate */,
2693
2696
  "stake-token": "stake" /* Stake */,
2694
2697
  "stake-power": "stake" /* Stake */,
2695
2698
  "unstake-token": "unstake" /* Unstake */,
2696
2699
  "unstake-power": "unstake" /* Unstake */,
2700
+ "transfer-to-vesting": "power-up" /* PowerUp */,
2697
2701
  "lock-liquidity": "lock" /* LockLiquidity */,
2698
2702
  "lock-liq": "lock" /* LockLiquidity */,
2699
2703
  "gift-points": "gift" /* Gift */,
2700
2704
  "points-gift": "gift" /* Gift */,
2701
2705
  "promote-post": "promote" /* Promote */,
2702
2706
  "promote-entry": "promote" /* Promote */,
2707
+ boost: "promote" /* Promote */,
2708
+ convert: "swap" /* Swap */,
2709
+ "swap-token": "swap" /* Swap */,
2710
+ "swap_tokens": "swap" /* Swap */,
2703
2711
  "claim-points": "claim" /* Claim */,
2704
2712
  "claim-rewards": "claim" /* Claim */,
2705
2713
  "buy-points": "buy" /* Buy */,
2706
- "swap-token": "swap" /* Swap */,
2707
- "swap-tokens": "swap" /* Swap */,
2714
+ "ecency-point-transfer": "transfer" /* Transfer */,
2715
+ "spkcc-spk-send": "transfer" /* Transfer */,
2708
2716
  "withdraw-routes": "withdraw-routes" /* WithdrawRoutes */,
2709
2717
  "withdrawroutes": "withdraw-routes" /* WithdrawRoutes */,
2710
2718
  "claim-interest": "claim-interest" /* ClaimInterest */
@@ -2892,7 +2900,7 @@ function mapActions(rawActions) {
2892
2900
  candidate = raw;
2893
2901
  } else if (raw && typeof raw === "object") {
2894
2902
  const record = raw;
2895
- candidate = normalizeString(record.code) ?? normalizeString(record.name) ?? normalizeString(record.action);
2903
+ candidate = normalizeString(record.code) ?? normalizeString(record.id) ?? normalizeString(record.name) ?? normalizeString(record.action);
2896
2904
  }
2897
2905
  if (!candidate) {
2898
2906
  continue;
@@ -3959,6 +3967,7 @@ var operationToFunctionMap = {
3959
3967
  ["withdraw-routes" /* WithdrawRoutes */]: withdrawVestingRouteHive
3960
3968
  },
3961
3969
  POINTS: {
3970
+ ["transfer" /* Transfer */]: transferPoint,
3962
3971
  ["gift" /* Gift */]: transferPoint
3963
3972
  },
3964
3973
  SPK: {