interface EngineServerSubaccountInfoQueryParams {
    subaccount: string;
    txns?: ({
        mint_lp: {
            product_id: number;
            subaccount: string;
            amount_base: string;
            quote_amount_low: string;
            quote_amount_high: string;
        };
    } | {
        burn_lp: {
            product_id: number;
            subaccount: string;
            amount_lp: string;
        };
    } | {
        apply_delta: {
            product_id: number;
            subaccount: string;
            amount_delta: string;
            v_quote_delta: string;
        };
    })[];
}

Properties

Properties

subaccount: string
txns?: ({
    mint_lp: {
        product_id: number;
        subaccount: string;
        amount_base: string;
        quote_amount_low: string;
        quote_amount_high: string;
    };
} | {
    burn_lp: {
        product_id: number;
        subaccount: string;
        amount_lp: string;
    };
} | {
    apply_delta: {
        product_id: number;
        subaccount: string;
        amount_delta: string;
        v_quote_delta: string;
    };
})[]