DAO Masons
      • 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
        • Owners
        • Signed-in users
        • Everyone
        Owners Signed-in users Everyone
      • Write
        • Owners
        • Signed-in users
        • Everyone
        Owners Signed-in users Everyone
      • Engagement control Commenting, Suggest edit, Emoji Reply
    • Invite by email
      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
    • Insert from template
    • Import from
      • Dropbox
      • Google Drive
      • Gist
      • Clipboard
    • Export to
      • Dropbox
      • Google Drive
      • Gist
    • Download
      • Markdown
      • HTML
      • Raw HTML
Menu Note settings Versions and GitHub Sync Sharing URL Help
Menu
Options
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
Owners
  • Owners
  • Signed-in users
  • Everyone
Owners Signed-in users Everyone
Write
Owners
  • Owners
  • Signed-in users
  • Everyone
Owners Signed-in users Everyone
Engagement control Commenting, Suggest edit, Emoji Reply
  • Invite by email
    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
    Subscribed
    • Any changes
      Be notified of any changes
    • Mention me
      Be notified of mention me
    • Unsubscribe
    Subscribe
    ## Project Description ### Overview [Grant Ships](https://twitter.com/grantships) is an ‘evolutionary grants game’ where the responsibilities and permissions typically held by a centralized grants program are divided across a handful of clearly defined roles: Facilitators, Grant Ships and Recipients. Each actor filling a role has a particular set of actions available to them, and the sum of these actions represents a comprehensive grants program. Each actor is granted permission to perform in a role when they are given the appropriate Hats Protocol hat (NFT). The long-term vision is to use this mechanism to establish a self-sustaining, community-guided grant allocation system that can function seamlessly without central planning and without vulnerability to capture. ### Game Flow When the game begins, participants apply to become Grant Ship operators. Approved operators each become the manager of their own pool using GrantShipStrategy. This strategy is a modified version of the DirectGrantsStrategy tweaked to use Hats for revokable role permissions and to allow interaction with the GameManager metastrategy. Each funding round, the Grant Ships (grant-giving subDAOs) compete to best deploy capital from a common funding pool. Facilitators oversee the process by performing safety checks on grant recipient addresses and optionally issuing yellow or red flags to ships to signal violations of rules, community norms or bad faith activity. At the end of each funding round, facilitators can initiate a new round with new relative funding levels for each Grant Ship, ideally based on their performance in the previous round. ### Future By incorporating game mechanics, we’ve made involvement both engaging and straightforward. The next step is to build an interactive dash board that visualizes the activities of each Ship. #### We are attempting to answer these questions: * How easy can we make it for qualified candidates to recieve grant funds? * How can we eliminate 'spreadsheet hell' from grants administration by utilizing Allo's metadata standard to make record-keeping a passive side effect of giving grants. * How do you make it easy to give and receive funding without increasing risk of capture and bad actors? * How can a community curate and evolve skillfulness at grant allocation without simply centralizing allocation powers among a few powerful actors? * How can we use competition and accountability to create increasingly high-impact grants programs? ### Allo Protocol We use Allo protocol and two custom Allo strategies to: 1) Define and enforce the actions available to each roles 2) Track participants using the Allo registry 3) Divide the act of funding into a multi-step process that includes allocation, distribution and documentation. ### Hats Protocol We incorporate Hats protocol to represent the roles as hats NFTs, so roles can be assigned to and revoked by the holder of the 'top hat' (e.g. a grants council or community DAO contract). This reduces capture risk by allowing the replacement of actors from any role as needed. ### **Allo Metastrategy** We created two new strategies that work together to create the game structure: GameManagerStrategy and GrantShipStrategy. **GameManagerStrategy (Metastrategy)** * Holds the common funding pool * Creates and initializes the Grant Ship pools (GrantShipStrategy) * Allocates and distributes funds from the common funding pool into pools for each Grant Ship * Enforces round start and stop times, and allows initiation of new game rounds. **GrantShipStrategy (Strategy)** * Allows potential grant Recipients to apply * Allows Recipients or Grant Ship Operators to supply milestones for distributions * Allows Recipients to signal that a milestone is complete * Allows Grant Ship Operators to distribute funds for a completed milestone * Allows Game Facilitators to issue a Yellow or Red Flag to a Grant Ship * Locks down Grant Ship Operator permissions when a Red Flag is active * Allows funds to be withdrawn back into GameManager pool if needed ### **Participant Roles** > This section describes actions available to each role. Participants within Grant Ships w/Allo are divided into 4 main roles: Game Facilitators, Game Admins, Grant Ships and Grant Recipients. **Game Facilitator** * [Approving](https://github.com/DAOmasons/allo-v2/blob/e14509a289831961216b91fc1a40a478f316c12b/contracts/strategies/_poc/grant-ships/GrantShipStrategy.sol#L665) fund allocations (after due diligence, such as KYC and deny list accounting), allowing Grant Ships to distribute at their discretion. * [Activating or Deactivating](https://github.com/DAOmasons/allo-v2/blob/e14509a289831961216b91fc1a40a478f316c12b/contracts/strategies/_poc/grant-ships/GrantShipStrategy.sol#L554C14-L554C27) the Grant Ship funding pools * [Withdrawing](https://github.com/DAOmasons/allo-v2/blob/e14509a289831961216b91fc1a40a478f316c12b/contracts/strategies/_poc/grant-ships/GrantShipStrategy.sol#L562C14-L562C22) funds from deactivated Grant Ship Funding pools * [Flagging](https://github.com/DAOmasons/allo-v2/blob/e14509a289831961216b91fc1a40a478f316c12b/contracts/strategies/_poc/grant-ships/GrantShipStrategy.sol#L478C14-L478C23) Grant Ships that are not operating in good faith, (e.g. Ships who have failed to make allocations, that make repeated attempts to fund bad actors etc) * [Resolving](https://github.com/DAOmasons/allo-v2/blob/e14509a289831961216b91fc1a40a478f316c12b/contracts/strategies/_poc/grant-ships/GrantShipStrategy.sol#L503) Grant Ship flags that no longer apply **Grant Ships** * [Distributing](https://github.com/DAOmasons/allo-v2/blob/e14509a289831961216b91fc1a40a478f316c12b/contracts/strategies/_poc/grant-ships/GrantShipStrategy.sol#L717) funds to Grant Recipients * [Capturing](https://github.com/DAOmasons/allo-v2/blob/e14509a289831961216b91fc1a40a478f316c12b/contracts/strategies/_poc/grant-ships/GrantShipStrategy.sol#L590) Grant Recipient details and including them in the disclosure * [Reviewing](https://github.com/DAOmasons/allo-v2/blob/e14509a289831961216b91fc1a40a478f316c12b/contracts/strategies/_poc/grant-ships/GrantShipStrategy.sol#L383C14-L383C33) Milestones declared by recipient * [Rejecting](https://github.com/DAOmasons/allo-v2/blob/e14509a289831961216b91fc1a40a478f316c12b/contracts/strategies/_poc/grant-ships/GrantShipStrategy.sol#L455) invalid Milestones * [Declaring](https://github.com/DAOmasons/allo-v2/blob/e14509a289831961216b91fc1a40a478f316c12b/contracts/strategies/_poc/grant-ships/GrantShipStrategy.sol#L349C3-L349C3) Milestones for recipients (or recipient can do it) **Grant Recipients** * [Registering](https://github.com/DAOmasons/allo-v2/blob/e14509a289831961216b91fc1a40a478f316c12b/contracts/strategies/_poc/grant-ships/GrantShipStrategy.sol#L590C61-L590C68) as a potential Grant Recipient for grants * [Declaring](https://github.com/DAOmasons/allo-v2/blob/e14509a289831961216b91fc1a40a478f316c12b/contracts/strategies/_poc/grant-ships/GrantShipStrategy.sol#L349C3-L349C3) Milestones (or Grant Ship operator can do it) * [Submitting](https://github.com/DAOmasons/allo-v2/blob/e14509a289831961216b91fc1a40a478f316c12b/contracts/strategies/_poc/grant-ships/GrantShipStrategy.sol#L412C14-L412C29) milestone completion * [Posting](https://github.com/DAOmasons/allo-v2/blob/e14509a289831961216b91fc1a40a478f316c12b/contracts/strategies/_poc/grant-ships/GrantShipStrategy.sol#L330C4-L330C4) updates as needed ### Cool Features * GrantShipStrategy is a modified version of Allo's Direct Grants Strategy with changes to integrate with Hats and to allow integration with the GameManagerStrategy metastrategy. * Game Start and Game End events. Game Start happens after initial distribution to sub pools. Once you get to game end it locks all the Grant Ships. * Hats. Hats provides revokable roles to provide capture resistance and lets a DAO or council assign and revoke game roles as needed. * Facilitators can flag ships and lock them down, or warn users if they notice any sort of malfeasance." * Every recipient, Grant Ship and facilitator will have a feed of UpdatePosted events. * GameStart and GameEnd - at GameEnd we're going to stop the ships ### Team DAO Masons [DAO Masons](https://twitter.com/daomasons) is a small service DAO with big ambitions to transform decentralized governance. Our goal is to create new mechanisms, strategies, protocols, and applications that will vastly improve the overall output and efficacy of DAOs. #### Team: * Chris - [Github](https://github.com/boilerrat) - [X](https://twitter.com/boilerrat) Project Manager/Community Lead * Jord - [Github](https://github.com/jordanlesich) - [X](https://twitter.com/jordanlesich) Lead Engineer/Game Design * Matt (UI369) - [Github](https://www.github.com/UI369) - [X](https://twitter.com/ui_369) Product Manager/Game Design/Marketing ### TODO: Link to the publicly visible source code repository https://github.com/DAOmasons/allo-v2/tree/grantShips ### TODO: Showcase 2-3 minute explainer youtube video that presents the application. The video should be aimed at grants program managers and showcases how your app will help them distribute their grant funding How the project uses Allo 2. Link to the publicly visible source code repository Include a link to the working demo and the open-source repository on Github 3. Showcase 2-3 minute explainer youtube video that presents the application. The video should be aimed at grants program managers and showcases how your app will help them distribute their grant funding **Judging Criteria** **Design and UX:** Is it visually appealing and easy to use? **Originality:** Does it have unique and novel features or combine features of other products or services in a unique and novel way? **Technical Accomplishment:** Is the code elegant, clean, and technically interesting? Is the project complete? Does the project interact with Allo Protocol under-the-hood? **Potential Utility:** Does the project fill a need that grant program managers have? Does it have the potential to be used by grant program managers? Qs: How many steps does someone have to take to get some money? How do you do that without creating capture & bad actor risk? By splitting up the roles, we improve the UX. This is a metagrants framework - we're taking on recordkeeping for many different grants programs. Instead of shuffling it between different spreadsheets and offchain documents all the data is standardized and localized on Allo protocol and the Allo metadata standards. The metadata is standardized so that the registry works? A pointer to the protocol, and a pointer to the resource.

    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