fully
    • Create new note
    • Create a note from template
      • Sharing URL Link copied
      • /edit
      • View mode
        • Edit mode
        • View mode
        • Book mode
        • Slide mode
        Edit mode View mode Book mode Slide mode
      • Customize slides
      • Note Permission
      • Read
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Write
        • Only me
        • Signed-in users
        • Everyone
        Only me Signed-in users Everyone
      • Engagement control Commenting, Suggest edit, Emoji Reply
      • Invitee
    • Publish Note

      Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

      Your note will be visible on your profile and discoverable by anyone.
      Your note is now live.
      This note is visible on your profile and discoverable online.
      Everyone on the web can find and read all notes of this public team.
      See published notes
      Unpublish note
      Please check the box to agree to the Community Guidelines.
      View profile
    • Commenting
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
      • Everyone
    • Suggest edit
      Permission
      Disabled Forbidden Owners Signed-in users Everyone
    • Enable
    • Permission
      • Forbidden
      • Owners
      • Signed-in users
    • Emoji Reply
    • Enable
    • Versions and GitHub Sync
    • Note settings
    • Engagement control
    • Transfer ownership
    • Delete this note
    • Save as template
    • Insert from template
    • Import from
      • Dropbox
      • Google Drive
      • Gist
      • Clipboard
    • Export to
      • Dropbox
      • Google Drive
      • Gist
    • Download
      • Markdown
      • HTML
      • Raw HTML
Menu Note settings Sharing URL Create Help
Create Create new note Create a note from template
Menu
Options
Versions and GitHub Sync Engagement control Transfer ownership Delete this note
Import from
Dropbox Google Drive Gist Clipboard
Export to
Dropbox Google Drive Gist
Download
Markdown HTML Raw HTML
Back
Sharing URL Link copied
/edit
View mode
  • Edit mode
  • View mode
  • Book mode
  • Slide mode
Edit mode View mode Book mode Slide mode
Customize slides
Note Permission
Read
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Write
Only me
  • Only me
  • Signed-in users
  • Everyone
Only me Signed-in users Everyone
Engagement control Commenting, Suggest edit, Emoji Reply
Invitee
Publish Note

Share your work with the world Congratulations! 🎉 Your note is out in the world Publish Note

Your note will be visible on your profile and discoverable by anyone.
Your note is now live.
This note is visible on your profile and discoverable online.
Everyone on the web can find and read all notes of this public team.
See published notes
Unpublish note
Please check the box to agree to the Community Guidelines.
View profile
Engagement control
Commenting
Permission
Disabled Forbidden Owners Signed-in users Everyone
Enable
Permission
  • Forbidden
  • Owners
  • Signed-in users
  • Everyone
Suggest edit
Permission
Disabled Forbidden Owners Signed-in users Everyone
Enable
Permission
  • Forbidden
  • Owners
  • Signed-in users
Emoji Reply
Enable
Import from Dropbox Google Drive Gist Clipboard
   owned this note    owned this note      
Published Linked with GitHub
1
Subscribed
  • Any changes
    Be notified of any changes
  • Mention me
    Be notified of mention me
  • Unsubscribe
