An explorer for a CosmWasm-powered Cosmos ecosystem.
The Celatone frontend uses the following technologies:
- Language: TypeScript
- Framework: React & Next.js
- Components: Chakra UI
- Deployment: Vercel
- Node.js (version >= 16) or using node version manager nvm (recommended, installation guide for nvm here).
Yarn
installed.
npm install -g yarn
- Clone the project either using the standard Git CLI or the GitHub gh CLI
# Git CLI
git clone https://github.com/alleslabs/celatone-frontend
# gh CLI
gh repo clone alleslabs/celatone-frontend
- Install the dependencies
# Navigate to the cloned repository
cd celatone-frontend
# Install dependencies
yarn
- Create a
.env.local
file in the root of the project and add the following environment variables
# The mnemonic of the wallet that will be used for estimate gas fees
NEXT_PUBLIC_DUMMY_MNEMONIC="your mnemonic here"
NEXT_PUBLIC_SUPPORTED_CHAIN_IDS=osmosis-1,osmo-test-5
- Finally, run the development server
yarn dev
The website will then be live on http://localhost:3000