{"componentChunkName":"component---src-pages-sccp-sccp-markdown-remark-frontmatter-sccp-tsx","path":"/sccp/sccp-302/","result":{"data":{"markdownRemark":{"fileAbsolutePath":"/vercel/path0/content/sccp/sccp-302.md","frontmatter":{"sip":null,"sccp":302,"title":"Reduction in the Length of Council Election Periods","network":"Ethereum & Optimism","author":"TerraBellus (@TerraBellus)","type":"Meta-Governance","proposal":null,"implementor":null,"release":null,"created":"2022-10-11T00:00:00.000Z","updated":null,"status":"Rejected"},"html":"<h2 id=\"simple-summary\" style=\"position:relative;\"><a href=\"#simple-summary\" aria-label=\"simple summary permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a>Simple Summary</h2>\n<!--\"If you can't explain it simply, you don't understand it well enough.\" Provide a simplified and layman-accessible explanation of the SCCP.-->\n<p>In the interests of greater efficiency, this SIP seeks reduce the length of time required to hold a council election by adjusting the timing of both the nominations and voting periods.</p>\n<h2 id=\"abstract\" style=\"position:relative;\"><a href=\"#abstract\" aria-label=\"abstract permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a>Abstract</h2>\n<!--A short (~200 word) description of the variable change proposed.-->\n<p>The recent passing of <a href=\"https://sips.synthetix.io/sips/sip-278/\">SIP-278: Enable nominations during voting period</a> has reduced the necessary length of a epochal election by allowing nominations to be made concurrently with voting. As the two can now be overlapped, the independent and week-long length of the nominations phase adds to the time it takes to stage an election with little in the way of return. As the variables within the V3GM allow the two to be adjusted and overlapped, with the passing of this SIP an election process with a disproportionate time cost can be rendered more efficient.</p>\n<p>The above would be achieved by:</p>\n<ul>\n<li>Calling <code>tweakEpochSchedule</code> on the four councils for two variable changes.</li>\n</ul>\n<pre><code class=\"language-solidity\">    function tweakEpochSchedule(\n        uint64 newVotingPeriodStartDate,\n        uint64 newEpochEndDate\n    ) external override onlyOwner onlyInPeriod(ElectionPeriod.Administration) {\n</code></pre>\n<ul>\n<li>The current values would then be altered to the new, desired values.</li>\n</ul>\n<pre><code class=\"language-solidity\">    \"votingPeriodStartDate\": \"1671359097\", // Sun Dec 18 2022 10:24:57 GMT+0000\n    \"epochEndDate\": \"1672568697\", // Sun Jan 01 2023 10:24:57 GMT+0000\n</code></pre>\n<pre><code class=\"language-solidity\">    \"votingPeriodStartDate\": \"1671667200\", // Thu Dec 22 2022 00:00:00 GMT+0000\n    \"epochEndDate\": \"1672531199\", // Sat Dec 31 2022 23:59:59 GMT+0000\n</code></pre>\n<ul>\n<li>In order to adjust the third necessary value, used to alter the nomination period, an alternative call would be used on the four councils, <code>modifyEpochSchedule</code>. This is used in this case because the change is greater than the current <code>maxAdjustmentTolerance</code>, which is set at 604800 seconds (7 days). Usually such a change would be made within a SIP but due to these three changes being made with the same objective and conducted through a meta-gov SCCP, this SCCP proposes initiating the changes through this SCCP only.</li>\n</ul>\n<pre><code class=\"language-solidity\">    function modifyEpochSchedule(\n        uint64 newNominationPeriodStartDate,\n    ) external override onlyOwner onlyInPeriod(ElectionPeriod.Administration) {\n</code></pre>\n<ul>\n<li>The current values would then be altered to the new, desired values.</li>\n</ul>\n<pre><code class=\"language-solidity\">    \"nominationPeriodStartDate\": \"1670754297\", // Sun Dec 11 2022 10:24:57 GMT+0000\n    \"nominationPeriodStartDate\": \"1671321600\", // Sun Dec 18 2022 00:00:00 GMT+0000\n</code></pre>\n<ul>\n<li>Combined, these changes would would set the <code>nominationPeriodStartDate</code> to 14 days prior to the <code>epochEndDate</code> and the <code>votingPeriodStartDate</code> to 10 days prior to the <code>epochEndDate</code>, with the <code>epochEndDate</code> falling at 23:59:29 on December 31st, 2022.</li>\n</ul>\n<h2 id=\"motivation\" style=\"position:relative;\"><a href=\"#motivation\" aria-label=\"motivation permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a>Motivation</h2>\n<!--The motivation is critical for SCCPs that want to update variables within Synthetix. It should clearly explain why the existing variable is not incentive aligned. SCCP submissions without sufficient motivation may be rejected outright.-->\n<p>At present, the council election process takes in excess of three weeks to carry out when including preparatory work. At almost one quarter of the entire epoch length, this creates a excessively large drain on the attention of incumbent councillors, Core Contributors and the Synthetix community at large. Reduction in the length of the nomination and voting periods, as well as conducting them simultaneously, will allow an election to be comfortably carried out within a period of two weeks, granting all parties the ability to more effectively concentrate their efforts on either campaigning for council seats when an election is being held or developing the protocol when one is not.</p>\n<h2 id=\"copyright\" style=\"position:relative;\"><a href=\"#copyright\" aria-label=\"copyright permalink\" class=\"anchor before\"><svg aria-hidden=\"true\" focusable=\"false\" height=\"16\" version=\"1.1\" viewBox=\"0 0 16 16\" width=\"16\"><path fill-rule=\"evenodd\" d=\"M4 9h1v1H4c-1.5 0-3-1.69-3-3.5S2.55 3 4 3h4c1.45 0 3 1.69 3 3.5 0 1.41-.91 2.72-2 3.25V8.59c.58-.45 1-1.27 1-2.09C10 5.22 8.98 4 8 4H4c-.98 0-2 1.22-2 2.5S3 9 4 9zm9-3h-1v1h1c1 0 2 1.22 2 2.5S13.98 12 13 12H9c-.98 0-2-1.22-2-2.5 0-.83.42-1.64 1-2.09V6.25c-1.09.53-2 1.84-2 3.25C6 11.31 7.55 13 9 13h4c1.45 0 3-1.69 3-3.5S14.5 6 13 6z\"></path></svg></a>Copyright</h2>\n<p>Copyright and related rights waived via <a href=\"https://creativecommons.org/publicdomain/zero/1.0/\">CC0</a>.</p>"}},"pageContext":{"id":"a276866c-5c67-54cd-969d-8c7d88db1c65","frontmatter__sccp":302,"__params":{"frontmatter__sccp":"302"}}},"staticQueryHashes":[]}