aboutsummaryrefslogtreecommitdiffstats
path: root/src/schemas/order_watcher_config_schema.ts
blob: 9c2dc38a488958041352ba42d7ad602fb0d85371 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
export const orderWatcherConfigSchema = {
    id: '/OrderWatcherConfig',
    properties: {
        mempoolPollingIntervalMs: {
            type: 'number',
            min: 0,
        },
    },
    type: 'object',
};