ethers-rs/ethers-contract
Matthias Seitz 3d4feccabf
fix(core): check against ethers internal crate names (#1060)
* fix(core): check against ethers internal crate names

* fix: add import back
2022-03-17 15:14:53 -07:00
..
ethers-contract-abigen chore: do not pin eyre patch version 2022-03-17 14:10:31 +02:00
ethers-contract-derive feat(abigen): support shared type during multiabigen (#959) 2022-02-24 22:09:08 +02:00
src feat: add contract interface helpers (#982) 2022-03-02 15:58:18 +02:00
tests fix(core): check against ethers internal crate names (#1060) 2022-03-17 15:14:53 -07:00
Cargo.toml chore(deps): bump once_cell from 1.9.0 to 1.10.0 (#987) 2022-03-04 05:29:34 -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.