Skip to content

Files

Latest commit

dbb397b · Mar 28, 2025

History

History

explorer

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Mar 21, 2025
Dec 4, 2024
Feb 26, 2025
Mar 28, 2025
Aug 15, 2024
Mar 28, 2025
Mar 10, 2024
Mar 10, 2024
Apr 26, 2024
Mar 10, 2024
Mar 28, 2025
Mar 21, 2025
Dec 4, 2024
Jun 20, 2024
Mar 20, 2025
Jul 31, 2024
Mar 28, 2025
Mar 10, 2024
Feb 11, 2025
Aug 15, 2024
Mar 28, 2025

Autonomys Block Explorer Frontend

Autonomys Banner

Astral

Block explorer frontend that uses the Subsquid API to get the network information and display it for easy user interaction.

Table of content

🏄 Get Started

The application is built with Next.js, React.js, Tailwind CSS and TypeScript. Follow these steps to set up your local development environment:

  1. Clone the repository and navigate to the explorer directory:
git clone git@github.com:autonomys/astral.git
cd astral/explorer
  1. If you use nvm to manage Node.js versions, ensure you're using the stable channel:
nvm use stable
  1. Install the dependencies:
yarn install
  1. Copy the .env.sample file to .env and update it with the necessary environment variables, especially the Subsquid GraphQL API URL:
cp .env.sample .env

Then edit the .env file with your favorite editor

  1. To start the development server, run:
yarn dev

The server will run at http://localhost:3000.

🔩 Requirements

You will need to have the Subsquid GraphQL API URL to connect to the backend.

🛳 Build

To create a production build, execute the following command:

yarn build

This will compile the project into an optimized build ready for deployment.