@dzapio/sdk 2.0.25 → 2.0.26

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/index.d.mts CHANGED
@@ -708,12 +708,17 @@ type ZapIntegratorConfig = {
708
708
  wallet: string;
709
709
  };
710
710
  type ZapBuildTxnResponse = {
711
- amountOut: string;
712
711
  approvalData: {
713
712
  callTo: HexString;
714
713
  approveTo: HexString;
715
714
  amount: string;
716
- } | null;
715
+ }[];
716
+ output: {
717
+ address: string;
718
+ amount: string;
719
+ chainId: number;
720
+ minAmount: string;
721
+ }[];
717
722
  steps: ZapStep[];
718
723
  path: ZapPath[];
719
724
  };
package/dist/index.d.ts CHANGED
@@ -708,12 +708,17 @@ type ZapIntegratorConfig = {
708
708
  wallet: string;
709
709
  };
710
710
  type ZapBuildTxnResponse = {
711
- amountOut: string;
712
711
  approvalData: {
713
712
  callTo: HexString;
714
713
  approveTo: HexString;
715
714
  amount: string;
716
- } | null;
715
+ }[];
716
+ output: {
717
+ address: string;
718
+ amount: string;
719
+ chainId: number;
720
+ minAmount: string;
721
+ }[];
717
722
  steps: ZapStep[];
718
723
  path: ZapPath[];
719
724
  };
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dzapio/sdk",
3
- "version": "2.0.25",
3
+ "version": "2.0.26",
4
4
  "description": "A TypeScript/JavaScript SDK for interacting with the DZap protocol, providing utilities for DeFi operations including Swaps, Bridges, and Zaps.",
5
5
  "main": "dist/index.js",
6
6
  "source": "src/index.ts",