rusty-blockparser 0.12.0

Blockchain Parser for most common Cryptocurrencies based on Bitcoin
1
2
3
4
5
6
7
use std::error;

pub mod logger;
pub mod utils;

pub type Result<T> = std::result::Result<T, Error>;
pub type Error = Box<dyn error::Error>;