Interface deBridgeOrderStatusResponse

interface deBridgeOrderStatusResponse {
    dstChainTxHash?: string;
    error?: string;
    orderId: string;
    orderLink?: string;
    srcChainTxHash?: string;
    status:
        | "None"
        | "Created"
        | "Fulfilled"
        | "SentUnlock"
        | "OrderCancelled"
        | "SentOrderCancel"
        | "ClaimedUnlock"
        | "ClaimedOrderCancel";
}

Properties

dstChainTxHash?: string
error?: string
orderId: string
orderLink?: string
srcChainTxHash?: string
status:
    | "None"
    | "Created"
    | "Fulfilled"
    | "SentUnlock"
    | "OrderCancelled"
    | "SentOrderCancel"
    | "ClaimedUnlock"
    | "ClaimedOrderCancel"