An open API service indexing awesome lists of open source software.

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

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: se

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
```