Skip to main content

Use Sirato Blockchain Explorer

Sirato Blockchain Explorer supports public and private EVM networks. This page describes how to use the free version of Sirato with its built-in support for privacy-enabled Besu networks created using the Developer Quickstart.

Sirato provides an overview of the entire network, including block information, contract metadata, transaction searches, and more.

note

You must connect to one of the privacy nodes (for example, member1besu), not the dedicated RPC, in order to allow access for Besu privacy API methods. In production networks, you must secure access to RPC nodes.

Prerequisites

Docker and Docker Compose installed.

Start Sirato

Clone the Sirato GitHub repository:

git clone https://github.com/web3labs/sirato-free

The repository contains Docker Compose scripts to allow Sirato to start with a Developer Quickstart test network.

From the Sirato directory, run the following script:

./start_sirato_besu.sh

Open http://localhost/ on your browser. You’ll see the new initialization page while it boots up. This may take 5–10 minutes for the all services to start and the ingestion sync to complete.

`Sirato-dashboard`

Use Sirato

The Dashboard page provides an aggregated view of network activities.

`Epirus-dashboard`

The Network page provides an overview of the network status and connected peers. This page is disabled by default, and is only visible if you set DISPLAY_NETWOR_TAB=enabled using the following command:

NODE_ENDPOINT=http://member1besu:8545 DISPLAY_NETWORK_TAB=enabled docker-compose -f docker-compose.yml -f sirato-extensions/docker-compose-quorum-dev-quickstart.yml up

Sirato network

The Blocks page shows a real-time view of the finalized blocks.

Sirato blocks

You can view a given block details by selecting a block hash or number.

Sirato block details

The Transactions page shows a paginated view of new and historical transactions.

Sirato transactions

Stop Sirato

To stop all the services from running, run the following script:

./stop.sh