├── .github ├── assets │ └── aragon.svg └── workflows │ └── ci.yml ├── .gitignore ├── .prettierrc ├── CONTRIBUTING.md ├── LICENSE ├── docs-internal ├── assets │ └── github-guide │ │ ├── gh-0-hq.png │ │ ├── gh-1-hq.png │ │ ├── gh-10-hq.png │ │ ├── gh-11-hq.png │ │ ├── gh-12-hq.png │ │ ├── gh-13-hq.png │ │ ├── gh-14-hq.png │ │ ├── gh-15-hq.png │ │ ├── gh-16-hq.png │ │ ├── gh-17-hq.png │ │ ├── gh-18-hq.png │ │ ├── gh-19-hq.png │ │ ├── gh-2-hq.png │ │ ├── gh-3-hq.png │ │ ├── gh-4-hq.png │ │ ├── gh-5-hq.png │ │ ├── gh-6-hq.png │ │ ├── gh-7-hq.png │ │ ├── gh-8-hq.png │ │ └── gh-9-hq.png └── github-guide.md ├── docs ├── acl-intro.md ├── api-intro.md ├── apm-architecture.md ├── apm-intro.md ├── apm-ref.md ├── app-center-intro.md ├── app-center-preparing-assets.md ├── app-center-submission.md ├── assets │ ├── Iconography │ │ ├── library1.svg │ │ ├── library10.svg │ │ ├── library11.svg │ │ ├── library12.svg │ │ ├── library13.svg │ │ ├── library14.svg │ │ ├── library15.svg │ │ ├── library16.svg │ │ ├── library17.svg │ │ ├── library18.svg │ │ ├── library19.svg │ │ ├── library2.svg │ │ ├── library20.svg │ │ ├── library21.svg │ │ ├── library22.svg │ │ ├── library23.svg │ │ ├── library24.svg │ │ ├── library3.svg │ │ ├── library4.svg │ │ ├── library5.svg │ │ ├── library6.svg │ │ ├── library7.svg │ │ ├── library8.svg │ │ └── library9.svg │ ├── agent-guide │ │ ├── agent-0.png │ │ ├── agent-1.png │ │ ├── agent-10.png │ │ ├── agent-10b.png │ │ ├── agent-11.png │ │ ├── agent-12.png │ │ ├── agent-13.png │ │ ├── agent-14.png │ │ ├── agent-15.png │ │ ├── agent-16.png │ │ ├── agent-17.png │ │ ├── agent-18.png │ │ ├── agent-2.png │ │ ├── agent-3.png │ │ ├── agent-4.png │ │ ├── agent-5.png │ │ ├── agent-6.png │ │ ├── agent-7.png │ │ ├── agent-8.png │ │ └── agent-9.png │ ├── apm-arch.png │ ├── apm-publish.png │ ├── apm-repo.png │ ├── app-center-1.svg │ ├── app-center-2.svg │ ├── app-center-3.svg │ ├── app-center-4.svg │ ├── app-center-5.svg │ ├── app-center-6.svg │ ├── app-center-7.svg │ ├── app-center-8.svg │ ├── app-center.png │ ├── app-lifecycle.png │ ├── architecture.svg │ ├── brand │ │ ├── aragonapi.png │ │ ├── aragoncli.png │ │ ├── aragonjs.png │ │ ├── aragonos.png │ │ ├── aragonpm.png │ │ └── aragonui.png │ ├── centralized-vs-decentralized-stack-2.png │ ├── centralized-vs-decentralized-stack.png │ ├── check.svg │ ├── core.png │ ├── counter.png │ ├── designSystem │ │ ├── components │ │ │ └── overview │ │ │ │ ├── alert.svg │ │ │ │ ├── app-icons.svg │ │ │ │ ├── badges.svg │ │ │ │ ├── buttons.svg │ │ │ │ ├── cards.svg │ │ │ │ ├── charts.svg │ │ │ │ ├── datepicker.svg │ │ │ │ ├── filters.svg │ │ │ │ ├── formelements.svg │ │ │ │ ├── layout.svg │ │ │ │ ├── loaders.svg │ │ │ │ ├── menu.svg │ │ │ │ ├── pagination.svg │ │ │ │ ├── popovers.svg │ │ │ │ ├── progress-bar.svg │ │ │ │ ├── search.svg │ │ │ │ ├── section-control.svg │ │ │ │ ├── tables.svg │ │ │ │ ├── tabs.svg │ │ │ │ └── tooltips.svg │ │ ├── covers │ │ │ ├── color.png │ │ │ ├── iconography.png │ │ │ ├── illustrations.png │ │ │ ├── layout.png │ │ │ ├── motion.svg │ │ │ ├── overview.svg │ │ │ ├── typography.png │ │ │ └── voicetone.png │ │ └── guidelines │ │ │ ├── aesthetics.svg │ │ │ ├── base-grid.svg │ │ │ ├── branded.svg │ │ │ ├── color-icons.svg │ │ │ ├── color.png │ │ │ ├── colors │ │ │ ├── aragon-blue-dark.svg │ │ │ ├── aragon-blue-light.svg │ │ │ ├── aragon-blue.svg │ │ │ ├── aragon-turquoise-dark.svg │ │ │ ├── aragon-turquoise-light.svg │ │ │ ├── aragon-turquoise.svg │ │ │ ├── baby-blue.svg │ │ │ ├── blue-dark.svg │ │ │ ├── blue-light.svg │ │ │ ├── blue.svg │ │ │ ├── brown-dark.svg │ │ │ ├── brown-light.svg │ │ │ ├── brown.svg │ │ │ ├── coral-dark.svg │ │ │ ├── coral-light.svg │ │ │ ├── coral.svg │ │ │ ├── green-dark.svg │ │ │ ├── green-light.svg │ │ │ ├── green-olive-dark.svg │ │ │ ├── green-olive-light.svg │ │ │ ├── green-olive.svg │ │ │ ├── green.svg │ │ │ ├── grey-basic.svg │ │ │ ├── grey-dark.svg │ │ │ ├── grey-light.svg │ │ │ ├── grey-medium.svg │ │ │ ├── grey.svg │ │ │ ├── mint-green-dark.svg │ │ │ ├── mint-green-light.svg │ │ │ ├── mint-green.svg │ │ │ ├── orange-dark.svg │ │ │ ├── orange-light.svg │ │ │ ├── orange.svg │ │ │ ├── pink-dark.svg │ │ │ ├── pink-light.svg │ │ │ ├── pink.svg │ │ │ ├── purple-dark.svg │ │ │ ├── purple-light.svg │ │ │ ├── purple.svg │ │ │ ├── red-dark.svg │ │ │ ├── red-light.svg │ │ │ ├── red.svg │ │ │ ├── white.svg │ │ │ ├── yellow-dark.svg │ │ │ ├── yellow-light.svg │ │ │ └── yellow.svg │ │ │ ├── column-system1.svg │ │ │ ├── column-system2.svg │ │ │ ├── column-system3.svg │ │ │ ├── contextual.svg │ │ │ ├── correct-typo-1.svg │ │ │ ├── correct-typo-2.svg │ │ │ ├── correct-typo-3.svg │ │ │ ├── correct-typo-4.svg │ │ │ ├── correct-uses1.svg │ │ │ ├── correct-uses2.svg │ │ │ ├── correct-uses3.svg │ │ │ ├── easing-table.svg │ │ │ ├── easing.svg │ │ │ ├── especifications.png │ │ │ ├── especifications2.png │ │ │ ├── expressive-motion.svg │ │ │ ├── family-in-use.svg │ │ │ ├── gutters.svg │ │ │ ├── hero.svg │ │ │ ├── iconography.png │ │ │ ├── icons.svg │ │ │ ├── icons │ │ │ ├── Add-user.svg │ │ │ ├── Alert.svg │ │ │ ├── Align-center.svg │ │ │ ├── Align-justify.svg │ │ │ ├── Align-left.svg │ │ │ ├── Align-right.svg │ │ │ ├── Aragon.svg │ │ │ ├── Aragon_icons.zip │ │ │ ├── Arrow-down.svg │ │ │ ├── Arrow-left.svg │ │ │ ├── Arrow-right.svg │ │ │ ├── Arrow-up.svg │ │ │ ├── At-sign.svg │ │ │ ├── Block.svg │ │ │ ├── Bookmark.svg │ │ │ ├── Calendar.svg │ │ │ ├── Canvas.svg │ │ │ ├── Caution.svg │ │ │ ├── Center.svg │ │ │ ├── Chart.svg │ │ │ ├── Chat.svg │ │ │ ├── Check.svg │ │ │ ├── Chip.svg │ │ │ ├── Circle-check.svg │ │ │ ├── Circle-minus.svg │ │ │ ├── Circle-plus.svg │ │ │ ├── Clock.svg │ │ │ ├── Cloud-download.svg │ │ │ ├── Cloud-upload.svg │ │ │ ├── Coin.svg │ │ │ ├── Configuration.svg │ │ │ ├── Connect.svg │ │ │ ├── Connection.svg │ │ │ ├── Copy.svg │ │ │ ├── Cross.svg │ │ │ ├── Dashed-square.svg │ │ │ ├── Down.svg │ │ │ ├── Download.svg │ │ │ ├── Edit.svg │ │ │ ├── Ellipsis.svg │ │ │ ├── Ethereum.svg │ │ │ ├── External.svg │ │ │ ├── File.svg │ │ │ ├── Filter.svg │ │ │ ├── Flag.svg │ │ │ ├── Folder.svg │ │ │ ├── Graph-2.svg │ │ │ ├── Graph.svg │ │ │ ├── Grid.svg │ │ │ ├── Group.svg │ │ │ ├── Hash.svg │ │ │ ├── Heart.svg │ │ │ ├── Hide.svg │ │ │ ├── Home.svg │ │ │ ├── Image.svg │ │ │ ├── Info.svg │ │ │ ├── Label.svg │ │ │ ├── Layers.svg │ │ │ ├── Left.svg │ │ │ ├── Link.svg │ │ │ ├── Location.svg │ │ │ ├── Lock.svg │ │ │ ├── Mail.svg │ │ │ ├── Maximize.svg │ │ │ ├── Menu.svg │ │ │ ├── Minimize.svg │ │ │ ├── Minus.svg │ │ │ ├── Move.svg │ │ │ ├── No-picture.svg │ │ │ ├── Picture.svg │ │ │ ├── Plus.svg │ │ │ ├── Power.svg │ │ │ ├── Print.svg │ │ │ ├── Prohibited.svg │ │ │ ├── Question.svg │ │ │ ├── Refresh.svg │ │ │ ├── Remove-user.svg │ │ │ ├── Right.svg │ │ │ ├── Rotate-left.svg │ │ │ ├── Rotate-right.svg │ │ │ ├── Search.svg │ │ │ ├── Settings.svg │ │ │ ├── Share.svg │ │ │ ├── Square-minus.svg │ │ │ ├── Square-plus.svg │ │ │ ├── Square.svg │ │ │ ├── Star-filled.svg │ │ │ ├── Star.svg │ │ │ ├── Target.svg │ │ │ ├── Token.svg │ │ │ ├── Trash.svg │ │ │ ├── Unlock.svg │ │ │ ├── Up.svg │ │ │ ├── Upload.svg │ │ │ ├── User.svg │ │ │ ├── View.svg │ │ │ ├── Vote.svg │ │ │ ├── Wallet.svg │ │ │ ├── Warning.svg │ │ │ ├── World.svg │ │ │ ├── Write.svg │ │ │ ├── Zoom-in.svg │ │ │ └── Zoom-out.svg │ │ │ ├── illustration-style.svg │ │ │ ├── illustration.png │ │ │ ├── interface.svg │ │ │ ├── light-theme.png │ │ │ ├── monotype-labels.svg │ │ │ ├── monotype.svg │ │ │ ├── naming.svg │ │ │ ├── overpass.svg │ │ │ ├── productive-motion.svg │ │ │ ├── respect-color.svg │ │ │ ├── responsive1.svg │ │ │ ├── responsive2.svg │ │ │ ├── responsive3.svg │ │ │ ├── roboto.svg │ │ │ ├── secure-space.svg │ │ │ ├── sex-integration.svg │ │ │ ├── sizes.png │ │ │ ├── skin-tones.svg │ │ │ ├── spot.svg │ │ │ ├── textures.png │ │ │ ├── textures2.png │ │ │ ├── token-manager.svg │ │ │ ├── types-of-animations.svg │ │ │ ├── typografy-in-use.svg │ │ │ ├── vertical-text-1.svg │ │ │ ├── vertical-texts-2.svg │ │ │ └── weight.svg │ ├── frame │ │ ├── frame-accounts.gif │ │ ├── frame-app-menu.gif │ │ ├── frame-first-tx.gif │ │ ├── frame-intro.gif │ │ ├── frame-ledger.gif │ │ ├── frame-permissions.gif │ │ ├── frame-trezor.gif │ │ └── frame-view-tx.gif │ ├── fwd.gif │ ├── getting-started-dao-1.png │ ├── getting-started-dao-2.png │ ├── metamask-1.png │ ├── metamask-4.png │ ├── metamask-5.png │ ├── metamask-6.png │ ├── metamask-7.png │ ├── metamask-guide │ │ ├── m-0.png │ │ ├── m-1.png │ │ ├── m-10.png │ │ ├── m-11.png │ │ ├── m-12.png │ │ ├── m-13.png │ │ ├── m-14.png │ │ ├── m-15.png │ │ ├── m-2.png │ │ ├── m-3.png │ │ ├── m-4.png │ │ ├── m-5.png │ │ ├── m-6.png │ │ ├── m-7.png │ │ ├── m-8.png │ │ └── m-9.png │ ├── metamask.png │ ├── os-app-call.gif │ └── radspec.png ├── client.md ├── ds-alerts.md ├── ds-buttons.md ├── ds-color.md ├── ds-iconography.md ├── ds-illustrations.md ├── ds-layout.md ├── ds-layouts.md ├── ds-motion.md ├── ds-overview.md ├── ds-typography.md ├── ds-voicetone.md ├── forwarding-intro.md ├── getting-started.md ├── glossary.md ├── guides-agent-app.md ├── guides-buidler-migration.md ├── guides-custom-deploy.md ├── guides-faq.md ├── guides-publish.md ├── guides-use-frame.md ├── guides-use-metamask.md ├── human-readable-txs.md ├── os-3-ref.md ├── os-4-migration.md ├── os-building.md ├── os-intro.md ├── os-motivation.md ├── os-ref.md ├── package-management.md ├── stack.md ├── templates-intro.md ├── tutorial.md ├── ui-intro.md └── upgradeability-intro.md ├── readme.md └── website ├── core └── Footer.js ├── fonts ├── HKGrotesk-Light.ttf └── HKGrotesk-Regular.ttf ├── i18n └── en.json ├── package.json ├── pages └── en │ ├── assets │ ├── api.svg │ ├── hero-background.png │ ├── os.svg │ └── ui.svg │ ├── help.js │ └── index.js ├── scripts ├── sync-aragonjs-docs.js ├── sync-cli-docs.js └── sync-util.js ├── sidebars.json ├── siteConfig.js ├── static ├── css │ └── custom.css ├── fonts │ ├── HKGrotesk-Bold.ttf │ ├── HKGrotesk-Light.ttf │ ├── HKGrotesk-Medium.ttf │ ├── HKGrotesk-Regular.ttf │ ├── HKGrotesk-SemiBold.ttf │ └── MaterialIcons-Regular.ttf └── img │ ├── api.svg │ ├── bg.png │ ├── cases │ ├── althea-small.jpg │ ├── althea.jpg │ ├── planning-small.jpg │ └── planning.jpg │ ├── ds.svg │ ├── favicon.png │ ├── footer.svg │ ├── footerbg.svg │ ├── for-crypto.svg │ ├── for-daos.svg │ ├── for-dapps.svg │ ├── hero-background.png │ ├── isotype.svg │ ├── landing.svg │ ├── landing@2x.svg │ ├── lines-side.svg │ ├── lines.svg │ ├── menubar.svg │ ├── menumore.svg │ ├── navbar-logo.svg │ ├── navbar │ ├── aragonAPI.svg │ ├── aragonCLI.svg │ ├── aragonDS.svg │ ├── aragonOS.svg │ ├── aragonPM.svg │ └── aragonUI.svg │ ├── next-arrow.svg │ ├── os.svg │ ├── prev-arrow.svg │ ├── spectrum.svg │ ├── stroke.png │ ├── ui.svg │ ├── users │ ├── althea.jpg │ ├── dappnode.png │ ├── decentraland.png │ ├── district0x.svg │ ├── espresso.png │ ├── giveth.png │ └── pando.png │ └── you-developer.png └── yarn.lock /.github/workflows/ci.yml: -------------------------------------------------------------------------------- 1 | name: deploy 2 | 3 | on: 4 | push: 5 | 6 | jobs: 7 | deploy: 8 | runs-on: ubuntu-16.04 9 | steps: 10 | - uses: actions/checkout@v1 11 | - name: Install node 12 | uses: actions/setup-node@v1 13 | with: 14 | node-version: 12 15 | - name: yarn install 16 | run: yarn install --frozen-lockfile 17 | working-directory: ./website 18 | - name: install solc 19 | run: | 20 | # Install solc v0.4.24 manually onto Linux 21 | mkdir -p "$HOME/bin" 22 | curl -s -f -L "https://github.com/ethereum/solidity/releases/download/v0.4.24/solc-static-linux" -o "$HOME/bin/solc" 23 | chmod u+x "$HOME/bin/solc" 24 | echo "Installed solc-v0.4.24" 25 | export PATH=$HOME/bin:$PATH 26 | solc --version 27 | - name: build 28 | run: | 29 | export PATH=$HOME/bin:$PATH 30 | solc --version 31 | yarn run build 32 | working-directory: ./website 33 | - name: deploy 34 | run: | 35 | git config --global user.email "autobot@noreply.aragon.org" 36 | git config --global user.name "Autobots, roll out!" 37 | echo "machine github.com login arabot-1 password ${{ secrets.GIT_TOKEN }}" > $HOME/.netrc 38 | GIT_USER="arabot-1" npx docusaurus-publish 39 | working-directory: ./website 40 | env: 41 | CI: true 42 | -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | 3 | # npm/yarn only in the website dir 4 | /node_modules 5 | /yarn.lock 6 | /package-lock.json 7 | 8 | lib/core/metadata.js 9 | lib/core/MetadataBlog.js 10 | 11 | # website build fields 12 | website/package-lock.json 13 | website/node_modules 14 | website/build/ 15 | website/static/aragon-ui 16 | 17 | # autogenerated i18n 18 | website/translated_docs 19 | website/i18n/* 20 | !website/i18n/en.json 21 | 22 | # ignore files generated from repos 23 | docs/js-* 24 | docs/cli-* 25 | 26 | # ignore files generated by solidity-docgen 27 | docs/api_* 28 | -------------------------------------------------------------------------------- /.prettierrc: -------------------------------------------------------------------------------- 1 | { 2 | "singleQuote": true, 3 | "semi": false, 4 | "trailingComma": "es5", 5 | "bracketSpacing": true, 6 | "jsxBracketSameLine": false 7 | } 8 | -------------------------------------------------------------------------------- /docs-internal/assets/github-guide/gh-0-hq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs-internal/assets/github-guide/gh-0-hq.png -------------------------------------------------------------------------------- /docs-internal/assets/github-guide/gh-1-hq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs-internal/assets/github-guide/gh-1-hq.png -------------------------------------------------------------------------------- /docs-internal/assets/github-guide/gh-10-hq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs-internal/assets/github-guide/gh-10-hq.png -------------------------------------------------------------------------------- /docs-internal/assets/github-guide/gh-11-hq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs-internal/assets/github-guide/gh-11-hq.png -------------------------------------------------------------------------------- /docs-internal/assets/github-guide/gh-12-hq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs-internal/assets/github-guide/gh-12-hq.png -------------------------------------------------------------------------------- /docs-internal/assets/github-guide/gh-13-hq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs-internal/assets/github-guide/gh-13-hq.png -------------------------------------------------------------------------------- /docs-internal/assets/github-guide/gh-14-hq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs-internal/assets/github-guide/gh-14-hq.png -------------------------------------------------------------------------------- /docs-internal/assets/github-guide/gh-15-hq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs-internal/assets/github-guide/gh-15-hq.png -------------------------------------------------------------------------------- /docs-internal/assets/github-guide/gh-16-hq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs-internal/assets/github-guide/gh-16-hq.png -------------------------------------------------------------------------------- /docs-internal/assets/github-guide/gh-17-hq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs-internal/assets/github-guide/gh-17-hq.png -------------------------------------------------------------------------------- /docs-internal/assets/github-guide/gh-18-hq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs-internal/assets/github-guide/gh-18-hq.png -------------------------------------------------------------------------------- /docs-internal/assets/github-guide/gh-19-hq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs-internal/assets/github-guide/gh-19-hq.png -------------------------------------------------------------------------------- /docs-internal/assets/github-guide/gh-2-hq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs-internal/assets/github-guide/gh-2-hq.png -------------------------------------------------------------------------------- /docs-internal/assets/github-guide/gh-3-hq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs-internal/assets/github-guide/gh-3-hq.png -------------------------------------------------------------------------------- /docs-internal/assets/github-guide/gh-4-hq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs-internal/assets/github-guide/gh-4-hq.png -------------------------------------------------------------------------------- /docs-internal/assets/github-guide/gh-5-hq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs-internal/assets/github-guide/gh-5-hq.png -------------------------------------------------------------------------------- /docs-internal/assets/github-guide/gh-6-hq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs-internal/assets/github-guide/gh-6-hq.png -------------------------------------------------------------------------------- /docs-internal/assets/github-guide/gh-7-hq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs-internal/assets/github-guide/gh-7-hq.png -------------------------------------------------------------------------------- /docs-internal/assets/github-guide/gh-8-hq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs-internal/assets/github-guide/gh-8-hq.png -------------------------------------------------------------------------------- /docs-internal/assets/github-guide/gh-9-hq.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs-internal/assets/github-guide/gh-9-hq.png -------------------------------------------------------------------------------- /docs/acl-intro.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: acl-intro 3 | title: Permissions 4 | sidebar_label: Permissions 5 | --- 6 | 7 | ##### Use the Access Control List (ACL) to control who can access your app's functionality 8 | 9 | ## How does it work? 10 | The ACL essentially just contains a set of who has permission to execute an action in an Aragon app and who can re-grant or revoke that permission. Most generally, an *Entity* can hold the permission to call a function protected by *Role* in an *App*, and their permission is managed by a *Manager*, who can revoke or regrant that permission. 11 | 12 | 13 | ## Example 14 | 15 | Now let's say we have these 3 apps: 16 | - A *Token Manager* app, which represents BOB token holders and forwards all their intents to another app 17 | - A *Voting* app, which executes any arbitrary action after a voting of BOB token holders passes 18 | - A *Finance* app, which controls the funds of the organization 19 | 20 | | Entity | App | Role | Manager | 21 | | ------------- | ------------- | --------- | -------- | 22 | | Token Manager | Voting | OPEN_VOTE | Voting | 23 | | Voting | Finance | WITHDRAW | Voting | 24 | 25 | With the simple mapping in the table above, we have done the following: 26 | - Given permission to BOB token holders, using the *Token Manager*, to open votes in the *Voting* app 27 | - Given permission to the *Voting* app to withdraw funds from the *Finance* app 28 | 29 | We have achieved a fully democratic way of withdrawing funds in Ethereum! 30 | -------------------------------------------------------------------------------- /docs/api-intro.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: api-intro 3 | title: aragonAPI Introduction 4 | sidebar_label: Introduction 5 | hide_title: true 6 | --- 7 | 8 | ![](/docs/assets/brand/aragonapi.png) 9 | 10 | ##### 11 | 12 | Standard set of APIs and specifications used to interact with aragonOS-powered contracts by handling transaction pathing, upgradeability, and contract state without depending on a centralized service. 13 | 14 | ## Reference implementations in specific languages 15 | 16 | ### JavaScript 17 | 18 | A JavaScript implementation of the aragonAPI, used to interact with aragonOS by handling transaction pathing, upgradeability, identity providers and state of the contracts. 19 | 20 | Some of the things you can do with the JavaScript implementation are: 21 | 22 | - Connect contracts to front-end 23 | - Interact with [aragonOS](os-intro.md) and aragonOS-powered applications directly through an abstraction over web3.js 24 | - Get access to application state with built in client-side caching 25 | - Create human-readable transaction descriptions for your smart contracts through [Radspec](human-readable-txs.md) 26 | 27 | #### Docs 28 | 29 | - [Quick Start for apps](js-ref-quick-start.md) 30 | - [App API](js-ref-api.md) 31 | - [React API](js-ref-react.md) 32 | - [Aragon client implementations (wrapper)](js-ref-wrapper.md) 33 | - [Providers](js-ref-providers.md) 34 | - [Architecture of Aragon apps and their communication channels](js-ref-architecture.md) 35 | 36 | #### Guides 37 | 38 | - [Background Scripts](js-guide-bg-scripts.md) 39 | -------------------------------------------------------------------------------- /docs/app-center-intro.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: app-center-intro 3 | title: App Center 4 | sidebar_label: Introduction 5 | --- 6 | 7 | ![](/docs/assets/app-center.png) 8 | 9 | ##### 10 | 11 | The Aragon client includes an App Center where users can manage their currently installed apps and discover new ones. 12 | 13 | As of Aragon 0.7 Bella, the App Center only allows users to view and manage upgrades for already installed applications. However, enabling app installations from inside the client is an ongoing research effort and is planned in the roadmap. In the mean time, you can use the CLI to install new applications or instances into your organization ([see guide](/docs/guides-custom-deploy)). 14 | 15 | The App Center also currently exposes a heavily curated selection of available or upcoming applications in its "Discover" tab. To submit an application into the "Discover" tab, please follow the steps in [Submitting Your App to the App Center](/docs/app-center-submission). 16 | -------------------------------------------------------------------------------- /docs/app-center-submission.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: app-center-submission 3 | title: Submitting Your App to the App Center 4 | sidebar_label: Submitting Your App to the App Center 5 | --- 6 | 7 | For the time being, we ask that you submit an [issue to the `aragon/aragon` repo](https://github.com/aragon/aragon/issues/new/choose) with the following: 8 | 9 | - Name of your application 10 | - Link to its development repo 11 | - Link to an organization with the application installed 12 | - Current development status 13 | - Short summary explaining what the application does 14 | 15 | Please double check that your app includes the relevant assets and that they are in the correct formats ([see guide](/docs/app-center-preparing-assets)). 16 | 17 | ##### 18 | 19 | We will update this page accordingly as we build more community-governed infrastructure for curating apps in the future. 20 | -------------------------------------------------------------------------------- /docs/assets/Iconography/library1.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /docs/assets/Iconography/library10.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /docs/assets/Iconography/library11.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /docs/assets/Iconography/library12.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /docs/assets/Iconography/library14.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /docs/assets/Iconography/library15.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /docs/assets/Iconography/library16.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /docs/assets/Iconography/library17.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /docs/assets/Iconography/library18.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /docs/assets/Iconography/library19.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /docs/assets/Iconography/library2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /docs/assets/Iconography/library20.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /docs/assets/Iconography/library21.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /docs/assets/Iconography/library22.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /docs/assets/Iconography/library23.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /docs/assets/Iconography/library24.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /docs/assets/Iconography/library3.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /docs/assets/Iconography/library4.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /docs/assets/Iconography/library5.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /docs/assets/Iconography/library6.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /docs/assets/Iconography/library7.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /docs/assets/Iconography/library8.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /docs/assets/agent-guide/agent-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/agent-guide/agent-0.png -------------------------------------------------------------------------------- /docs/assets/agent-guide/agent-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/agent-guide/agent-1.png -------------------------------------------------------------------------------- /docs/assets/agent-guide/agent-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/agent-guide/agent-10.png -------------------------------------------------------------------------------- /docs/assets/agent-guide/agent-10b.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/agent-guide/agent-10b.png -------------------------------------------------------------------------------- /docs/assets/agent-guide/agent-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/agent-guide/agent-11.png -------------------------------------------------------------------------------- /docs/assets/agent-guide/agent-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/agent-guide/agent-12.png -------------------------------------------------------------------------------- /docs/assets/agent-guide/agent-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/agent-guide/agent-13.png -------------------------------------------------------------------------------- /docs/assets/agent-guide/agent-14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/agent-guide/agent-14.png -------------------------------------------------------------------------------- /docs/assets/agent-guide/agent-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/agent-guide/agent-15.png -------------------------------------------------------------------------------- /docs/assets/agent-guide/agent-16.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/agent-guide/agent-16.png -------------------------------------------------------------------------------- /docs/assets/agent-guide/agent-17.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/agent-guide/agent-17.png -------------------------------------------------------------------------------- /docs/assets/agent-guide/agent-18.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/agent-guide/agent-18.png -------------------------------------------------------------------------------- /docs/assets/agent-guide/agent-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/agent-guide/agent-2.png -------------------------------------------------------------------------------- /docs/assets/agent-guide/agent-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/agent-guide/agent-3.png -------------------------------------------------------------------------------- /docs/assets/agent-guide/agent-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/agent-guide/agent-4.png -------------------------------------------------------------------------------- /docs/assets/agent-guide/agent-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/agent-guide/agent-5.png -------------------------------------------------------------------------------- /docs/assets/agent-guide/agent-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/agent-guide/agent-6.png -------------------------------------------------------------------------------- /docs/assets/agent-guide/agent-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/agent-guide/agent-7.png -------------------------------------------------------------------------------- /docs/assets/agent-guide/agent-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/agent-guide/agent-8.png -------------------------------------------------------------------------------- /docs/assets/agent-guide/agent-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/agent-guide/agent-9.png -------------------------------------------------------------------------------- /docs/assets/apm-arch.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/apm-arch.png -------------------------------------------------------------------------------- /docs/assets/apm-publish.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/apm-publish.png -------------------------------------------------------------------------------- /docs/assets/apm-repo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/apm-repo.png -------------------------------------------------------------------------------- /docs/assets/app-center.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/app-center.png -------------------------------------------------------------------------------- /docs/assets/app-lifecycle.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/app-lifecycle.png -------------------------------------------------------------------------------- /docs/assets/brand/aragonapi.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/brand/aragonapi.png -------------------------------------------------------------------------------- /docs/assets/brand/aragoncli.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/brand/aragoncli.png -------------------------------------------------------------------------------- /docs/assets/brand/aragonjs.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/brand/aragonjs.png -------------------------------------------------------------------------------- /docs/assets/brand/aragonos.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/brand/aragonos.png -------------------------------------------------------------------------------- /docs/assets/brand/aragonpm.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/brand/aragonpm.png -------------------------------------------------------------------------------- /docs/assets/brand/aragonui.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/brand/aragonui.png -------------------------------------------------------------------------------- /docs/assets/centralized-vs-decentralized-stack-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/centralized-vs-decentralized-stack-2.png -------------------------------------------------------------------------------- /docs/assets/centralized-vs-decentralized-stack.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/centralized-vs-decentralized-stack.png -------------------------------------------------------------------------------- /docs/assets/check.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/assets/core.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/core.png -------------------------------------------------------------------------------- /docs/assets/counter.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/counter.png -------------------------------------------------------------------------------- /docs/assets/designSystem/covers/color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/designSystem/covers/color.png -------------------------------------------------------------------------------- /docs/assets/designSystem/covers/iconography.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/designSystem/covers/iconography.png -------------------------------------------------------------------------------- /docs/assets/designSystem/covers/illustrations.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/designSystem/covers/illustrations.png -------------------------------------------------------------------------------- /docs/assets/designSystem/covers/layout.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/designSystem/covers/layout.png -------------------------------------------------------------------------------- /docs/assets/designSystem/covers/typography.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/designSystem/covers/typography.png -------------------------------------------------------------------------------- /docs/assets/designSystem/covers/voicetone.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/designSystem/covers/voicetone.png -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/color.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/designSystem/guidelines/color.png -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/colors/aragon-blue-dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/colors/aragon-blue-light.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/colors/aragon-blue.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/colors/aragon-turquoise-dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/colors/aragon-turquoise-light.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/colors/aragon-turquoise.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/colors/baby-blue.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/colors/blue-dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/colors/blue-light.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/colors/blue.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/colors/brown-dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/colors/brown-light.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/colors/brown.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/colors/coral-dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/colors/coral-light.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/colors/coral.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/colors/green-dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/colors/green-light.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/colors/green-olive-dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/colors/green-olive-light.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/colors/green-olive.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/colors/green.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/colors/grey-basic.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/colors/grey-dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/colors/grey-light.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/colors/grey-medium.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/colors/grey.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/colors/mint-green-dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/colors/mint-green-light.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/colors/mint-green.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/colors/orange-dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/colors/orange-light.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/colors/orange.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/colors/pink-dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/colors/pink-light.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/colors/pink.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/colors/purple-dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/colors/purple-light.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/colors/purple.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/colors/red-dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/colors/red-light.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/colors/red.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/colors/white.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/colors/yellow-dark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/colors/yellow-light.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/colors/yellow.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/especifications.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/designSystem/guidelines/especifications.png -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/especifications2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/designSystem/guidelines/especifications2.png -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/iconography.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/designSystem/guidelines/iconography.png -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/Align-center.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/Align-justify.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/Align-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/Align-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/Aragon.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/Aragon_icons.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/designSystem/guidelines/icons/Aragon_icons.zip -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/Arrow-down.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/Arrow-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/Arrow-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/Arrow-up.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/At-sign.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/Block.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/Bookmark.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/Calendar.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/Canvas.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/Caution.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/Center.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/Chart.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/Chat.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/Check.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/Circle-check.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/Circle-minus.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/Circle-plus.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/Clock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/Cloud-download.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/Cloud-upload.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/Connect.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/Copy.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/Cross.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/Dashed-square.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/Down.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/Download.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/Edit.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/Ellipsis.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/Ethereum.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/External.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/File.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/Filter.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/Flag.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/Folder.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/Graph-2.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/Graph.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/Hash.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/Heart.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/Home.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/Image.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/Info.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/Label.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/Layers.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/Left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/Location.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/Lock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/Mail.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/Maximize.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/Menu.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/Minimize.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/Minus.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/No-picture.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/Picture.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/Plus.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/Power.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/Print.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/Prohibited.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/Question.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/Remove-user.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/Right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/Rotate-left.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/Rotate-right.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/Search.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/Share.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/Square-minus.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/Square-plus.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/Square.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/Star-filled.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/Star.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/Target.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/Trash.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/Unlock.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/Up.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/Upload.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/User.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/View.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/Warning.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/World.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/Write.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/Zoom-in.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/icons/Zoom-out.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/illustration.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/designSystem/guidelines/illustration.png -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/interface.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/light-theme.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/designSystem/guidelines/light-theme.png -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/naming.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/sizes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/designSystem/guidelines/sizes.png -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/textures.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/designSystem/guidelines/textures.png -------------------------------------------------------------------------------- /docs/assets/designSystem/guidelines/textures2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/designSystem/guidelines/textures2.png -------------------------------------------------------------------------------- /docs/assets/frame/frame-accounts.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/frame/frame-accounts.gif -------------------------------------------------------------------------------- /docs/assets/frame/frame-app-menu.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/frame/frame-app-menu.gif -------------------------------------------------------------------------------- /docs/assets/frame/frame-first-tx.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/frame/frame-first-tx.gif -------------------------------------------------------------------------------- /docs/assets/frame/frame-intro.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/frame/frame-intro.gif -------------------------------------------------------------------------------- /docs/assets/frame/frame-ledger.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/frame/frame-ledger.gif -------------------------------------------------------------------------------- /docs/assets/frame/frame-permissions.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/frame/frame-permissions.gif -------------------------------------------------------------------------------- /docs/assets/frame/frame-trezor.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/frame/frame-trezor.gif -------------------------------------------------------------------------------- /docs/assets/frame/frame-view-tx.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/frame/frame-view-tx.gif -------------------------------------------------------------------------------- /docs/assets/fwd.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/fwd.gif -------------------------------------------------------------------------------- /docs/assets/getting-started-dao-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/getting-started-dao-1.png -------------------------------------------------------------------------------- /docs/assets/getting-started-dao-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/getting-started-dao-2.png -------------------------------------------------------------------------------- /docs/assets/metamask-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/metamask-1.png -------------------------------------------------------------------------------- /docs/assets/metamask-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/metamask-4.png -------------------------------------------------------------------------------- /docs/assets/metamask-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/metamask-5.png -------------------------------------------------------------------------------- /docs/assets/metamask-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/metamask-6.png -------------------------------------------------------------------------------- /docs/assets/metamask-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/metamask-7.png -------------------------------------------------------------------------------- /docs/assets/metamask-guide/m-0.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/metamask-guide/m-0.png -------------------------------------------------------------------------------- /docs/assets/metamask-guide/m-1.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/metamask-guide/m-1.png -------------------------------------------------------------------------------- /docs/assets/metamask-guide/m-10.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/metamask-guide/m-10.png -------------------------------------------------------------------------------- /docs/assets/metamask-guide/m-11.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/metamask-guide/m-11.png -------------------------------------------------------------------------------- /docs/assets/metamask-guide/m-12.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/metamask-guide/m-12.png -------------------------------------------------------------------------------- /docs/assets/metamask-guide/m-13.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/metamask-guide/m-13.png -------------------------------------------------------------------------------- /docs/assets/metamask-guide/m-14.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/metamask-guide/m-14.png -------------------------------------------------------------------------------- /docs/assets/metamask-guide/m-15.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/metamask-guide/m-15.png -------------------------------------------------------------------------------- /docs/assets/metamask-guide/m-2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/metamask-guide/m-2.png -------------------------------------------------------------------------------- /docs/assets/metamask-guide/m-3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/metamask-guide/m-3.png -------------------------------------------------------------------------------- /docs/assets/metamask-guide/m-4.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/metamask-guide/m-4.png -------------------------------------------------------------------------------- /docs/assets/metamask-guide/m-5.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/metamask-guide/m-5.png -------------------------------------------------------------------------------- /docs/assets/metamask-guide/m-6.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/metamask-guide/m-6.png -------------------------------------------------------------------------------- /docs/assets/metamask-guide/m-7.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/metamask-guide/m-7.png -------------------------------------------------------------------------------- /docs/assets/metamask-guide/m-8.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/metamask-guide/m-8.png -------------------------------------------------------------------------------- /docs/assets/metamask-guide/m-9.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/metamask-guide/m-9.png -------------------------------------------------------------------------------- /docs/assets/metamask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/metamask.png -------------------------------------------------------------------------------- /docs/assets/os-app-call.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/os-app-call.gif -------------------------------------------------------------------------------- /docs/assets/radspec.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/docs/assets/radspec.png -------------------------------------------------------------------------------- /docs/client.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: client 3 | title: The Aragon client 4 | sidebar_label: The Aragon client 5 | --- 6 | 7 | ##### How the user experiences an Aragon DAO 8 | 9 | 10 | The [Aragon client](https://github.com/aragon/aragon) is a full dapp that can create and manage decentralized organizations by running Aragon apps inside it. 11 | 12 | The client provides Aragon app developers with the following capabilities: 13 | - **Sandboxing**: The client is running code from third party developers and so in order to mitigate risk (such as cross-site scripting and phishing attempts by manipulating the DOM) we sandbox apps 14 | - **App listing**: It traverses the organization to find all the relevant apps for it 15 | - **Transaction pathing**: It checks with the [ACL](acl-intro.md) to see if the user can perform an action (e.g. withdrawing funds) and if not, it gives the user alternative paths to perform it (e.g. maybe by opening a vote) 16 | - **Human readable transactions**: It uses [Radspec](human-readable-txs.md) and describes the user action in a human readable way 17 | - **Notifications**: Aragon apps can send notifications to the user when something relevant happens 18 | 19 | It looks like this: 20 | ![](https://raw.githubusercontent.com/aragon/aragon-wiki/master/docs/media/press/press-kit/screenshots/0.5/aragon_core_v05_beta_home04.png) 21 | -------------------------------------------------------------------------------- /docs/ds-alerts.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: alerts 3 | title: Alerts 4 | sidebar_label: Alerts 5 | hide_title: true 6 | --- 7 | 8 | 9 | ## Alerts 10 | -------------------------------------------------------------------------------- /docs/ds-buttons.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: buttons 3 | title: Buttons 4 | sidebar_label: Buttons 5 | hide_title: true 6 | --- 7 | 8 | 9 | ## Buttons 10 | -------------------------------------------------------------------------------- /docs/ds-layouts.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: layouts 3 | title: Layouts 4 | sidebar_label: Layouts 5 | hide_title: true 6 | --- 7 | 8 | 9 | ## Layouts 10 | -------------------------------------------------------------------------------- /docs/ds-motion.md: -------------------------------------------------------------------------------- 1 | 77 | -------------------------------------------------------------------------------- /docs/ds-voicetone.md: -------------------------------------------------------------------------------- 1 | 39 | -------------------------------------------------------------------------------- /docs/package-management.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: package-management 3 | title: Package management 4 | sidebar_label: Package management 5 | --- 6 | 7 | ##### Publishing and upgrading Aragon apps 8 | 9 | To ease upgrades for Aragon apps, both app **smart contracts and frontend can be upgraded using aragonPM**. 10 | 11 | aragonPM is a DAO built on top of aragonOS (taking advantage of upgradeability and the ACL). 12 | 13 | aragonPM allows for multiple package registries to exist with different governance models for package publishing and releasing new versions. There is an official Aragon curated aragonPM, `aragonpm.eth`, which has very strict restrictions of what gets published and very high quality standards that we use for publishing our core components. 14 | 15 | Different aragonPM registries in which everyone can publish their packages are expected to be created by the community. **You can create your own registry** and have full control over it. 16 | 17 | #### Read more: [aragonPM](/docs/apm-intro.html) 18 | -------------------------------------------------------------------------------- /docs/ui-intro.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: aragonui-intro 3 | title: aragonUI intro 4 | sidebar_label: Introduction 5 | hide_title: true 6 | --- 7 | 8 | ![](/docs/assets/brand/aragonui.png) 9 | 10 | **aragonUI** is an Aragon-native toolkit of UI components for decentralized apps. It follows the [Aragon client](client.md) design language and will make your app appear as a seamless part of the Aragon ecosystem. Using the aragonUI for your app, however, is not mandatory. 11 | 12 | Here is the [gallery of UI components](https://ui.aragon.org/). 13 | 14 | Use the following command to install aragonUI: 15 | 16 | ```sh 17 | npm install --save @aragon/ui 18 | ``` 19 | 20 | Copy the aragonUI assets into your public directory: 21 | 22 | ```sh 23 | npx copy-aragon-ui-assets ./public 24 | ``` 25 | 26 | Wrap your app in the `Main` component: 27 | 28 | ```jsx 29 | import { Main } from '@aragon/ui' 30 | 31 | function App() { 32 | return ( 33 |
34 | {/* Your app goes here */} 35 |
36 | ) 37 | } 38 | ``` 39 | 40 | #### Theming 41 | 42 | aragonUI supports themes, which can adapt to the preference of the user. This is how you can pass the current theme from aragonAPI to aragonUI: 43 | 44 | ```jsx 45 | import { useGuiStyle } from '@aragon/api-react' 46 | import { Main } from '@aragon/ui' 47 | 48 | function App() { 49 | const { appearance } = useGuiStyle() 50 | return ( 51 |
52 | {/* Your app goes here */} 53 |
54 | ) 55 | } 56 | ``` 57 | 58 | [Check the project website](https://ui.aragon.org/getting-started/) for more information. 59 | -------------------------------------------------------------------------------- /docs/upgradeability-intro.md: -------------------------------------------------------------------------------- 1 | --- 2 | id: upgradeability-intro 3 | title: Upgradeability 4 | sidebar_label: Upgradeability 5 | --- 6 | 7 | ##### Make your app upgradeable to fix bugs and push enhancements 8 | 9 | 10 | The ACL and Forwarders allow you to create apps that are interoperable and generic so you don't have to reimplement any governance or authentication logic whatsoever. This is thanks to Proxies. A **Proxy** is a very simple smart contract which consists of decoupling the instance of a particular smart contract with the location of its actual business logic. 11 | 12 | All a Proxy does is **delegate calls to another contract which contains its actual logic**. 13 | 14 | This allows for upgradeability since **you can always interact with the same Ethereum address for the smart contract** but its logic can be upgraded over time. 15 | 16 | Proxies help enable the decoupling of authentication and logic since you do not need to authenticate any particular version of the smart contract but rather a reference to it that never changes. 17 | 18 | We created [EIP897](https://github.com/ethereum/EIPs/pull/897), which has been merged, in order to standarize how Proxy interfaces work across all the ecosystem. 19 | 20 | The [aragonOS Kernel](/docs/stack.html#the-kernel) takes care of maintaining the mapping between the Proxy address of an app and the address where its actual logic lives. Then, upgrading an app is as easy as: 21 | 22 | ```solidity 23 | kernel.setApp(kernel.APP_BASES_NAMESPACE(), appId, newAppCodeAddr) 24 | ``` 25 | -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- 1 | # Documentation portal for Aragon Apps 2 | 3 | ## Running a local instance 4 | 5 | ### Prerequisites 6 | 7 | - [`solc@v0.4.24`](https://github.com/ethereum/solidity/releases/tag/v0.4.24) 8 | 9 | > [`solc-select`](https://github.com/crytic/solc-select) is your best friend when it comes to installing solc! 10 | 11 | Note: `solidity-docgen` [does not work on Windows](https://github.com/OpenZeppelin/solidity-docgen/issues/22). 12 | 13 | 14 | ```sh 15 | git clone https://github.com/aragon/hack.git 16 | cd hack/website 17 | yarn install 18 | yarn start 19 | ``` 20 | 21 | This should open your local instance of these docs in your browser at . 22 | 23 | ## Publishing 24 | 25 | The documentation is published via [gh-pages](https://pages.github.com/). Automatic deployments are handled through an [deployment Github Action](.github/workflows/ci.yml) on pushes to the `master` branch. 26 | 27 | If you'd like to publish it locally though, you can run: 28 | 29 | ```sh 30 | cd website 31 | yarn install 32 | yarn run build 33 | yarn run publish-gh-pages 34 | ``` 35 | 36 | Note: the `aragonOS` files **must** be generated on publish, [see issue](https://github.com/aragon/hack/issues/116). 37 | 38 | ## Contributing 39 | 40 | Thanks for your interest in contributing to these docs! 41 | Get started [here](https://github.com/aragon/hack/blob/master/CONTRIBUTING.md). 42 | -------------------------------------------------------------------------------- /website/fonts/HKGrotesk-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/website/fonts/HKGrotesk-Light.ttf -------------------------------------------------------------------------------- /website/fonts/HKGrotesk-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/website/fonts/HKGrotesk-Regular.ttf -------------------------------------------------------------------------------- /website/package.json: -------------------------------------------------------------------------------- 1 | { 2 | "license": "CC0 1.0 Universal", 3 | "scripts": { 4 | "examples": "docusaurus-examples", 5 | "sync-assets": "rsync -rtu \"$(dirname $(node -p 'require.resolve(\"@aragon/ui\")'))/\" static/aragon-ui", 6 | "hack_solidity_version": "find ./node_modules/@aragon/os/contracts -name \"*.sol\" -exec sed -i'' -e 's/pragma solidity 0.4.18/pragma solidity ^0.4.18/g' {} \\;", 7 | "hack_clean_os_lib_api": "rm -f ../docs/api_lib_*", 8 | "generate:os": "yarn hack_solidity_version && solidity-docgen --exclude lib node_modules/@aragon/os node_modules/@aragon/os/contracts ../ && yarn hack_clean_os_lib_api", 9 | "sync:js": "node ./scripts/sync-aragonjs-docs", 10 | "sync:cli": "node ./scripts/sync-cli-docs", 11 | "generate": "yarn generate:os && yarn sync:js && yarn sync:cli", 12 | "start": "yarn generate && yarn sync-assets && docusaurus-start", 13 | "build": "yarn generate && yarn sync-assets && docusaurus-build", 14 | "publish-gh-pages": "USE_SSH=true docusaurus-publish", 15 | "write-translations": "docusaurus-write-translations", 16 | "version": "docusaurus-version", 17 | "rename-version": "docusaurus-rename-version" 18 | }, 19 | "devDependencies": { 20 | "@aragon/docusaurus": "^1.7.3", 21 | "node-fetch": "^2.6.1", 22 | "opn": "^5.3.0", 23 | "prettier": "1.16.4", 24 | "solidity-docgen": "^0.1.0" 25 | }, 26 | "dependencies": { 27 | "@aragon/os": "^4.0.1", 28 | "@aragon/ui": "^0.16.0", 29 | "highlightjs-solidity": "^1.0.6", 30 | "styled-components": "^3.2.6" 31 | } 32 | } 33 | -------------------------------------------------------------------------------- /website/pages/en/assets/hero-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/website/pages/en/assets/hero-background.png -------------------------------------------------------------------------------- /website/scripts/sync-cli-docs.js: -------------------------------------------------------------------------------- 1 | const { syncPages } = require('./sync-util') 2 | 3 | const GIT_REF = 'develop' 4 | const REPO = 'aragon/aragon-cli' 5 | 6 | const pages = [ 7 | { 8 | destination: '/docs/cli-intro.md', 9 | id: 'cli-intro', 10 | title: 'Using the aragonCLI', 11 | sidebarLabel: 'Introduction', 12 | hideTitle: true, 13 | contentLocation: 'docs/Intro.md' 14 | }, 15 | { 16 | destination: '/docs/cli-main-commands.md', 17 | id: 'cli-main-commands', 18 | title: 'Main commands', 19 | sidebarLabel: 'Main commands', 20 | contentLocation: 'docs/Main-commands.md' 21 | }, 22 | { 23 | destination: '/docs/cli-apm-commands.md', 24 | id: 'cli-apm-commands', 25 | title: 'aragonPM commands', 26 | sidebarLabel: 'APM commands', 27 | contentLocation: 'docs/Apm-commands.md' 28 | }, 29 | { 30 | destination: '/docs/cli-dao-commands.md', 31 | id: 'cli-dao-commands', 32 | title: 'DAO commands', 33 | sidebarLabel: 'DAO commands', 34 | contentLocation: 'docs/Dao-commands.md' 35 | }, 36 | { 37 | destination: '/docs/cli-ipfs-commands.md', 38 | id: 'cli-ipfs-commands', 39 | title: 'IPFS commands', 40 | sidebarLabel: 'IPFS commands', 41 | contentLocation: 'docs/Ipfs-commands.md', 42 | }, 43 | { 44 | destination: '/docs/cli-global-confg.md', 45 | id: 'cli-global-confg', 46 | title: 'Global configuration', 47 | sidebarLabel: 'Global configuration', 48 | contentLocation: 'docs/Global-confg.md' 49 | } 50 | ] 51 | 52 | const locationReferenceMap = {} 53 | 54 | syncPages(pages, locationReferenceMap, GIT_REF, REPO) 55 | -------------------------------------------------------------------------------- /website/scripts/sync-util.js: -------------------------------------------------------------------------------- 1 | const fetch = require('node-fetch') 2 | const fs = require('fs') 3 | 4 | async function syncPages(pages, locationReferenceMap, gitRef, repo) { 5 | Promise.all( 6 | pages.map(page => syncPage(page, locationReferenceMap, gitRef, repo)) 7 | ) 8 | } 9 | 10 | async function syncPage(page, locationReferenceMap, gitRef, repo) { 11 | const { 12 | id, 13 | title, 14 | hideTitle, 15 | sidebarLabel, 16 | contentLocation, 17 | destination, 18 | } = page 19 | 20 | const contentURL = `https://raw.githubusercontent.com/${repo}/${gitRef}/${contentLocation}` 21 | const editURL = `https://github.com/${repo}/blob/${gitRef}/${contentLocation}` 22 | 23 | const response = await fetch(contentURL) 24 | let remoteText = await response.text() 25 | // Fix the links 26 | if ( 27 | locationReferenceMap && 28 | Object.keys(locationReferenceMap).length !== 0 && 29 | locationReferenceMap.constructor === Object 30 | ) { 31 | remoteText = replaceAll(remoteText, locationReferenceMap) 32 | } 33 | 34 | const header = `--- 35 | id: ${id} 36 | title: ${title} 37 | custom_edit_url: ${editURL} 38 | sidebar_label: ${sidebarLabel} 39 | hide_title: ${hideTitle || false} 40 | --- 41 | 42 | ` 43 | const result = header.concat('\n').concat(remoteText) 44 | // this script will be run from the website directory => we need to go up one level 45 | fs.writeFileSync(`../${destination}`, result) 46 | } 47 | 48 | function replaceAll(string, mapObject) { 49 | const regex = new RegExp(Object.keys(mapObject).join('|'), 'gi') 50 | return string.replace(regex, matched => mapObject[matched]) 51 | } 52 | 53 | module.exports = { 54 | syncPages, 55 | } 56 | -------------------------------------------------------------------------------- /website/static/fonts/HKGrotesk-Bold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/website/static/fonts/HKGrotesk-Bold.ttf -------------------------------------------------------------------------------- /website/static/fonts/HKGrotesk-Light.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/website/static/fonts/HKGrotesk-Light.ttf -------------------------------------------------------------------------------- /website/static/fonts/HKGrotesk-Medium.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/website/static/fonts/HKGrotesk-Medium.ttf -------------------------------------------------------------------------------- /website/static/fonts/HKGrotesk-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/website/static/fonts/HKGrotesk-Regular.ttf -------------------------------------------------------------------------------- /website/static/fonts/HKGrotesk-SemiBold.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/website/static/fonts/HKGrotesk-SemiBold.ttf -------------------------------------------------------------------------------- /website/static/fonts/MaterialIcons-Regular.ttf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/website/static/fonts/MaterialIcons-Regular.ttf -------------------------------------------------------------------------------- /website/static/img/bg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/website/static/img/bg.png -------------------------------------------------------------------------------- /website/static/img/cases/althea-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/website/static/img/cases/althea-small.jpg -------------------------------------------------------------------------------- /website/static/img/cases/althea.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/website/static/img/cases/althea.jpg -------------------------------------------------------------------------------- /website/static/img/cases/planning-small.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/website/static/img/cases/planning-small.jpg -------------------------------------------------------------------------------- /website/static/img/cases/planning.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/website/static/img/cases/planning.jpg -------------------------------------------------------------------------------- /website/static/img/favicon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/website/static/img/favicon.png -------------------------------------------------------------------------------- /website/static/img/hero-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/website/static/img/hero-background.png -------------------------------------------------------------------------------- /website/static/img/menumore.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | Group 5 | Created with Sketch. 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | -------------------------------------------------------------------------------- /website/static/img/next-arrow.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /website/static/img/prev-arrow.svg: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | -------------------------------------------------------------------------------- /website/static/img/spectrum.svg: -------------------------------------------------------------------------------- 1 | 2 | 5 | 6 | -------------------------------------------------------------------------------- /website/static/img/stroke.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/website/static/img/stroke.png -------------------------------------------------------------------------------- /website/static/img/users/althea.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/website/static/img/users/althea.jpg -------------------------------------------------------------------------------- /website/static/img/users/dappnode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/website/static/img/users/dappnode.png -------------------------------------------------------------------------------- /website/static/img/users/decentraland.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/website/static/img/users/decentraland.png -------------------------------------------------------------------------------- /website/static/img/users/district0x.svg: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /website/static/img/users/espresso.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/website/static/img/users/espresso.png -------------------------------------------------------------------------------- /website/static/img/users/giveth.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/website/static/img/users/giveth.png -------------------------------------------------------------------------------- /website/static/img/users/pando.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/website/static/img/users/pando.png -------------------------------------------------------------------------------- /website/static/img/you-developer.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/aragon/hack/26fe861eacaea160eeb712240d52256c96104338/website/static/img/you-developer.png --------------------------------------------------------------------------------