@shogun-sdk/swap 0.0.2-test.11 → 0.0.2-test.12

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/core.cjs CHANGED
@@ -675,8 +675,8 @@ async function executeOrder({
675
675
  accountAddress,
676
676
  recipientAddress,
677
677
  deadline,
678
- tokenIn: quote?.tokenIn?.symbol,
679
- tokenOut: quote?.tokenOut?.symbol
678
+ tokenIn: quote?.tokenIn,
679
+ tokenOut: quote?.tokenOut
680
680
  });
681
681
  const adapter = normalizeWallet(wallet);
682
682
  if (!adapter) throw new Error("No wallet provided");
package/dist/core.js CHANGED
@@ -646,8 +646,8 @@ async function executeOrder({
646
646
  accountAddress,
647
647
  recipientAddress,
648
648
  deadline,
649
- tokenIn: quote?.tokenIn?.symbol,
650
- tokenOut: quote?.tokenOut?.symbol
649
+ tokenIn: quote?.tokenIn,
650
+ tokenOut: quote?.tokenOut
651
651
  });
652
652
  const adapter = normalizeWallet(wallet);
653
653
  if (!adapter) throw new Error("No wallet provided");
package/dist/index.cjs CHANGED
@@ -759,8 +759,8 @@ async function executeOrder({
759
759
  accountAddress,
760
760
  recipientAddress,
761
761
  deadline,
762
- tokenIn: quote?.tokenIn?.symbol,
763
- tokenOut: quote?.tokenOut?.symbol
762
+ tokenIn: quote?.tokenIn,
763
+ tokenOut: quote?.tokenOut
764
764
  });
765
765
  const adapter = normalizeWallet(wallet);
766
766
  if (!adapter) throw new Error("No wallet provided");
package/dist/index.js CHANGED
@@ -727,8 +727,8 @@ async function executeOrder({
727
727
  accountAddress,
728
728
  recipientAddress,
729
729
  deadline,
730
- tokenIn: quote?.tokenIn?.symbol,
731
- tokenOut: quote?.tokenOut?.symbol
730
+ tokenIn: quote?.tokenIn,
731
+ tokenOut: quote?.tokenOut
732
732
  });
733
733
  const adapter = normalizeWallet(wallet);
734
734
  if (!adapter) throw new Error("No wallet provided");
package/dist/react.cjs CHANGED
@@ -611,8 +611,8 @@ async function executeOrder({
611
611
  accountAddress,
612
612
  recipientAddress,
613
613
  deadline,
614
- tokenIn: quote?.tokenIn?.symbol,
615
- tokenOut: quote?.tokenOut?.symbol
614
+ tokenIn: quote?.tokenIn,
615
+ tokenOut: quote?.tokenOut
616
616
  });
617
617
  const adapter = normalizeWallet(wallet);
618
618
  if (!adapter) throw new Error("No wallet provided");
package/dist/react.js CHANGED
@@ -589,8 +589,8 @@ async function executeOrder({
589
589
  accountAddress,
590
590
  recipientAddress,
591
591
  deadline,
592
- tokenIn: quote?.tokenIn?.symbol,
593
- tokenOut: quote?.tokenOut?.symbol
592
+ tokenIn: quote?.tokenIn,
593
+ tokenOut: quote?.tokenOut
594
594
  });
595
595
  const adapter = normalizeWallet(wallet);
596
596
  if (!adapter) throw new Error("No wallet provided");
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shogun-sdk/swap",
3
- "version": "0.0.2-test.11",
3
+ "version": "0.0.2-test.12",
4
4
  "type": "module",
5
5
  "description": "Shogun Network Swap utilities and helpers",
6
6
  "author": "Shogun Network",