@dzapio/sdk 2.0.44 → 2.0.45

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
@@ -164,6 +164,14 @@ declare const zapPathAction: {
164
164
  readonly harvest: "harvest";
165
165
  };
166
166
 
167
+ type ZapFee = {
168
+ amount: string;
169
+ amountUSD: string;
170
+ asset: ZapPathAsset;
171
+ included: boolean;
172
+ refundable: boolean;
173
+ };
174
+
167
175
  type ZapPathAction = keyof typeof zapPathAction;
168
176
  type ZapPathAsset = {
169
177
  chainId: number;
@@ -423,12 +431,6 @@ type ZapChains = {
423
431
  supportedProviders: string[];
424
432
  };
425
433
  };
426
- type ZapFee = {
427
- amount: string;
428
- amountUSD: string;
429
- asset: ZapPathAsset;
430
- included: boolean;
431
- };
432
434
  type ZapUnderlyingToken = {
433
435
  chainId: number;
434
436
  address: HexString;
package/dist/index.d.ts CHANGED
@@ -164,6 +164,14 @@ declare const zapPathAction: {
164
164
  readonly harvest: "harvest";
165
165
  };
166
166
 
167
+ type ZapFee = {
168
+ amount: string;
169
+ amountUSD: string;
170
+ asset: ZapPathAsset;
171
+ included: boolean;
172
+ refundable: boolean;
173
+ };
174
+
167
175
  type ZapPathAction = keyof typeof zapPathAction;
168
176
  type ZapPathAsset = {
169
177
  chainId: number;
@@ -423,12 +431,6 @@ type ZapChains = {
423
431
  supportedProviders: string[];
424
432
  };
425
433
  };
426
- type ZapFee = {
427
- amount: string;
428
- amountUSD: string;
429
- asset: ZapPathAsset;
430
- included: boolean;
431
- };
432
434
  type ZapUnderlyingToken = {
433
435
  chainId: number;
434
436
  address: HexString;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "@dzapio/sdk",
3
- "version": "2.0.44",
3
+ "version": "2.0.45",
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",