Skip to content
This repository has been archived by the owner on Oct 19, 2024. It is now read-only.

Commit

Permalink
feat: add etherscan client crate
Browse files Browse the repository at this point in the history
  • Loading branch information
mattsse committed Oct 4, 2021
1 parent 5d8b66a commit dfb1c06
Show file tree
Hide file tree
Showing 5 changed files with 842 additions and 0 deletions.
12 changes: 12 additions & 0 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 2 additions & 0 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@ members = [
"ethers-signers",
"ethers-core",
"ethers-middleware",
"ethers-etherscan"
]

default-members = [
Expand All @@ -27,6 +28,7 @@ default-members = [
"ethers-signers",
"ethers-core",
"ethers-middleware",
"ethers-etherscan"
]

exclude = [
Expand Down
28 changes: 28 additions & 0 deletions ethers-etherscan/Cargo.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
[package]
name = "ethers-etherscan"
version = "0.1.0"
authors = ["Matthias Seitz <matthias.seitz@outlook.de>", "Georgios Konstantopoulos <me@gakonst.com>"]
license = "MIT OR Apache-2.0"
edition = "2018"
readme = "README.md"
documentation = "https://docs.rs/ethers"
repository = "https://github.com/gakonst/ethers-rs"
homepage = "https://docs.rs/ethers"
description = """
Rust API bindings for the etherscan.io web api
"""
keywords = ["ethereum", "web3", "etherscan", "ethers"]

[dependencies]
ethers-core = { version = "^0.5.0", path = "../ethers-core", default-features = false }
reqwest = { version = "0.11.4", features = ["json"] }
serde = { version = "1.0.124", default-features = false, features = ["derive"] }
anyhow = "1.0.37"
serde_json = { version = "1.0.64", default-features = false }

[dev-dependencies]
tokio = { version = "1.5", features = ["macros", "rt-multi-thread"] }

[package.metadata.docs.rs]
all-features = true
rustdoc-args = ["--cfg", "docsrs"]
Loading

0 comments on commit dfb1c06

Please sign in to comment.