Nado Typescript SDK Documentation
    Preparing search index...

    Type Alias TwapExecutionStatus

    TwapExecutionStatus:
        | { type: "pending" }
        | {
            type: "executed";
            executedTime: number;
            executeResponse: EngineServerExecuteResult;
        }
        | { type: "failed"; error: string }
        | { type: "cancelled"; reason: string }