-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
b76bcf0
commit aa00500
Showing
25 changed files
with
98 additions
and
108 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,27 @@ | ||
= Documentation | ||
= Aragon Developer Portal | ||
|
||
Explore our guides and examples to learn how. | ||
|
||
== The modular governance stack | ||
|
||
Explanation here | ||
|
||
=== Aragon OSx | ||
|
||
Docs here | ||
|
||
=== Plugin marketplace | ||
|
||
Governance logic is encapsulated in reusable contracts called _plugins_. | ||
|
||
Plugins are granted specific permissions depending what you want them to do. In practice, they often act as governing bodies or decision-making processes. For example, a token voting plugin or multisig plugin define all of their unique governance logic within the plugin itself. This “separation of concerns” keeps the protocol focused and ultimately more flexible. | ||
|
||
The core plugins currently supported by Aragon are: | ||
* *Token Voting*: Proposals are created for token holders and delegates to vote on proposals, with execution decided using a simple majority rule. | ||
* *Multisig*: Proposals are created for designated addresses to approve, with execution decided by whether a minimum number of approvers is met. | ||
* *Admin*: Proposals are created by designated addresses and immediately executed. | ||
* *Staged Proposal Processor*: Proposals are created and progress through any number of stages, with other plugins either voting to approve or veto the proposal. The SPP plugin is essentially a cross-plugin state manager that enables governance processes with multiple stages and multiple governing bodies. | ||
|
||
=== Governance Tooling | ||
|
||
Other description here. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
= Documentation | ||
|
||
Explore our guides and examples to learn how. | ||
zz |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,17 +1,21 @@ | ||
/* footer.scss */ | ||
|
||
footer.footer { | ||
font-size: 0.7rem; | ||
font-size: var(--guk-size-base); | ||
background-color: var(--guk-color-neutral-0); /* #ffffff */ | ||
padding: var(--guk-space-6) var(--guk-space-8); /* 24px 32px */ | ||
color: var(--guk-color-neutral-500); /* #616e7c */ | ||
border-top: solid 1px rgba(31, 41, 51, 0.10); /* Uses --guk-color-neutral-900 */ | ||
border-top: solid 1px var(--guk-color-neutral-100); /* Uses --guk-color-neutral-900 */ | ||
} | ||
|
||
.footer a { | ||
color: rgba(31, 41, 51, 0.7); /* Semi-transparent using --guk-color-neutral-900 */ | ||
color: var(--guk-color-neutral-500); /* Semi-transparent using --guk-color-neutral-900 */ | ||
display: inline; | ||
margin-left: var(--guk-space-1-5); /* 6px */ | ||
border-left: 1px solid rgba(31, 41, 51, 0.7); | ||
margin-left: var(--guk-space-4); /* 6px */ | ||
/* border-left: 1px solid rgba(31, 41, 51, 0.7); */ | ||
padding-left: var(--guk-space-1-5); /* 6px */ | ||
} | ||
|
||
.footer a:hover { | ||
color: var(--guk-color-neutral-800); /* Semi-transparent using --guk-color-neutral-900 */ | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Large diffs are not rendered by default.
Oops, something went wrong.
Large diffs are not rendered by default.
Oops, something went wrong.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Loading
Sorry, something went wrong. Reload?
Sorry, we cannot display this file.
Sorry, this file is invalid so it cannot be displayed.
Oops, something went wrong.