CoW Protocol Explorer
May 12, 2026 ยท View on GitHub
Allows you to explore the protocol orders and trades.
๐โโ๏ธ Run it locally
pnpm run start:explorer
Environment selection is configured explicitly via REACT_APP_ENVIRONMENT.
Use .env.example as the reference values:
localdevelopmentprstagingproduction
๐ทโโ๏ธ Build app
pnpm run build:explorer
Static files will be generated inside the build/explorer dir.
๐งช Run tests
pnpm run test:explorer
Orderbook API Endpoints
Fee quote requests and posting orders are sent to the Orderbook API. This API has the responsibility of collecting orders and handing them to the solvers.
The reference implementation of the API is CoW Protocol Services.
The API endpoint is configured using the environment variable REACT_APP_ORDER_BOOK_URLS:
REACT_APP_ORDER_BOOK_URLS={"1":"https://YOUR_HOST","100":"https://YOUR_HOST","5":"https://YOUR_HOST"}