@coin-voyage/shared 2.4.4-beta.1 → 2.4.4
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/types/api.d.ts +4 -2
- package/package.json +1 -1
package/dist/types/api.d.ts
CHANGED
|
@@ -163,15 +163,17 @@ export type SwapQuoteResponse = {
|
|
|
163
163
|
input: QuoteWithBalance;
|
|
164
164
|
output: CurrencyWithAmount;
|
|
165
165
|
price_impact: number;
|
|
166
|
+
providers?: string[];
|
|
166
167
|
slippage_bps?: number;
|
|
167
168
|
swap_mode: SwapMode;
|
|
168
169
|
};
|
|
169
170
|
export type RouteQuote = QuoteWithBalance & {
|
|
170
171
|
quote_id: string;
|
|
171
172
|
output: CurrencyWithAmount;
|
|
172
|
-
swap_mode: SwapMode;
|
|
173
|
-
slippage_bps?: number;
|
|
174
173
|
price_impact: number;
|
|
174
|
+
providers?: string[];
|
|
175
|
+
slippage_bps?: number;
|
|
176
|
+
swap_mode: SwapMode;
|
|
175
177
|
};
|
|
176
178
|
export type QuoteWithBalance = QuoteWithCurrency & {
|
|
177
179
|
balance?: CurrencyAmount;
|