Expand description
§Solarchive SDK
Rust SDK for accessing Solana blockchain historical data from solarchive.org.
SolArchive is a project to archive Solana’s public transaction data and make it freely accessible in Apache Parquet format. This SDK provides ergonomic Rust APIs to:
- Download and parse Solana transaction data (vote-filtered)
- Access account state snapshots
- Query token metadata (fungible and NFTs)
- Work with Parquet files containing blockchain data
All data is licensed under CC-BY-4.0 and available for free via HTTPS downloads.
§Data Available
- Transactions: All non-vote transactions with signatures, fees, account changes, and token balances
- Accounts: Periodic snapshots of account states including balances, owners, and program data
- Tokens: Metadata snapshots for fungible and non-fungible tokens
§Example Usage
// Example usage will be added as the SDK is developed