Our frontend is built with the following tools:
- TypeScript: type checking
- React: ui
- Tailwind CSS: styling, theming
- Next.js: scaffolding/SSR/CDN/SEO
- We deploy on Vercel for optimizations out of the box, behind CloudFlare
- Turbo Repo: mono repo management with package script execution, with heavy emphasis on build caching (including shared remote caching in Vercel)
- Lerna: libs release
Install deps:
yarn
Start web server
yarn start
We welcome and encourage contributions! We recommend looking for issues labeled with "good-first-issue".
Make sure node >= 16 and yarn is installed.
- Install deps
yarn
First time setup If you're on the Osmosis foundation team and have a Vercel account set up, optionally sign into turbo repo using your Vercel account, and link the repo. This could give you instant builds by sharing the remote cache on our Vercel project:
npx turbo login
...login via browser...
npx turbo link
...press y (yes) and choose "OsmoLabs" as the Vercel build scope...
- Run local server at
localhost:3000
yarn dev
To reduce duplicated effort, master
branch is used to deploy the frontier app as well. The frontier deployment has NEXT_PUBLIC_IS_FRONTIER
env var set to true
. If making
updates to frontier, please target the master branch. Frontier assets are configured in packages/web/config/ibc-assets.ts
.
To develop with frontier configuration, use:
yarn build:frontier && yarn dev:frontier
To deploy frontier (the env var will be set for you):
yarn build:frontier && yarn start:frontier
Otherwise the non-frontier commands can be used with the env var set to true.
Testnet version of the frontend uses NEXT_PUBLIC_IS_TESTNET=true
. By default, it points to the canonical testnet, but packages/web/.env can be changed to point to localosmosis.
Dev:
yarn build:testnet && yarn dev:testnet
Deploy:
yarn build:testnet && yarn start:testnet
Note: our currency registrar checks IBC hashes to see if they can be found via the denom_trace query in the IBC module on chain. If it's not found, it won't add it to the chain's list of currencies. Make sure IBC assets on testnet can be found in the testnet's IBC module state for test IBC assets to be visible. Otherwise, test assets (i.e. made via tokenfactory) can be added as native assets to the Osmosis chain, simply by defining it's base denom in the Osmosis chain info for testnet.
Release tags are for the published npm packages, which are every package except for the web package. Updates to the app are released incrementally way via deployments from master branch.
To start the release process:
yarn build:libs && npx lerna publish
To add translations, you can manually edit the JSON translation files in packages/web/translations
, use the inlang online editor, or run yarn machine-translate
to add missing translations using AI from Inlang.
Please see the asset listing requirements to display assets on Osmosis Zone web app.