@shogun-sdk/swap 0.0.2-test.17 → 0.0.2-test.18

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
@@ -553,9 +553,9 @@ async function handleEvmExecution({
553
553
  deadline,
554
554
  isSingleChain
555
555
  });
556
- console.log({ order });
557
556
  update("processing", messageFor("signing"));
558
557
  const { orderTypedData, nonce } = isSingleChain ? await (0, import_intents_sdk8.getEVMSingleChainOrderTypedData)(order) : await (0, import_intents_sdk8.getEVMCrossChainOrderTypedData)(order);
558
+ console.log({ order, orderTypedData });
559
559
  if (!wallet.signTypedData) {
560
560
  throw new Error("Wallet does not support EIP-712 signing");
561
561
  }
package/dist/core.js CHANGED
@@ -521,9 +521,9 @@ async function handleEvmExecution({
521
521
  deadline,
522
522
  isSingleChain
523
523
  });
524
- console.log({ order });
525
524
  update("processing", messageFor("signing"));
526
525
  const { orderTypedData, nonce } = isSingleChain ? await getEVMSingleChainOrderTypedData(order) : await getEVMCrossChainOrderTypedData(order);
526
+ console.log({ order, orderTypedData });
527
527
  if (!wallet.signTypedData) {
528
528
  throw new Error("Wallet does not support EIP-712 signing");
529
529
  }
package/dist/index.cjs CHANGED
@@ -637,9 +637,9 @@ async function handleEvmExecution({
637
637
  deadline,
638
638
  isSingleChain
639
639
  });
640
- console.log({ order });
641
640
  update("processing", messageFor("signing"));
642
641
  const { orderTypedData, nonce } = isSingleChain ? await (0, import_intents_sdk8.getEVMSingleChainOrderTypedData)(order) : await (0, import_intents_sdk8.getEVMCrossChainOrderTypedData)(order);
642
+ console.log({ order, orderTypedData });
643
643
  if (!wallet.signTypedData) {
644
644
  throw new Error("Wallet does not support EIP-712 signing");
645
645
  }
package/dist/index.js CHANGED
@@ -602,9 +602,9 @@ async function handleEvmExecution({
602
602
  deadline,
603
603
  isSingleChain
604
604
  });
605
- console.log({ order });
606
605
  update("processing", messageFor("signing"));
607
606
  const { orderTypedData, nonce } = isSingleChain ? await getEVMSingleChainOrderTypedData(order) : await getEVMCrossChainOrderTypedData(order);
607
+ console.log({ order, orderTypedData });
608
608
  if (!wallet.signTypedData) {
609
609
  throw new Error("Wallet does not support EIP-712 signing");
610
610
  }
package/dist/react.cjs CHANGED
@@ -489,9 +489,9 @@ async function handleEvmExecution({
489
489
  deadline,
490
490
  isSingleChain
491
491
  });
492
- console.log({ order });
493
492
  update("processing", messageFor("signing"));
494
493
  const { orderTypedData, nonce } = isSingleChain ? await (0, import_intents_sdk6.getEVMSingleChainOrderTypedData)(order) : await (0, import_intents_sdk6.getEVMCrossChainOrderTypedData)(order);
494
+ console.log({ order, orderTypedData });
495
495
  if (!wallet.signTypedData) {
496
496
  throw new Error("Wallet does not support EIP-712 signing");
497
497
  }
package/dist/react.js CHANGED
@@ -464,9 +464,9 @@ async function handleEvmExecution({
464
464
  deadline,
465
465
  isSingleChain
466
466
  });
467
- console.log({ order });
468
467
  update("processing", messageFor("signing"));
469
468
  const { orderTypedData, nonce } = isSingleChain ? await getEVMSingleChainOrderTypedData(order) : await getEVMCrossChainOrderTypedData(order);
469
+ console.log({ order, orderTypedData });
470
470
  if (!wallet.signTypedData) {
471
471
  throw new Error("Wallet does not support EIP-712 signing");
472
472
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@shogun-sdk/swap",
3
- "version": "0.0.2-test.17",
3
+ "version": "0.0.2-test.18",
4
4
  "type": "module",
5
5
  "description": "Shogun Network Swap utilities and helpers",
6
6
  "author": "Shogun Network",