Skip to content

Commit

Permalink
initial content
Browse files Browse the repository at this point in the history
  • Loading branch information
magick93 committed Aug 3, 2023
1 parent d5101e1 commit 7965c6c
Show file tree
Hide file tree
Showing 19 changed files with 538 additions and 72 deletions.
49 changes: 49 additions & 0 deletions package-lock.json

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

3 changes: 3 additions & 0 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -15,5 +15,8 @@
"@astrojs/tailwind": "^4.0.0",
"astro": "^2.9.6",
"tailwindcss": "^3.3.3"
},
"devDependencies": {
"@tailwindcss/typography": "^0.5.9"
}
}
2 changes: 1 addition & 1 deletion src/components/Sidebar.astro
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ const { slug } = Astro.params;
{item.children.map((child) => (
<li class={child.path.split("/").pop() === slug ? "active" : ""}>
<a
href={(base ?? "") + "/" + child.path}
href={(base ?? "") + "" + child.path}
class="block py-1 pl-4 text-sm hover:text-green-500 border-l-2 border-gray-200 dark:border-gray-600
hover:!border-green-400"
>
Expand Down
59 changes: 51 additions & 8 deletions src/content.ts
Original file line number Diff line number Diff line change
@@ -1,29 +1,72 @@
// content.ts
export const sidebarStructure = [
{
label: "Getting Started",
label: "Primer",
children: [
{
label: "introduction",
path: "./docs/introduction",
},
{
label: "installation",
path: "./docs/installation",
label: "Language",
path: "./docs/language",
},
{
label: "Token Distribution",
path: "./docs/token_distribution",
},
{
label: "Parametric Insurance",
path: "./docs/parametric_insurance",
},
{
label: "Parametric Insurance and DAOs",
path: "./docs/parametric_insurance_and_dao",
},
{
label: "Key DAO Metrics",
path: "./docs/key_dao_metrics",
}
],
},
{
label: "other",
label: "Getting Started",
children: [

{
label: "project structure",
path: "./docs/structure",
label: "Installing Metamask",
path: "./docs/install_metamask",
},
{
label: "showcase",
path: "./docs/showcase",
label: "Ancillary Technologies",
path: "./docs/ancillary_technologies",
},
{
label: "DAO Platforms",
path: "./docs/dao_platforms",
}
],
},
{
label: "Resources",
children: [

{
label: "Proposal Template",
path: "./docs/proposal_template",
},
{
label: "Proposal Lifecycle",
path: "./docs/proposal_lifecycle",
},
{
label: "Ancillary Technologies",
path: "./docs/ancillary_technologies",
},
{
label: "DAO Platforms",
path: "./docs/dao_platforms",
}
],
},
];
Expand Down
18 changes: 18 additions & 0 deletions src/content/docs/ancillary_technologies.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
---
title: "Ancillary Technologies"

---

For technology recommendations for submitting proposals, there are several options:

1. **GitHub/GitLab:** These platforms provide a straightforward and widely used way to manage proposal submissions through repositories and version control. You can use the repository's issue tracker to submit ideas and engage in discussions. A git-based database is preferable, as it promotes trust, thought its robust version control. Also, as git is decentralized, the is less risk of vendor-lockin, or having a valuale data under the control of a corporation.

2. **DAO-Specific Platforms:** Some DAOs have dedicated platforms or forums for proposal submissions and discussions. Examples include Aragon, DAOstack, and Moloch DAO.

3. **Discord or Telegram:** Many DAOs maintain active communities on messaging platforms like Discord or Telegram. You can submit your ideas in the respective channels or groups dedicated to proposal discussions.

4. **DAO-Specific Forums:** Some DAOs set up their forums for discussions and proposal submissions. Discourse is a popular platform for this purpose.

5. **IPFS (InterPlanetary File System):** For decentralized storage and retrieval, you can use IPFS to host your proposal document and share the content through a hash.

The technology choice largely depends on the preferences and existing infrastructure of the DAO you are submitting the idea to. It's essential to check the DAO's guidelines or ask the community for the preferred platform for proposal submissions.
17 changes: 17 additions & 0 deletions src/content/docs/dao_platforms.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
---
---

# DAO Platforms

Below is a list of platforms that make it easy to get started with a DAO.


| DAO Platform | Features | Ease of Use | Security | Community |
|---|---|---|---|---|
| [Aragon](https://aragon.org/) | Governance, voting, treasury management | Easy to use | Secure | Strong |
| [Colony](https://colony.io/) | Simplicity, ease of use | Easy to use | Secure | Growing |
| [DAOstack](https://daostack.io/) | Wide range of features, customizability | More complex | Secure | Active |
| Swarm | Highly secure, resistant to censorship | Easy to use | Secure | Growing |
| [Tally](https://www.tally.xyz/) | Voting and governance | Easy to use | Secure | Active |

There are plenty more! And I'll try to keep this list updated.
33 changes: 33 additions & 0 deletions src/content/docs/install_metamask.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,33 @@
---
title: "Install Metamask"
---

# MetaMask Installation

MetaMask is a popular crypto wallet that allows you to store, send, and receive Ethereum tokens. It can be installed on your browser, Android, or iOS device.

## Browser

1. Go to the [MetaMask website](https://metamask.io/).
2. Click the "Download" button.
3. Select your browser and follow the instructions to install the extension.
4. Once installed, open the MetaMask extension and create a new wallet.
5. Write down your seed phrase and store it in a safe place.

## Android

1. Go to the [Google Play Store](https://play.google.com/store/apps/details?id=io.metamask.android) and download the MetaMask app.
2. Open the app and create a new wallet.
3. Write down your seed phrase and store it in a safe place.

## iOS

1. Go to the [App Store](https://apps.apple.com/us/app/metamask-ethereum-wallet/id1334703938) and download the MetaMask app.
2. Open the app and create a new wallet.
3. Write down your seed phrase and store it in a safe place.

## Additional Resources

* [MetaMask website](https://metamask.io/)
* [MetaMask blog](https://blog.metamask.io/)
* [MetaMask documentation](https://docs.metamask.io/)
52 changes: 0 additions & 52 deletions src/content/docs/installation.mdx

This file was deleted.

48 changes: 48 additions & 0 deletions src/content/docs/key_dao_metrics.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
---
title: Considering the Health of a DAO
---
# Considering the Health of a DAO

Determining and measuring the health of a DAO involves assessing various aspects of its governance, operations, community, and performance. Here's a list of considerations to help determine and measure the health of a DAO:

- Participation Rate: Measure the level of engagement and participation of DAO members in voting, discussions, and decision-making processes. Low participation rates may indicate lack of interest or a disengaged community.

- Voting Turnout: Track the percentage of eligible voters who participate in each vote. A healthy DAO should strive for high voter turnout, indicating an active and involved membership.

- Proposal Acceptance Rate: Analyze the number of proposals submitted versus the number of proposals accepted. A high acceptance rate may indicate a responsive and adaptive DAO.

- Proposal Execution Rate: Measure the percentage of approved proposals that are successfully implemented. A high execution rate indicates an effective governance process.

- Community Growth: Track the growth in the number of members and token holders within the DAO community. A growing community suggests a healthy and attractive ecosystem.

- Token Distribution: Analyze the distribution of tokens among members. A well-distributed token ownership indicates a more decentralized and fair governance structure.

- Transparency: Assess the transparency of the DAO's decision-making process, including voting records, proposal details, and financial disclosures.

- Security and Resilience: Evaluate the DAO's security measures, smart contract audits, and overall resilience to potential attacks or exploits.

- Financial Health: Monitor the DAO's financial resources, budgeting, and spending to ensure its financial stability and sustainability.

- Diversity and Inclusivity: Consider the diversity of voices and perspectives within the DAO. A diverse community is more likely to make well-rounded decisions.

- Social and Community Metrics: Monitor social media engagement, forum activity, and sentiment analysis to gauge the community's satisfaction and sentiment towards the DAO.

- Decentralization: Assess the distribution of decision-making power within the DAO. A decentralized DAO should not be controlled by a small group of individuals.

- Adoption and Impact: Measure the impact of the DAO's initiatives and projects on the broader ecosystem or industry it operates in.

- Governance Efficiency: Analyze the speed and efficiency of the governance process, including proposal review times and decision-making turnaround.

- Long-Term Vision: Evaluate the alignment of the DAO's activities with its long-term vision and mission.

- Collaborations and Partnerships: Assess the DAO's ability to collaborate with other projects and organizations, which can enhance its influence and reach.

- Ecosystem Support: Observe whether the DAO actively supports and nurtures its ecosystem, such as funding community projects or initiatives.

- Feedback Mechanisms: Ensure the DAO has effective feedback channels for members to voice their concerns and suggestions.

- Sustainability: Consider the DAO's ability to sustain its operations and growth over the long term.

- Metrics for Continuous Improvement: Implement feedback loops and metrics to continuously evaluate and improve the DAO's health and governance.

By considering these factors and regularly measuring relevant metrics, a DAO can gain valuable insights into its health, identify areas for improvement, and make informed decisions to foster a thriving and successful community.
Loading

0 comments on commit 7965c6c

Please sign in to comment.