| Crates.io | solxplain |
| lib.rs | solxplain |
| version | 0.1.0 |
| created_at | 2026-01-01 15:06:51.823561+00 |
| updated_at | 2026-01-01 15:06:51.823561+00 |
| description | A cli tool to view solana accounts and tx logs like the explorer |
| homepage | https://github.com/idorocodes/solxplain |
| repository | https://github.com/idorocodes/solxplain |
| max_upload_size | |
| id | 2016309 |
| size | 156,655 |
solxplain is a Rust-based CLI tool for inspecting Solana accounts and transactions, turning raw RPC responses and execution logs into human-readable output.
Fetch account state by public key
Display:
Useful for quick debugging and sanity checks
Clone and build from source:
git clone https://github.com/idorocodes/solxplain
cd solxplain
cargo build --release
Binary will be available at:
target/release/solxplain
On Windows:
cargo install solxplain
solxplain account <ACCOUNT_PUBKEY> --cluster devnet
Example output:
Account:
Lamports: 16251629640
Data Length: 0
Owner: 11111111111111111111111111111111
Executable: false
Rent Epoch: 18446744073709551615
solxplain tx <TX_SIGNATURE> --cluster devnet
Example output (simplified):
Transaction Slot: 432102040
Status: Success
Program: Compute Budget
Result: Success
Program: Slink Program
Log: Instruction: Create
Inner Program: System Program
Result: Success
Result: Success
No instruction decoding is assumed unless explicitly known.
JSON output (--json)
Program name registry expansion
SPL Token account decoding
Instruction-level summaries
Mainnet support
Web UI wrapper