Effortlessly visualize cross-chain data ⛓️
Following guide contains information about XCM Visualizer. It is designed to inform both interface users and developers about the possibilities and use cases they can enhance with this tool.
User startup guide
The XCM Visualizer is available at the following URL: https://xcm-visualizer.paraspell.xyz/
Application usage instructions are available in the documentation: User Guide
Developer startup guide
Install dependencies:
- Node.js
^24 - PostgreSQL
- Node.js
Configure environment variables:
- In the
backenddirectory, create a.envfile based on.env.example - Update it with your local PostgreSQL credentials
- In the
Initialize the database:
- Import the xcm_database_dump_2023_2024 file into your PostgreSQL database to load example data for the XCM Visualizer
Run the following commands:
Before you begin with any commands make sure to run following from monorepository root:
bash
pnpm install
pnpm buildThen run backend from backend folder:
bash
cd ./apps/visualizer-be
pnpm startAnd run frontend from frontend folder:
bash
cd ./apps/visualizer-fe
pnpm devBoth front-end and back-end must run in their own terminal at the same time.
