ethers-rs/ethers-contract
Jim e3f0621d43
Expose New `call_raw` API that permits MultiCalls without Detokenization (#915)
* Add `call_raw` method that forgoes detokenization for MultiCall. Have `call` wrap around `call_raw` permitting user to handle detokenization themselves if they wish

* Improve documentation: Add details to the documentation example that informs the user of their responsibility to detokenize results
2022-02-15 22:38:01 +02:00
..
ethers-contract-abigen refactor: replace anyhow with eyre (#858) 2022-02-02 22:44:53 +02:00
ethers-contract-derive chore(deps): bump ethabi master (#787) 2022-01-13 02:58:11 +02:00
src Expose New `call_raw` API that permits MultiCalls without Detokenization (#915) 2022-02-15 22:38:01 +02:00
tests Expose New `call_raw` API that permits MultiCalls without Detokenization (#915) 2022-02-15 22:38:01 +02:00
Cargo.toml refactor(solc): rewrite compiler passes and cache change detection (#802) 2022-02-04 18:20:24 +02: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.