Complete Ethereum & Celo library and wallet implementation in Rust. https://docs.rs/ethers
Go to file
DaniPopes da743fc8b2
ci/test: improve CI jobs and tests (#2189)
* ci: move to scripts directory

* nits

* ci: improve main CI jobs

* fix: install script

* fix

* fix: use curl for windows installation

* fix: wasm typo

* tests: move to single binary

* chore: clippy

* chore: clippy

* chore: clippy

* fix: test command

* fix: quote tests

* update script

* fix: action exclude

* fix: dev deps

* fix: only run wasm in own job

* ci: add aarch64 targets

* test: rm useless test

* ci: update security audit

* ci: add deny CI

* chore: rm unused audit.toml

* chore: update geth.rs

* ci: remove unusable targets

* fix: install script path

* fix: wasm

* improve script

* fix: failing ci

* fix: contract tests

* ci: improve install script

* update middleware tests

* move integration etherscan tests to tests/ dir

* fix: eip2930 access_list field name

* add pendingtransaction must_use

* add random anvil comment

* ci: add miri job

* ci: simplify

* fixci

* Revert "add pendingtransaction must_use"

This reverts commit 770b21b4a3.

* fix: macos script

* fix: use curl in script

* unused ci

* update script

* fix wasm

* rm_miri

* fix: signer test

* fix: wasm ci

* fix: ipc test

* fix: live celo tests

* fix: abi online source test

* fix: windows paths in test

* chore: update serial_test

* ci: run live tests separately

* fix: provider tests

* fix: unused var

* fix: feature

* fix merge

* fix: etherscan key tests

* ci: rm duplicate audit

* fix: split etherscan test ci

* fix: etherscan test

* fix: generate multiple unused ports

* fix: source test

* fix: udeps

* rm unused
2023-02-28 17:26:27 -07:00
.github ci/test: improve CI jobs and tests (#2189) 2023-02-28 17:26:27 -07:00
bin docs: add contributing.md 2020-06-15 18:05:29 +03:00
book chore: replace rpc urls with generic ones (#2199) 2023-02-27 15:16:33 -07:00
ethers-addressbook docs: fix broken links, update documentation (#2203) 2023-02-27 13:03:17 -07:00
ethers-contract ci/test: improve CI jobs and tests (#2189) 2023-02-28 17:26:27 -07:00
ethers-core ci/test: improve CI jobs and tests (#2189) 2023-02-28 17:26:27 -07:00
ethers-etherscan ci/test: improve CI jobs and tests (#2189) 2023-02-28 17:26:27 -07:00
ethers-middleware ci/test: improve CI jobs and tests (#2189) 2023-02-28 17:26:27 -07:00
ethers-providers ci/test: improve CI jobs and tests (#2189) 2023-02-28 17:26:27 -07:00
ethers-signers ci/test: improve CI jobs and tests (#2189) 2023-02-28 17:26:27 -07:00
ethers-solc ci/test: improve CI jobs and tests (#2189) 2023-02-28 17:26:27 -07:00
examples ci/test: improve CI jobs and tests (#2189) 2023-02-28 17:26:27 -07:00
scripts refactor: examples (#1940) 2022-12-29 14:53:11 +02:00
src ci/test: improve CI jobs and tests (#2189) 2023-02-28 17:26:27 -07:00
tests ci/test: improve CI jobs and tests (#2189) 2023-02-28 17:26:27 -07:00
.clippy.toml fix(msrv): bump in .clippy.toml and add a comment in root Cargo.toml (#1945) 2022-12-18 13:41:11 +02: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.md feat: deseralize other fields on tx receipts (#2209) 2023-02-28 17:22:39 -07:00
CONTRIBUTING.md chore: replace rpc urls with generic ones (#2199) 2023-02-27 15:16:33 -07:00
Cargo.lock ci/test: improve CI jobs and tests (#2189) 2023-02-28 17:26:27 -07:00
Cargo.toml ci/test: improve CI jobs and tests (#2189) 2023-02-28 17:26:27 -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 http:// to https:// on Celo link (#2193) 2023-02-27 13:20:04 -07:00
book.toml ci: mdbook (#2003) 2023-01-04 12:36:31 +02:00
deny.toml ci/test: improve CI jobs and tests (#2189) 2023-02-28 17:26:27 -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 Release process and CI (#1240) 2022-05-13 13:10:05 -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.