1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
use std::path::Path;

pub mod compiler;
pub mod deploy;
pub mod constants;

pub use deploy::{make_web3_ganache, make_web3, deploy_contract};

pub fn get_artifact(contract_name: &str) -> deploy::ContractArtifact {
    deploy::get_artifact(Path::new(constants::BUILD_PATH), contract_name)
}