config.json 518 B

1234567891011121314151617181920
  1. {
  2. "$schema": "http://json-schema.org/draft-07/schema#",
  3. "type": "object",
  4. "additionalProperties": false,
  5. "properties": {
  6. "HASHES_ENABLED": {
  7. "type": "boolean",
  8. "default": true,
  9. "x-aliases": ["SAVE_HASHES", "USE_HASHES"],
  10. "description": "Enable merkle tree hash generation"
  11. },
  12. "HASHES_TIMEOUT": {
  13. "type": "integer",
  14. "default": 30,
  15. "minimum": 5,
  16. "x-fallback": "TIMEOUT",
  17. "description": "Timeout for merkle tree generation in seconds"
  18. }
  19. }
  20. }