dydx-v4-web/src/constants/websocket.ts
James Jia - Test 4b86068d8f
Initial commit
2023-09-08 13:52:13 -07:00

7 lines
189 B
TypeScript

export const PING_INTERVAL_MS = 2000;
export const PONG_TIMEOUT_MS = 5000;
export const PONG_MESSAGE_TYPE = 'pong';
export const OUTGOING_PING_MESSAGE = JSON.stringify({ type: 'ping' });