turdle-cli 0.1.1

Trdelník is Rust based testing framework providing several convenient developer tools for testing Solana programs written in Anchor.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
mod build;
pub use build::build;

mod keypair;
pub use keypair::{keypair, KeyPairCommand};

mod test;
pub use test::test;

mod localnet;
pub use localnet::localnet;

mod explorer;
pub use explorer::{explorer, ExplorerCommand};

mod init;
pub use init::init;