Trait ethers_solc::Artifact[][src]

pub trait Artifact {
    fn into_inner(self) -> (Option<Abi>, Option<Bytes>);
fn into_compact_contract(self) -> CompactContract;
fn into_parts(self) -> (Option<Abi>, Option<Bytes>, Option<Bytes>); }

Required methods

Returns the artifact’s Abi and bytecode

Turns the artifact into a container type for abi, bytecode and deployed bytecode

Returns the contents of this type as a single tuple of abi, bytecode and deployed bytecode

Implementors