Subscribe
# Olympus Governance This document outlines the [governance system](https://github.com/OlympusDAO/bophades2/blob/fully/governance/src/policies/Governance.sol) for OlympusDAO V3 (Bophades). ### Dependencies The governance system requires two *Module* dependencies and their respective permissions: - `INSTR`, used for storing arrays of Kernel instructions as proposals - permission to call INSTR.store(); - `VOTES`, an ERC20 token used for counting voting power by address - permission to call VOTES.transferFrom(); ### Parameters The governance system also utilizes the following parameter variables: - `SUBMISSION REQUIREMENT`, the amount of votes a proposer needs in order to submit a proposal as a percentage of total supply (expressed in basis points) - `ENDORSEMENT THRESHOLD`, the percentage of total voting supply required as endorsements needed to activate a proposal for voting - `ACTIVATION DEADLINE`, the amount of time a submitted proposal has to activate before it expires. - `GRACE PERIOD`, the amount of time an activated proposal must stay up before it can be replaced by a new activated proposal. - `EXECUTION THRESHOLD`, the percent of total voting supply required as net votes needed to execute a proposal on chain - `EXECUTION_TIMELOCK`, the required time for a proposal to be active before it can be executed. ## Summary Proposals in the governance system are stored lists of Kernel instructions that specify a change to the underlying protocol smart contracts like new mechanisms or upgrades to existing features. For specific details around these instructions, please view the Bophades Kernel documentation. The Olympus governance system can be roughly broken into three 3 parts: 1. Submission & Endorsement 2. Active Voting & Execution 3. Vote Redemption ## 1. Submission & Endorsement Before proposals can be voted on for execution, there are a few steps that need to happen in order to reduce the likelihood of spam proposals and ensure that proposals that make it to an actual vote are high quality. #### Submitting a Proposal First, when submitting a proposal, the governance system requires the proposer to have at least some of the total voting tokens in circulation, determined by the `SUBMISSION REQUIREMENT` parameter. This mechanism exists to ensure that the proposer has some economic alignment and ownership with the protocol, and that it proposals cannot come from random empty addresses. The `SUBMISSION REQUIREMENT` is intially set to 1% of the total voting supply. In addition, the submitter may optionally add some metadata around the proposal (like a title and proposal URI) to make it human-readable and bring context to the instructions that are proposed. The proposal URI might be a google doc link, Snapshot/Discourse URL, IPFS hash, or something else, which can be optionally enforced by the front-end if a standard should be established. #### Endorsing Proposals Once proposals are submitted, they go through a curation process to signal interest that a proposal is worth voting on via _endorsements_. Endorsements are similar to a "temperature check" vote popular in other governance systems, but are conducted on-chain and part of the core governance logic within the smart contract. Users can endorse as many proposals as they like; an endorsement is not a vote in favor or against a proposal, but a metric of it’s significance and relevance within the governance community. With enough endorsements, a proposals contents may be executed, giving voters the impetus to understand what the proposal is attempting to do. As a result, the endorsement period is used to coordinate which proposals are worth learning more about and what their potential impact on the protocol will be, incentivizing proposers to distribute and market their ideas to ensure they are accepted prior to the actual vote. Once a proposal is submitted, it needs to reach a percentage of the total voting supply in endorsements—the `ENDORSEMENT THRESHOLD`—prior to being activated, which is initially set to 20%. Additionally, it must receive these endorsements within a certain period of time, the `ACTIVATION DEADLINE`, which is initially set to 2 weeks. If the proposal fails to reach the `ENDORSEMENT THRESHOLD` within the `ACTIVATION DEADLINE`, it is considered _expired_ and can not be activated, and the proposer must resubmit the proposal and try again. ## 2. Active Voting & Execution If a proposal is successfully submitted, reaches the `ENDORSEMENT THRESHOLD` within the `ACTIVATION DEADLINE`, then the proposal can be 'activated' by the original proposer to trigger a vote for execution. However, there is one additional caveat: only one proposal can be active at a time to reduce potential distractions or information overload from multiple proposals occuring in parallel. #### One Active Proposal at a Time As a result, endorsements can not be activated unless there is no currently active proposal, or that the active proposal has been available for longer than the `GRACE PERIOD`, which is initially set to 1 week. In other words, if a proposal has been in active voting for longer than a week and has not been executed, it may be replaced by a new proposal and considered to have failed. Once a proposal is active, governance participants vote on whether or not its instructions should be executed by the Kernel. Votes are simply 'yes' or 'no' in favor of executing the proposal—by default, not voting on the proposal is considered abstaining. #### Counting Votes: Net Votes The Olympus Governance system uses a unique method to measure determining whether a vote is considered passed. While most governance systems use a simple quorum threshold and majority voting, our governance system uses a passing criteria called **net votes**, which is calculated as the margin of votes between yes and no. For example, if there are 10 **yes votes** and 3 **no votes** for a given proposal, then that proposal has 7 **net votes**. In the governance system, the percentage of total voting supply that a proposal must reach in net votes is determined by the `EXECUTION THRESHOLD`, which is initially set to 33% of the circulating votes. There are a few interesting properties of voting that emerge with net votes. First, the quorum is not hard set, but adjusts dynamically higher as a vote becomes increasingly controversial. If a proposal has no opposition, for example, then only 1/3 of the voting supply needs to participate for the proposal to pass (quorum: 33%). However, if a proposal has 1/3 of the voting supply opposing it, then it needs the entire voting supply to participate for the proposal to pass (quorum: 100%), because it would require 66% of the voting supply to approve it to reach the prerequisite net votes. This makes abstaining, or not voting, an equally impactful decision as voting since opposing votes dramatically affect the participation requirements for a proposal to pass. This also means that controlling 1/3 of the voting supply grants that voter (or collective group of voters) unanimous veto power within the system. #### Execution Delay Aside from voting requirements, there is a period of time—the`EXECUTION TIMELOCK`—after a proposal is first activated where it cannot be activated. In our governance system, this is initially set to 3 days. The `EXECUTION TIMELOCK` ensures that proposals cannot be immediately executed after they are endorsed in order to give enough time for voters to react to new proposals and signal their opinions accordingly. However, once a proposal has met it’s `EXECUTION THRESOLD`, and the `EXECUTION TIMELOCK` has expired, anyone can submit the transaction to execute the instructions in the proposal. Once the blockchain confirms this transaction, the submitted changes will happen automatically on-chain, and the underlying functionality of the protocol will change permanently and immediately. ## 3. Vote Redemption As an additional safety mechanism, when votes are cast, the tokens used to vote on the proposal are locked in the contract until the proposal is no longer active. This exists to deter malicious behavior by ensuring users cannot transfer their voting tokens until after the proposal has been resolved. Once a proposal is no longer active, either by being executed or replaced by a new proposal, users may redeem their votes back from the contract.

