aftermath-ts-sdk - v3.3.3
    Preparing search index...

    Interface DcaOrderObject

    Represents a single DCA order, including overview data, all successful trades, and all failed trades.

    interface DcaOrderObject {
        failed: DcaOrderFailedTradeObject[];
        objectId: string;
        overview: DcaOrderOverviewObject;
        trades: DcaOrderTradeObject[];
    }
    Index

    An array of attempted trades that failed, along with reasons/timestamps.

    objectId: string

    The on-chain object ID representing this DCA order.

    Summary of the DCA (allocated amounts, trades remaining, etc.).

    An array of all completed trades.