Complete Ethereum & Celo library and wallet implementation in Rust. https://docs.rs/ethers
Go to file
Jonathan LEI 36dac5864c
fix: broken eip155 logic in aws signer (#2300)
2023-03-24 11:00:01 -07:00
.github ci: rm celo integration test, install missing solc version (#2292) 2023-03-21 12:52:17 -07:00
bin chore: update release process (#2278) 2023-03-20 21:21:04 -07:00
book Contracts chapter (#2281) 2023-03-21 11:15:41 -07:00
ethers fix: enable doc_cfg feature for docsrs (#2294) 2023-03-22 16:29:10 -07:00
ethers-addressbook fix: enable doc_cfg feature for docsrs (#2294) 2023-03-22 16:29:10 -07:00
ethers-contract fix: enable doc_cfg feature for docsrs (#2294) 2023-03-22 16:29:10 -07:00
ethers-core fix: enable doc_cfg feature for docsrs (#2294) 2023-03-22 16:29:10 -07:00
ethers-etherscan fix: enable doc_cfg feature for docsrs (#2294) 2023-03-22 16:29:10 -07:00
ethers-middleware fix: enable doc_cfg feature for docsrs (#2294) 2023-03-22 16:29:10 -07:00
ethers-providers fix: enable doc_cfg feature for docsrs (#2294) 2023-03-22 16:29:10 -07:00
ethers-signers fix: broken eip155 logic in aws signer (#2300) 2023-03-24 11:00:01 -07:00
ethers-solc fix: enable doc_cfg feature for docsrs (#2294) 2023-03-22 16:29:10 -07:00
examples fix: ethers-contract circular dep on ethers-signers (#2291) 2023-03-21 11:44:12 -07:00
testdata chore(deps): bump and use workspace dependencies (#2222) 2023-03-16 12:28:35 -07:00
.clippy.toml chore: bump MSRV from 1.64 to 1.65 (#2277) 2023-03-17 11:34:21 -07:00
.git-blame-ignore-revs chore: add .git-blame-ignore-revs (#2157) 2023-02-15 10:54:34 -08:00
.gitattributes Init devenv, gitignore .nlsp-settings (#1942) 2022-12-22 18:25:09 +02:00
.gitignore chore: gitignore .pre-commit-config.yaml (#1973) 2022-12-25 12:20:42 +02:00
CHANGELOG-OLD.md chore: update release process (#2278) 2023-03-20 21:21:04 -07:00
CHANGELOG.md chore: release 2023-03-21 11:45:12 -07:00
CONTRIBUTING.md chore: update release process (#2278) 2023-03-20 21:21:04 -07:00
Cargo.lock chore: release 2023-03-21 11:45:12 -07:00
Cargo.toml chore: release 2023-03-21 11:45:12 -07:00
LICENSE-APACHE fmt: all (#1751) 2022-09-28 11:58:26 -07:00
LICENSE-MIT fmt: all (#1751) 2022-09-28 11:58:26 -07:00
README.md chore: update release process (#2278) 2023-03-20 21:21:04 -07:00
book.toml ci: mdbook (#2003) 2023-01-04 12:36:31 +02:00
cliff.toml chore: update release process (#2278) 2023-03-20 21:21:04 -07:00
deny.toml fix(deps): allow MIT-0, allow CC0-1.0 exceptions (#2212) 2023-02-28 18:25:43 -07:00
flake.lock Make order of types in shared_types deterministic (#2169) 2023-02-20 16:18:31 -08:00
flake.nix Make order of types in shared_types deterministic (#2169) 2023-02-20 16:18:31 -08:00
release.toml chore: update release process (#2278) 2023-03-20 21:21:04 -07:00
rustfmt.toml fmt: all (#1751) 2022-09-28 11:58:26 -07:00

README.md

ethers-rs

A complete Ethereum and Celo Rust library

Github Actions Telegram Chat Crates.io

Quickstart

Add this to your Cargo.toml:

[dependencies]
ethers = "1.0.2"

And this to your code:

use ethers::prelude::*;

Documentation

View the API reference here or the online book here.

Examples are organized into individual crates under the /examples folder. You can run any of the examples by executing:

# cargo run -p <example-crate-name> --example <name>
cargo run -p examples-big-numbers --example math_operations

EVM-compatible chains support

There are many chains live which are Ethereum JSON-RPC & EVM compatible, but do not yet have support for EIP-2718 Typed Transactions. This means that transactions submitted to them by default in ethers-rs will have invalid serialization. To address that, you must use the legacy feature flag:

[dependencies]
ethers = { version = "1.0.2", features = ["legacy"] }

Polygon support

There is abigen support for Polygon and the Mumbai test network. It is recommended that you set the POLYGONSCAN_API_KEY environment variable. You can get one here.

Avalanche support

There is abigen support for Avalanche and the Fuji test network. It is recommended that you set the SNOWTRACE_API_KEY environment variable. You can get one here.

Celo Support

Celo support is turned on via the feature-flag celo:

[dependencies]
ethers = { version = "1.0.2", features = ["celo"] }

Celo's transactions differ from Ethereum transactions by including 3 new fields:

  • fee_currency: The currency fees are paid in (None for CELO, otherwise it's an Address)
  • gateway_fee_recipient: The address of the fee recipient (None for no gateway fee paid)
  • gateway_fee: Gateway fee amount (None for no gateway fee paid)

The feature flag enables these additional fields in the transaction request builders and in the transactions which are fetched over JSON-RPC.

Features

  • Ethereum JSON-RPC Client
  • Interacting and deploying smart contracts
  • Type safe smart contract bindings code generation
  • Querying past events
  • Event monitoring as Streams
  • ENS as a first class citizen
  • Celo support
  • Polygon support
  • Avalanche support
  • Websockets / eth_subscribe
  • Hardware Wallet Support
  • Parity APIs (tracing, parity_blockWithReceipts)
  • Geth TxPool API
  • WASM Bindings (see note)
  • FFI Bindings (see note)
  • CLI for common operations

Websockets

Websockets support is turned on via the feature-flag ws:

[dependencies]
ethers = { version = "1.0.2", features = ["ws"] }

Interprocess Communication (IPC)

IPC support is turned on via the feature-flag ipc:

[dependencies]
ethers = { version = "1.0.2", features = ["ipc"] }

HTTP Secure (HTTPS)

If you are looking to connect to a HTTPS endpoint, then you need to enable the rustls or openssl feature. feature-flags.

To enable rustls:

[dependencies]
ethers = { version = "1.0.2", features = ["rustls"] }

To enable openssl:

[dependencies]
ethers = { version = "1.0.2", features = ["openssl"] }

Note on WASM and FFI bindings

You should be able to build a wasm app that uses ethers-rs (see the example for reference). If ethers fails to compile in WASM, please open an issue. There is currently no plan to provide an official JS/TS-accessible library interface. we believe ethers.js serves that need very well.

Similarly, you should be able to build FFI bindings to ethers-rs. If ethers fails to compile in c lib formats, please open an issue. There is currently no plan to provide official FFI bindings, and as ethers-rs is not yet stable 1.0.0, its interface may change significantly between versions.

Getting Help

First, see if the answer to your question can be found in the API documentation. If the answer is not there, try opening an issue with the question.

Join the ethers-rs telegram to chat with the community!

Contributing

Thanks for your help improving the project! We are so happy to have you! We have a contributing guide to help you get involved in the ethers-rs project.

If you open a Pull Request, do not forget to add your changes in the CHANGELOG, ensure your code is properly formatted with cargo +nightly fmt and that Clippy is happy cargo clippy; you can even try to let clippy fix simple issues itself: cargo +nightly clippy --fix

Running the tests

Tests require the following installed:

  1. solc (>=0.8.0). We also recommend using svm for more flexibility.
  2. anvil
  3. geth

Additionally, the ETHERSCAN_API_KEY environment variable has to be set to run ethers-etherscan tests. You can get one here.

Projects using ethers-rs

Credits

This library would not have been possible without the great work done in:

A lot of the code was inspired and adapted from them, to a unified and opinionated interface, built with async/await and std futures from the ground up.