A WebSocket order update message.

Received when orders are created, updated, or cancelled for a subscribed account.

interface OrderUpdate {
    action: string;
    onchain_timestamp?: string;
    orders: Order[];
    seen_timestamp?: string;
}

Properties

action: string

The subscription action type.

onchain_timestamp?: string

On-chain timestamp.

orders: Order[]

Updated orders.

seen_timestamp?: string

Server-observed timestamp.