forc-client 0.71.3

A `forc` plugin for interacting with a Fuel node.
1
2
3
4
5
6
7
8
9
pub mod call;
mod deploy;
mod run;
mod submit;

pub use call::call;
pub use deploy::{deploy, DeployedContract, DeployedExecutable, DeployedPackage};
pub use run::run;
pub use submit::submit;