Interface QuoteResponse

interface QuoteResponse {
    context?: Record<string, any>;
    inAmount: string;
    outAmount: string;
    priceImpactPct?: number;
    route?: any;
}

Properties

context?: Record<string, any>
inAmount: string
outAmount: string
priceImpactPct?: number
route?: any