38c7f5030f
* chore(core): remove ethers dep * chore(providers): remove ethers dep tests using higher-rank crates are temporarily disabled * chore(middleware): remove ethers dep and move tests over from providers * chore(signers): remove ethers dep * fix(contracts): correctly determine ethers sub-crates & remove ethers * fix: re-enable tests for all members * fix: make contract compile without middleware dep move over the test using middleware to ethers-middleware * chore: cargo fmt * chore(contract): add missing import * WIP * WIP * fix(middleware): use rustls as dev dep * chore: cargo fmt * fix: use different key for nonce manager to avoid nonce conflicts * chore: fix celo test ported over to middlewares the test had the same private key with an existing middleware test, causing potential nonce reuses it now also uses a different storage contract, so we had to change it to use u256 instead of string * fix(middleware): enable contracts/celo feature * chore: ignore non-eip2718 txs to rinkeby |
||
---|---|---|
.github | ||
bin | ||
ethers-contract | ||
ethers-core | ||
ethers-middleware | ||
ethers-providers | ||
ethers-signers | ||
examples | ||
src | ||
tests | ||
.gitignore | ||
CONTRIBUTING.md | ||
Cargo.lock | ||
Cargo.toml | ||
LICENSE-APACHE | ||
LICENSE-MIT | ||
README.md |
README.md
ethers.rs
Complete Ethereum and Celo wallet implementation and utilities in Rust
Documentation
Extensive documentation and examples are available here.
Alternatively, you may clone the repository and run cd ethers/ && cargo doc --open
Add ethers-rs to your repository
[dependencies]
ethers = { git = "https://github.com/gakonst/ethers-rs" }
Running the tests
Tests require the following installed:
solc
. We also recommend using solc-select for more flexibility.ganache-cli
In addition, it is recommended that you set the ETHERSCAN_API_KEY
environment variable
for the abigen via Etherscan tests.
You can get one here.
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 = { git = "https://github.com/gakonst/ethers-rs", features = ["legacy"] }
Celo Support
Celo support is turned on via the feature-flag celo
:
[dependencies]
ethers = { git = "https://github.com/gakonst/ethers-rs", 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
Stream
s - ENS as a first class citizen
- Celo support
- Websockets /
eth_subscribe
- Hardware Wallet Support
- Parity APIs (
tracing
,parity_blockWithReceipts
) - Geth TxPool API
- WASM Bindings
- FFI Bindings
- CLI for common operations
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.
Related Projects
This library would not have been possibly 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.
Projects using ethers-rs
- Yield Liquidator: Liquidator for Yield Protocol
- MEV Inspect: Miner Extractable Value inspector
- Ethers Flashbots: Ethers middleware for Flashbots
- Ethers Fireblocks: Ethers middleware and signer for Fireblocks' API
- Celo Threshold BLS DKG: CLI for using Celo as a data availability network for the Joint-Feldman BLS DKG
- Celo Plumo Prover: Creates Celo's ultralight client proof from on-chain data
- Celo SNARK Setup Coordinator: Coordinator for executing a pipelined Groth16 SNARK setup