Import from clipboard

Paste your markdown or webpage here...

Advanced permission required

Your current role can only read. Ask the system administrator to acquire write and comment permission.

This team is disabled

Sorry, this team is disabled. You can't edit this note.

This note is locked

Sorry, only owner can edit this note.

Reach the limit

Sorry, you've reached the max length this note can be.
Please reduce the content or divide it to more notes, thank you!

Import from Gist

Import from Snippet

or

Export to Snippet

Are you sure?

Do you really want to delete this note?
All users will lose their connection.

Create a note from template

Create a note from template

Oops...
This template has been removed or transferred.
Upgrade
All
  • All
  • Team
No template.

Create a template

Upgrade

Delete template

Do you really want to delete this template?
Turn this template into a regular note and keep its content, versions, and comments.

This page need refresh

You have an incompatible client version.
Refresh to update.
New version available!
See releases notes here
Refresh to enjoy new features.
Your user state has changed.
Refresh to load new user state.

Sign in

Forgot password

or

By clicking below, you agree to our terms of service.

Sign in via Facebook Sign in via Twitter Sign in via GitHub Sign in via Dropbox Sign in with Wallet
Wallet ( )
Connect another wallet

New to HackMD? Sign up

Help

  • English
  • 中文
  • Français
  • Deutsch
  • 日本語
  • Español
  • Català
  • Ελληνικά
  • Português
  • italiano
  • Türkçe
  • Русский
  • Nederlands
  • hrvatski jezik
  • język polski
  • Українська
  • हिन्दी
  • svenska
  • Esperanto
  • dansk

Documents

Help & Tutorial

How to use Book mode

Slide Example

API Docs

Edit in VSCode

Install browser extension

Contacts

Feedback

Discord

Send us email

Resources

Releases

Pricing

Blog

Policy

Terms

Privacy

Cheatsheet

Syntax Example Reference
# Header Header 基本排版
- Unordered List
  • Unordered List
1. Ordered List
  1. Ordered List
- [ ] Todo List
  • Todo List
> Blockquote
Blockquote
**Bold font** Bold font
*Italics font* Italics font
~~Strikethrough~~ Strikethrough
19^th^ 19th
H~2~O H2O
++Inserted text++ Inserted text
==Marked text== Marked text
[link text](https:// "title") Link
![image alt](https:// "title") Image
`Code` Code 在筆記中貼入程式碼
```javascript
var i = 0;
```
var i = 0;
:smile: :smile: Emoji list
{%youtube youtube_id %} Externals
$L^aT_eX$ LaTeX
:::info
This is a alert area.
:::

This is a alert area.

Versions and GitHub Sync
Get Full History Access

  • Edit version name
  • Delete

revision author avatar     named on  

More Less

Note content is identical to the latest version.
Compare
    Choose a version
    No search result
    Version not found
Sign in to link this note to GitHub
Learn more
This note is not linked with GitHub
 

Feedback

Submission failed, please try again

Thanks for your support.

On a scale of 0-10, how likely is it that you would recommend HackMD to your friends, family or business associates?

Please give us some advice and help us improve HackMD.

 

Thanks for your feedback

Remove version name

Do you want to remove this version name and description?

Transfer ownership

Transfer to
    Warning: is a public team. If you transfer note to this team, everyone on the web can find and read this note.

      Link with GitHub

      Please authorize HackMD on GitHub
      • Please sign in to GitHub and install the HackMD app on your GitHub repo.
      • HackMD links with GitHub through a GitHub App. You can choose which repo to install our App.
      Learn more  Sign in to GitHub

      Push the note to GitHub Push to GitHub Pull a file from GitHub

        Authorize again
       

      Choose which file to push to

      Select repo
      Refresh Authorize more repos
      Select branch
      Select file
      Select branch
      Choose version(s) to push
      • Save a new version and push
      • Choose from existing versions
      Include title and tags
      Available push count

      Pull from GitHub

       
      File from GitHub
      File from HackMD

      GitHub Link Settings

      File linked

      Linked by
      File path
      Last synced branch
      Available push count

      Danger Zone

      Unlink
      You will no longer receive notification when GitHub file changes after unlink.

      Syncing

      Push failed

      Push successfully