CHAIN
Check balances and decode transactions on Solana from the command line
Everything glnc can do on Solana: balance lookup, transaction decoding, and live gas. Examples below are copy-pasteable; swap the address or hash for your own.
Quick install
On macOS or Linux:
brew install aryarahimi1/glnc/glncBalance on Solana
glnc auto-detects Solana from the address format. To restrict a multi-chain query to Solana only, pass --chain sol.
glnc balance 9WzDXwBb...Decode a Solana transaction
Pass a hash and (optionally) --chain sol to skip cross-chain probing. glnc decodes calldata and walks token movements out of the receipt logs.
glnc tx 5JxNK... --chain solanaSolana gas right now
Live percentile fee tiers from eth_feeHistory across the last 64 blocks, plus a USD estimate at the current Solana native price.
glnc gas --chain solanaAliases
Every alias resolves to the same chain. Pass any of them to --chain:
glnc balance 0x... --chain solSolana-specific notes
Solana token discovery uses getTokenAccountsByOwner with an automatic RPC fallback chain: publicnode.com as primary, then mainnet-beta, then BlastAPI public endpoint. Address format is base58, 32-44 characters. Solana has no base fee in the EVM sense, so the base column in gas output is —; priority fees are reported in micro-lamports.