{"id":21578880,"url":"https://github.com/daostack/alchemy","last_synced_at":"2025-08-20T03:31:04.536Z","repository":{"id":39577496,"uuid":"107282126","full_name":"daostack/alchemy","owner":"daostack","description":"An app for collaborative networks (DAOs), based on the DAO stack.","archived":false,"fork":false,"pushed_at":"2023-03-01T14:12:56.000Z","size":172451,"stargazers_count":144,"open_issues_count":55,"forks_count":80,"subscribers_count":28,"default_branch":"dev","last_synced_at":"2024-12-08T04:32:07.755Z","etag":null,"topics":["dapp","ethereum","react","redux"],"latest_commit_sha":null,"homepage":"https://alchemy.do","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-3.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/daostack.png","metadata":{"files":{"readme":"README.md","changelog":"CHANGELOG.md","contributing":null,"funding":null,"license":"LICENSE","code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null,"governance":null,"roadmap":null,"authors":null,"dei":null,"publiccode":null,"codemeta":null}},"created_at":"2017-10-17T14:44:46.000Z","updated_at":"2024-09-22T14:15:12.000Z","dependencies_parsed_at":"2024-11-24T13:11:58.441Z","dependency_job_id":"ca466036-d044-41cf-a88a-662178f3be9b","html_url":"https://github.com/daostack/alchemy","commit_stats":null,"previous_names":[],"tags_count":48,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/daostack%2Falchemy","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/daostack%2Falchemy/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/daostack%2Falchemy/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/daostack%2Falchemy/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/daostack","download_url":"https://codeload.github.com/daostack/alchemy/tar.gz/refs/heads/dev","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":230388131,"owners_count":18217755,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["dapp","ethereum","react","redux"],"created_at":"2024-11-24T13:11:48.711Z","updated_at":"2024-12-19T06:09:18.652Z","avatar_url":"https://github.com/daostack.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"***DEVELOPMENT OF THIS PACKAGE HAS MOVED TO: https://github.com/daostack/alchemy-monorepo/tree/dev/packages/alchemy***\n\n# DAOStack Alchemy\n\n[![Build Status](https://travis-ci.org/daostack/alchemy.svg?branch=dev)](https://travis-ci.org/daostack/alchemy)\n\n## URLs\nhttps://alchemy.daostack.io - alchemy v1 on mainnet and xdai\n\nhttps://alchemy-dev-rinkeby.herokuapp.com/ - alchemy v1 on rinkeby\n\n**Alchemy 2.0** ⚠️ Deprecated! - please use Alchemy v1\n\nAlchemy 2.0 source code can be found [here](https://github.com/daostack/alchemy_2).\n\nhttps://alchemy.do - alchemy 2.0 on mainnet\n\nhttps://xdai.alchemy.do - alchemy 2.0 on xdai \n\nhttps://rinkeby.alchemy.do - alchemy 2.0 on kovan\n\nhttps://kovan.alchemy.do - alchemy 2.0 on rinkeby\n\n\n\n**Alchemy is a budgeting and resource-allocation tool for decentralized organizations.** It is an interface that enables thousands of individuals to coordinate towards a common purpose, by proposing and deciding on how to spend funds in alignment with their goals and values.\n\nSome example use cases for Alchemy include decentralized venture funds, charitable funds, innovation funds, a budget proposal system (like Dash but more sophisticated), or prioritizing features for an open-source project.\n\nAlchemy is a Dapp (decentralized application) built on top of [DAOstack](https://github.com/daostack), a platform for decentralized governance of DAOs (decentralized autonomous organizations).\n\nHow does it work? **Alchemy makes it easy for DAO members to carry out three simple actions:**\n\n1. **Make proposals** for the DAO to take a specific action. A proposal is equivalent to a project pitch and includes details about the proposal such as objectives, methods, costs and milestones.\n2. **Predict** whether a proposal will be approved or rejected by the organization. This helps guide the collective voting process by sorting and prioritizing the proposals.\n3. **Vote** on whether a proposal should be accepted or rejected.\n\nWhile anyone can propose and predict, only people who hold reputation (voting power) can vote.\n\n## Dependencies:\n* [NVM](https://github.com/creationix/nvm#installation) can be helpful to manage different versions of node\n* [NodeJS 12.6.2 or greater + NPM](https://github.com/creationix/nvm#usage)\n\n## Installation\n\n```sh\nsudo apt-get install -y libsecret-1-dev\ngit clone https://github.com/daostack/alchemy.git\ncd alchemy\nnpm ci\n```\n\n# Run app locally\n\nThere are two ways to work with the alchemy stack.\nWe are providing a convenient `docker-compose` file for quick setup. Alternatively,\nyou can recreate the docker environment by installing an starting all [services locally](./docs/nodocker.md).\n\n## Working with docker\n\nThe easiest way to start developing is to work with docker.\nHere is a quick setup; there are more detailed instructions in [here](./docs/development.md).\n\nAfter you have installed docker, run the following command to spin up ganache (with the migrated contracts), the graph-node server:\n```sh\ndocker-compose up graph-node\n```\n\nNow, in a separate terminal run the following command to run alchemy:\n```sh\nnpm run start\n```\n\nAt this point you should be able to access alchemy on http://127.0.0.1:3000.\n\nSee [working with docker](./docs/docker.md) for details and troubleshooting.\n\n## Interacting with your test instance using MetaMask\n\n1. Install and enable [MetaMask extension](https://chrome.google.com/webstore/detail/metamask/nkbihfbeogaeaoehlefnkodbefgpgknn?hl=en) in Chrome\n1. Click on the MetaMask extension icon in the toolbar and log in\n1. Click on the avatar icon in the top right, and choose \"Import Account\"\n1. Choose \"Private Key\" and paste the string `0x4f3edf983ac636a65a842ce7c78d9aa706d3b113bce9c46f30d7d21715b23b1d` and click \"Import\"\n1. Give it a name like \"Alchemy Test Account\" so you won't get confused later\n1. If you need more than one test account you can also import these private keys: `0x6cbed15c793ce57650b9877cf6fa156fbef513c4e6134f022a85b1ffdd59b2a1`, `0x6370fd033278c143179d81c5526140625662b8daa446c22ee2d73db3707e620c` and `0x646f1ce2fdad0e6deeeb5c7e8e5543bdde65e86029e2fd9fc169899c440a7913`. Make sure to give them all differnent names.\n1. Make sure that Metamask is connected to `127.0.0.1:8545` (choose from the \"Networks\" picklist in Metamask)\n1. Go to http://127.0.0.1:3000 to load Alchemy\n\n## Adding custom landing page content for your DAO\n\nJust submit a PR to https://github.com/daostack/alchemy with your desired changes in src/customDaoInfo.tsx.  You may supply plain text or HTML inside of parentheses.  The HTML may contain React.js components, most notably `Link` which will cleanly navigate to pages within Alchemy.\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdaostack%2Falchemy","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdaostack%2Falchemy","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdaostack%2Falchemy/lists"}