revive-solc-json-interface 1.0.0

Rust bindings for the solc standard JSON and combined JSON interface
Documentation
//! The `solc --standard-json` output contract EVM bytecode.

use serde::Deserialize;
use serde::Serialize;

/// The `solc --standard-json` output contract EVM bytecode.
#[derive(Debug, Serialize, Deserialize, Clone)]
#[serde(rename_all = "camelCase")]
pub struct Bytecode {
    /// The bytecode object.
    pub object: String,
}

impl Bytecode {
    /// A shortcut constructor.
    pub fn new(object: String) -> Self {
        Self { object }
    }
}

/// The `solc --standard-json` output contract EVM deployed bytecode.
#[derive(Debug, Serialize, Deserialize, Clone)]
#[serde(rename_all = "camelCase")]
pub struct DeployedBytecode {
    /// The bytecode object.
    pub object: String,
}

impl DeployedBytecode {
    /// A shortcut constructor.
    pub fn new(object: String) -> Self {
        Self { object }
    }
}