2020-05-26 09:37:31 +00:00
|
|
|
//! Module implements reading of contract artifacts from various sources.
|
2020-05-26 18:57:59 +00:00
|
|
|
use super::util;
|
2020-05-31 16:01:34 +00:00
|
|
|
use ethers_core::types::Address;
|
2020-05-26 09:37:31 +00:00
|
|
|
|
2021-11-29 13:37:11 +00:00
|
|
|
use crate::util::resolve_path;
|
2020-05-26 09:37:31 +00:00
|
|
|
use anyhow::{anyhow, Context, Error, Result};
|
2021-08-23 09:56:44 +00:00
|
|
|
use cfg_if::cfg_if;
|
2021-11-29 13:37:11 +00:00
|
|
|
use std::{env, fs, path::Path, str::FromStr};
|
2020-05-26 09:37:31 +00:00
|
|
|
use url::Url;
|
|
|
|
|
|
|
|
/// A source of a Truffle artifact JSON.
|
|
|
|
#[derive(Clone, Debug, Eq, PartialEq)]
|
|
|
|
pub enum Source {
|
2020-05-26 18:57:59 +00:00
|
|
|
/// A raw ABI string
|
|
|
|
String(String),
|
|
|
|
|
|
|
|
/// An ABI located on the local file system.
|
2021-11-29 13:37:11 +00:00
|
|
|
Local(String),
|
2020-05-26 18:57:59 +00:00
|
|
|
|
|
|
|
/// An ABI to be retrieved over HTTP(S).
|
2020-05-26 09:37:31 +00:00
|
|
|
Http(Url),
|
2020-05-26 18:57:59 +00:00
|
|
|
|
2020-05-26 09:37:31 +00:00
|
|
|
/// An address of a mainnet contract that has been verified on Etherscan.io.
|
|
|
|
Etherscan(Address),
|
2020-05-26 18:57:59 +00:00
|
|
|
|
2020-05-26 09:37:31 +00:00
|
|
|
/// The package identifier of an npm package with a path to a Truffle
|
|
|
|
/// artifact or ABI to be retrieved from `unpkg.io`.
|
|
|
|
Npm(String),
|
|
|
|
}
|
|
|
|
|
|
|
|
impl Source {
|
2020-05-26 18:57:59 +00:00
|
|
|
/// Parses an ABI from a source
|
2020-05-26 09:37:31 +00:00
|
|
|
///
|
2020-05-26 18:57:59 +00:00
|
|
|
/// Contract ABIs can be retrieved from the local filesystem or online
|
2020-06-03 20:09:46 +00:00
|
|
|
/// from `etherscan.io`. They can also be provided in-line. This method parses
|
|
|
|
/// ABI source URLs and accepts the following:
|
|
|
|
///
|
|
|
|
/// - raw ABI JSON
|
|
|
|
///
|
2020-05-26 18:57:59 +00:00
|
|
|
/// - `relative/path/to/Contract.json`: a relative path to an ABI JSON file.
|
|
|
|
/// This relative path is rooted in the current working directory.
|
|
|
|
/// To specify the root for relative paths, use `Source::with_root`.
|
2020-06-03 20:09:46 +00:00
|
|
|
///
|
2021-10-29 12:29:35 +00:00
|
|
|
/// - `/absolute/path/to/Contract.json` or `file:///absolute/path/to/Contract.json`: an absolute
|
|
|
|
/// path or file URL to an ABI JSON file.
|
2020-06-03 20:09:46 +00:00
|
|
|
///
|
2020-05-26 18:57:59 +00:00
|
|
|
/// - `http(s)://...` an HTTP url to a contract ABI.
|
2020-06-03 20:09:46 +00:00
|
|
|
///
|
2021-10-29 12:29:35 +00:00
|
|
|
/// - `etherscan:0xXX..XX` or `https://etherscan.io/address/0xXX..XX`: a address or URL of a
|
|
|
|
/// verified contract on Etherscan.
|
2020-06-03 20:09:46 +00:00
|
|
|
///
|
2021-10-29 12:29:35 +00:00
|
|
|
/// - `npm:@org/package@1.0.0/path/to/contract.json` an npmjs package with an optional version
|
|
|
|
/// and path (defaulting to the latest version and `index.js`). The contract ABI will be
|
|
|
|
/// retrieved through `unpkg.io`.
|
2020-05-26 09:37:31 +00:00
|
|
|
pub fn parse<S>(source: S) -> Result<Self>
|
|
|
|
where
|
|
|
|
S: AsRef<str>,
|
|
|
|
{
|
2020-06-03 20:09:46 +00:00
|
|
|
let source = source.as_ref();
|
2021-09-30 08:27:24 +00:00
|
|
|
if matches!(source.chars().next(), Some('[' | '{')) {
|
2021-10-29 12:29:35 +00:00
|
|
|
return Ok(Source::String(source.to_owned()))
|
2020-06-03 20:09:46 +00:00
|
|
|
}
|
2021-11-29 17:02:11 +00:00
|
|
|
let root = env::var("CARGO_MANIFEST_DIR")?;
|
2020-05-26 09:37:31 +00:00
|
|
|
Source::with_root(root, source)
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Parses an artifact source from a string and a specified root directory
|
|
|
|
/// for resolving relative paths. See `Source::with_root` for more details
|
|
|
|
/// on supported source strings.
|
2020-06-03 20:09:46 +00:00
|
|
|
fn with_root<P, S>(root: P, source: S) -> Result<Self>
|
2020-05-26 09:37:31 +00:00
|
|
|
where
|
|
|
|
P: AsRef<Path>,
|
|
|
|
S: AsRef<str>,
|
|
|
|
{
|
2021-11-29 17:02:11 +00:00
|
|
|
let source = source.as_ref();
|
2021-11-03 08:03:42 +00:00
|
|
|
let root = root.as_ref();
|
2021-08-23 09:56:44 +00:00
|
|
|
cfg_if! {
|
2021-11-03 08:03:42 +00:00
|
|
|
if #[cfg(target_arch = "wasm32")] {
|
2021-08-23 09:56:44 +00:00
|
|
|
let root = if root.starts_with("/") {
|
2021-11-03 08:03:42 +00:00
|
|
|
format!("file:://{}", root.display())
|
2021-08-23 09:56:44 +00:00
|
|
|
} else {
|
|
|
|
format!("{}", root.display())
|
|
|
|
};
|
|
|
|
let base = Url::parse(&root)
|
2021-11-03 08:03:42 +00:00
|
|
|
.map_err(|_| anyhow!("root path '{}' is not absolute", root))?;
|
|
|
|
} else {
|
|
|
|
let base = Url::from_directory_path(root)
|
|
|
|
.map_err(|_| anyhow!("root path '{}' is not absolute", root.display()))?;
|
2021-08-23 09:56:44 +00:00
|
|
|
}
|
|
|
|
}
|
2021-11-29 17:02:11 +00:00
|
|
|
let url = base.join(source)?;
|
2020-05-26 09:37:31 +00:00
|
|
|
|
|
|
|
match url.scheme() {
|
2021-11-29 17:02:11 +00:00
|
|
|
"file" => Ok(Source::local(source.to_string())),
|
2020-05-26 09:37:31 +00:00
|
|
|
"http" | "https" => match url.host_str() {
|
|
|
|
Some("etherscan.io") => Source::etherscan(
|
|
|
|
url.path()
|
|
|
|
.rsplit('/')
|
|
|
|
.next()
|
|
|
|
.ok_or_else(|| anyhow!("HTTP URL does not have a path"))?,
|
|
|
|
),
|
|
|
|
_ => Ok(Source::Http(url)),
|
|
|
|
},
|
|
|
|
"etherscan" => Source::etherscan(url.path()),
|
|
|
|
"npm" => Ok(Source::npm(url.path())),
|
|
|
|
_ => Err(anyhow!("unsupported URL '{}'", url)),
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Creates a local filesystem source from a path string.
|
2021-11-29 13:37:11 +00:00
|
|
|
pub fn local(path: impl Into<String>) -> Self {
|
|
|
|
Source::Local(path.into())
|
2020-05-26 09:37:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Creates an HTTP source from a URL.
|
2021-10-10 08:31:34 +00:00
|
|
|
pub fn http<S>(url: S) -> Result<Self>
|
2020-05-26 09:37:31 +00:00
|
|
|
where
|
|
|
|
S: AsRef<str>,
|
|
|
|
{
|
|
|
|
Ok(Source::Http(Url::parse(url.as_ref())?))
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Creates an Etherscan source from an address string.
|
2021-10-10 08:31:34 +00:00
|
|
|
pub fn etherscan<S>(address: S) -> Result<Self>
|
2020-05-26 09:37:31 +00:00
|
|
|
where
|
|
|
|
S: AsRef<str>,
|
|
|
|
{
|
|
|
|
let address =
|
|
|
|
util::parse_address(address).context("failed to parse address for Etherscan source")?;
|
|
|
|
Ok(Source::Etherscan(address))
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Creates an Etherscan source from an address string.
|
2021-10-10 08:31:34 +00:00
|
|
|
pub fn npm<S>(package_path: S) -> Self
|
2020-05-26 09:37:31 +00:00
|
|
|
where
|
|
|
|
S: Into<String>,
|
|
|
|
{
|
|
|
|
Source::Npm(package_path.into())
|
|
|
|
}
|
|
|
|
|
|
|
|
/// Retrieves the source JSON of the artifact this will either read the JSON
|
|
|
|
/// from the file system or retrieve a contract ABI from the network
|
2021-08-23 09:56:44 +00:00
|
|
|
/// depending on the source type.
|
2020-05-26 18:57:59 +00:00
|
|
|
pub fn get(&self) -> Result<String> {
|
2021-08-23 09:56:44 +00:00
|
|
|
cfg_if! {
|
|
|
|
if #[cfg(target_arch = "wasm32")] {
|
|
|
|
match self {
|
|
|
|
Source::Local(path) => get_local_contract(path),
|
|
|
|
Source::Http(_) => panic!("Http abi location are not supported for wasm"),
|
|
|
|
Source::Etherscan(_) => panic!("Etherscan abi location are not supported for wasm"),
|
|
|
|
Source::Npm(_) => panic!("npm abi location are not supported for wasm"),
|
|
|
|
Source::String(abi) => Ok(abi.clone()),
|
|
|
|
}
|
|
|
|
} else {
|
|
|
|
match self {
|
|
|
|
Source::Local(path) => get_local_contract(path),
|
|
|
|
Source::Http(url) => get_http_contract(url),
|
|
|
|
Source::Etherscan(address) => get_etherscan_contract(*address),
|
|
|
|
Source::Npm(package) => get_npm_contract(package),
|
|
|
|
Source::String(abi) => Ok(abi.clone()),
|
|
|
|
}
|
|
|
|
}
|
2020-05-26 09:37:31 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
impl FromStr for Source {
|
|
|
|
type Err = Error;
|
|
|
|
|
|
|
|
fn from_str(s: &str) -> Result<Self> {
|
|
|
|
Source::parse(s)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2021-11-29 13:37:11 +00:00
|
|
|
/// Reads an artifact JSON file from the local filesystem.
|
|
|
|
///
|
|
|
|
/// The given path can be relative or absolute and can contain env vars like
|
|
|
|
/// `"$CARGO_MANIFEST_DIR/contracts/a.json"`
|
|
|
|
/// If the path is relative after all env vars have been resolved then we assume the root is either
|
|
|
|
/// `CARGO_MANIFEST_DIR` or the current working directory.
|
|
|
|
fn get_local_contract(path: impl AsRef<str>) -> Result<String> {
|
|
|
|
let path = resolve_path(path.as_ref())?;
|
2020-05-26 09:37:31 +00:00
|
|
|
let path = if path.is_relative() {
|
2021-11-29 13:37:11 +00:00
|
|
|
let manifest_path = env::var("CARGO_MANIFEST_DIR")?;
|
|
|
|
let root = Path::new(&manifest_path);
|
|
|
|
let mut contract_path = root.join(&path);
|
|
|
|
if !contract_path.exists() {
|
|
|
|
contract_path = path.canonicalize()?;
|
|
|
|
}
|
|
|
|
if !contract_path.exists() {
|
|
|
|
anyhow::bail!("Unable to find local contract \"{}\"", path.display())
|
|
|
|
}
|
|
|
|
contract_path
|
2020-05-26 09:37:31 +00:00
|
|
|
} else {
|
2021-11-29 13:37:11 +00:00
|
|
|
path
|
2020-05-26 09:37:31 +00:00
|
|
|
};
|
|
|
|
|
2021-10-29 12:29:35 +00:00
|
|
|
let json = fs::read_to_string(&path)
|
|
|
|
.context(format!("failed to read artifact JSON file with path {}", &path.display()))?;
|
2020-06-03 20:09:46 +00:00
|
|
|
Ok(json)
|
2020-05-26 09:37:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Retrieves a Truffle artifact or ABI from an HTTP URL.
|
2021-08-23 09:56:44 +00:00
|
|
|
#[cfg(not(target_arch = "wasm32"))]
|
2020-05-26 09:37:31 +00:00
|
|
|
fn get_http_contract(url: &Url) -> Result<String> {
|
|
|
|
let json = util::http_get(url.as_str())
|
|
|
|
.with_context(|| format!("failed to retrieve JSON from {}", url))?;
|
2020-06-03 20:09:46 +00:00
|
|
|
Ok(json)
|
2020-05-26 09:37:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Retrieves a contract ABI from the Etherscan HTTP API and wraps it in an
|
|
|
|
/// artifact JSON for compatibility with the code generation facilities.
|
2021-08-23 09:56:44 +00:00
|
|
|
#[cfg(not(target_arch = "wasm32"))]
|
2020-05-26 09:37:31 +00:00
|
|
|
fn get_etherscan_contract(address: Address) -> Result<String> {
|
|
|
|
// NOTE: We do not retrieve the bytecode since deploying contracts with the
|
|
|
|
// same bytecode is unreliable as the libraries have already linked and
|
|
|
|
// probably don't reference anything when deploying on other networks.
|
|
|
|
|
2021-10-29 12:29:35 +00:00
|
|
|
let api_key =
|
|
|
|
env::var("ETHERSCAN_API_KEY").map(|key| format!("&apikey={}", key)).unwrap_or_default();
|
2020-05-26 09:37:31 +00:00
|
|
|
|
|
|
|
let abi_url = format!(
|
|
|
|
"http://api.etherscan.io/api\
|
|
|
|
?module=contract&action=getabi&address={:?}&format=raw{}",
|
|
|
|
address, api_key,
|
|
|
|
);
|
|
|
|
let abi = util::http_get(&abi_url).context("failed to retrieve ABI from Etherscan.io")?;
|
2020-06-03 20:09:46 +00:00
|
|
|
Ok(abi)
|
2020-05-26 09:37:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
/// Retrieves a Truffle artifact or ABI from an npm package through `unpkg.io`.
|
2021-08-23 09:56:44 +00:00
|
|
|
#[cfg(not(target_arch = "wasm32"))]
|
2020-05-26 09:37:31 +00:00
|
|
|
fn get_npm_contract(package: &str) -> Result<String> {
|
|
|
|
let unpkg_url = format!("https://unpkg.io/{}", package);
|
|
|
|
let json = util::http_get(&unpkg_url)
|
|
|
|
.with_context(|| format!("failed to retrieve JSON from for npm package {}", package))?;
|
|
|
|
|
2020-06-03 20:09:46 +00:00
|
|
|
Ok(json)
|
2020-05-26 09:37:31 +00:00
|
|
|
}
|
|
|
|
|
|
|
|
#[cfg(test)]
|
|
|
|
mod tests {
|
|
|
|
use super::*;
|
|
|
|
|
|
|
|
#[test]
|
|
|
|
fn parse_source() {
|
|
|
|
let root = "/rooted";
|
|
|
|
for (url, expected) in &[
|
2021-10-29 12:29:35 +00:00
|
|
|
("relative/Contract.json", Source::local("/rooted/relative/Contract.json")),
|
|
|
|
("/absolute/Contract.json", Source::local("/absolute/Contract.json")),
|
2020-05-26 09:37:31 +00:00
|
|
|
(
|
|
|
|
"https://my.domain.eth/path/to/Contract.json",
|
|
|
|
Source::http("https://my.domain.eth/path/to/Contract.json").unwrap(),
|
|
|
|
),
|
|
|
|
(
|
|
|
|
"etherscan:0x0001020304050607080910111213141516171819",
|
|
|
|
Source::etherscan("0x0001020304050607080910111213141516171819").unwrap(),
|
|
|
|
),
|
|
|
|
(
|
|
|
|
"https://etherscan.io/address/0x0001020304050607080910111213141516171819",
|
|
|
|
Source::etherscan("0x0001020304050607080910111213141516171819").unwrap(),
|
|
|
|
),
|
|
|
|
(
|
|
|
|
"npm:@openzeppelin/contracts@2.5.0/build/contracts/IERC20.json",
|
|
|
|
Source::npm("@openzeppelin/contracts@2.5.0/build/contracts/IERC20.json"),
|
|
|
|
),
|
|
|
|
] {
|
|
|
|
let source = Source::with_root(root, url).unwrap();
|
|
|
|
assert_eq!(source, *expected);
|
|
|
|
}
|
2020-06-03 20:09:46 +00:00
|
|
|
|
|
|
|
let src = r#"[{"constant":true,"inputs":[],"name":"name","outputs":[{"name":"name","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"symbol","outputs":[{"name":"symbol","type":"string"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"decimals","outputs":[{"name":"decimals","type":"uint8"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"spender","type":"address"},{"name":"value","type":"uint256"}],"name":"approve","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[],"name":"totalSupply","outputs":[{"name":"totalSupply","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"from","type":"address"},{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transferFrom","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"who","type":"address"}],"name":"balanceOf","outputs":[{"name":"balance","type":"uint256"}],"payable":false,"type":"function"},{"constant":false,"inputs":[{"name":"to","type":"address"},{"name":"value","type":"uint256"}],"name":"transfer","outputs":[{"name":"success","type":"bool"}],"payable":false,"type":"function"},{"constant":true,"inputs":[{"name":"owner","type":"address"},{"name":"spender","type":"address"}],"name":"allowance","outputs":[{"name":"remaining","type":"uint256"}],"payable":false,"type":"function"},{"anonymous":false,"inputs":[{"indexed":true,"name":"owner","type":"address"},{"indexed":true,"name":"spender","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Approval","type":"event"},{"anonymous":false,"inputs":[{"indexed":true,"name":"from","type":"address"},{"indexed":true,"name":"to","type":"address"},{"indexed":false,"name":"value","type":"uint256"}],"name":"Transfer","type":"event"}]"#;
|
|
|
|
let parsed = Source::parse(src).unwrap();
|
|
|
|
assert_eq!(parsed, Source::String(src.to_owned()));
|
2021-09-30 08:27:24 +00:00
|
|
|
|
|
|
|
let hardhat_src = format!(
|
|
|
|
r#"{{"_format": "hh-sol-artifact-1", "contractName": "Verifier", "sourceName": "contracts/verifier.sol", "abi": {}, "bytecode": "0x", "deployedBytecode": "0x", "linkReferences": {{}}, "deployedLinkReferences": {{}}}}"#,
|
|
|
|
src,
|
|
|
|
);
|
|
|
|
let hardhat_parsed = Source::parse(&hardhat_src).unwrap();
|
|
|
|
assert_eq!(hardhat_parsed, Source::String(hardhat_src));
|
2020-05-26 09:37:31 +00:00
|
|
|
}
|
2021-11-29 14:31:39 +00:00
|
|
|
|
|
|
|
#[test]
|
|
|
|
#[ignore]
|
|
|
|
fn get_etherscan_contract() {
|
|
|
|
let source = Source::etherscan("0x6b175474e89094c44da98b954eedeac495271d0f").unwrap();
|
|
|
|
let _dai = source.get().unwrap();
|
|
|
|
}
|
2020-05-26 09:37:31 +00:00
|
|
|
}
|