A batteries-included open-source repo for creating and managing token ecosystems.
- Configurable boilerplate -> easy to start using immediately and make small adjustments
- Extendable framework -> inherit opinions, but maintain control to build your own solutions
- Make onchain token data more legible and interactive
- Give users full ownership of the tool, advocating for open-source and self-hosting
- json config file
- define token contracts
- toggle optional features
- customize brand identity
- color system and logo
- extend components with your own code
- token directory pages
- view all token holders
- enable ERC-6551 tokenbound accounts on ERC-721 NFTs
- powered by ponder
Clone this repo
git clone https://github.com/0xStation/groupos.git
cd groupos
Install app dependencies
npm i
Define environment variables
We recommend Alchemy given their wide range of services from access to ethereum nodes to token indexing. This key will be re-used across many potential networks and parts of the app. Make a free account to get your API key or keep the default API key provided.
echo "ALCHEMY_API_KEY=m2OWVY-4guxSOIeP174kQUwKZKBddt16" >> ./packages/ponder/.env.local
echo "NEXT_PUBLIC_ALCHEMY_API_KEY=m2OWVY-4guxSOIeP174kQUwKZKBddt16" >> ./packages/ponder/.env.local
echo "ALCHEMY_API_KEY=m2OWVY-4guxSOIeP174kQUwKZKBddt16" >> ./packages/directory/.env.local
echo "NEXT_PUBLIC_ALCHEMY_API_KEY=m2OWVY-4guxSOIeP174kQUwKZKBddt16" >> ./packages/directory/.env.local
Run packages
Directory by Station includes two packages in a monorepo setup. The first is the UI, and the second is a token indexing server written with Ponder. You can launch both packages in dev mode.
npm run dev
Open app
You can now view your GroupOS app at localhost:3000 In dev mode, you can view a GraphQL client at localhost:42069