trident-cli 0.12.0

Trident is Rust based fuzzing framework for Solana programs written in Anchor.
Documentation
1
2
3
4
5
6
7
8
9
use anyhow::Error;
use fehler::throws;
use trident_client::___private::DashboardServer;

#[throws]
pub(crate) async fn server(directory: String, port: u16, host: String) {
    let server = DashboardServer::new(directory, host, port);
    server.start().await?;
}