This dashboard allows you to view the allocation for the Balancer v3 liquidity buffers.
You can read more about the buffers in the official documentation and in my X threads:
- Introduction to Boosted Pools and Liquidity Buffers
- Liquidity Buffers deep dive and dashboard introduction
To run the project, set up the following in a .env
file:
NEXT_PUBLIC_MAINNET_RPC_URL=<Ethereum Mainnet RPC URL>
NEXT_PUBLIC_GNOSIS_RPC_URL=<Gnosis Chain RPC URL>
NEXT_PUBLIC_MAINNET_VAULT_EXPLORER_ADDRESS=<Balancer v3 VaultExplorer address on Mainnet>
NEXT_PUBLIC_GNOSIS_VAULT_EXPLORER_ADDRESS=<Balancer v3 VaultExplorer address on Gnosis>
-
Install dependencies:
npm install
-
Generate TypeScript ABIs:
npm run generate
-
Start the development server:
npm run dev
-
The dashboard will be available at http://localhost:3000.