Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Upgrade from ethabi to alloy-json-abi #710

Open
acemasterjb opened this issue Nov 18, 2023 · 0 comments
Open

Upgrade from ethabi to alloy-json-abi #710

acemasterjb opened this issue Nov 18, 2023 · 0 comments

Comments

@acemasterjb
Copy link

As per the ethabi repo:

This project is not actively maintained. Consider these alternatives:

alloy-rs is also now utilized by foundry-compilers.

So if alloy-rs is utilized in rust-web3 as well it could allow for something like:

let all_contracts_compiled: VersionedContracts = self.contract_interfaces;
let dai_abi: &JsonAbi = all_contracts_compiled
    .find_first("ERC20")
    .unwrap()
    .abi
    .unwrap();

let dai_address = Address::from_str("6b175474e89094c44da98b954eedeac495271d0f").unwrap();
let dai_contract = Contract::new(self.client.eth(), dai_address, erc20_abi);

to be easily implemented. Assuming that self.client is a Web3<Transport>.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant