UNPKG

@dydxfoundation/governance

Version:
23 lines (22 loc) 825 B
"use strict"; /** * Deployment config overrides for development and test. * * Be careful about any overrides, since each override represents a difference between the test * and production environemtns. */ var __importDefault = (this && this.__importDefault) || function (mod) { return (mod && mod.__esModule) ? mod : { "default": mod }; }; Object.defineProperty(exports, "__esModule", { value: true }); const constants_1 = require("../lib/constants"); const base_config_1 = __importDefault(require("./base-config")); const hardhatConfig = { EPOCH_ZERO_START: Math.floor(Date.now() / 1000) + constants_1.ONE_DAY_SECONDS, VOTING_DELAY_BLOCKS: 50, LONG_TIMELOCK_CONFIG: { ...base_config_1.default.LONG_TIMELOCK_CONFIG, VOTING_DURATION_BLOCKS: 100, }, }; exports.default = hardhatConfig;