mod client;
mod types;
pub use client::Client;
pub use types::*;
pub mod field {
pub const SOURCES: &str = "sources";
pub const ABI: &str = "abi";
pub const METADATA: &str = "metadata";
pub const COMPILATION: &str = "compilation";
pub const DEPLOYMENT: &str = "deployment";
pub const USERDOC: &str = "userdoc";
pub const DEVDOC: &str = "devdoc";
pub const STORAGE_LAYOUT: &str = "storageLayout";
pub const SIGNATURES: &str = "signatures";
}