#solana #state #explorer #cli

app solana-explorer-cli

Solana blockchain CLI state explorere. The best way to explore Solana blockchain state from your terminal.

10 releases

new 0.3.4 Mar 19, 2025
0.3.3 Jan 21, 2025
0.3.0 Dec 29, 2024
0.2.2 Dec 10, 2024
0.1.1 Jun 12, 2024

#373 in Magic Beans

Download history 127/week @ 2024-11-29 277/week @ 2024-12-06 32/week @ 2024-12-13 222/week @ 2024-12-27 40/week @ 2025-01-03 131/week @ 2025-01-10 101/week @ 2025-01-17 13/week @ 2025-01-24 4/week @ 2025-01-31 2/week @ 2025-02-07 7/week @ 2025-02-21 19/week @ 2025-02-28 60/week @ 2025-03-14

86 downloads per month

MIT license

49KB
847 lines

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.79

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

Dependencies

~77MB
~1.5M SLoC