@robertprp/intents-sdk
Version:
Shogun Network Intent-based cross-chain swaps SDK
16 lines • 438 B
TypeScript
import { SwapApi, type QuoteResponse } from '@jup-ag/api';
export type JupiterQuoteParams = {
amount: bigint;
tokenIn: string;
tokenOut: string;
swapMode: 'ExactIn' | 'ExactOut';
slippageBps?: number;
};
export declare class JupiterQuoteProvider {
swapApi: SwapApi;
constructor();
getQuote(params: JupiterQuoteParams): Promise<{
quote: QuoteResponse;
}>;
}
//# sourceMappingURL=jupiter.d.ts.map