| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
| Name | Name | Last commit date | ||
|---|---|---|---|---|
Homebase is a platform designed to let users create and manage DAOs on the Tezos blockchain.
The following dependencies are required to run homebase-app:
| Dependency | Version |
|---|---|
| Node | v22.14.0 or above |
| Yarn | v1.22.* or above |
The following third party services are being used by Homebase:
| Endpoint | URL | METHOD |
|---|---|---|
| Operations | /v1/accounts/${address}/operations | GET |
You will be taken to the DAO Creator, from which you will be asked to choose on the currently supported DAO templates.
DAO Settings:
Proposals and Voting:
Distribution Settings:
Go to the home screen. From there you will see a list of all DAOs created in Homebase. They load in groups of 8 for load balancing (will be improved later on with indexer). There is a searchbar available, however, note that searches done using this bar will only yield DAOs that have been already fetched, it will not trigger additional async requests.
Specific DAOs can be explored by clicking on them in the home screen or by URL:
https://tezos-homebase.io/explorer/dao/${DAO_ADDRESS}
All DAOs, regardless of their template, have:
DAO page: contains all general DAO information. Here you can see:
Proposals page: contains all proposals related information and related actions. Here you can see:
Proposal detail page: contains all specific information about a proposal and vote actions. Here you can see:
Proposal creation modal: all proposal creation modals support multiple operations batched in the same proposal and also allow the user to batch upload transactions with a JSON file. This JSON should follow a specific signature, based on the template type of the DAO. See proposal JSON signatures for each template
Each DAO template has unique pages related to template specific actions. Also, the proposal creation modals are different across templates.
Registry page: this page contains a table where all registry items can be visualized, and a table that contains a history of all proposals that updated the registry. Each registry item can be clicked to get a read-only modal that displays the item's key and full value, additionally, clicking the settings icon in each row opens a modal to create a proposal to edit the clicked item. This page also contains a New Item button to create a proposal to add a new item.
Proposal types
There are 2 types of registry proposals:
At a contract level, there is no such distinction, but in the UI it exists to let the user create a new key or select a key from a dropdown of existing keys, depending on his intention.
Proposal JSON signature:
{
"foo": "baz",
"bar": "qux",
...
}Holdings/Treasury page: this page contains a table with all DAO holdings organized by token (currently, only supporting XTZ). And also contains a table with all outbound transfers made from the DAO.
Proposal JSON signature:
[
{
"amount": 15,
"recipient": "tz1RKPcdraL3D3SQitGbvUZmBoqefepxRW1x"
},
{
"amount": 20,
"recipient": "tz1Zqb3hBBN8wLcJYhADcasi1jZdp2YLdG3L"
},
...
]To run the project:
Execute (Flush): execute all passed proposals from periods previous to the last one. If the proposal is rejected or did not meet the quorum threshold, then the Execute operation removes it from the proposals list.
Administrator: address with permissions to mint, burn and transfer tokens in the DAO without a proposal. It is configured by the DAO creator and can be another contract (like a multisig)
Proposal size: metric that describes the size, in packed bytes, of a proposal's metadata. Therefore, the bigger the proposal arguments are (more transfers or more registry updates), the bigger the proposal size is.
| Back | FazBrowse Home | New Git URL |