ethers-rs/ethers-contract
Dan Cline 80d887b67e
docs: update MRSV to 1.64 (#1926)
* IntoFuture was implemented in #1826, which means the MSRV should now
   be 1.64
2022-12-05 22:04:48 -08:00
..
ethers-contract-abigen docs: update MRSV to 1.64 (#1926) 2022-12-05 22:04:48 -08:00
ethers-contract-derive (cargo-release) version 1.0.2 2022-11-27 12:27:56 -08:00
src fix(contract): multicall decode error (#1907) 2022-11-30 13:20:22 -08:00
tests fix(contract): multicall decode error (#1907) 2022-11-30 13:20:22 -08:00
Cargo.toml docs: update MRSV to 1.64 (#1926) 2022-12-05 22:04:48 -08:00
README.md release: 0.6.0 (#611) 2021-11-23 21:23:12 +02:00

README.md

Type-safe abstractions for interacting with Ethereum smart contracts

Interacting with a smart contract requires broadcasting carefully crafted transactions where the data field contains the function's selector along with the arguments of the called function.

This module provides the Contract and ContractFactory abstractions so that you do not have to worry about that. It also provides typesafe bindings via the abigen macro and the Abigen builder.