solscan 0.1.1

A Rust Solscan HTTP API client
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
//! Solscan API routes.

mod block;
pub use block::*;

mod transaction;
pub use transaction::*;

mod account;
pub use account::*;

mod token;
pub use token::*;

mod other;
pub use other::*;