https://github.com/dmshvetsov/solana-explorer-cli
the best way to explore Solana blockchain state from your terminal
https://github.com/dmshvetsov/solana-explorer-cli
cli explorer rust rust-lang rust-language solana
Last synced: about 1 month ago
JSON representation
the best way to explore Solana blockchain state from your terminal
- Host: GitHub
- URL: https://github.com/dmshvetsov/solana-explorer-cli
- Owner: dmshvetsov
- Created: 2024-06-12T16:56:45.000Z (11 months ago)
- Default Branch: main
- Last Pushed: 2025-03-19T12:55:12.000Z (2 months ago)
- Last Synced: 2025-03-23T23:15:03.033Z (about 2 months ago)
- Topics: cli, explorer, rust, rust-lang, rust-language, solana
- Language: Rust
- Homepage: https://crates.io/crates/solana-explorer-cli
- Size: 700 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
- Roadmap: ROADMAP.md
Awesome Lists containing this project
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](https://github.com/dmshvetsov/solana-explorer-cli/issues/new) and check existing [feature requests](https://github.com/dmshvetsov/solana-explorer-cli/issues?q=is%3Aissue+label%3A%22feature+request%22). Check current [roadmap](ROADMAP.md)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](https://developers.metaplex.com/rpc-providers#rp-cs-available) support
$ export SE_RPC_URL=
### explore accounts state
$ se ac
same as
$ se account
### check transactions
$ se tx
same as
$ se transaction
### other commands
see all available commands with `help` command
$ se help
```
Usage: seCommands:
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
```