2020-05-26 09:37:31 +00:00
|
|
|
#![deny(missing_docs, unsafe_code)]
|
2022-03-19 17:05:39 +00:00
|
|
|
#![deny(rustdoc::broken_intra_doc_links)]
|
2020-05-26 09:37:31 +00:00
|
|
|
|
2020-05-26 18:57:59 +00:00
|
|
|
//! Module for generating type-safe bindings to Ethereum smart contracts. This
|
|
|
|
//! module is intended to be used either indirectly with the `abigen` procedural
|
|
|
|
//! macro or directly from a build script / CLI
|
2020-05-26 09:37:31 +00:00
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
#[allow(missing_docs)]
|
|
|
|
#[macro_use]
|
|
|
|
#[path = "test/macros.rs"]
|
|
|
|
mod test_macros;
|
|
|
|
|
2021-10-11 14:18:09 +00:00
|
|
|
/// Contains types to generate rust bindings for solidity contracts
|
|
|
|
pub mod contract;
|
2020-05-26 18:57:59 +00:00
|
|
|
use contract::Context;
|
|
|
|
|
2021-08-16 07:29:44 +00:00
|
|
|
pub mod rawabi;
|
2020-05-26 09:37:31 +00:00
|
|
|
mod rustfmt;
|
|
|
|
mod source;
|
|
|
|
mod util;
|
|
|
|
|
2022-02-02 13:57:31 +00:00
|
|
|
pub mod multi;
|
|
|
|
pub use multi::MultiAbigen;
|
|
|
|
|
2020-05-31 16:01:34 +00:00
|
|
|
pub use ethers_core::types::Address;
|
2020-05-26 18:57:59 +00:00
|
|
|
pub use source::Source;
|
2021-11-05 13:00:01 +00:00
|
|
|
pub use util::parse_address;
|
2020-05-26 18:57:59 +00:00
|
|
|
|
2022-02-24 20:09:08 +00:00
|
|
|
use crate::contract::ExpandedContract;
|
2022-02-02 20:44:53 +00:00
|
|
|
use eyre::Result;
|
2020-05-26 09:37:31 +00:00
|
|
|
use proc_macro2::TokenStream;
|
2022-02-02 13:57:31 +00:00
|
|
|
use std::{collections::HashMap, fs::File, io::Write, path::Path};
|
2020-05-26 09:37:31 +00:00
|
|
|
|
2020-06-03 21:05:05 +00:00
|
|
|
/// Builder struct for generating type-safe bindings from a contract's ABI
|
2020-06-10 19:34:39 +00:00
|
|
|
///
|
2020-06-16 12:08:42 +00:00
|
|
|
/// Note: Your contract's ABI must contain the `stateMutability` field. This is
|
|
|
|
/// [still not supported by Vyper](https://github.com/vyperlang/vyper/issues/1931), so you must adjust your ABIs and replace
|
|
|
|
/// `constant` functions with `view` or `pure`.
|
|
|
|
///
|
2022-02-23 10:36:14 +00:00
|
|
|
/// To generate bindings for _multiple_ contracts at once see also [`crate::MultiAbigen`].
|
|
|
|
///
|
2020-06-10 19:34:39 +00:00
|
|
|
/// # Example
|
|
|
|
///
|
2022-02-23 10:36:14 +00:00
|
|
|
/// Running the code below will generate a file called `token.rs` containing the
|
|
|
|
/// bindings inside, which exports an `ERC20Token` struct, along with all its events. Put into a
|
|
|
|
/// `build.rs` file this will generate the bindings during `cargo build`.
|
2020-06-10 19:34:39 +00:00
|
|
|
///
|
|
|
|
/// ```no_run
|
2020-06-11 09:16:36 +00:00
|
|
|
/// # use ethers_contract_abigen::Abigen;
|
2020-06-10 19:34:39 +00:00
|
|
|
/// # fn foo() -> Result<(), Box<dyn std::error::Error>> {
|
|
|
|
/// Abigen::new("ERC20Token", "./abi.json")?.generate()?.write_to_file("token.rs")?;
|
|
|
|
/// # Ok(())
|
|
|
|
/// # }
|
2021-12-23 14:38:07 +00:00
|
|
|
#[derive(Debug, Clone)]
|
2020-06-03 20:09:46 +00:00
|
|
|
pub struct Abigen {
|
2020-05-26 18:57:59 +00:00
|
|
|
/// The source of the ABI JSON for the contract whose bindings
|
2020-05-26 09:37:31 +00:00
|
|
|
/// are being generated.
|
2020-05-26 18:57:59 +00:00
|
|
|
abi_source: Source,
|
|
|
|
|
|
|
|
/// Override the contract name to use for the generated type.
|
|
|
|
contract_name: String,
|
|
|
|
|
2020-05-26 09:37:31 +00:00
|
|
|
/// Manually specified contract method aliases.
|
|
|
|
method_aliases: HashMap<String, String>,
|
2020-05-26 18:57:59 +00:00
|
|
|
|
2020-05-26 09:37:31 +00:00
|
|
|
/// Derives added to event structs and enums.
|
|
|
|
event_derives: Vec<String>,
|
2020-05-26 18:57:59 +00:00
|
|
|
|
2020-05-26 09:37:31 +00:00
|
|
|
/// Format the code using a locally installed copy of `rustfmt`.
|
|
|
|
rustfmt: bool,
|
2021-09-03 15:57:40 +00:00
|
|
|
|
|
|
|
/// Manually specified event name aliases.
|
|
|
|
event_aliases: HashMap<String, String>,
|
2020-05-26 09:37:31 +00:00
|
|
|
}
|
|
|
|
|
2020-06-03 20:09:46 +00:00
|
|
|
impl Abigen {
|
2020-05-26 18:57:59 +00:00
|
|
|
/// Creates a new builder with the given ABI JSON source.
|
2020-06-03 20:09:46 +00:00
|
|
|
pub fn new<S: AsRef<str>>(contract_name: &str, abi_source: S) -> Result<Self> {
|
|
|
|
let abi_source = abi_source.as_ref().parse()?;
|
|
|
|
Ok(Self {
|
|
|
|
abi_source,
|
|
|
|
contract_name: contract_name.to_owned(),
|
|
|
|
method_aliases: HashMap::new(),
|
|
|
|
event_derives: Vec::new(),
|
2021-09-03 15:57:40 +00:00
|
|
|
event_aliases: HashMap::new(),
|
2020-06-03 20:09:46 +00:00
|
|
|
rustfmt: true,
|
|
|
|
})
|
2020-05-26 09:37:31 +00:00
|
|
|
}
|
|
|
|
|
2022-02-24 20:09:08 +00:00
|
|
|
/// Attempts to load a new builder from an ABI JSON file at the specific
|
2022-02-02 13:57:31 +00:00
|
|
|
/// path.
|
|
|
|
pub fn from_file(path: impl AsRef<Path>) -> Result<Self> {
|
|
|
|
let name = path
|
|
|
|
.as_ref()
|
|
|
|
.file_stem()
|
2022-02-02 20:44:53 +00:00
|
|
|
.ok_or_else(|| eyre::format_err!("Missing file stem in path"))?
|
2022-02-02 13:57:31 +00:00
|
|
|
.to_str()
|
2022-02-02 20:44:53 +00:00
|
|
|
.ok_or_else(|| eyre::format_err!("Unable to convert file stem to string"))?;
|
2022-02-02 13:57:31 +00:00
|
|
|
|
|
|
|
Self::new(name, std::fs::read_to_string(path.as_ref())?)
|
|
|
|
}
|
|
|
|
|
2021-09-03 15:57:40 +00:00
|
|
|
/// Manually adds a solidity event alias to specify what the event struct
|
|
|
|
/// and function name will be in Rust.
|
2021-12-19 04:28:38 +00:00
|
|
|
#[must_use]
|
2021-09-03 15:57:40 +00:00
|
|
|
pub fn add_event_alias<S1, S2>(mut self, signature: S1, alias: S2) -> Self
|
|
|
|
where
|
|
|
|
S1: Into<String>,
|
|
|
|
S2: Into<String>,
|
|
|
|
{
|
|
|
|
self.event_aliases.insert(signature.into(), alias.into());
|
|
|
|
self
|
|
|
|
}
|
|
|
|
|
2020-05-26 09:37:31 +00:00
|
|
|
/// Manually adds a solidity method alias to specify what the method name
|
|
|
|
/// will be in Rust. For solidity methods without an alias, the snake cased
|
|
|
|
/// method name will be used.
|
2021-12-19 04:28:38 +00:00
|
|
|
#[must_use]
|
2020-05-26 09:37:31 +00:00
|
|
|
pub fn add_method_alias<S1, S2>(mut self, signature: S1, alias: S2) -> Self
|
|
|
|
where
|
|
|
|
S1: Into<String>,
|
|
|
|
S2: Into<String>,
|
|
|
|
{
|
2020-06-03 20:09:46 +00:00
|
|
|
self.method_aliases.insert(signature.into(), alias.into());
|
2020-05-26 09:37:31 +00:00
|
|
|
self
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Specify whether or not to format the code using a locally installed copy
|
|
|
|
/// of `rustfmt`.
|
|
|
|
///
|
|
|
|
/// Note that in case `rustfmt` does not exist or produces an error, the
|
|
|
|
/// unformatted code will be used.
|
2021-12-19 04:28:38 +00:00
|
|
|
#[must_use]
|
2020-05-26 18:57:59 +00:00
|
|
|
pub fn rustfmt(mut self, rustfmt: bool) -> Self {
|
2020-06-03 20:09:46 +00:00
|
|
|
self.rustfmt = rustfmt;
|
2020-05-26 09:37:31 +00:00
|
|
|
self
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Add a custom derive to the derives for event structs and enums.
|
|
|
|
///
|
|
|
|
/// This makes it possible to for example derive serde::Serialize and
|
|
|
|
/// serde::Deserialize for events.
|
2021-12-19 04:28:38 +00:00
|
|
|
#[must_use]
|
2020-05-26 09:37:31 +00:00
|
|
|
pub fn add_event_derive<S>(mut self, derive: S) -> Self
|
|
|
|
where
|
|
|
|
S: Into<String>,
|
|
|
|
{
|
2020-06-03 20:09:46 +00:00
|
|
|
self.event_derives.push(derive.into());
|
2020-05-26 09:37:31 +00:00
|
|
|
self
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Generates the contract bindings.
|
|
|
|
pub fn generate(self) -> Result<ContractBindings> {
|
2020-06-03 20:09:46 +00:00
|
|
|
let rustfmt = self.rustfmt;
|
2022-02-02 13:57:31 +00:00
|
|
|
let name = self.contract_name.clone();
|
2022-02-24 20:09:08 +00:00
|
|
|
let (expanded, _) = self.expand()?;
|
|
|
|
Ok(ContractBindings { tokens: expanded.into_tokens(), rustfmt, name })
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Expands the `Abigen` and returns the [`ExpandedContract`] that holds all tokens and the
|
|
|
|
/// [`Context`] that holds the state used during expansion.
|
|
|
|
pub fn expand(self) -> Result<(ExpandedContract, Context)> {
|
|
|
|
let ctx = Context::from_abigen(self)?;
|
|
|
|
Ok((ctx.expand()?, ctx))
|
2020-05-26 09:37:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Type-safe contract bindings generated by a `Builder`. This type can be
|
|
|
|
/// either written to file or into a token stream for use in a procedural macro.
|
|
|
|
pub struct ContractBindings {
|
|
|
|
/// The TokenStream representing the contract bindings.
|
|
|
|
tokens: TokenStream,
|
|
|
|
/// The output options used for serialization.
|
2020-06-03 20:09:46 +00:00
|
|
|
rustfmt: bool,
|
2022-02-02 13:57:31 +00:00
|
|
|
/// The contract name
|
|
|
|
name: String,
|
2020-05-26 09:37:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
impl ContractBindings {
|
|
|
|
/// Writes the bindings to a given `Write`.
|
|
|
|
pub fn write<W>(&self, mut w: W) -> Result<()>
|
|
|
|
where
|
|
|
|
W: Write,
|
|
|
|
{
|
|
|
|
let source = {
|
|
|
|
let raw = self.tokens.to_string();
|
|
|
|
|
2020-06-03 20:09:46 +00:00
|
|
|
if self.rustfmt {
|
2020-05-26 09:37:31 +00:00
|
|
|
rustfmt::format(&raw).unwrap_or(raw)
|
|
|
|
} else {
|
|
|
|
raw
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
|
|
|
w.write_all(source.as_bytes())?;
|
|
|
|
Ok(())
|
|
|
|
}
|
|
|
|
|
2022-02-02 13:57:31 +00:00
|
|
|
/// Writes the bindings to a new Vec. Panics if unable to allocate
|
|
|
|
pub fn to_vec(&self) -> Vec<u8> {
|
|
|
|
let mut bindings = vec![];
|
|
|
|
self.write(&mut bindings).expect("allocations don't fail");
|
|
|
|
bindings
|
|
|
|
}
|
|
|
|
|
2020-05-26 09:37:31 +00:00
|
|
|
/// Writes the bindings to the specified file.
|
|
|
|
pub fn write_to_file<P>(&self, path: P) -> Result<()>
|
|
|
|
where
|
|
|
|
P: AsRef<Path>,
|
|
|
|
{
|
|
|
|
let file = File::create(path)?;
|
|
|
|
self.write(file)
|
|
|
|
}
|
|
|
|
|
2022-02-02 13:57:31 +00:00
|
|
|
/// Writes the bindings to a `contract_name.rs` file in the specified
|
|
|
|
/// directory. The filename is the snake_case transformation of the contract
|
|
|
|
/// name.
|
|
|
|
pub fn write_module_in_dir<P>(&self, dir: P) -> Result<()>
|
2021-12-23 14:38:07 +00:00
|
|
|
where
|
2022-02-02 13:57:31 +00:00
|
|
|
P: AsRef<Path>,
|
2021-12-23 14:38:07 +00:00
|
|
|
{
|
2022-02-02 13:57:31 +00:00
|
|
|
let file = dir.as_ref().join(self.module_filename());
|
|
|
|
self.write_to_file(file)
|
2021-12-23 14:38:07 +00:00
|
|
|
}
|
|
|
|
|
2022-02-02 13:57:31 +00:00
|
|
|
/// Converts the bindings into its underlying token stream. This allows it
|
|
|
|
/// to be used within a procedural macro.
|
|
|
|
pub fn into_tokens(self) -> TokenStream {
|
|
|
|
self.tokens
|
2021-12-23 14:38:07 +00:00
|
|
|
}
|
|
|
|
|
2022-02-02 13:57:31 +00:00
|
|
|
/// Generate the default module name (snake case of the contract name)
|
|
|
|
pub fn module_name(&self) -> String {
|
2022-07-24 01:18:24 +00:00
|
|
|
util::safe_module_name(&self.name)
|
2021-12-23 14:38:07 +00:00
|
|
|
}
|
|
|
|
|
2022-02-02 13:57:31 +00:00
|
|
|
/// Generate the default filename of the module
|
|
|
|
pub fn module_filename(&self) -> String {
|
|
|
|
let mut name = self.module_name();
|
|
|
|
name.extend([".rs"]);
|
|
|
|
name
|
2021-12-23 14:38:07 +00:00
|
|
|
}
|
|
|
|
}
|
2022-02-22 18:26:21 +00:00
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::*;
|
2022-02-23 10:46:52 +00:00
|
|
|
use ethers_solc::project_util::TempProject;
|
2022-02-22 18:26:21 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn can_generate_structs() {
|
|
|
|
let greeter = include_str!("../../tests/solidity-contracts/greeter_with_struct.json");
|
|
|
|
let abigen = Abigen::new("Greeter", greeter).unwrap();
|
|
|
|
let gen = abigen.generate().unwrap();
|
|
|
|
let out = gen.tokens.to_string();
|
|
|
|
assert!(out.contains("pub struct Stuff"));
|
|
|
|
}
|
2022-02-23 10:46:52 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn can_compile_and_generate() {
|
|
|
|
let tmp = TempProject::dapptools().unwrap();
|
|
|
|
|
|
|
|
tmp.add_source(
|
|
|
|
"Greeter",
|
|
|
|
r#"
|
|
|
|
// SPDX-License-Identifier: MIT
|
|
|
|
pragma solidity >=0.8.0;
|
|
|
|
|
|
|
|
contract Greeter {
|
|
|
|
|
|
|
|
struct Inner {
|
|
|
|
bool a;
|
|
|
|
}
|
|
|
|
|
|
|
|
struct Stuff {
|
|
|
|
Inner inner;
|
|
|
|
}
|
|
|
|
|
|
|
|
function greet(Stuff calldata stuff) public view returns (Stuff memory) {
|
|
|
|
return stuff;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
"#,
|
|
|
|
)
|
|
|
|
.unwrap();
|
|
|
|
|
|
|
|
let _ = tmp.compile().unwrap();
|
|
|
|
|
|
|
|
let abigen =
|
|
|
|
Abigen::from_file(tmp.artifacts_path().join("Greeter.sol/Greeter.json")).unwrap();
|
|
|
|
let gen = abigen.generate().unwrap();
|
|
|
|
let out = gen.tokens.to_string();
|
|
|
|
assert!(out.contains("pub struct Stuff"));
|
|
|
|
assert!(out.contains("pub struct Inner"));
|
|
|
|
}
|
2022-02-22 18:26:21 +00:00
|
|
|
}
|