@swapkit/core 4.4.5 → 4.4.6

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.
@@ -30,7 +30,6 @@ export declare function SwapKit<Plugins extends ReturnType<typeof createPlugin>,
30
30
  };
31
31
  swap: import("@swapkit/helpers").GenericSwapParams<{
32
32
  buyAsset: string;
33
- destinationAddress: string;
34
33
  expectedBuyAmount: string;
35
34
  expectedBuyAmountMaxSlippage: string;
36
35
  fees: {
@@ -130,13 +129,13 @@ export declare function SwapKit<Plugins extends ReturnType<typeof createPlugin>,
130
129
  routeId: string;
131
130
  sellAmount: string;
132
131
  sellAsset: string;
133
- sourceAddress: string;
134
132
  totalSlippageBps: number;
135
133
  warnings: {
136
134
  code: import("@swapkit/helpers").WarningCodeEnum;
137
135
  display: string;
138
136
  tooltip?: string | undefined;
139
137
  }[];
138
+ destinationAddress?: string | undefined;
140
139
  estimatedTime?: {
141
140
  total: number;
142
141
  inbound?: number | undefined;
@@ -146,6 +145,7 @@ export declare function SwapKit<Plugins extends ReturnType<typeof createPlugin>,
146
145
  expiration?: string | undefined;
147
146
  inboundAddress?: string | undefined;
148
147
  memo?: string | undefined;
148
+ sourceAddress?: string | undefined;
149
149
  targetAddress?: string | undefined;
150
150
  tx?: string | {
151
151
  data: string;
package/package.json CHANGED
@@ -2,10 +2,10 @@
2
2
  "author": "swapkit-dev",
3
3
  "dependencies": {
4
4
  "@stricahq/typhonjs": "3.0.1",
5
- "@swapkit/helpers": "4.12.4",
6
- "@swapkit/plugins": "4.6.19",
7
- "@swapkit/toolboxes": "4.13.2",
8
- "@swapkit/wallet-core": "4.1.24",
5
+ "@swapkit/helpers": "4.12.5",
6
+ "@swapkit/plugins": "4.6.20",
7
+ "@swapkit/toolboxes": "4.13.3",
8
+ "@swapkit/wallet-core": "4.1.25",
9
9
  "cosmjs-types": "0.10.1",
10
10
  "ts-pattern": "^5.9.0"
11
11
  },
@@ -28,5 +28,5 @@
28
28
  "type-check:go": "tsgo"
29
29
  },
30
30
  "type": "module",
31
- "version": "4.4.5"
31
+ "version": "4.4.6"
32
32
  }