aboutsummaryrefslogblamecommitdiffstats
path: root/packages/0x.js/src/schemas/zero_ex_config_schema.ts
blob: 546b1c2d082f0bba6989578a452a4ab46f64b136 (plain) (tree)
1
2
3
4
5
6
7
8
9
10


                                   



                           


                                                           






                                    



                                   
              
          

                   
                            
  
export const zeroExConfigSchema = {
    id: '/ZeroExConfig',
    properties: {
        networkId: {
            type: 'number',
            minimum: 0,
        },
        gasPrice: { $ref: '/Number' },
        exchangeContractAddress: { $ref: '/Address' },
        tokenRegistryContractAddress: { $ref: '/Address' },
        orderWatcherConfig: {
            type: 'object',
            properties: {
                pollingIntervalMs: {
                    type: 'number',
                    minimum: 0,
                },
                numConfirmations: {
                    type: 'number',
                    minimum: 0,
                },
            },
        },
    },
    type: 'object',
    required: ['networkId'],
};