snoop-cli 0.1.0

A tool suite for inspecting Solana programs
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod disassemble;
pub use disassemble::*;

pub mod graph;
pub use graph::*;

pub mod instructions;
pub use instructions::*;

pub mod functions;
pub use functions::*;

pub mod cfg;
pub use cfg::*;