aboutsummaryrefslogtreecommitdiffstats
path: root/src/schemas/zero_ex_config_schema.ts
blob: 5a2afeaa2b5d28478407de12ea25d84640255049 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
export const zeroExConfigSchema = {
    id: '/ZeroExConfig',
    properties: {
        gasPrice: {$ref: '/Number'},
        exchangeContractAddress: {$ref: '/Address'},
        tokenRegistryContractAddress: {$ref: '/Address'},
        etherTokenContractAddress: {$ref: '/Address'},
        orderWatcherConfig: {
            type: 'object',
            properties: {
                pollingIntervalMs: {
                    type: 'number',
                    minimum: 0,
                },
            },
        },
    },
    type: 'object',
};