ethers-rs/ethers-contract
Andrey Kuznetsov 5bc9ee73b2
fix(contract): allow 16 calls in multicall (#1934)
2022-12-15 09:47:59 +02:00
..
ethers-contract-abigen chore: add celo chain (#1932) 2022-12-07 21:37:11 -08:00
ethers-contract-derive chore(clippy): make clippy happy (#1923) 2022-12-05 22:05:33 -08:00
src fix(contract): allow 16 calls in multicall (#1934) 2022-12-15 09:47:59 +02: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.