UNPKG

@robertprp/intents-sdk

Version:

Shogun Network Intent-based cross-chain swaps SDK

16 lines 420 B
type LiquidSwapQuoteParams = { tokenIn: string; tokenOut: string; amountIn: string; }; export type LiquidSwapQuoteResponse = { success: boolean; amountIn: string; amountOut: string; averagePriceImpact: string; }; export declare class LiquidSwapQuoteProvider { getQuote(params: LiquidSwapQuoteParams): Promise<LiquidSwapQuoteResponse>; } export {}; //# sourceMappingURL=liquidswap.d.ts.map