Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/balancer/frontend-v2
Frontend app for the Balancer protocol
https://github.com/balancer/frontend-v2
defi ethereum web3
Last synced: about 1 month ago
JSON representation
Frontend app for the Balancer protocol
- Host: GitHub
- URL: https://github.com/balancer/frontend-v2
- Owner: balancer
- License: mit
- Created: 2020-11-25T13:42:49.000Z (almost 4 years ago)
- Default Branch: develop
- Last Pushed: 2024-04-13T22:53:15.000Z (7 months ago)
- Last Synced: 2024-04-14T07:18:24.526Z (7 months ago)
- Topics: defi, ethereum, web3
- Language: TypeScript
- Homepage: https://app.balancer.fi
- Size: 225 MB
- Stars: 177
- Watchers: 9
- Forks: 289
- Open Issues: 7
-
Metadata Files:
- Readme: README.md
- Contributing: .github/CONTRIBUTING.md
- License: LICENSE
- Code of conduct: .github/CODE_OF_CONDUCT.md
Awesome Lists containing this project
README
# ⛔️ This app is now deprecated
We have launched a new UI for the Balancer protocol, which is available at
[https://balancer.fi](https://balancer.fi). The source code for the new UI is
available at
[https://github.com/balancer/frontend-v3](https://github.com/balancer/frontend-v3)._Note, there is an exception where by the veBAL page is still available at
[https://app.balancer.fi/vebal](https://app.balancer.fi/vebal). We will continue to maintain the veBAL page of this
UI until we migrate that functionality to the new UI._## Development
To setup the development environment first clone the repo:
```bash
git clone https://github.com/balancer/frontend-v2.git && cd frontend-v2
```### Local env
Install dependencies:
```bash
npm install
```Start the app:
```bash
npm run dev
```The app should be live at [http://localhost:8080](http://localhost:8080)
### Testing
Run unit tests:
```bash
npm run test:unit
```Run unit tests in watch mode:
```bash
npm run test:unit:watch
```Run unit tests with coverage:
```bash
npm run test:unit:coverage
```Run unit tests with only lcov coverage (useful when doing exploratory testing):
```bash
npm run test:unit:silent:coverage
```### Build
Run build:
```bash
npm run build
```Preview build:
```bash
npm run preview
```Run build in watch mode:
```bash
npm run build:watch
```This mode is useful when you need to reproduce/fix bugs/issues in a **production-like** environment.
### Docker
If you'd rather spin up the app in a docker container, first install dependencies to you local folder:
```bash
docker-compose build
docker-compose run --rm web npm i
```and start the app:
```bash
docker-compose up
```The app should be live at [http://localhost:8080](http://localhost:8080)
If you are on Apple Silicon, try this:
```bash
export DOCKER_DEFAULT_PLATFORM=linux/amd64
```source: https://stackoverflow.com/questions/65612411/forcing-docker-to-use-linux-amd64-platform-by-default-on-macos
### One Click Deploys
The frontend can easily be deployed to any static host. Use the buttons below to spin up an instance. You will be prompted to provide your Infura Project ID, Alchemy Key, and Blocknative Dapp ID as these are required for the frontend to work correctly.
[![Deploy to DO](https://www.deploytodo.com/do-btn-blue.svg)](https://cloud.digitalocean.com/apps/new?repo=https://github.com/balancer/frontend-v2/tree/master)
[![Deploy to Netlify](https://www.netlify.com/img/deploy/button.svg)](https://app.netlify.com/start/deploy?repository=https://github.com/balancer/frontend-v2)
[![Deploy with Vercel](https://vercel.com/button)](https://vercel.com/new/clone?repository-url=https://github.com/balancer/frontend-v2)
## Vite setup
This app is powered by [vite](https://vitejs.dev/), which:
- Runs a development dev server with [esbuild](https://esbuild.github.io/).
- Builds production bundle with [Rollup](https://rollupjs.org/guide/en/).Both tools above rely on native ES modules but our app also depends on libraries like [ethers.js](https://docs.ethers.io/) which use Node.js built-in modules (like Buffer, stream or crypto) that require browser polyfills. Thats why our `vite.config.ts` uses `node-pollyfills` and [rollup-plugin-polyfill-node](https://www.npmjs.com/package/rollup-plugin-polyfill-node).
### unplugin-vue magic 🪄
We use some Vite plugins to improve the Vue developer experience.
[unplugin-vue-components](https://github.com/antfu/unplugin-vue-components):
Auto imports components located in `src/components/_global` so that they are available from every other component in the application (and from _vitest_).
(It also auto generates a _d.ts_ file for the auto imported components).### Analyze bundle
Analyze and visualize the bundle dependencies:
```bash
npm run build:analyze
```