{"id":38044176,"url":"https://github.com/regen-network/groups-ui","last_synced_at":"2026-01-16T19:56:46.993Z","repository":{"id":65675968,"uuid":"597112674","full_name":"regen-network/groups-ui","owner":"regen-network","description":":rocket: UI for the Cosmos SDK group module","archived":false,"fork":false,"pushed_at":"2023-11-21T09:44:42.000Z","size":4410,"stargazers_count":7,"open_issues_count":43,"forks_count":4,"subscribers_count":13,"default_branch":"dev","last_synced_at":"2024-01-25T19:39:50.162Z","etag":null,"topics":["blockchain","cosmos-sdk","groups"],"latest_commit_sha":null,"homepage":"https://groups.regen.network","language":"TypeScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"apache-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/regen-network.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}},"created_at":"2023-02-03T16:53:32.000Z","updated_at":"2024-01-17T10:16:44.000Z","dependencies_parsed_at":"2023-02-19T09:31:22.047Z","dependency_job_id":"e32c934e-dcfe-44ee-af7a-0ae86b54443d","html_url":"https://github.com/regen-network/groups-ui","commit_stats":{"total_commits":192,"total_committers":6,"mean_commits":32.0,"dds":"0.20833333333333337","last_synced_commit":"71ecb0966bb74c84cb85287af25cadf5bcd6e648"},"previous_names":[],"tags_count":1,"template":false,"template_full_name":null,"purl":"pkg:github/regen-network/groups-ui","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/regen-network%2Fgroups-ui","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/regen-network%2Fgroups-ui/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/regen-network%2Fgroups-ui/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/regen-network%2Fgroups-ui/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/regen-network","download_url":"https://codeload.github.com/regen-network/groups-ui/tar.gz/refs/heads/dev","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/regen-network%2Fgroups-ui/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28482146,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-16T11:59:17.896Z","status":"ssl_error","status_checked_at":"2026-01-16T11:55:55.838Z","response_time":107,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"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":["blockchain","cosmos-sdk","groups"],"created_at":"2026-01-16T19:56:46.937Z","updated_at":"2026-01-16T19:56:46.984Z","avatar_url":"https://github.com/regen-network.png","language":"TypeScript","readme":"# Regen Groups UI\n\n[Regen network](https://regen.network/) UI for Cosmos groups module\n\n## Table of Contents\n\n- [Regen Groups UI](#regen-groups-ui)\n  - [Table of Contents](#table-of-contents)\n- [Local Setup](#local-setup)\n  - [Install Regen Ledger](#install-regen-ledger)\n  - [Makefile commands](#makefile-commands)\n  - [Keplr](#keplr)\n  - [IDE](#ide)\n- [Architecture](#architecture)\n  - [Code Structure](#code-structure)\n  - [Types](#types)\n  - [Library Resources](#library-resources)\n  - [Linting](#linting)\n\n# Local Setup\n\n1. `yarn install`\n2. copy over the config `cp .env.local.example .env.local` and set any missing variables\n3. `yarn dev` to run the repo\n4. (optional) `yarn storybook` to see component examples\n\n## Install Regen Ledger\n\n`make install-local-ledger` - this will install the regen ledger binary to `local-ledger/regen` in order to be used by other makefile commands. Note: this will wipe any existing local regen ledger data\n\n## Makefile commands\n\nRun the following in order for initial project setup, then re-run to wipe local ledger data\n\n1. `make local-clean` - wipe prior local ledger data\n2. `make local-init` - set up local ledger, user wallets / accounts, seed funds\n3. `make local-start` - run local node\n4. `make bank-send` - send funds to the wallet address listed below\n\n## Keplr\n\nYou'll need to import generated wallet info into Keplr in order to test features:\n\n(from `USER` in the makefile)\n\n```\nhigh return silly coyote skin trumpet stock bicycle enjoy common exact sure\n```\n\n## IDE\n\nIf you're using VSCode, it's recommended you install the eslint + prettier extensions and copy over the suggested workspace settings:\n\n```sh\ncp .vscode/settings.suggested.json .vscode/settings.json\n```\n\n# Architecture\n\n## Code Structure\n\nThis project is organized by [Atomic Design](https://bradfrost.com/blog/post/atomic-web-design/) principals for UI components:\n\n```\n📦src\n ┣ 📂components\n ┃ ┣ 📂atoms - elements which can't be reduced to something simpler\n ┃ ┃ ┗ 📜index.ts\n ┃ ┣ 📂molecules - collection of atoms\n ┃ ┣ 📂organisms - more complex elements made up of atoms, molecules, and (sometimes) other organisms\n ┃ ┗ 📂templates - viewport positioning and layout\n ┗ 📂pages - implementations of templates\n```\n\nSome relevant notes / Highlights:\n\n- Outer padding and margin should be set by parents components - ie, an `Atom` should not have `margin` set on the outer element - instead, it would be set by its parent component\n- `Atoms` have `index.ts` barrel files for convenience (ie `import { Box, Button } from '@/atoms'`), but`Molecules`, `Organisms`, `Templates`, and `Pages` do not. This is to avoid circular imports which can impact code splitting\n\n## Types\n\nLedger calls \u0026 typescript types are generated using [telescope](https://github.com/osmosis-labs/telescope), and reside in [another package](https://github.com/haveanicedavid/cosmos-groups-ts)\n\n- Because queries are currently handled through REST / LCD clients, property values are `camel_case` - this means the types used in this project won't work on RPC clients (relevant cosmos-sdk [issue](https://github.com/cosmos/cosmos-sdk/issues/8055))\n- Some types are manually combined / modified to ease the use in UI. These are prefixed with `UI` (e.g. the `UIGroup` type represnts a sdk `ChainInfo` with typed `metadata` which the UI creates)\n\n## Library Resources\n\n- [Chakra](https://chakra-ui.com/) - UI Components\n- [Valtio](https://valtio.pmnd.rs/) and [Jotai](https://jotai.org/) - global state\n- [React Query](https://tanstack.com/query/v4) - API calls / Query caching\n- [Zod](https://github.com/colinhacks/zod) - form validation\n\n## Linting\n\n`yarn lint` - format with Prettier, fix linting errors\n","funding_links":[],"categories":[],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fregen-network%2Fgroups-ui","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fregen-network%2Fgroups-ui","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fregen-network%2Fgroups-ui/lists"}