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







                                                            
                                                          



                                             






                                        



                                                      
                                                        
                                                         
                                                   
















                                    
const networkNameToId: { [networkName: string]: number } = {
    mainnet: 1,
    ropsten: 3,
    rinkeby: 4,
    kovan: 42,
    ganache: 50,
};

export const contractWrappersPublicNetworkConfigSchema = {
    id: '/ZeroExContractPublicNetworkConfig',
    properties: {
        networkId: {
            type: 'number',
            enum: [
                networkNameToId.mainnet,
                networkNameToId.kovan,
                networkNameToId.ropsten,
                networkNameToId.rinkeby,
                networkNameToId.ganache,
            ],
        },
        gasPrice: { $ref: '/Number' },
        zrxContractAddress: { $ref: '/Address' },
        exchangeContractAddress: { $ref: '/Address' },
        erc20ProxyContractAddress: { $ref: '/Address' },
        erc721ProxyContractAddress: { $ref: '/Address' },
        blockPollingIntervalMs: { type: 'number' },
        orderWatcherConfig: {
            type: 'object',
            properties: {
                pollingIntervalMs: {
                    type: 'number',
                    minimum: 0,
                },
                numConfirmations: {
                    type: 'number',
                    minimum: 0,
                },
            },
        },
    },
    type: 'object',
    required: ['networkId'],
};