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