aboutsummaryrefslogblamecommitdiffstats
path: root/packages/contract-wrappers/src/schemas/contract_wrappers_private_network_config_schema.ts
blob: d293b4d4f39b569ef539b9c2ee106d53e1886b79 (plain) (tree)
1
2
3
4
5
6
7
8
9
10
                                                           








                                                      
                                                                
                                                   


















                                    


                                            
export const contractWrappersPrivateNetworkConfigSchema = {
    id: '/ZeroExContractPrivateNetworkConfig',
    properties: {
        networkId: {
            type: 'number',
            minimum: 1,
        },
        gasPrice: { $ref: '/Number' },
        zrxContractAddress: { $ref: '/Address' },
        exchangeContractAddress: { $ref: '/Address' },
        tokenTransferProxyContractAddress: { $ref: '/Address' },
        blockPollingIntervalMs: { type: 'number' },
        orderWatcherConfig: {
            type: 'object',
            properties: {
                pollingIntervalMs: {
                    type: 'number',
                    minimum: 0,
                },
                numConfirmations: {
                    type: 'number',
                    minimum: 0,
                },
            },
        },
    },
    type: 'object',
    required: [
        'networkId',
        'zrxContractAddress',
        'exchangeContractAddress',
        'tokenTransferProxyContractAddress',
    ],
};