@dopex-io/web3-multicall
TypeScript icon, indicating that this package has built-in type declarations

0.1.10 • Public • Published

web3-multicall

npm version

A library to do multiple calls via a single eth_call using web3.

Installation

  • via yarn
yarn add @dopex-io/web3-multicall
  • via npm
npm i @dopex-io/web3-multicall

Usage

Contract Reference

Default Supported Networks

Constructing

  • With chainId

    import Multicall from '@dopex-io/web3-multicall';
    
    import erc20Abi from './abi/erc20.json';
    
    async function main() {
      const web3 = new Web3(provider /* Your Web3 provider here */);
    
      const multicall = new Multicall({
        chainId: 1,
        provider: 'Your Web3 provider here',
        defaultBlock: 1000 /* Optional */
      });
    
      ...
    }
    
    main()
  • With custom Multicall address

    import Multicall from '@dopex-io/web3-multicall';
    
    import erc20Abi from './abi/erc20.json';
    
    async function main() {
      const web3 = new Web3(provider /* Your Web3 provider here */);
    
      const multicall = new Multicall({
        multicallAddress: "The address of the deployed multicall contract",
        provider: 'Your Web3 provider here',
        defaultBlock: 1000 /* Optional */
      });
    
      ...
    }
    
    main();

Aggregating

const dpxContract = new web3.eth.Contract(dpxAddress, erc20Abi);

const balances = await multicall.aggregate([
  dpxContract.methods.balanceOf('Address 1'),
  dpxContract.methods.balanceOf('Address 2'),
  multicall.getEthBalance('Address 3'),
]);

console.log('DPX balance of Address 1', balances[0]);
console.log('DPX balance of Address 2', balances[1]);
console.log('ETH balance of Address 3', balances[2]);

Helper Functions

  • getEthBalance Gets the ETH balance of an address

    const ethBalance = multicall.getEthBalance('address');
  • getBlockHash Gets the block hash

    const blockHash = multicall.getBlockHash(blockNumber);
  • getLastBlockHash Gets the last blocks hash

    const lastBlockHash = multicall.getLastBlockHash();
  • getCurrentBlockTimestamp Gets the current block timestamp

    const currentBlockTimestamp = multicall.getCurrentBlockTimestamp();
  • getCurrentBlockDifficulty Gets the current block difficulty

    const currentBlockDifficulty = multicall.getCurrentBlockDifficulty();
  • getCurrentBlockGasLimit Gets the current block gas limit

    const currentBlockGasLimit = multicall.getCurrentBlockGasLimit();
  • getCurrentBlockCoinbase Gets the current block coinbase

    const currentBlockCoinbase = multicall.getCurrentBlockCoinbase();

License

This project is licensed under the MIT License - Copyright (c) 2023 Dopex

Readme

Keywords

none

Package Sidebar

Install

npm i @dopex-io/web3-multicall

Weekly Downloads

235

Version

0.1.10

License

MIT

Unpacked Size

69.4 kB

Total Files

21

Last publish

Collaborators

  • witherblock