sol-log-parser 0.0.1

A quick and dirty solana log parser that turns runtime logs into structured data.
Documentation
1
2
3
4
5
6
7
8
9
10
11
use std::num::ParseIntError;

#[derive(Debug, thiserror::Error)]
pub enum LogParseError {
    #[error(transparent)]
    Pubkey(#[from] solana_pubkey::ParsePubkeyError),
    #[error(transparent)]
    Int(#[from] ParseIntError),
    #[error(transparent)]
    Base64(#[from] base64::DecodeError),
}