Crates.io | ethers-etherscan |
lib.rs | ethers-etherscan |
version | 2.0.14 |
source | src |
created_at | 2021-10-15 15:43:33.109666 |
updated_at | 2024-03-06 17:23:48.739501 |
description | Bindings for the etherscan.io web API |
homepage | https://github.com/gakonst/ethers-rs |
repository | https://github.com/gakonst/ethers-rs |
max_upload_size | |
id | 465552 |
size | 117,417 |
Bindings for the etherscan.io web API.
For more information, please refer to the book.
Warning
This crate is deprecated in favor of
foundry-block-explorers
(foundry-rs/block-explorers). See #2667 for more information.
# use ethers_core::types::Chain;
# use ethers_etherscan::Client;
# async fn foo() -> Result<(), Box<dyn std::error::Error>> {
let client = Client::new(Chain::Mainnet, "<your_api_key>")?;
// Or using environment variables
let client = Client::new_from_env(Chain::Mainnet)?;
let address = "0xBB9bc244D798123fDe783fCc1C72d3Bb8C189413".parse()?;
let metadata = client.contract_source_code(address).await?;
assert_eq!(metadata.items[0].contract_name, "DAO");
# Ok(())
# }