solana-explorer-cli

Crates.iosolana-explorer-cli
lib.rssolana-explorer-cli
version0.3.6
created_at2024-06-12 17:07:32.374685+00
updated_at2025-08-03 11:31:55.222479+00
descriptionSolana blockchain CLI state explorere. The best way to explore Solana blockchain state from your terminal.
homepagehttps://github.com/dmshvetsov/solana-explorer-cli
repositoryhttps://github.com/dmshvetsov/solana-explorer-cli
max_upload_size
id1269796
size211,146
magic dima (dmshvetsov)

documentation

README

Solana Explorer CLI

[!WARNING] solana explorer CLI is in development. Your contribution is very welcomed! You can request features in a free form in github issues and check existing feature requests. Check current roadmap

The best way (eventually) to read Solana Blockchain state from your terminal.

Requirements

  • Rust >=1.82

Installation

$ cargo install solana-explorer-cli

Usage

By default this CLI uses Solana mainnet-beta RPC http://api.mainnet-beta.solana.com (with DAS API support). For better experience provide your own RPC URL, preferably with DAS API support

$ export SE_RPC_URL=<your Solana RPC provider URL>

explore accounts state

$ se ac <ADDRESS>

same as

$ se account <ADDRESS>

check transactions

$ se tx <SIGNATURE HASH>

same as

$ se transaction <SIGNATURE HASH>

other commands

see all available commands with help command

$ se help
Usage: se <COMMAND>

Commands:
  account               show solana account state
  ac                    alias for account command
  transaction           show solana transaction
  tx                    alias for transaction command
  account-transactions  show account transactions
  ac-txs                alias for account-transactions command
  help                  Print this message or the help of the given subcommand(s)

Options:
  -h, --help     Print help
  -V, --version  Print version
Commit count: 97

cargo fmt