aboutsummaryrefslogtreecommitdiffstats
path: root/src/schemas
diff options
context:
space:
mode:
Diffstat (limited to 'src/schemas')
-rw-r--r--src/schemas/zero_ex_config_schema.ts23
1 files changed, 0 insertions, 23 deletions
diff --git a/src/schemas/zero_ex_config_schema.ts b/src/schemas/zero_ex_config_schema.ts
deleted file mode 100644
index 6d4b3ed27..000000000
--- a/src/schemas/zero_ex_config_schema.ts
+++ /dev/null
@@ -1,23 +0,0 @@
-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,
- },
- numConfirmations: {
- type: 'number',
- minimum: 0,
- },
- },
- },
- },
- type: 'object',
-};