pub struct HardhatArtifact {
pub contract_name: String,
pub source_name: String,
pub abi: Vec<AbiField>,
pub bytecode: String,
pub deployed_bytecode: String,
}
Expand description
Hardhat generate artifact
Fields§
§contract_name: String
§source_name: String
§abi: Vec<AbiField>
§bytecode: String
§deployed_bytecode: String
Trait Implementations§
Source§impl Debug for HardhatArtifact
impl Debug for HardhatArtifact
Source§impl<'de> Deserialize<'de> for HardhatArtifact
impl<'de> Deserialize<'de> for HardhatArtifact
Source§fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>where
__D: Deserializer<'de>,
Deserialize this value from the given Serde deserializer. Read more
Auto Trait Implementations§
impl Freeze for HardhatArtifact
impl RefUnwindSafe for HardhatArtifact
impl Send for HardhatArtifact
impl Sync for HardhatArtifact
impl Unpin for HardhatArtifact
impl UnwindSafe for HardhatArtifact
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Mutably borrows from an owned value. Read more