@dydxfoundation/governance
Version:
dYdX governance smart contracts
15 lines (14 loc) • 589 B
JavaScript
;
Object.defineProperty(exports, "__esModule", { value: true });
const luxon_1 = require("luxon");
/**
* The epoch zero timestamp that was used for the phase 2 mainnet deployment.
* This resulted in the following parameters being set on mainnet:
*
* DydxToken._transferRestrictedBefore: 2021-09-08T15:00:00 = 1631113200
*/
const PHASE_2_EPOCH_ZERO_START_DT = luxon_1.DateTime.fromISO('2021-08-03T15:00:00', { zone: 'utc' });
const PHASE_2_EPOCH_ZERO_START = PHASE_2_EPOCH_ZERO_START_DT.toSeconds();
exports.default = {
EPOCH_ZERO_START: PHASE_2_EPOCH_ZERO_START,
};