@robertprp/intents-sdk
Version:
Shogun Network Intent-based cross-chain swaps SDK
16 lines • 430 B
TypeScript
type LiquidSwapQuoteParams = {
tokenIn: string;
tokenOut: string;
amountIn: string;
};
export type LiquidSwapQuoteResponse = {
success: boolean;
amountIn: string;
amountOut: string;
averagePriceImpact: string;
};
export declare class LiquidSwapQuoteProvider {
getQuote(liquidSwapParams: LiquidSwapQuoteParams): Promise<LiquidSwapQuoteResponse>;
}
export {};
//# sourceMappingURL=liquidswap.d.ts.map