This repository seems to not be maintained anymore: last commit dates back to beginning of January 2022.
I encourage anyone willing to get support to start using ethers-multicall-provider, which is well tested and has a similar API. The move should not be cumbersome, as it boilds down to the following changes:
- import { Contract, Provider } from 'ethers-multicall';
+ import { MulticallProvider } from 'ethers-multicall-provider';
- const multicallProvider = new Provider(provider);
+ const multicallProvider = MulticallProvider.wrap(provider);
This repository seems to not be maintained anymore: last commit dates back to beginning of January 2022.
I encourage anyone willing to get support to start using ethers-multicall-provider, which is well tested and has a similar API. The move should not be cumbersome, as it boilds down to the following changes: