@morpho-labs/ethers-multicall
Version:
⚡🚀 Call multiple view functions, from multiple Smart Contracts, in a single RPC query!
85 lines (64 loc) • 3.47 kB
Markdown
[![npm package][npm-img]][npm-url]
[![Build Status][build-img]][build-url]
[![Downloads][downloads-img]][downloads-url]
[![Issues][issues-img]][issues-url]
[![Commitizen Friendly][commitizen-img]][commitizen-url]
[![Semantic Release][semantic-release-img]][semantic-release-url]
> ⚡🚀 Call multiple view functions, from multiple Smart Contracts, in a single RPC query!
Querying an RPC endpoint can be very costly (**100+ queries**) when loading data from multiple smart contracts.
With multicall, batch these queries into a single, on-chain query, without additional over-head!
This is the standalone package of the library formerly created & used by [Zapper](https://github.com/Zapper-fi/studio/tree/main/src/multicall).
## Install
```bash
npm install @morpho-labs/ethers-multicall
```
```bash
yarn add @morpho-labs/ethers-multicall
```
## Usage
```typescript
import { ethers } from "ethers";
import { EthersMulticall } from "@morpho-labs/ethers-multicall";
const provider = new ethers.providers.JsonRpcBatchProvider("...");
const multicall = new EthersMulticall(provider);
const uni = multicall.wrap(
new ethers.Contract("0x1f9840a85d5aF5bf1D1762F925BDADdC4201F984", UniswapAbi)
); // make sure to always wrap contracts to benefit from multicalls
Promise.all([uni.name(), uni.symbol(), uni.decimals()]).then(console.log);
```
- When performing calls in parallel, a single incorrect call may revert and make the aggregated call to the Multicall contract revert ; effectively throwing multiple errors in your code. The following example illustrates this limitation:
```typescript
const performCall = async (address: string) => {
const erc20 = await multicall.wrap(new ethers.Contract(address, ERC20Abi));
try {
const symbol = await erc20.symbol();
} catch {
return console.error("An error occurred while fetching the symbol of token:", address);
}
};
Promise.all(
[
"0x056Fd409E1d7A124BD7017459dFEa2F387b6d5Cd", // valid GUSD token address
"0x0000000000000000000000000000000000000000", // invalid ERC20 token address
].map(performCall)
);
// prints 2 errors:
// An error occurred while fetching the symbol of token: 0x056Fd409E1d7A124BD7017459dFEa2F387b6d5Cd
// An error occurred while fetching the symbol of token: 0x0000000000000000000000000000000000000000
```
[]: https://github.com/morpho-labs/ethers-multicall/actions/workflows/release.yml/badge.svg
[]: https://github.com/morpho-labs/ethers-multicall/actions/workflows/release.yml
[]: https://img.shields.io/npm/dt/@morpho-labs/ethers-multicall
[]: https://www.npmtrends.com/@morpho-labs/ethers-multicall
[]: https://img.shields.io/npm/v/@morpho-labs/ethers-multicall
[]: https://www.npmjs.com/package/@morpho-labs/ethers-multicall
[]: https://img.shields.io/github/issues/morpho-labs/ethers-multicall
[]: https://github.com/morpho-labs/ethers-multicall/issues
[]: https://codecov.io/gh/morpho-labs/ethers-multicall/branch/main/graph/badge.svg
[]: https://codecov.io/gh/morpho-labs/ethers-multicall
[]: https://img.shields.io/badge/%20%20%F0%9F%93%A6%F0%9F%9A%80-semantic--release-e10079.svg
[]: https://github.com/semantic-release/semantic-release
[]: https://img.shields.io/badge/commitizen-friendly-brightgreen.svg
[]: http://commitizen.github.io/cz-cli/