@swapper-finance/sdk
Version:
JavaScript SDK form Swapper
15 lines (13 loc) • 327 B
text/typescript
import { ContractCall } from "@src/models";
export type GenerateRoutePayload = {
integratorId: string;
chainId: string;
fromToken: string;
toToken: string;
fromAmount: string;
fromAddress?: string;
toAddress?: string;
slippage: number;
customContractCalls?: ContractCall[];
sourceChainDexes?: string[];
};